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

Legend:
Removed from v.73  
changed lines
  Added in v.170

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