/[public]/psiconv/trunk/lib/psiconv/generate_driver.c
ViewVC logotype

Diff of /psiconv/trunk/lib/psiconv/generate_driver.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 166 Revision 171
28#ifdef DMALLOC 28#ifdef DMALLOC
29#include <dmalloc.h> 29#include <dmalloc.h>
30#endif 30#endif
31 31
32 32
33int psiconv_write(psiconv_buffer *buf,const psiconv_file value) 33int psiconv_write(const psiconv_config config, psiconv_buffer *buf,
34 const psiconv_file value)
34{ 35{
35 int res; 36 int res;
36 37
37 if (!value) { 38 if (!value) {
38 psiconv_warn(0,0,"Can't parse to an empty buffer!"); 39 psiconv_warn(config,0,0,"Can't parse to an empty buffer!");
39 return -PSICONV_E_OTHER; 40 return -PSICONV_E_OTHER;
40 } 41 }
41 if (!(*buf = psiconv_buffer_new())) 42 if (!(*buf = psiconv_buffer_new()))
42 return -PSICONV_E_NOMEM; 43 return -PSICONV_E_NOMEM;
43 44
44 if (value->type == psiconv_word_file) { 45 if (value->type == psiconv_word_file) {
45 if ((res = psiconv_write_header_section(*buf,PSICONV_ID_PSION5, 46 if ((res = psiconv_write_header_section(config,*buf,PSICONV_ID_PSION5,
46 PSICONV_ID_DATA_FILE, 47 PSICONV_ID_DATA_FILE,
47 PSICONV_ID_WORD))) 48 PSICONV_ID_WORD)))
48 goto ERROR; 49 goto ERROR;
49 if ((res =psiconv_write_word_file(*buf,(psiconv_word_f) (value->file)))) 50 if ((res =psiconv_write_word_file(config,*buf,(psiconv_word_f) (value->file))))
50 goto ERROR; 51 goto ERROR;
51 } else if (value->type == psiconv_texted_file) { 52 } else if (value->type == psiconv_texted_file) {
52 if ((res = psiconv_write_header_section(*buf,PSICONV_ID_PSION5, 53 if ((res = psiconv_write_header_section(config,*buf,PSICONV_ID_PSION5,
53 PSICONV_ID_DATA_FILE, 54 PSICONV_ID_DATA_FILE,
54 PSICONV_ID_TEXTED))) 55 PSICONV_ID_TEXTED)))
55 goto ERROR; 56 goto ERROR;
56 if ((res =psiconv_write_texted_file(*buf, 57 if ((res =psiconv_write_texted_file(config,*buf,
57 (psiconv_texted_f) (value->file)))) 58 (psiconv_texted_f) (value->file))))
58 goto ERROR; 59 goto ERROR;
60 } else if (value->type == psiconv_sketch_file) {
61 if ((res = psiconv_write_header_section(config,*buf,PSICONV_ID_PSION5,
62 PSICONV_ID_DATA_FILE,
63 PSICONV_ID_SKETCH)))
64 goto ERROR;
65 if ((res =psiconv_write_sketch_file(config,*buf,
66 (psiconv_sketch_f) (value->file))))
67 goto ERROR;
68 } else if (value->type == psiconv_mbm_file) {
69 if ((res = psiconv_write_header_section(config,*buf,PSICONV_ID_PSION5,
70 PSICONV_ID_MBM_FILE,
71 0x00000000)))
72 goto ERROR;
73 if ((res =psiconv_write_mbm_file(config,*buf,
74 (psiconv_mbm_f) (value->file))))
75 goto ERROR;
59#if 0 76#if 0
60 } else if (value->type == psiconv_sketch_file) {
61 if ((res =psiconv_write_sketch_file(*buf,
62 (psiconv_sketch_f) (value->file))))
63 goto ERROR;
64 } else if (value->type == psiconv_mbm_file) {
65 if ((res =psiconv_write_mbm_file(*buf,
66 (psiconv_mbm_f) (value->file))))
67 goto ERROR;
68 } else if (value->type == psiconv_clipart_file) { 77 } else if (value->type == psiconv_clipart_file) {
69 if ((res =psiconv_write_clipart_file(*buf, 78 if ((res =psiconv_write_clipart_file(config,*buf,
70 (psiconv_clipart_f) (value->file)))) 79 (psiconv_clipart_f) (value->file))))
71 goto ERROR; 80 goto ERROR;
72#endif 81#endif
73 } else { 82 } else {
74 psiconv_warn(0,0,"Unknown or unsupported file type"); 83 psiconv_warn(config,0,0,"Unknown or unsupported file type");
75 res = -PSICONV_E_GENERATE; 84 res = -PSICONV_E_GENERATE;
76 goto ERROR; 85 goto ERROR;
77 } 86 }
78 if ((res = psiconv_buffer_resolve(*buf))) 87 if ((res = psiconv_buffer_resolve(*buf)))
79 goto ERROR; 88 goto ERROR;
82ERROR: 91ERROR:
83 psiconv_buffer_free(*buf); 92 psiconv_buffer_free(*buf);
84 return res; 93 return res;
85} 94}
86 95
87int psiconv_write_texted_file(psiconv_buffer buf,psiconv_texted_f value) 96int psiconv_write_texted_file(const psiconv_config config,
97 psiconv_buffer buf,psiconv_texted_f value)
88{ 98{
89 psiconv_character_layout base_char; 99 psiconv_character_layout base_char;
90 psiconv_paragraph_layout base_para; 100 psiconv_paragraph_layout base_para;
91 int res; 101 int res;
92 psiconv_section_table_section section_table; 102 psiconv_section_table_section section_table;
93 psiconv_section_table_entry entry; 103 psiconv_section_table_entry entry;
94 psiconv_u32 section_table_id; 104 psiconv_u32 section_table_id;
95 psiconv_buffer buf_texted; 105 psiconv_buffer buf_texted;
96 106
97 if (!value) { 107 if (!value) {
98 psiconv_warn(0,0,"Null TextEd file"); 108 psiconv_warn(config,0,0,"Null TextEd file");
99 return -PSICONV_E_GENERATE; 109 return -PSICONV_E_GENERATE;
100 } 110 }
101 111
102 if (!(section_table = psiconv_list_new(sizeof(*entry)))) { 112 if (!(section_table = psiconv_list_new(sizeof(*entry)))) {
103 res = -PSICONV_E_NOMEM; 113 res = -PSICONV_E_NOMEM;
117 res = -PSICONV_E_NOMEM; 127 res = -PSICONV_E_NOMEM;
118 goto ERROR4; 128 goto ERROR4;
119 } 129 }
120 130
121 section_table_id = psiconv_buffer_unique_id(); 131 section_table_id = psiconv_buffer_unique_id();
122 if ((res = psiconv_write_offset(buf,section_table_id))) 132 if ((res = psiconv_write_offset(config,buf,section_table_id)))
123 goto ERROR5; 133 goto ERROR5;
124 134
125 entry->id = PSICONV_ID_APPL_ID_SECTION; 135 entry->id = PSICONV_ID_APPL_ID_SECTION;
126 entry->offset = psiconv_buffer_unique_id(); 136 entry->offset = psiconv_buffer_unique_id();
127 if ((res = psiconv_list_add(section_table,entry))) 137 if ((res = psiconv_list_add(section_table,entry)))
128 goto ERROR5; 138 goto ERROR5;
129 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 139 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
130 goto ERROR5; 140 goto ERROR5;
131 if ((res=psiconv_write_application_id_section(buf, 141 if ((res=psiconv_write_application_id_section(config,buf,
132 PSICONV_ID_TEXTED,"TextEd.app"))) 142 PSICONV_ID_TEXTED,"TextEd.app")))
133 goto ERROR5; 143 goto ERROR5;
134 144
135 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION; 145 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION;
136 entry->offset = psiconv_buffer_unique_id(); 146 entry->offset = psiconv_buffer_unique_id();
137 if ((res = psiconv_list_add(section_table,entry))) 147 if ((res = psiconv_list_add(section_table,entry)))
138 goto ERROR5; 148 goto ERROR5;
139 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 149 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
140 goto ERROR5; 150 goto ERROR5;
141 if ((res = psiconv_write_page_layout_section(buf,value->page_sec))) 151 if ((res = psiconv_write_page_layout_section(config,buf,value->page_sec)))
142 goto ERROR5; 152 goto ERROR5;
143 153
144 entry->id = PSICONV_ID_TEXTED; 154 entry->id = PSICONV_ID_TEXTED;
145 entry->offset = psiconv_buffer_unique_id(); 155 entry->offset = psiconv_buffer_unique_id();
146 if ((res = psiconv_list_add(section_table,entry))) 156 if ((res = psiconv_list_add(section_table,entry)))
147 goto ERROR5; 157 goto ERROR5;
148 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 158 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
149 goto ERROR5; 159 goto ERROR5;
150 if ((res = psiconv_write_texted_section(buf,value->texted_sec, 160 if ((res = psiconv_write_texted_section(config,buf,value->texted_sec,
151 base_char,base_para,&buf_texted))) 161 base_char,base_para,&buf_texted)))
152 goto ERROR5; 162 goto ERROR5;
153 163
154 if ((res = psiconv_buffer_concat(buf,buf_texted))) 164 if ((res = psiconv_buffer_concat(buf,buf_texted)))
155 goto ERROR6; 165 goto ERROR6;
156 166
157 167
158 if ((res = psiconv_buffer_add_target(buf,section_table_id))) 168 if ((res = psiconv_buffer_add_target(buf,section_table_id)))
159 goto ERROR6; 169 goto ERROR6;
160 170
161 res = psiconv_write_section_table_section(buf,section_table); 171 res = psiconv_write_section_table_section(config,buf,section_table);
162 172
163ERROR6: 173ERROR6:
164 psiconv_buffer_free(buf_texted); 174 psiconv_buffer_free(buf_texted);
165ERROR5: 175ERROR5:
166 psiconv_free_paragraph_layout(base_para); 176 psiconv_free_paragraph_layout(base_para);
172 psiconv_list_free(section_table); 182 psiconv_list_free(section_table);
173ERROR1: 183ERROR1:
174 return res; 184 return res;
175} 185}
176 186
177int psiconv_write_word_file(psiconv_buffer buf,psiconv_word_f value) 187int psiconv_write_word_file(const psiconv_config config,
188 psiconv_buffer buf,psiconv_word_f value)
178{ 189{
179 int res; 190 int res;
180 psiconv_section_table_section section_table; 191 psiconv_section_table_section section_table;
181 psiconv_section_table_entry entry; 192 psiconv_section_table_entry entry;
182 psiconv_u32 section_table_id; 193 psiconv_u32 section_table_id;
183 194
184 if (!value) { 195 if (!value) {
185 psiconv_warn(0,0,"Null Word file"); 196 psiconv_warn(config,0,0,"Null Word file");
186 return -PSICONV_E_GENERATE; 197 return -PSICONV_E_GENERATE;
187 } 198 }
188 199
189 if (!(section_table = psiconv_list_new(sizeof(*entry)))) { 200 if (!(section_table = psiconv_list_new(sizeof(*entry)))) {
190 res = -PSICONV_E_NOMEM; 201 res = -PSICONV_E_NOMEM;
195 res = -PSICONV_E_NOMEM; 206 res = -PSICONV_E_NOMEM;
196 goto ERROR2; 207 goto ERROR2;
197 } 208 }
198 209
199 section_table_id = psiconv_buffer_unique_id(); 210 section_table_id = psiconv_buffer_unique_id();
200 if ((res = psiconv_write_offset(buf,section_table_id))) 211 if ((res = psiconv_write_offset(config,buf,section_table_id)))
201 goto ERROR3; 212 goto ERROR3;
202 213
203 entry->id = PSICONV_ID_APPL_ID_SECTION; 214 entry->id = PSICONV_ID_APPL_ID_SECTION;
204 entry->offset = psiconv_buffer_unique_id(); 215 entry->offset = psiconv_buffer_unique_id();
205 if ((res = psiconv_list_add(section_table,entry))) 216 if ((res = psiconv_list_add(section_table,entry)))
206 goto ERROR3; 217 goto ERROR3;
207 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 218 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
208 goto ERROR3; 219 goto ERROR3;
209 if ((res=psiconv_write_application_id_section(buf, 220 if ((res=psiconv_write_application_id_section(config,buf,
210 PSICONV_ID_WORD,"Word.app"))) 221 PSICONV_ID_WORD,"Word.app")))
211 goto ERROR3; 222 goto ERROR3;
212 223
213 entry->id = PSICONV_ID_WORD_STATUS_SECTION; 224 entry->id = PSICONV_ID_WORD_STATUS_SECTION;
214 entry->offset = psiconv_buffer_unique_id(); 225 entry->offset = psiconv_buffer_unique_id();
215 if ((res = psiconv_list_add(section_table,entry))) 226 if ((res = psiconv_list_add(section_table,entry)))
216 goto ERROR3; 227 goto ERROR3;
217 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 228 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
218 goto ERROR3; 229 goto ERROR3;
219 if ((res = psiconv_write_word_status_section(buf,value->status_sec))) 230 if ((res = psiconv_write_word_status_section(config,buf,value->status_sec)))
220 goto ERROR3; 231 goto ERROR3;
221 232
222 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION; 233 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION;
223 entry->offset = psiconv_buffer_unique_id(); 234 entry->offset = psiconv_buffer_unique_id();
224 if ((res = psiconv_list_add(section_table,entry))) 235 if ((res = psiconv_list_add(section_table,entry)))
225 goto ERROR3; 236 goto ERROR3;
226 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 237 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
227 goto ERROR3; 238 goto ERROR3;
228 if ((res = psiconv_write_page_layout_section(buf,value->page_sec))) 239 if ((res = psiconv_write_page_layout_section(config,buf,value->page_sec)))
229 goto ERROR3; 240 goto ERROR3;
230 241
231 entry->id = PSICONV_ID_WORD_STYLES_SECTION; 242 entry->id = PSICONV_ID_WORD_STYLES_SECTION;
232 entry->offset = psiconv_buffer_unique_id(); 243 entry->offset = psiconv_buffer_unique_id();
233 if ((res = psiconv_list_add(section_table,entry))) 244 if ((res = psiconv_list_add(section_table,entry)))
234 goto ERROR3; 245 goto ERROR3;
235 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 246 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
236 goto ERROR3; 247 goto ERROR3;
237 if ((res = psiconv_write_word_styles_section(buf,value->styles_sec))) 248 if ((res = psiconv_write_word_styles_section(config,buf,value->styles_sec)))
238 goto ERROR3; 249 goto ERROR3;
239 250
240 entry->id = PSICONV_ID_TEXT_SECTION; 251 entry->id = PSICONV_ID_TEXT_SECTION;
241 entry->offset = psiconv_buffer_unique_id(); 252 entry->offset = psiconv_buffer_unique_id();
242 if ((res = psiconv_list_add(section_table,entry))) 253 if ((res = psiconv_list_add(section_table,entry)))
243 goto ERROR3; 254 goto ERROR3;
244 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 255 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
245 goto ERROR3; 256 goto ERROR3;
246 if ((res = psiconv_write_text_section(buf,value->paragraphs))) 257 if ((res = psiconv_write_text_section(config,buf,value->paragraphs)))
247 goto ERROR3; 258 goto ERROR3;
248 259
249 entry->id = PSICONV_ID_LAYOUT_SECTION; 260 entry->id = PSICONV_ID_LAYOUT_SECTION;
250 entry->offset = psiconv_buffer_unique_id(); 261 entry->offset = psiconv_buffer_unique_id();
251 if ((res = psiconv_list_add(section_table,entry))) 262 if ((res = psiconv_list_add(section_table,entry)))
252 goto ERROR3; 263 goto ERROR3;
253 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 264 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
254 goto ERROR3; 265 goto ERROR3;
255 if ((res = psiconv_write_styled_layout_section(buf,value->paragraphs, 266 if ((res = psiconv_write_styled_layout_section(config,buf,value->paragraphs,
256 value->styles_sec))) 267 value->styles_sec)))
257 goto ERROR3; 268 goto ERROR3;
258 269
259 if ((res = psiconv_buffer_add_target(buf,section_table_id))) 270 if ((res = psiconv_buffer_add_target(buf,section_table_id)))
260 goto ERROR3; 271 goto ERROR3;
261 272
262 res = psiconv_write_section_table_section(buf,section_table); 273 res = psiconv_write_section_table_section(config,buf,section_table);
263 274
264ERROR3: 275ERROR3:
265 free(entry); 276 free(entry);
266ERROR2: 277ERROR2:
267 psiconv_list_free(section_table); 278 psiconv_list_free(section_table);
268ERROR1: 279ERROR1:
269 return res; 280 return res;
270} 281}
282
283int psiconv_write_sketch_file(const psiconv_config config,
284 psiconv_buffer buf,psiconv_sketch_f value)
285{
286 int res;
287 psiconv_section_table_section section_table;
288 psiconv_section_table_entry entry;
289 psiconv_u32 section_table_id;
290
291 if (!value) {
292 psiconv_warn(config,0,0,"Null Sketch file");
293 return -PSICONV_E_GENERATE;
294 }
295
296 if (!(section_table = psiconv_list_new(sizeof(*entry)))) {
297 res = -PSICONV_E_NOMEM;
298 goto ERROR1;
299 }
300
301 if (!(entry = malloc(sizeof(*entry)))) {
302 res = -PSICONV_E_NOMEM;
303 goto ERROR2;
304 }
305
306 section_table_id = psiconv_buffer_unique_id();
307 if ((res = psiconv_write_offset(config,buf,section_table_id)))
308 goto ERROR3;
309
310 entry->id = PSICONV_ID_APPL_ID_SECTION;
311 entry->offset = psiconv_buffer_unique_id();
312 if ((res = psiconv_list_add(section_table,entry)))
313 goto ERROR3;
314 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
315 goto ERROR3;
316 if ((res=psiconv_write_application_id_section(config,buf,
317 PSICONV_ID_SKETCH,"Paint.app")))
318 goto ERROR3;
319
320 entry->id = PSICONV_ID_SKETCH_SECTION;
321 entry->offset = psiconv_buffer_unique_id();
322 if ((res = psiconv_list_add(section_table,entry)))
323 goto ERROR3;
324 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
325 goto ERROR3;
326 if ((res = psiconv_write_sketch_section(config,buf,value->sketch_sec)))
327 goto ERROR3;
328
329 if ((res = psiconv_buffer_add_target(buf,section_table_id)))
330 goto ERROR3;
331 res = psiconv_write_section_table_section(config,buf,section_table);
332
333ERROR3:
334 free(entry);
335ERROR2:
336 psiconv_list_free(section_table);
337ERROR1:
338 return res;
339}
340
341int psiconv_write_mbm_file(const psiconv_config config,
342 psiconv_buffer buf,psiconv_mbm_f value)
343{
344 int res,i;
345 psiconv_jumptable_section jumptable;
346 psiconv_u32 *entry,id,table_id;
347 psiconv_paint_data_section section;
348
349 if (!value) {
350 psiconv_warn(config,0,0,"Null MBM file");
351 return -PSICONV_E_GENERATE;
352 }
353
354 if (!(jumptable = psiconv_list_new(sizeof(*entry)))) {
355 res = -PSICONV_E_NOMEM;
356 goto ERROR1;
357 }
358
359 table_id = psiconv_buffer_unique_id();
360 if ((res = psiconv_buffer_add_reference(buf,table_id)))
361 goto ERROR2;
362
363 for (i = 0; i < psiconv_list_length(value->sections); i++) {
364 if (!(section = psiconv_list_get(value->sections,i))) {
365 psiconv_warn(config,0,0,"Massive memory corruption");
366 res = -PSICONV_E_NOMEM;
367 goto ERROR2;
368 }
369 id = psiconv_buffer_unique_id();
370 psiconv_list_add(jumptable,&id);
371 if ((res = psiconv_buffer_add_target(buf,id)))
372 goto ERROR2;
373 if ((res = psiconv_write_paint_data_section(config,buf,section)))
374 goto ERROR2;
375 }
376
377 if ((res = psiconv_buffer_add_target(buf,table_id)))
378 goto ERROR2;
379 if ((res = psiconv_write_jumptable_section(config,buf,jumptable)))
380 goto ERROR2;
381
382
383ERROR2:
384 psiconv_list_free(jumptable);
385ERROR1:
386 return res;
387}

Legend:
Removed from v.166  
changed lines
  Added in v.171

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26