/[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 82 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 res; 36 int res;
32 37
33 if (!value) { 38 if (!value) {
34 psiconv_warn(0,0,"Can't parse to an empty buffer!"); 39 psiconv_warn(config,0,0,"Can't parse to an empty buffer!");
35 return -PSICONV_E_OTHER; 40 return -PSICONV_E_OTHER;
36 } 41 }
37 if (!(*buf = psiconv_buffer_new())) 42 if (!(*buf = psiconv_buffer_new()))
38 return -PSICONV_E_NOMEM; 43 return -PSICONV_E_NOMEM;
39 44
40 if (value->type == psiconv_word_file) { 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;
41 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))))
42 goto ERROR; 51 goto ERROR;
43 } else if (value->type == psiconv_texted_file) { 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;
44 if ((res =psiconv_write_texted_file(*buf, 57 if ((res =psiconv_write_texted_file(config,*buf,
45 (psiconv_texted_f) (value->file)))) 58 (psiconv_texted_f) (value->file))))
46 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;
47#if 0 68#if 0
48 } else if (value->type == psiconv_sketch_file) {
49 if ((res =psiconv_write_sketch_file(*buf,
50 (psiconv_sketch_f) (value->file))))
51 goto ERROR;
52 } else if (value->type == psiconv_mbm_file) { 69 } else if (value->type == psiconv_mbm_file) {
53 if ((res =psiconv_write_mbm_file(*buf, 70 if ((res =psiconv_write_mbm_file(config,*buf,
54 (psiconv_mbm_f) (value->file)))) 71 (psiconv_mbm_f) (value->file))))
55 goto ERROR; 72 goto ERROR;
56 } else if (value->type == psiconv_clipart_file) { 73 } else if (value->type == psiconv_clipart_file) {
57 if ((res =psiconv_write_clipart_file(*buf, 74 if ((res =psiconv_write_clipart_file(config,*buf,
58 (psiconv_clipart_f) (value->file)))) 75 (psiconv_clipart_f) (value->file))))
59 goto ERROR; 76 goto ERROR;
60#endif 77#endif
61 } else { 78 } else {
62 psiconv_warn(0,0,"Unknown or unsupported file type"); 79 psiconv_warn(config,0,0,"Unknown or unsupported file type");
63 res = -PSICONV_E_GENERATE; 80 res = -PSICONV_E_GENERATE;
64 goto ERROR; 81 goto ERROR;
65 } 82 }
66 if ((res = psiconv_buffer_resolve(*buf))) 83 if ((res = psiconv_buffer_resolve(*buf)))
67 goto ERROR; 84 goto ERROR;
70ERROR: 87ERROR:
71 psiconv_buffer_free(*buf); 88 psiconv_buffer_free(*buf);
72 return res; 89 return res;
73} 90}
74 91
75int 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)
76{ 94{
77 psiconv_character_layout base_char; 95 psiconv_character_layout base_char;
78 psiconv_paragraph_layout base_para; 96 psiconv_paragraph_layout base_para;
79 int res; 97 int res;
80 psiconv_section_table_section section_table; 98 psiconv_section_table_section section_table;
81 psiconv_section_table_entry entry; 99 psiconv_section_table_entry entry;
82 psiconv_u32 section_table_id; 100 psiconv_u32 section_table_id;
83 psiconv_buffer buf_texted; 101 psiconv_buffer buf_texted;
84 102
85 if (!value) { 103 if (!value) {
86 psiconv_warn(0,0,"Null TextEd file"); 104 psiconv_warn(config,0,0,"Null TextEd file");
87 return -PSICONV_E_GENERATE; 105 return -PSICONV_E_GENERATE;
88 } 106 }
89 107
90 if (!(section_table = psiconv_list_new(sizeof(*entry)))) { 108 if (!(section_table = psiconv_list_new(sizeof(*entry)))) {
91 res = -PSICONV_E_NOMEM; 109 res = -PSICONV_E_NOMEM;
104 if (!(base_para = psiconv_basic_paragraph_layout())) { 122 if (!(base_para = psiconv_basic_paragraph_layout())) {
105 res = -PSICONV_E_NOMEM; 123 res = -PSICONV_E_NOMEM;
106 goto ERROR4; 124 goto ERROR4;
107 } 125 }
108 126
109 if ((res = psiconv_write_header_section(buf,PSICONV_ID_PSION5,
110 PSICONV_ID_DATA_FILE,
111 PSICONV_ID_TEXTED)))
112 goto ERROR5;
113
114 section_table_id = psiconv_buffer_unique_id(); 127 section_table_id = psiconv_buffer_unique_id();
115 if ((res = psiconv_write_offset(buf,section_table_id))) 128 if ((res = psiconv_write_offset(config,buf,section_table_id)))
116 goto ERROR5; 129 goto ERROR5;
117 130
118 entry->id = PSICONV_ID_APPL_ID_SECTION; 131 entry->id = PSICONV_ID_APPL_ID_SECTION;
119 entry->offset = psiconv_buffer_unique_id(); 132 entry->offset = psiconv_buffer_unique_id();
120 if ((res = psiconv_list_add(section_table,entry))) 133 if ((res = psiconv_list_add(section_table,entry)))
121 goto ERROR5; 134 goto ERROR5;
122 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 135 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
123 goto ERROR5; 136 goto ERROR5;
124 if ((res=psiconv_write_application_id_section(buf, 137 if ((res=psiconv_write_application_id_section(config,buf,
125 PSICONV_ID_TEXTED,"TextEd.app"))) 138 PSICONV_ID_TEXTED,"TextEd.app")))
126 goto ERROR5; 139 goto ERROR5;
127 140
128 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION; 141 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION;
129 entry->offset = psiconv_buffer_unique_id(); 142 entry->offset = psiconv_buffer_unique_id();
130 if ((res = psiconv_list_add(section_table,entry))) 143 if ((res = psiconv_list_add(section_table,entry)))
131 goto ERROR5; 144 goto ERROR5;
132 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 145 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
133 goto ERROR5; 146 goto ERROR5;
134 if ((res = psiconv_write_page_layout_section(buf,value->page_sec))) 147 if ((res = psiconv_write_page_layout_section(config,buf,value->page_sec)))
135 goto ERROR5; 148 goto ERROR5;
136 149
137 entry->id = PSICONV_ID_TEXTED; 150 entry->id = PSICONV_ID_TEXTED;
138 entry->offset = psiconv_buffer_unique_id(); 151 entry->offset = psiconv_buffer_unique_id();
139 if ((res = psiconv_list_add(section_table,entry))) 152 if ((res = psiconv_list_add(section_table,entry)))
140 goto ERROR5; 153 goto ERROR5;
141 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 154 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
142 goto ERROR5; 155 goto ERROR5;
143 if ((res = psiconv_write_texted_section(buf,value->texted_sec, 156 if ((res = psiconv_write_texted_section(config,buf,value->texted_sec,
144 base_char,base_para,&buf_texted))) 157 base_char,base_para,&buf_texted)))
145 goto ERROR5; 158 goto ERROR5;
146 159
147 if ((res = psiconv_buffer_concat(buf,buf_texted))) 160 if ((res = psiconv_buffer_concat(buf,buf_texted)))
148 goto ERROR6; 161 goto ERROR6;
149 162
150 163
151 if ((res = psiconv_buffer_add_target(buf,section_table_id))) 164 if ((res = psiconv_buffer_add_target(buf,section_table_id)))
152 goto ERROR6; 165 goto ERROR6;
153 166
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:
157 psiconv_buffer_free(buf_texted); 170 psiconv_buffer_free(buf_texted);
158ERROR5: 171ERROR5:
159 psiconv_free_paragraph_layout(base_para); 172 psiconv_free_paragraph_layout(base_para);
165 psiconv_list_free(section_table); 178 psiconv_list_free(section_table);
166ERROR1: 179ERROR1:
167 return res; 180 return res;
168} 181}
169 182
170int psiconv_write_word_file(psiconv_buffer buf,psiconv_word_f value) 183int psiconv_write_word_file(const psiconv_config config,
184 psiconv_buffer buf,psiconv_word_f value)
171{ 185{
172 int res; 186 int res;
173 psiconv_section_table_section section_table; 187 psiconv_section_table_section section_table;
174 psiconv_section_table_entry entry; 188 psiconv_section_table_entry entry;
175 psiconv_u32 section_table_id; 189 psiconv_u32 section_table_id;
176 190
177 if (!value) { 191 if (!value) {
178 psiconv_warn(0,0,"Null Word file"); 192 psiconv_warn(config,0,0,"Null Word file");
179 return -PSICONV_E_GENERATE; 193 return -PSICONV_E_GENERATE;
180 } 194 }
181 195
182 if (!(section_table = psiconv_list_new(sizeof(*entry)))) { 196 if (!(section_table = psiconv_list_new(sizeof(*entry)))) {
183 res = -PSICONV_E_NOMEM; 197 res = -PSICONV_E_NOMEM;
187 if (!(entry = malloc(sizeof(*entry)))) { 201 if (!(entry = malloc(sizeof(*entry)))) {
188 res = -PSICONV_E_NOMEM; 202 res = -PSICONV_E_NOMEM;
189 goto ERROR2; 203 goto ERROR2;
190 } 204 }
191 205
192 if ((res = psiconv_write_header_section(buf,PSICONV_ID_PSION5,
193 PSICONV_ID_DATA_FILE,
194 PSICONV_ID_WORD)))
195 goto ERROR3;
196
197 section_table_id = psiconv_buffer_unique_id(); 206 section_table_id = psiconv_buffer_unique_id();
198 if ((res = psiconv_write_offset(buf,section_table_id))) 207 if ((res = psiconv_write_offset(config,buf,section_table_id)))
199 goto ERROR3; 208 goto ERROR3;
200 209
201 entry->id = PSICONV_ID_APPL_ID_SECTION; 210 entry->id = PSICONV_ID_APPL_ID_SECTION;
202 entry->offset = psiconv_buffer_unique_id(); 211 entry->offset = psiconv_buffer_unique_id();
203 if ((res = psiconv_list_add(section_table,entry))) 212 if ((res = psiconv_list_add(section_table,entry)))
204 goto ERROR3; 213 goto ERROR3;
205 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 214 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
206 goto ERROR3; 215 goto ERROR3;
207 if ((res=psiconv_write_application_id_section(buf, 216 if ((res=psiconv_write_application_id_section(config,buf,
208 PSICONV_ID_WORD,"Word.app"))) 217 PSICONV_ID_WORD,"Word.app")))
209 goto ERROR3; 218 goto ERROR3;
210 219
211 entry->id = PSICONV_ID_WORD_STATUS_SECTION; 220 entry->id = PSICONV_ID_WORD_STATUS_SECTION;
212 entry->offset = psiconv_buffer_unique_id(); 221 entry->offset = psiconv_buffer_unique_id();
213 if ((res = psiconv_list_add(section_table,entry))) 222 if ((res = psiconv_list_add(section_table,entry)))
214 goto ERROR3; 223 goto ERROR3;
215 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 224 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
216 goto ERROR3; 225 goto ERROR3;
217 if ((res = psiconv_write_word_status_section(buf,value->status_sec))) 226 if ((res = psiconv_write_word_status_section(config,buf,value->status_sec)))
218 goto ERROR3; 227 goto ERROR3;
219 228
220 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION; 229 entry->id = PSICONV_ID_PAGE_LAYOUT_SECTION;
221 entry->offset = psiconv_buffer_unique_id(); 230 entry->offset = psiconv_buffer_unique_id();
222 if ((res = psiconv_list_add(section_table,entry))) 231 if ((res = psiconv_list_add(section_table,entry)))
223 goto ERROR3; 232 goto ERROR3;
224 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 233 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
225 goto ERROR3; 234 goto ERROR3;
226 if ((res = psiconv_write_page_layout_section(buf,value->page_sec))) 235 if ((res = psiconv_write_page_layout_section(config,buf,value->page_sec)))
227 goto ERROR3; 236 goto ERROR3;
228 237
229 entry->id = PSICONV_ID_WORD_STYLES_SECTION; 238 entry->id = PSICONV_ID_WORD_STYLES_SECTION;
230 entry->offset = psiconv_buffer_unique_id(); 239 entry->offset = psiconv_buffer_unique_id();
231 if ((res = psiconv_list_add(section_table,entry))) 240 if ((res = psiconv_list_add(section_table,entry)))
232 goto ERROR3; 241 goto ERROR3;
233 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 242 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
234 goto ERROR3; 243 goto ERROR3;
235 if ((res = psiconv_write_word_styles_section(buf,value->styles_sec))) 244 if ((res = psiconv_write_word_styles_section(config,buf,value->styles_sec)))
236 goto ERROR3; 245 goto ERROR3;
237 246
238 entry->id = PSICONV_ID_TEXT_SECTION; 247 entry->id = PSICONV_ID_TEXT_SECTION;
239 entry->offset = psiconv_buffer_unique_id(); 248 entry->offset = psiconv_buffer_unique_id();
240 if ((res = psiconv_list_add(section_table,entry))) 249 if ((res = psiconv_list_add(section_table,entry)))
241 goto ERROR3; 250 goto ERROR3;
242 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 251 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
243 goto ERROR3; 252 goto ERROR3;
244 if ((res = psiconv_write_text_section(buf,value->paragraphs))) 253 if ((res = psiconv_write_text_section(config,buf,value->paragraphs)))
245 goto ERROR3; 254 goto ERROR3;
246 255
247 entry->id = PSICONV_ID_LAYOUT_SECTION; 256 entry->id = PSICONV_ID_LAYOUT_SECTION;
248 entry->offset = psiconv_buffer_unique_id(); 257 entry->offset = psiconv_buffer_unique_id();
249 if ((res = psiconv_list_add(section_table,entry))) 258 if ((res = psiconv_list_add(section_table,entry)))
250 goto ERROR3; 259 goto ERROR3;
251 if ((res = psiconv_buffer_add_target(buf,entry->offset))) 260 if ((res = psiconv_buffer_add_target(buf,entry->offset)))
252 goto ERROR3; 261 goto ERROR3;
253 if ((res = psiconv_write_styled_layout_section(buf,value->paragraphs, 262 if ((res = psiconv_write_styled_layout_section(config,buf,value->paragraphs,
254 value->styles_sec))) 263 value->styles_sec)))
255 goto ERROR3; 264 goto ERROR3;
256 265
257 if ((res = psiconv_buffer_add_target(buf,section_table_id))) 266 if ((res = psiconv_buffer_add_target(buf,section_table_id)))
258 goto ERROR3; 267 goto ERROR3;
259 268
260 res = psiconv_write_section_table_section(buf,section_table); 269 res = psiconv_write_section_table_section(config,buf,section_table);
261 270
262ERROR3: 271ERROR3:
263 free(entry); 272 free(entry);
264ERROR2: 273ERROR2:
265 psiconv_list_free(section_table); 274 psiconv_list_free(section_table);
266ERROR1: 275ERROR1:
267 return res; 276 return res;
268} 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.82  
changed lines
  Added in v.170

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