File: xsd_document.h

package info (click to toggle)
ezquake 2.2%2Bgit20150324-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 6,996 kB
  • ctags: 16,582
  • sloc: ansic: 143,243; makefile: 339; tcl: 107; sh: 28
file content (308 lines) | stat: -rw-r--r-- 5,731 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/*
Copyright (C) 2011 azazello and ezQuake team

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __XSD_DOCUMENT_H__
#define __XSD_DOCUMENT_H__

#include "xsd.h"

typedef enum
{
    // plain text
    tag_text,

    // block elements
    tag_section,
    tag_p,
    tag_list,
    tag_dict,
    tag_hr,
    tag_h,
    tag_pre,

    // inline elements
    tag_em,
    tag_a,
    tag_img,
    tag_color,
    tag_br,
    tag_sp,

    // other
    tag_li,
    tag_di
}
document_tag_type_t;

typedef enum
{
    align_left,
    align_center,
    align_right
}
document_align_t;


// This is a base for all tag structures. Every tag structure
// should inherit fields defined here. This one is abstract.
typedef struct document_tag_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------

    // rest of data follow
    // ...
}
document_tag_t;


typedef struct document_tag_text_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    char *text;
}
document_tag_text_t;


typedef struct document_tag_p_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
    qbool indent;
    document_align_t align;
}
document_tag_p_t;


typedef struct document_tag_section_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
    qbool indent;
    char *title;
    char *id;
}
document_tag_section_t;


typedef struct document_tag_hr_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
}
document_tag_hr_t;


typedef struct document_tag_h_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
    document_align_t align;
}
document_tag_h_t;


typedef struct document_tag_em_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
}
document_tag_em_t;


typedef struct document_tag_color_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
}
document_tag_color_t;


typedef struct document_tag_a_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
    char *href;
}
document_tag_a_t;


typedef struct document_tag_img_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
}
document_tag_img_t;


typedef struct document_tag_br_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
}
document_tag_br_t;


typedef struct document_tag_pre_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    char *text;
    char *alt;
}
document_tag_pre_t;


typedef struct document_tag_sp_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
}
document_tag_sp_t;


typedef enum
{
    list_bullet_none,
    list_bullet_dot,
    list_bullet_number,
    list_bullet_letter,
    list_bullet_bigletter
}
list_bullet_t;

typedef enum
{
    list_separator_none,
    list_separator_dot,
    list_separator_par
}
list_separator_t;

typedef struct document_tag_li_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *tags;
}
document_tag_li_t;

typedef struct document_tag_list_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_li_t *items;
    list_bullet_t bullet;
    list_separator_t separator;
}
document_tag_list_t;


typedef struct document_tag_di_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_t *name;
    document_tag_t *description;
}
document_tag_di_t;

typedef struct document_tag_dict_s
{
    document_tag_type_t type;
    struct document_tag_s *next;
    // --------------------
    document_tag_di_t *items;
    list_bullet_t bullet;
    list_separator_t separator;
}
document_tag_dict_t;


typedef struct xml_document_author_s
{
    document_tag_type_t type;   // nothing for this type
    struct xml_document_author_s *next;
    // --------------------

    char *name;
    char *email;
    char *im;
}
xml_document_author_t;

typedef struct xml_document_s
{
    char *document_type;

    // head
    char *title;
    char *date;
    xml_document_author_t *authors;

    // body
    document_tag_t *content;
}
xml_document_t;


// document parser specific data
typedef struct document_parser_specific_s
{
    document_tag_t **tag;
    int section_num;
}
document_parser_specific_t;


// create new document
xml_document_t * XSD_Document_New(void);

// free xml_document_t struct
void XSD_Document_Free(xml_t *);

// read document content from file, return NULL if error
xml_t * XSD_Document_LoadFromHandle(vfsfile_t *v, int filelen);

// read document content from file, return NULL if error
xml_document_t * XSD_Document_Load(char *filename);

#endif // __XSD_DOCUMENT_H__