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

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

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

Revision 162 Revision 268
1/* 1/*
2 parse_common.c - Part of psiconv, a PSION 5 file formats converter 2 parse_common.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 1999, 2000 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 1999-2004 Frodo Looijaard <frodol@dds.nl>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
28#ifdef DMALLOC 28#ifdef DMALLOC
29#include <dmalloc.h> 29#include <dmalloc.h>
30#endif 30#endif
31 31
32 32
33static int psiconv_parse_layout_section(const psiconv_buffer buf, 33static int psiconv_parse_layout_section(const psiconv_config config,
34 const psiconv_buffer buf,
34 int lev,psiconv_u32 off, 35 int lev,psiconv_u32 off,
35 int *length, 36 int *length,
36 psiconv_text_and_layout result, 37 psiconv_text_and_layout result,
37 psiconv_word_styles_section styles, 38 psiconv_word_styles_section styles,
38 int with_styles); 39 int with_styles);
39static psiconv_file_type_t psiconv_determine_embedded_object_type 40static psiconv_file_type_t psiconv_determine_embedded_object_type
40 (const psiconv_buffer buf,int lev, 41 (const psiconv_config config,
42 const psiconv_buffer buf,int lev,
41 int *status); 43 int *status);
42 44
43int psiconv_parse_header_section(const psiconv_buffer buf,int lev, 45int psiconv_parse_header_section(const psiconv_config config,
46 const psiconv_buffer buf,int lev,
44 psiconv_u32 off, int *length, 47 psiconv_u32 off, int *length,
45 psiconv_header_section *result) 48 psiconv_header_section *result)
46{ 49{
47 int res=0; 50 int res=0;
48 int len=0; 51 int len=0;
49 psiconv_u32 temp; 52 psiconv_u32 temp;
50 53
51 psiconv_progress(lev+1,off+len,"Going to read the header section"); 54 psiconv_progress(config,lev+1,off+len,"Going to read the header section");
52 if (!((*result) = malloc(sizeof(**result)))) 55 if (!((*result) = malloc(sizeof(**result))))
53 goto ERROR1; 56 goto ERROR1;
54 57
55 psiconv_progress(lev+2,off+len,"Going to read UID1 to UID3"); 58 psiconv_progress(config,lev+2,off+len,"Going to read UID1 to UID3");
56 (*result)->uid1 = psiconv_read_u32(buf,lev+2,off+len,&res); 59 (*result)->uid1 = psiconv_read_u32(config,buf,lev+2,off+len,&res);
57 if (res) 60 if (res)
58 goto ERROR2; 61 goto ERROR2;
59 psiconv_debug(lev+2,off+len,"UID1: %08x",(*result)->uid1); 62 psiconv_debug(config,lev+2,off+len,"UID1: %08x",(*result)->uid1);
60 if ((*result)->uid1 == PSICONV_ID_CLIPART) { 63 if ((*result)->uid1 == PSICONV_ID_CLIPART) {
61 /* That's all folks... */ 64 /* That's all folks... */
62 (*result)->file = psiconv_clipart_file; 65 (*result)->file = psiconv_clipart_file;
63 (*result)->uid2 = 0; 66 (*result)->uid2 = 0;
64 (*result)->uid3 = 0; 67 (*result)->uid3 = 0;
65 (*result)->checksum = 0; 68 (*result)->checksum = 0;
66 len += 4; 69 len += 4;
67 psiconv_debug(lev+2,off+len,"File is a Clipart file"); 70 psiconv_debug(config,lev+2,off+len,"File is a Clipart file");
68 goto DONE; 71 goto DONE;
69 } 72 }
70 if ((*result)->uid1 != PSICONV_ID_PSION5) { 73 if ((*result)->uid1 != PSICONV_ID_PSION5) {
71 psiconv_warn(lev+2,off+len,"UID1 has unknown value. This is probably " 74 psiconv_error(config,lev+2,off+len,
75 "UID1 has unknown value. This is probably "
72 "not a (parsable) Psion 5 file"); 76 "not a (parsable) Psion 5 file");
73 res = -PSICONV_E_PARSE; 77 res = -PSICONV_E_PARSE;
74 goto ERROR2; 78 goto ERROR2;
75 } 79 }
76 len += 4; 80 len += 4;
77 (*result)->uid2 = psiconv_read_u32(buf,lev+2,off+len,&res); 81 (*result)->uid2 = psiconv_read_u32(config,buf,lev+2,off+len,&res);
78 if (res) 82 if (res)
79 goto ERROR2; 83 goto ERROR2;
80 psiconv_debug(lev+2,off+len,"UID2: %08x",(*result)->uid2); 84 psiconv_debug(config,lev+2,off+len,"UID2: %08x",(*result)->uid2);
81 len += 4; 85 len += 4;
82 (*result)->uid3 = psiconv_read_u32(buf,lev+2,off+len,&res); 86 (*result)->uid3 = psiconv_read_u32(config,buf,lev+2,off+len,&res);
83 if (res) 87 if (res)
84 goto ERROR2; 88 goto ERROR2;
85 psiconv_debug(lev+2,off+len,"UID3: %08x",(*result)->uid3); 89 psiconv_debug(config,lev+2,off+len,"UID3: %08x",(*result)->uid3);
86 len += 4; 90 len += 4;
87 91
88 (*result)->file = psiconv_unknown_file; 92 (*result)->file = psiconv_unknown_file;
89 if ((*result)->uid1 == PSICONV_ID_PSION5) { 93 if ((*result)->uid1 == PSICONV_ID_PSION5) {
90 if ((*result)->uid2 == PSICONV_ID_DATA_FILE) { 94 if ((*result)->uid2 == PSICONV_ID_DATA_FILE) {
91 if ((*result)->uid3 == PSICONV_ID_WORD) { 95 if ((*result)->uid3 == PSICONV_ID_WORD) {
92 (*result)->file = psiconv_word_file; 96 (*result)->file = psiconv_word_file;
93 psiconv_debug(lev+2,off+len,"File is a Word file"); 97 psiconv_debug(config,lev+2,off+len,"File is a Word file");
94 } else if ((*result)->uid3 == PSICONV_ID_TEXTED) { 98 } else if ((*result)->uid3 == PSICONV_ID_TEXTED) {
95 (*result)->file = psiconv_texted_file; 99 (*result)->file = psiconv_texted_file;
96 psiconv_debug(lev+2,off+len,"File is a TextEd file"); 100 psiconv_debug(config,lev+2,off+len,"File is a TextEd file");
97 } else if ((*result)->uid3 == PSICONV_ID_SKETCH) { 101 } else if ((*result)->uid3 == PSICONV_ID_SKETCH) {
98 (*result)->file = psiconv_sketch_file; 102 (*result)->file = psiconv_sketch_file;
99 psiconv_debug(lev+2,off+len,"File is a Sketch file"); 103 psiconv_debug(config,lev+2,off+len,"File is a Sketch file");
100 } else if ((*result)->uid3 == PSICONV_ID_SHEET) { 104 } else if ((*result)->uid3 == PSICONV_ID_SHEET) {
101 (*result)->file = psiconv_sheet_file; 105 (*result)->file = psiconv_sheet_file;
102 psiconv_debug(lev+2,off+len,"File is a Sheet file"); 106 psiconv_debug(config,lev+2,off+len,"File is a Sheet file");
103 } 107 }
104 } else if ((*result)->uid2 == PSICONV_ID_MBM_FILE) { 108 } else if ((*result)->uid2 == PSICONV_ID_MBM_FILE) {
105 (*result)->file = psiconv_mbm_file; 109 (*result)->file = psiconv_mbm_file;
106 if ((*result)->uid3 != 0x00) 110 if ((*result)->uid3 != 0x00)
107 psiconv_warn(lev+2,off+len,"UID3 set in MBM file?!?"); 111 psiconv_warn(config,lev+2,off+len,"UID3 set in MBM file?!?");
108 psiconv_debug(lev+2,off+len,"File is a MBM file"); 112 psiconv_debug(config,lev+2,off+len,"File is a MBM file");
109 } 113 }
110 } 114 }
111 if ((*result)->file == psiconv_unknown_file) { 115 if ((*result)->file == psiconv_unknown_file) {
112 psiconv_warn(lev+2,off+len,"Unknown file type"); 116 psiconv_warn(config,lev+2,off+len,"Unknown file type");
113 (*result)->file = psiconv_unknown_file; 117 (*result)->file = psiconv_unknown_file;
114 } 118 }
115 119
116 psiconv_progress(lev+2,off+len,"Checking UID4"); 120 psiconv_progress(config,lev+2,off+len,"Checking UID4");
117 temp = psiconv_read_u32(buf,lev+2,off+len,&res); 121 temp = psiconv_read_u32(config,buf,lev+2,off+len,&res);
118 if (res) 122 if (res)
119 goto ERROR2; 123 goto ERROR2;
120 if (temp == psiconv_checkuid((*result)->uid1,(*result)->uid2, 124 if (temp == psiconv_checkuid((*result)->uid1,(*result)->uid2,
121 (*result)->uid3)) 125 (*result)->uid3))
122 psiconv_debug(lev+2,off+len,"Checksum %08x is correct",temp); 126 psiconv_debug(config,lev+2,off+len,"Checksum %08x is correct",temp);
123 else { 127 else {
124 psiconv_warn(lev+2,off+len,"Checksum failed, file corrupted!"); 128 psiconv_error(config,lev+2,off+len,"Checksum failed, file corrupted!");
125 psiconv_debug(lev+2,off+len,"Expected checksum %08x, found %08x", 129 psiconv_debug(config,lev+2,off+len,"Expected checksum %08x, found %08x",
126 psiconv_checkuid((*result)->uid1,(*result)->uid2, 130 psiconv_checkuid((*result)->uid1,(*result)->uid2,
127 (*result)->uid3),temp); 131 (*result)->uid3),temp);
128 res = -PSICONV_E_PARSE; 132 res = -PSICONV_E_PARSE;
129 goto ERROR2; 133 goto ERROR2;
130 } 134 }
132 136
133DONE: 137DONE:
134 if (length) 138 if (length)
135 *length = len; 139 *length = len;
136 140
137 psiconv_progress(lev+1,off+len-1, 141 psiconv_progress(config,lev+1,off+len-1,
138 "End of Header Section (total length: %08x)",len); 142 "End of Header Section (total length: %08x)",len);
139 143
140 return res; 144 return res;
141 145
142ERROR2: 146ERROR2:
143 free(*result); 147 free(*result);
144ERROR1: 148ERROR1:
145 psiconv_warn(lev+1,off,"Reading of Header Section failed"); 149 psiconv_error(config,lev+1,off,"Reading of Header Section failed");
146 if (length) 150 if (length)
147 *length = 0; 151 *length = 0;
148 if (res == 0) 152 if (res == 0)
149 return -PSICONV_E_NOMEM; 153 return -PSICONV_E_NOMEM;
150 else 154 else
151 return res; 155 return res;
152} 156}
153 157
154int psiconv_parse_section_table_section(const psiconv_buffer buf, int lev, 158int psiconv_parse_section_table_section(const psiconv_config config,
159 const psiconv_buffer buf, int lev,
155 psiconv_u32 off, int *length, 160 psiconv_u32 off, int *length,
156 psiconv_section_table_section *result) 161 psiconv_section_table_section *result)
157{ 162{
158 int res=0; 163 int res=0;
159 int len=0; 164 int len=0;
160 psiconv_section_table_entry entry; 165 psiconv_section_table_entry entry;
161 166
162 int i; 167 int i;
163 psiconv_u8 nr; 168 psiconv_u8 nr;
164 169
165 psiconv_progress(lev+1,off+len,"Going to read the section table section"); 170 psiconv_progress(config,lev+1,off+len,"Going to read the section table section");
166 if (!(*result = psiconv_list_new(sizeof(*entry)))) 171 if (!(*result = psiconv_list_new(sizeof(*entry))))
167 goto ERROR1; 172 goto ERROR1;
168 173
169 psiconv_progress(lev+2,off+len,"Going to read the section table length"); 174 psiconv_progress(config,lev+2,off+len,"Going to read the section table length");
170 nr = psiconv_read_u8(buf,lev+2,off+len,&res); 175 nr = psiconv_read_u8(config,buf,lev+2,off+len,&res);
171 if (res) 176 if (res)
172 goto ERROR2; 177 goto ERROR2;
173 psiconv_debug(lev+2,off+len,"Length: %08x",nr); 178 psiconv_debug(config,lev+2,off+len,"Length: %08x",nr);
174 if (nr & 0x01) { 179 if (nr & 0x01) {
175 psiconv_warn(lev+2,off+len, 180 psiconv_warn(config,lev+2,off+len,
176 "Section table length odd - ignoring last entry"); 181 "Section table length odd - ignoring last entry");
177 } 182 }
178 len ++; 183 len ++;
179 184
180 psiconv_progress(lev+2,off+len,"Going to read the section table entries"); 185 psiconv_progress(config,lev+2,off+len,"Going to read the section table entries");
181 entry = malloc(sizeof(*entry)); 186 entry = malloc(sizeof(*entry));
182 for (i = 0; i < nr / 2; i++) { 187 for (i = 0; i < nr / 2; i++) {
183 entry->id = psiconv_read_u32(buf,lev+2,off + len,&res); 188 entry->id = psiconv_read_u32(config,buf,lev+2,off + len,&res);
184 if (res) 189 if (res)
185 goto ERROR3; 190 goto ERROR3;
186 psiconv_debug(lev+2,off + len,"Entry %d: ID = %08x",i,entry->id); 191 psiconv_debug(config,lev+2,off + len,"Entry %d: ID = %08x",i,entry->id);
187 len += 0x04; 192 len += 0x04;
188 entry->offset = psiconv_read_u32(buf,lev+2,off + len,&res); 193 entry->offset = psiconv_read_u32(config,buf,lev+2,off + len,&res);
189 if (res) 194 if (res)
190 goto ERROR3; 195 goto ERROR3;
191 psiconv_debug(lev+2,off +len,"Entry %d: Offset = %08x",i,entry->offset); 196 psiconv_debug(config,lev+2,off +len,"Entry %d: Offset = %08x",i,entry->offset);
192 len += 0x04; 197 len += 0x04;
193 if ((res=psiconv_list_add(*result,entry))) 198 if ((res=psiconv_list_add(*result,entry)))
194 goto ERROR3; 199 goto ERROR3;
195 } 200 }
196 201
197 free(entry); 202 free(entry);
198 203
199 if (length) 204 if (length)
200 *length = len; 205 *length = len;
201 206
202 psiconv_progress(lev+1,off+len-1,"End of section table section " 207 psiconv_progress(config,lev+1,off+len-1,"End of section table section "
203 "(total length: %08x)", len); 208 "(total length: %08x)", len);
204 209
205 return 0; 210 return 0;
206ERROR3: 211ERROR3:
207 free(entry); 212 free(entry);
208ERROR2: 213ERROR2:
209 psiconv_list_free(*result); 214 psiconv_list_free(*result);
210ERROR1: 215ERROR1:
211 psiconv_warn(lev+1,off,"Reading of Section Table Section failed"); 216 psiconv_error(config,lev+1,off,"Reading of Section Table Section failed");
212 if (length) 217 if (length)
213 *length = 0; 218 *length = 0;
214 if (res == 0) 219 if (res == 0)
215 return -PSICONV_E_NOMEM; 220 return -PSICONV_E_NOMEM;
216 else 221 else
217 return res; 222 return res;
218} 223}
219 224
220int psiconv_parse_application_id_section(const psiconv_buffer buf, int lev, 225int psiconv_parse_application_id_section(const psiconv_config config,
226 const psiconv_buffer buf, int lev,
221 psiconv_u32 off, int *length, 227 psiconv_u32 off, int *length,
222 psiconv_application_id_section *result) 228 psiconv_application_id_section *result)
223{ 229{
224 int res=0; 230 int res=0;
225 int len=0; 231 int len=0;
226 int leng; 232 int leng;
227 233
228 psiconv_progress(lev+1,off,"Going to read the application id section"); 234 psiconv_progress(config,lev+1,off,"Going to read the application id section");
229 if (!(*result = malloc(sizeof(**result)))) 235 if (!(*result = malloc(sizeof(**result))))
230 goto ERROR1; 236 goto ERROR1;
231 237
232 psiconv_progress(lev+2,off+len,"Going to read the type identifier"); 238 psiconv_progress(config,lev+2,off+len,"Going to read the type identifier");
233 (*result)->id = psiconv_read_u32(buf,lev+2,off+len,&res); 239 (*result)->id = psiconv_read_u32(config,buf,lev+2,off+len,&res);
234 if (res) 240 if (res)
235 goto ERROR2; 241 goto ERROR2;
236 psiconv_debug(lev+2,off+len,"Identifier: %08x",(*result)->id); 242 psiconv_debug(config,lev+2,off+len,"Identifier: %08x",(*result)->id);
237 len += 4; 243 len += 4;
238 244
239 psiconv_progress(lev+2,off+len,"Going to read the application id string"); 245 psiconv_progress(config,lev+2,off+len,"Going to read the application id string");
240 (*result)->name = psiconv_read_string(buf,lev+2,off+len,&leng,&res); 246 (*result)->name = psiconv_read_string(config,buf,lev+2,off+len,&leng,&res);
241 if (res) 247 if (res)
242 goto ERROR2; 248 goto ERROR2;
243 len += leng; 249 len += leng;
244 250
245 if (length) 251 if (length)
246 *length = len; 252 *length = len;
247 253
248 psiconv_progress(lev+1,off+len-1,"End of application id section " 254 psiconv_progress(config,lev+1,off+len-1,"End of application id section "
249 "(total length: %08x", len); 255 "(total length: %08x", len);
250 256
251 return res; 257 return res;
252ERROR2: 258ERROR2:
253 free(*result); 259 free(*result);
254ERROR1: 260ERROR1:
255 psiconv_warn(lev+1,off,"Reading of Application ID Section failed"); 261 psiconv_error(config,lev+1,off,"Reading of Application ID Section failed");
256 if (length) 262 if (length)
257 *length = 0; 263 *length = 0;
258 if (res == 0) 264 if (res == 0)
259 return -PSICONV_E_NOMEM; 265 return -PSICONV_E_NOMEM;
260 else 266 else
261 return res; 267 return res;
262} 268}
263 269
264int psiconv_parse_text_section(const psiconv_buffer buf,int lev,psiconv_u32 off, 270int psiconv_parse_text_section(const psiconv_config config,
271 const psiconv_buffer buf,int lev,psiconv_u32 off,
265 int *length,psiconv_text_and_layout *result) 272 int *length,psiconv_text_and_layout *result)
266{ 273{
267 274
268 int res = 0; 275 int res = 0;
269 int len=0; 276 int len=0;
270 277
271 psiconv_u32 text_len; 278 psiconv_u32 text_len;
272 psiconv_paragraph para; 279 psiconv_paragraph para;
280 psiconv_ucs2 temp;
281 psiconv_list line;
273 282
274 int nr; 283 int nr;
275 int i,j,start,leng,temp; 284 int i,leng;
276 char *str_copy; 285 char *str_copy;
277 286
278 psiconv_progress(lev+1,off,"Going to parse the text section"); 287 psiconv_progress(config,lev+1,off,"Going to parse the text section");
279 psiconv_progress(lev+2,off,"Reading the text length");
280 288
281 if(!(*result = psiconv_list_new(sizeof(*para)))) 289 if(!(*result = psiconv_list_new(sizeof(*para))))
282 goto ERROR1; 290 goto ERROR1;
283 if (!(para = malloc(sizeof(*para)))) 291 if (!(para = malloc(sizeof(*para))))
284 goto ERROR2; 292 goto ERROR2;
285 293
294 psiconv_progress(config,lev+2,off,"Reading the text length");
286 text_len = psiconv_read_X(buf,lev+2,off,&leng,&res); 295 text_len = psiconv_read_X(config,buf,lev+2,off,&leng,&res);
287 if (res) 296 if (res)
288 goto ERROR3; 297 goto ERROR3;
289 psiconv_debug(lev+2,off,"Length: %08x",text_len); 298 psiconv_debug(config,lev+2,off,"Length: %08x",text_len);
290 len += leng; 299 len += leng;
291 300
292 psiconv_progress(lev+2,off+len,"Going to read all paragraph text"); 301 if (!(line = psiconv_list_new(sizeof(psiconv_ucs2))))
302 goto ERROR3;
303
304 i = 0;
293 nr = 0; 305 nr = 0;
294 start = 0; 306 while (i < text_len) {
295 for (i = 0; i < text_len; i++) {
296 temp = psiconv_read_u8(buf,lev+2,off+len+i,&res); 307 temp = psiconv_unicode_read_char(config,buf,lev+2,off+len+i,&leng,&res);
297 if (res) 308 if (res)
298 goto ERROR3; 309 goto ERROR4;
299 if (temp == 0x06) { 310 if (i + leng > text_len) {
300 if (!(para->text = malloc(i - start + 1))) 311 psiconv_error(config,lev+2,off+len+i,"Malformed text section");
312 res = PSICONV_E_PARSE;
313 goto ERROR4;
314 }
315 if ((temp == 0x06) || (i + leng == text_len)) {
316 if (!(para->text = psiconv_unicode_from_list(line)))
317 goto ERROR4;
318
319 if (!(str_copy = psiconv_make_printable(config,para->text)))
301 goto ERROR3; 320 goto ERROR5;
302 for (j = 0; j < i - start; j++) { 321 psiconv_debug(config,lev+2,off+i+len,"Line %d: %d characters",nr,
303 temp = psiconv_read_u8(buf,lev+1,off + len + start + j,&res); 322 strlen(str_copy) +1);
304 if (res) 323 psiconv_debug(config,lev+2,off+i+len,"Line %d: `%s'",nr,str_copy);
305 goto ERROR4; 324 free(str_copy);
306 para->text[j] = temp; 325 i += leng;
307 } 326
308 para->text[j] = 0; 327 if (!(para->in_lines = psiconv_list_new(sizeof(
309 328 struct psiconv_in_line_layout_s))))
329 goto ERROR5;
330 if (!(para->replacements = psiconv_list_new(sizeof(
331 struct psiconv_replacement_s))))
332 goto ERROR6;
333 if (!(para->base_character = psiconv_basic_character_layout()))
334 goto ERROR7;
335 if (!(para->base_paragraph = psiconv_basic_paragraph_layout()))
336 goto ERROR8;
337 para->base_style = 0;
338
310 if ((res = psiconv_list_add(*result,para))) 339 if ((res = psiconv_list_add(*result,para)))
311 goto ERROR4; 340 goto ERROR9;
312 341 psiconv_progress(config,lev+2,off+len+i,"Starting a new line");
313 if (!(str_copy = psiconv_make_printable(para->text))) 342 psiconv_list_empty(line);
314 goto ERROR3;
315 psiconv_debug(lev+2,off+i+len,"Line %d: %d characters",nr,
316 strlen(str_copy) +1);
317 psiconv_debug(lev+2,off+i+len,"Line %d: `%s'",nr,str_copy);
318 free(str_copy);
319
320 start = i + 1;
321 nr ++; 343 nr ++;
344 } else {
345 if ((res = psiconv_list_add(line,&temp)))
346 goto ERROR4;
347 i += leng;
322 } 348 }
323 } 349 }
324 350
325 if (start != text_len) { 351 psiconv_list_free(line);
326 psiconv_warn(lev+2,off+start+len,
327 "Last line does not end on EOL (%d characters left)", len - start);
328 if (!(para->text = malloc(text_len - start + 1)))
329 goto ERROR3;
330 for (j = 0; j < text_len - start; j++) {
331 temp = psiconv_read_u8(buf,lev+2,off + start + j + len, &res);
332 if (res)
333 goto ERROR4;
334 para->text[j] = temp;
335 }
336 para->text[text_len - start] = 0;
337 if ((res = psiconv_list_add(*result,para)))
338 goto ERROR4;
339 if (!(str_copy = psiconv_make_printable(para->text)))
340 goto ERROR3;
341 psiconv_debug(lev+2,off+start+len,"Last line: %d characters",nr,
342 strlen(str_copy)+1);
343 psiconv_debug(lev+2,off+start+len,"Last line: `%s'",str_copy);
344 free(str_copy);
345 }
346
347 free(para); 352 free(para);
348 353
349 /* Initialize the remaining parts of each paragraph */
350 for (i = 0; i < psiconv_list_length(*result); i ++) {
351 if (!(para = psiconv_list_get(*result,i))) {
352 psiconv_warn(lev+2,off+len,"Massive memory corruption");
353 goto ERROR2_0;
354 }
355 if (!(para->in_lines = psiconv_list_new(sizeof(
356 struct psiconv_in_line_layout_s))))
357 goto ERROR2_0;
358 if (!(para->replacements = psiconv_list_new(sizeof(
359 struct psiconv_replacement_s))))
360 goto ERROR2_1;
361 if (!(para->base_character = psiconv_basic_character_layout()))
362 goto ERROR2_2;
363 if (!(para->base_paragraph = psiconv_basic_paragraph_layout()))
364 goto ERROR2_3;
365 para->base_style = 0;
366 }
367
368
369 len += text_len; 354 len += text_len;
370 355
371 if (length) 356 if (length)
372 *length = len; 357 *length = len;
373 358
374 psiconv_progress(lev+1,off+len-1,"End of text section (total length: %08x", 359 psiconv_progress(config,lev+1,off+len-1,
375 len); 360 "End of text section (total length: %08x", len);
376 361
377 return res; 362 return res;
378 363
379ERROR2_3: 364ERROR9:
365 psiconv_free_paragraph_layout(para->base_paragraph);
366ERROR8:
380 psiconv_free_character_layout(para->base_character); 367 psiconv_free_character_layout(para->base_character);
381ERROR2_2: 368ERROR7:
382 psiconv_list_free(para->replacements); 369 psiconv_list_free(para->replacements);
383ERROR2_1: 370ERROR6:
384 psiconv_list_free(para->in_lines); 371 psiconv_list_free(para->in_lines);
385ERROR2_0: 372ERROR5:
386 for (j = 0; j < i; j++) { 373 free(para->text);
387 if (!(para = psiconv_list_get(*result,j))) {
388 psiconv_warn(lev+1,off,"Massive memory corruption...");
389 break;
390 }
391 psiconv_list_free(para->in_lines);
392 psiconv_list_free(para->replacements);
393 psiconv_free_character_layout(para->base_character);
394 psiconv_free_paragraph_layout(para->base_paragraph);
395 }
396 goto ERROR2;
397
398ERROR4: 374ERROR4:
399 free(para->text); 375 psiconv_list_free(line);
400ERROR3: 376ERROR3:
401 free(para); 377 free(para);
402ERROR2: 378ERROR2:
403 for (i = 0; i < psiconv_list_length(*result);i++) { 379 psiconv_free_text_and_layout(*result);
404 if (!(para = psiconv_list_get(*result,i))) {
405 psiconv_warn(lev+1,off,"Massive memory corruption...");
406 break;
407 }
408 free(para->text);
409 }
410 psiconv_list_free(*result);
411ERROR1: 380ERROR1:
412 psiconv_warn(lev+1,off,"Reading of Text Section failed"); 381 psiconv_error(config,lev+1,off,"Reading of Text Section failed");
413 if (length) 382 if (length)
414 *length = 0; 383 *length = 0;
415 if (!res) 384 if (!res)
416 return -PSICONV_E_NOMEM; 385 return -PSICONV_E_NOMEM;
417 else 386 else
418 return res; 387 return res;
419} 388}
420 389
421/* First do a parse_text_section, or you will get into trouble here */ 390/* First do a parse_text_section, or you will get into trouble here */
422int psiconv_parse_layout_section(const psiconv_buffer buf, 391int psiconv_parse_layout_section(const psiconv_config config,
392 const psiconv_buffer buf,
423 int lev,psiconv_u32 off, 393 int lev,psiconv_u32 off,
424 int *length, 394 int *length,
425 psiconv_text_and_layout result, 395 psiconv_text_and_layout result,
426 psiconv_word_styles_section styles, 396 psiconv_word_styles_section styles,
427 int with_styles) 397 int with_styles)
452 struct psiconv_in_line_layout_s in_line; 422 struct psiconv_in_line_layout_s in_line;
453 423
454 int *inline_count; 424 int *inline_count;
455 425
456 426
457 psiconv_progress(lev+1,off,"Going to read the layout section"); 427 psiconv_progress(config,lev+1,off,"Going to read the layout section");
458 428
459 psiconv_progress(lev+2,off,"Going to read the section type"); 429 psiconv_progress(config,lev+2,off,"Going to read the section type");
460 temp = psiconv_read_u16(buf,lev+2,off+len,&res); 430 temp = psiconv_read_u16(config,buf,lev+2,off+len,&res);
461 if (res) 431 if (res)
462 goto ERROR1; 432 goto ERROR1;
463 psiconv_debug(lev+2,off+len,"Type: %02x",temp); 433 psiconv_debug(config,lev+2,off+len,"Type: %02x",temp);
464 parse_styles = with_styles; 434 parse_styles = with_styles;
465 if ((temp == 0x0001) && !with_styles) { 435 if ((temp == 0x0001) && !with_styles) {
466 psiconv_warn(lev+2,off+len,"Styleless layout section expected, " 436 psiconv_warn(config,lev+2,off+len,"Styleless layout section expected, "
467 "but styled section found!"); 437 "but styled section found!");
468 parse_styles = 1; 438 parse_styles = 1;
469 } else if ((temp == 0x0000) && (with_styles)) { 439 } else if ((temp == 0x0000) && (with_styles)) {
470 psiconv_warn(lev+2,off+len,"Styled layout section expected, " 440 psiconv_warn(config,lev+2,off+len,"Styled layout section expected, "
471 "but styleless section found!"); 441 "but styleless section found!");
472 parse_styles = 0; 442 parse_styles = 0;
473 } else if ((temp != 0x0000) && (temp != 0x0001)) { 443 } else if ((temp != 0x0000) && (temp != 0x0001)) {
474 psiconv_warn(lev+2,off+len, 444 psiconv_warn(config,lev+2,off+len,
475 "Layout section type indicator has unknown value!"); 445 "Layout section type indicator has unknown value!");
476 } 446 }
477 len += 0x02; 447 len += 0x02;
478 448
479 psiconv_progress(lev+2,off+len,"Going to read paragraph type list"); 449 psiconv_progress(config,lev+2,off+len,"Going to read paragraph type list");
480 if (!(anon_styles = psiconv_list_new(sizeof(anon)))) 450 if (!(anon_styles = psiconv_list_new(sizeof(anon))))
481 goto ERROR1; 451 goto ERROR1;
482 psiconv_progress(lev+3,off+len,"Going to read paragraph type list length"); 452 psiconv_progress(config,lev+3,off+len,"Going to read paragraph type list length");
483 nr = psiconv_read_u8(buf,lev+3,off+len,&res); 453 nr = psiconv_read_u8(config,buf,lev+3,off+len,&res);
484 if (res) 454 if (res)
485 goto ERROR2; 455 goto ERROR2;
486 psiconv_debug(lev+3,off+len,"Length: %02x",nr); 456 psiconv_debug(config,lev+3,off+len,"Length: %02x",nr);
487 len ++; 457 len ++;
488 458
489 psiconv_progress(lev+3,off+len, 459 psiconv_progress(config,lev+3,off+len,
490 "Going to read the paragraph type list elements"); 460 "Going to read the paragraph type list elements");
491 for (i = 0; i < nr; i ++) { 461 for (i = 0; i < nr; i ++) {
492 psiconv_progress(lev+3,off+len,"Element %d",i); 462 psiconv_progress(config,lev+3,off+len,"Element %d",i);
493 anon.nr = psiconv_read_u32(buf,lev+4,off+len,&res); 463 anon.nr = psiconv_read_u32(config,buf,lev+4,off+len,&res);
494 if (res) 464 if (res)
495 goto ERROR3; 465 goto ERROR3;
496 psiconv_debug(lev+4,off+len,"Number: %08x",anon.nr); 466 psiconv_debug(config,lev+4,off+len,"Number: %08x",anon.nr);
497 len += 0x04; 467 len += 0x04;
498 468
499 psiconv_progress(lev+4,off,"Going to determine the base style"); 469 psiconv_progress(config,lev+4,off,"Going to determine the base style");
500 if (parse_styles) { 470 if (parse_styles) {
501 temp = psiconv_read_u32(buf,lev+4, off+len,&res); 471 temp = psiconv_read_u32(config,buf,lev+4, off+len,&res);
502 if (res) 472 if (res)
503 goto ERROR3; 473 goto ERROR3;
504 anon.base_style = psiconv_read_u8(buf,lev+3, off+len+4+temp,&res); 474 anon.base_style = psiconv_read_u8(config,buf,lev+3, off+len+4+temp,&res);
505 if (res) 475 if (res)
506 goto ERROR3; 476 goto ERROR3;
507 psiconv_debug(lev+4,off+len+temp, 477 psiconv_debug(config,lev+4,off+len+temp,
508 "Style indicator: %02x",anon.base_style); 478 "Style indicator: %02x",anon.base_style);
509 } else 479 } else
510 anon.base_style = 0; 480 anon.base_style = 0;
511 if (!(temp_style = psiconv_get_style(styles,anon.base_style))) { 481 if (!(temp_style = psiconv_get_style(styles,anon.base_style))) {
512 psiconv_warn(lev+4,off,"Unknown Style referenced"); 482 psiconv_warn(config,lev+4,off,"Unknown Style referenced");
513 if (!(temp_style = psiconv_get_style(styles,anon.base_style))) { 483 if (!(temp_style = psiconv_get_style(styles,anon.base_style))) {
514 psiconv_warn(lev+4,off,"Base style unknown"); 484 psiconv_warn(config,lev+4,off,"Base style unknown");
515 goto ERROR3; 485 goto ERROR3;
516 } 486 }
517 } 487 }
518 if (!(anon.paragraph = psiconv_clone_paragraph_layout 488 if (!(anon.paragraph = psiconv_clone_paragraph_layout
519 (temp_style->paragraph))) 489 (temp_style->paragraph)))
520 goto ERROR3; 490 goto ERROR3;
521 if (!(anon.character = psiconv_clone_character_layout 491 if (!(anon.character = psiconv_clone_character_layout
522 (temp_style->character))) 492 (temp_style->character)))
523 goto ERROR3_1; 493 goto ERROR3_1;
524 494
525 psiconv_progress(lev+4,off+len,"Going to read the paragraph layout"); 495 psiconv_progress(config,lev+4,off+len,"Going to read the paragraph layout");
526 if ((res = psiconv_parse_paragraph_layout_list(buf,lev+4,off+len,&leng, 496 if ((res = psiconv_parse_paragraph_layout_list(config,buf,lev+4,off+len,&leng,
527 anon.paragraph))) 497 anon.paragraph)))
528 goto ERROR3_2; 498 goto ERROR3_2;
529 len += leng; 499 len += leng;
530 if (parse_styles) 500 if (parse_styles)
531 len ++; 501 len ++;
532 502
533 psiconv_progress(lev+4,off+len,"Going to read the character layout"); 503 psiconv_progress(config,lev+4,off+len,"Going to read the character layout");
534 if ((res = psiconv_parse_character_layout_list(buf,lev+4,off+len,&leng, 504 if ((res = psiconv_parse_character_layout_list(config,buf,lev+4,off+len,&leng,
535 anon.character))) 505 anon.character)))
536 goto ERROR3_2; 506 goto ERROR3_2;
537 len += leng; 507 len += leng;
538 if ((res = psiconv_list_add(anon_styles,&anon))) 508 if ((res = psiconv_list_add(anon_styles,&anon)))
539 goto ERROR3_2; 509 goto ERROR3_2;
540 } 510 }
541 511
542 psiconv_progress(lev+2,off+len,"Going to parse the paragraph element list"); 512 psiconv_progress(config,lev+2,off+len,"Going to parse the paragraph element list");
543 psiconv_progress(lev+3,off+len,"Going to read the number of paragraphs"); 513 psiconv_progress(config,lev+3,off+len,"Going to read the number of paragraphs");
544 nr = psiconv_read_u32(buf,lev+3,off+len,&res); 514 nr = psiconv_read_u32(config,buf,lev+3,off+len,&res);
545 if (res) 515 if (res)
546 goto ERROR3; 516 goto ERROR3;
547 if (nr != psiconv_list_length(result)) { 517 if (nr != psiconv_list_length(result)) {
548 psiconv_warn(lev+3,off+len, 518 psiconv_warn(config,lev+3,off+len,
549 "Number of text paragraphs and paragraph elements does not match"); 519 "Number of text paragraphs and paragraph elements does not match");
550 psiconv_debug(lev+3,off+len, 520 psiconv_debug(config,lev+3,off+len,
551 "%d text paragraphs, %d paragraph elements", 521 "%d text paragraphs, %d paragraph elements",
552 psiconv_list_length(result),nr); 522 psiconv_list_length(result),nr);
553 } 523 }
554 psiconv_debug(lev+3,off+len,"Number of paragraphs: %d",nr); 524 psiconv_debug(config,lev+3,off+len,"Number of paragraphs: %d",nr);
555 len += 4; 525 len += 4;
556 if (!(inline_count = malloc(nr * sizeof(*inline_count)))) 526 if (!(inline_count = malloc(nr * sizeof(*inline_count))))
557 goto ERROR3; 527 goto ERROR3;
558 528
559 psiconv_progress(lev+3,off+len,"Going to read the paragraph elements"); 529 psiconv_progress(config,lev+3,off+len,"Going to read the paragraph elements");
560 for (i = 0; i < nr; i ++) { 530 for (i = 0; i < nr; i ++) {
561 psiconv_progress(lev+3,off+len,"Element %d",i); 531 psiconv_progress(config,lev+3,off+len,"Element %d",i);
562 if (i >= psiconv_list_length(result)) { 532 if (i >= psiconv_list_length(result)) {
563 psiconv_debug(lev+4,off+len,"Going to allocate a new element"); 533 psiconv_debug(config,lev+4,off+len,"Going to allocate a new element");
564 if (!(para = malloc(sizeof(*para)))) 534 if (!(para = malloc(sizeof(*para))))
565 goto ERROR4; 535 goto ERROR4;
566 if (!(para->in_lines = psiconv_list_new(sizeof( 536 if (!(para->in_lines = psiconv_list_new(sizeof(
567 struct psiconv_in_line_layout_s)))) 537 struct psiconv_in_line_layout_s))))
568 goto ERROR4_1; 538 goto ERROR4_1;
576 free(para); 546 free(para);
577 } 547 }
578 if (!(para = psiconv_list_get(result,i))) 548 if (!(para = psiconv_list_get(result,i)))
579 goto ERROR4; 549 goto ERROR4;
580 550
581 psiconv_progress(lev+4,off+len,"Going to read the paragraph length"); 551 psiconv_progress(config,lev+4,off+len,"Going to read the paragraph length");
582 temp = psiconv_read_u32(buf,lev+4,off+len,&res); 552 temp = psiconv_read_u32(config,buf,lev+4,off+len,&res);
583 if (res) 553 if (res)
584 goto ERROR4; 554 goto ERROR4;
585 if (temp != strlen(para->text)+1) { 555 if (temp != psiconv_unicode_strlen(para->text)+1) {
586 psiconv_warn(lev+4,off+len, 556 psiconv_warn(config,lev+4,off+len,
587 "Disagreement of the length of paragraph in layout section"); 557 "Disagreement of the length of paragraph in layout section");
588 psiconv_debug(lev+4,off+len, 558 psiconv_debug(config,lev+4,off+len,
589 "Paragraph length: layout section says %d, counted %d", 559 "Paragraph length: layout section says %d, counted %d",
590 temp,strlen(para->text)+1); 560 temp,psiconv_unicode_strlen(para->text)+1);
591 } else 561 } else
592 psiconv_debug(lev+4,off+len,"Paragraph length: %d",temp); 562 psiconv_debug(config,lev+4,off+len,"Paragraph length: %d",temp);
593 len += 4; 563 len += 4;
594 564
595 psiconv_progress(lev+4,off+len,"Going to read the paragraph type"); 565 psiconv_progress(config,lev+4,off+len,"Going to read the paragraph type");
596 temp = psiconv_read_u8(buf,lev+4,off+len,&res); 566 temp = psiconv_read_u8(config,buf,lev+4,off+len,&res);
597 if (res) 567 if (res)
598 goto ERROR4; 568 goto ERROR4;
599 if (temp != 0x00) { 569 if (temp != 0x00) {
600 psiconv_debug(lev+4,off+len,"Type: %02x",temp); 570 psiconv_debug(config,lev+4,off+len,"Type: %02x",temp);
601 for (j = 0; j < psiconv_list_length(anon_styles); j++) { 571 for (j = 0; j < psiconv_list_length(anon_styles); j++) {
602 if (!(anon_ptr = psiconv_list_get(anon_styles,j))) { 572 if (!(anon_ptr = psiconv_list_get(anon_styles,j))) {
603 psiconv_warn(lev+4,off+len,"Massive memory curruption"); 573 psiconv_error(config,lev+4,off+len,"Data structure corruption");
604 goto ERROR4; 574 goto ERROR4;
605 } 575 }
606 if (temp == anon_ptr->nr) 576 if (temp == anon_ptr->nr)
607 break; 577 break;
608 } 578 }
609 if (j == psiconv_list_length(anon_styles)) { 579 if (j == psiconv_list_length(anon_styles)) {
610 psiconv_warn(lev+4,off+len,"Layout section paragraph type unknown"); 580 psiconv_warn(config,lev+4,off+len,"Layout section paragraph type unknown");
611 psiconv_debug(lev+4,off+len,"Unknown type - using base styles instead"); 581 psiconv_debug(config,lev+4,off+len,"Unknown type - using base styles instead");
612 para->base_style = 0; 582 para->base_style = 0;
613 if (!(temp_style = psiconv_get_style(styles,0))) { 583 if (!(temp_style = psiconv_get_style(styles,0))) {
614 psiconv_warn(lev+4,off,"Base style unknown"); 584 psiconv_error(config,lev+4,off,"Base style unknown");
615 goto ERROR4; 585 goto ERROR4;
616 } 586 }
617 if (!(temp_para = psiconv_clone_paragraph_layout 587 if (!(temp_para = psiconv_clone_paragraph_layout
618 (temp_style->paragraph))) 588 (temp_style->paragraph)))
619 goto ERROR4; 589 goto ERROR4;
638 para->base_character = temp_char; 608 para->base_character = temp_char;
639 } 609 }
640 inline_count[i] = 0; 610 inline_count[i] = 0;
641 len += 0x01; 611 len += 0x01;
642 } else { 612 } else {
643 psiconv_debug(lev+4,off+len,"Type: %02x (not based on a paragraph type)" 613 psiconv_debug(config,lev+4,off+len,"Type: %02x (not based on a paragraph type)"
644 ,temp); 614 ,temp);
645 len += 0x01; 615 len += 0x01;
646 if (parse_styles) { 616 if (parse_styles) {
647 temp = psiconv_read_u32(buf,lev+4,off+len,&res); 617 temp = psiconv_read_u32(config,buf,lev+4,off+len,&res);
648 if (res) 618 if (res)
649 goto ERROR4; 619 goto ERROR4;
650 psiconv_progress(lev+4,off+len+temp+4, 620 psiconv_progress(config,lev+4,off+len+temp+4,
651 "Going to read the paragraph element base style"); 621 "Going to read the paragraph element base style");
652 temp = psiconv_read_u8(buf,lev+4, off+len+temp+4,&res); 622 temp = psiconv_read_u8(config,buf,lev+4, off+len+temp+4,&res);
653 if (res) 623 if (res)
654 goto ERROR4; 624 goto ERROR4;
655 psiconv_debug(lev+4,off+len+temp+4, "Style: %02x",temp); 625 psiconv_debug(config,lev+4,off+len+temp+4, "Style: %02x",temp);
656 } else 626 } else
657 temp = 0x00; 627 temp = 0x00;
658 628
659 if (!(temp_style = psiconv_get_style (styles,temp))) { 629 if (!(temp_style = psiconv_get_style (styles,temp))) {
660 psiconv_warn(lev+4,off,"Unknown Style referenced"); 630 psiconv_warn(config,lev+4,off,"Unknown Style referenced");
661 if (!(temp_style = psiconv_get_style(styles,0))) { 631 if (!(temp_style = psiconv_get_style(styles,0))) {
662 psiconv_warn(lev+4,off,"Base style unknown"); 632 psiconv_error(config,lev+4,off,"Base style unknown");
663 goto ERROR4; 633 goto ERROR4;
664 } 634 }
665 } 635 }
666 636
667 if (!(temp_para = psiconv_clone_paragraph_layout(temp_style->paragraph))) 637 if (!(temp_para = psiconv_clone_paragraph_layout(temp_style->paragraph)))
673 goto ERROR4; 643 goto ERROR4;
674 psiconv_free_character_layout(para->base_character); 644 psiconv_free_character_layout(para->base_character);
675 para->base_character = temp_char; 645 para->base_character = temp_char;
676 646
677 para->base_style = temp; 647 para->base_style = temp;
678 psiconv_progress(lev+4,off+len,"Going to read paragraph layout"); 648 psiconv_progress(config,lev+4,off+len,"Going to read paragraph layout");
679 if ((res = psiconv_parse_paragraph_layout_list(buf,lev+4,off+len,&leng, 649 if ((res = psiconv_parse_paragraph_layout_list(config,buf,lev+4,off+len,&leng,
680 para->base_paragraph))) 650 para->base_paragraph)))
681 goto ERROR4; 651 goto ERROR4;
682 len += leng; 652 len += leng;
683 if (parse_styles) 653 if (parse_styles)
684 len += 1; 654 len += 1;
685 psiconv_progress(lev+4,off+len,"Going to read number of in-line " 655 psiconv_progress(config,lev+4,off+len,"Going to read number of in-line "
686 "layout elements"); 656 "layout elements");
687 inline_count[i] = psiconv_read_u32(buf,lev+4,off+len,&res); 657 inline_count[i] = psiconv_read_u32(config,buf,lev+4,off+len,&res);
688 if (res) 658 if (res)
689 goto ERROR4; 659 goto ERROR4;
690 psiconv_debug(lev+4,off+len,"Nr: %08x",inline_count[i]); 660 psiconv_debug(config,lev+4,off+len,"Nr: %08x",inline_count[i]);
691 len += 4; 661 len += 4;
692 } 662 }
693 } 663 }
694 664
695 psiconv_progress(lev+2,off+len,"Going to read the text layout inline list"); 665 psiconv_progress(config,lev+2,off+len,"Going to read the text layout inline list");
696 666
697 psiconv_progress(lev+3,off+len,"Going to read the number of elements"); 667 psiconv_progress(config,lev+3,off+len,"Going to read the number of elements");
698 nr = psiconv_read_u32(buf,lev+3,off+len,&res); 668 nr = psiconv_read_u32(config,buf,lev+3,off+len,&res);
699 if (res) 669 if (res)
700 goto ERROR4; 670 goto ERROR4;
701 psiconv_debug(lev+3,off+len,"Elements: %08x",nr); 671 psiconv_debug(config,lev+3,off+len,"Elements: %08x",nr);
702 len += 0x04; 672 len += 0x04;
703 673
704 psiconv_progress(lev+3,off+len, 674 psiconv_progress(config,lev+3,off+len,
705 "Going to read the text layout inline elements"); 675 "Going to read the text layout inline elements");
706 total = 0; 676 total = 0;
707 for (i = 0; i < psiconv_list_length(result); i++) { 677 for (i = 0; i < psiconv_list_length(result); i++) {
708 if (!(para = psiconv_list_get(result,i))) { 678 if (!(para = psiconv_list_get(result,i))) {
709 psiconv_warn(lev+3,off+len,"Massive memory corruption"); 679 psiconv_error(config,lev+3,off+len,"Data structure corruption");
710 goto ERROR4; 680 goto ERROR4;
711 } 681 }
712 line_length = -1; 682 line_length = -1;
713 for (j = 0; j < inline_count[i]; j++) { 683 for (j = 0; j < inline_count[i]; j++) {
714 psiconv_progress(lev+3,off+len,"Element %d: Paragraph %d, element %d", 684 psiconv_progress(config,lev+3,off+len,"Element %d: Paragraph %d, element %d",
715 total,i,j); 685 total,i,j);
716 if (total >= nr) { 686 if (total >= nr) {
717 psiconv_warn(lev+3,off+len, 687 psiconv_warn(config,lev+3,off+len,
718 "Layout section inlines: not enough element"); 688 "Layout section inlines: not enough element");
719 psiconv_debug(lev+3,off+len,"Can't read element!"); 689 psiconv_debug(config,lev+3,off+len,"Can't read element!");
720 } else { 690 } else {
721 total ++; 691 total ++;
722 in_line.object = NULL; 692 in_line.object = NULL;
723 in_line.layout = NULL; 693 in_line.layout = NULL;
724 if (!(in_line.layout = psiconv_clone_character_layout 694 if (!(in_line.layout = psiconv_clone_character_layout
725 (para->base_character))) 695 (para->base_character)))
726 goto ERROR4; 696 goto ERROR4;
727 psiconv_progress(lev+4,off+len,"Going to read the element type"); 697 psiconv_progress(config,lev+4,off+len,"Going to read the element type");
728 temp = psiconv_read_u8(buf,lev+4,len+off,&res); 698 temp = psiconv_read_u8(config,buf,lev+4,len+off,&res);
729 if (res) 699 if (res)
730 goto ERROR5; 700 goto ERROR5;
731 len += 1; 701 len += 1;
732 psiconv_debug(lev+4,off+len,"Type: %02x",temp); 702 psiconv_debug(config,lev+4,off+len,"Type: %02x",temp);
733 psiconv_progress(lev+4,off+len, 703 psiconv_progress(config,lev+4,off+len,
734 "Going to read the number of characters it applies to"); 704 "Going to read the number of characters it applies to");
735 in_line.length = psiconv_read_u32(buf,lev+4,len+off,&res); 705 in_line.length = psiconv_read_u32(config,buf,lev+4,len+off,&res);
736 if (res) 706 if (res)
737 goto ERROR5; 707 goto ERROR5;
738 psiconv_debug(lev+4,off+len,"Length: %02x",in_line.length); 708 psiconv_debug(config,lev+4,off+len,"Length: %02x",in_line.length);
739 len += 4; 709 len += 4;
740 psiconv_progress(lev+4,off+len,"Going to read the character layout"); 710 psiconv_progress(config,lev+4,off+len,"Going to read the character layout");
741 if ((res = psiconv_parse_character_layout_list(buf,lev+4,off+len,&leng, 711 if ((res = psiconv_parse_character_layout_list(config,buf,lev+4,off+len,&leng,
742 in_line.layout))) 712 in_line.layout)))
743 goto ERROR5; 713 goto ERROR5;
744 len += leng; 714 len += leng;
745 715
746 if (temp == 0x01) { 716 if (temp == 0x01) {
747 psiconv_debug(lev+4,off+len,"Found an embedded object"); 717 psiconv_debug(config,lev+4,off+len,"Found an embedded object");
748 psiconv_progress(lev+4,off+len,"Going to read the object marker " 718 psiconv_progress(config,lev+4,off+len,"Going to read the object marker "
749 "(0x%08x expected)",PSICONV_ID_OBJECT); 719 "(0x%08x expected)",PSICONV_ID_OBJECT);
750 temp = psiconv_read_u32(buf,lev+4,off+len,&res); 720 temp = psiconv_read_u32(config,buf,lev+4,off+len,&res);
751 if (res) 721 if (res)
752 goto ERROR5; 722 goto ERROR5;
753 if (temp != PSICONV_ID_OBJECT) { 723 if (temp != PSICONV_ID_OBJECT) {
754 psiconv_warn(lev+4,off+len,"Unknown id marks embedded object"); 724 psiconv_warn(config,lev+4,off+len,"Unknown id marks embedded object");
755 psiconv_debug(lev+4,off+len,"Marker: read %08x, expected %08x", 725 psiconv_debug(config,lev+4,off+len,"Marker: read %08x, expected %08x",
756 temp,PSICONV_ID_OBJECT); 726 temp,PSICONV_ID_OBJECT);
757 } 727 }
758 len += 4; 728 len += 4;
759 psiconv_progress(lev+4,off+len, 729 psiconv_progress(config,lev+4,off+len,
760 "Going to read the Embedded Object Section offset"); 730 "Going to read the Embedded Object Section offset");
761 temp = psiconv_read_u32(buf,lev+4,off+len,&res); 731 temp = psiconv_read_u32(config,buf,lev+4,off+len,&res);
762 if (res) 732 if (res)
763 goto ERROR5; 733 goto ERROR5;
764 psiconv_debug(lev+4,off+len, "Offset: %08x",temp); 734 psiconv_debug(config,lev+4,off+len, "Offset: %08x",temp);
765 len += 4; 735 len += 4;
766 psiconv_progress(lev+4,off+len, 736 psiconv_progress(config,lev+4,off+len,
767 "Going to parse the Embedded Object"); 737 "Going to parse the Embedded Object Section");
768 if ((res = psiconv_parse_embedded_object(buf,lev+4,temp, 738 if ((res = psiconv_parse_embedded_object_section(config,buf,lev+4,temp,
769 NULL,&(in_line.object)))) 739 NULL,&(in_line.object))))
770 goto ERROR5; 740 goto ERROR5;
771 psiconv_progress(lev+4,off+len, 741 psiconv_progress(config,lev+4,off+len,
772 "Going to read the object width"); 742 "Going to read the object width");
773 in_line.object_width = psiconv_read_length(buf,lev+4,off+len, 743 in_line.object_width = psiconv_read_length(config,buf,lev+4,off+len,
774 &leng,&res); 744 &leng,&res);
775 if (res) 745 if (res)
776 goto ERROR5; 746 goto ERROR5;
777 psiconv_debug(lev+4,off+len,"Object width: %f cm", 747 psiconv_debug(config,lev+4,off+len,"Object width: %f cm",
778 in_line.object_width); 748 in_line.object_width);
779 len += leng; 749 len += leng;
780 psiconv_progress(lev+4,off+len, 750 psiconv_progress(config,lev+4,off+len,
781 "Going to read the object height"); 751 "Going to read the object height");
782 in_line.object_height = psiconv_read_length(buf,lev+4,off+len,&leng, 752 in_line.object_height = psiconv_read_length(config,buf,lev+4,off+len,&leng,
783 &res); 753 &res);
784 if (res) 754 if (res)
785 goto ERROR5; 755 goto ERROR5;
786 psiconv_debug(lev+4,off+len,"Object height: %f cm", 756 psiconv_debug(config,lev+4,off+len,"Object height: %f cm",
787 in_line.object_height); 757 in_line.object_height);
788 len += leng; 758 len += leng;
789 } else if (temp != 0x00) { 759 } else if (temp != 0x00) {
790 psiconv_warn(lev+4,off+len,"Layout section unknown inline type"); 760 psiconv_warn(config,lev+4,off+len,"Layout section unknown inline type");
791 } 761 }
792 if (line_length + in_line.length > strlen(para->text)) { 762 if (line_length + in_line.length > psiconv_unicode_strlen(para->text)) {
793 psiconv_warn(lev+4,off+len, 763 psiconv_warn(config,lev+4,off+len,
794 "Layout section inlines: line length mismatch"); 764 "Layout section inlines: line length mismatch");
795 res = -1; 765 res = -1;
796 in_line.length = strlen(para->text) - line_length; 766 in_line.length = psiconv_unicode_strlen(para->text) - line_length;
797 } 767 }
798 line_length += in_line.length; 768 line_length += in_line.length;
799 if ((res = psiconv_list_add(para->in_lines,&in_line))) 769 if ((res = psiconv_list_add(para->in_lines,&in_line)))
800 goto ERROR5; 770 goto ERROR5;
801 } 771 }
802 } 772 }
803 } 773 }
804 774
805 if (total != nr) { 775 if (total != nr) {
806 psiconv_warn(lev+4,off+len, 776 psiconv_warn(config,lev+4,off+len,
807 "Layout section too many inlines, skipping remaining"); 777 "Layout section too many inlines, skipping remaining");
808 } 778 }
809 779
810 free(inline_count); 780 free(inline_count);
811 781
812 for (i = 0 ; i < psiconv_list_length(anon_styles); i ++) { 782 for (i = 0 ; i < psiconv_list_length(anon_styles); i ++) {
813 if (!(anon_ptr = psiconv_list_get(anon_styles,i))) { 783 if (!(anon_ptr = psiconv_list_get(anon_styles,i))) {
814 psiconv_warn(lev+4,off+len,"Massive memory corruption"); 784 psiconv_error(config,lev+4,off+len,"Data structure corruption");
815 goto ERROR2; 785 goto ERROR2;
816 } 786 }
817 psiconv_free_character_layout(anon_ptr->character); 787 psiconv_free_character_layout(anon_ptr->character);
818 psiconv_free_paragraph_layout(anon_ptr->paragraph); 788 psiconv_free_paragraph_layout(anon_ptr->paragraph);
819 } 789 }
820 psiconv_list_free(anon_styles); 790 psiconv_list_free(anon_styles);
821 791
822 if (length) 792 if (length)
823 *length = len; 793 *length = len;
824 794
825 psiconv_progress(lev+1,off+len-1,"End of layout section (total length: %08x)", 795 psiconv_progress(config,lev+1,off+len-1,"End of layout section (total length: %08x)",
826 len); 796 len);
827 797
828 return 0; 798 return 0;
829 799
830ERROR4_4: 800ERROR4_4:
845 815
846ERROR5: 816ERROR5:
847 if (in_line.layout) 817 if (in_line.layout)
848 psiconv_free_character_layout(in_line.layout); 818 psiconv_free_character_layout(in_line.layout);
849 if (in_line.object) 819 if (in_line.object)
850 psiconv_free_object(in_line.object); 820 psiconv_free_embedded_object_section(in_line.object);
851ERROR4: 821ERROR4:
852 free(inline_count); 822 free(inline_count);
853ERROR3: 823ERROR3:
854 for (i = 0; i < psiconv_list_length(anon_styles); i++) { 824 for (i = 0; i < psiconv_list_length(anon_styles); i++) {
855 if (!(anon_ptr = psiconv_list_get(anon_styles,i))) { 825 if (!(anon_ptr = psiconv_list_get(anon_styles,i))) {
856 psiconv_warn(lev+1,off,"Massive memory corruption"); 826 psiconv_error(config,lev+1,off,"Data structure corruption");
857 break; 827 break;
858 } 828 }
859 psiconv_free_paragraph_layout(anon_ptr->paragraph); 829 psiconv_free_paragraph_layout(anon_ptr->paragraph);
860 psiconv_free_character_layout(anon_ptr->character); 830 psiconv_free_character_layout(anon_ptr->character);
861 } 831 }
862 832
863ERROR2: 833ERROR2:
864 psiconv_list_free(anon_styles); 834 psiconv_list_free(anon_styles);
865ERROR1: 835ERROR1:
866 psiconv_warn(lev+1,off,"Reading of Layout Section failed"); 836 psiconv_error(config,lev+1,off,"Reading of Layout Section failed");
867 if (length) 837 if (length)
868 *length = 0; 838 *length = 0;
869 if (!res) 839 if (!res)
870 return -PSICONV_E_NOMEM; 840 return -PSICONV_E_NOMEM;
871 else 841 else
872 return res; 842 return res;
873} 843}
874 844
875int psiconv_parse_styled_layout_section(const psiconv_buffer buf, 845int psiconv_parse_styled_layout_section(const psiconv_config config,
846 const psiconv_buffer buf,
876 int lev,psiconv_u32 off, 847 int lev,psiconv_u32 off,
877 int *length, 848 int *length,
878 psiconv_text_and_layout result, 849 psiconv_text_and_layout result,
879 psiconv_word_styles_section styles) 850 psiconv_word_styles_section styles)
880{ 851{
881 return psiconv_parse_layout_section(buf,lev,off,length,result,styles,1); 852 return psiconv_parse_layout_section(config,buf,lev,off,length,result,styles,1);
882} 853}
883 854
884int psiconv_parse_styleless_layout_section(const psiconv_buffer buf, 855int psiconv_parse_styleless_layout_section(const psiconv_config config,
856 const psiconv_buffer buf,
885 int lev,psiconv_u32 off, 857 int lev,psiconv_u32 off,
886 int *length, 858 int *length,
887 psiconv_text_and_layout result, 859 psiconv_text_and_layout result,
888 const psiconv_character_layout base_char, 860 const psiconv_character_layout base_char,
889 const psiconv_paragraph_layout base_para) 861 const psiconv_paragraph_layout base_para)
900 goto ERROR3; 872 goto ERROR3;
901 if (!(styles_section->normal->paragraph = 873 if (!(styles_section->normal->paragraph =
902 psiconv_clone_paragraph_layout(base_para))) 874 psiconv_clone_paragraph_layout(base_para)))
903 goto ERROR4; 875 goto ERROR4;
904 styles_section->normal->hotkey = 0; 876 styles_section->normal->hotkey = 0;
877
905 if (!(styles_section->normal->name = strdup(""))) 878 if (!(styles_section->normal->name = psiconv_unicode_empty_string()))
906 goto ERROR5; 879 goto ERROR5;
907 if (!(styles_section->styles = psiconv_list_new(sizeof( 880 if (!(styles_section->styles = psiconv_list_new(sizeof(
908 struct psiconv_word_style_s)))) 881 struct psiconv_word_style_s))))
909 goto ERROR6; 882 goto ERROR6;
910 883
911 res = psiconv_parse_layout_section(buf,lev,off,length,result, 884 res = psiconv_parse_layout_section(config,buf,lev,off,length,result,
912 styles_section,0); 885 styles_section,0);
913 886
914 psiconv_free_word_styles_section(styles_section); 887 psiconv_free_word_styles_section(styles_section);
915 return res; 888 return res;
916 889
923ERROR3: 896ERROR3:
924 free(styles_section->normal); 897 free(styles_section->normal);
925ERROR2: 898ERROR2:
926 free(styles_section); 899 free(styles_section);
927ERROR1: 900ERROR1:
928 psiconv_warn(lev+1,off,"Reading of Styleless Layout Section failed"); 901 psiconv_error(config,lev+1,off,"Reading of Styleless Layout Section failed");
929 if (length) 902 if (length)
930 *length = 0; 903 *length = 0;
931 if (!res) 904 if (!res)
932 return -PSICONV_E_NOMEM; 905 return -PSICONV_E_NOMEM;
933 else 906 else
934 return res; 907 return res;
935} 908}
936 909
937int psiconv_parse_embedded_object(const psiconv_buffer buf, int lev, 910int psiconv_parse_embedded_object_section(const psiconv_config config,
911 const psiconv_buffer buf, int lev,
938 psiconv_u32 off, int *length, 912 psiconv_u32 off, int *length,
939 psiconv_object *result) 913 psiconv_embedded_object_section *result)
940{ 914{
941 int res=0; 915 int res=0;
942 int len=0; 916 int len=0;
943 int leng,i; 917 int leng,i;
944 psiconv_section_table_section table; 918 psiconv_section_table_section table;
945 psiconv_section_table_entry entry; 919 psiconv_section_table_entry entry;
946 psiconv_u32 icon_sec=0,display_sec=0,table_sec=0; 920 psiconv_u32 icon_sec=0,display_sec=0,table_sec=0;
947 psiconv_buffer subbuf; 921 psiconv_buffer subbuf;
948 922
949 psiconv_progress(lev+1,off+len,"Going to read an Embedded Object"); 923 psiconv_progress(config,lev+1,off+len,"Going to read an Embedded Object");
950 if (!(*result = malloc(sizeof(**result)))) 924 if (!(*result = malloc(sizeof(**result))))
951 goto ERROR1; 925 goto ERROR1;
952 926
953 psiconv_progress(lev+2,off+len,"Going to read the Embedded Object Section"); 927 psiconv_progress(config,lev+2,off+len,"Going to read the Embedded Object Section");
954 psiconv_parse_section_table_section(buf,lev+2,off+len,&leng,&table); 928 psiconv_parse_section_table_section(config,buf,lev+2,off+len,&leng,&table);
955 len += leng; 929 len += leng;
956 930
957 for (i = 0; i < psiconv_list_length(table); i++) { 931 for (i = 0; i < psiconv_list_length(table); i++) {
958 psiconv_progress(lev+2,off+len,"Going to read entry %d",i); 932 psiconv_progress(config,lev+2,off+len,"Going to read entry %d",i);
959 if (!(entry = psiconv_list_get(table,i))) 933 if (!(entry = psiconv_list_get(table,i)))
960 goto ERROR2; 934 goto ERROR2;
961 if (entry->id == PSICONV_ID_OBJECT_DISPLAY_SECTION) { 935 if (entry->id == PSICONV_ID_OBJECT_DISPLAY_SECTION) {
962 display_sec = entry->offset; 936 display_sec = entry->offset;
963 psiconv_debug(lev+3,off+len,"Found the Object Display Section at %08x", 937 psiconv_debug(config,lev+3,off+len,"Found the Object Display Section at %08x",
964 display_sec); 938 display_sec);
965 } else if (entry->id == PSICONV_ID_OBJECT_ICON_SECTION) { 939 } else if (entry->id == PSICONV_ID_OBJECT_ICON_SECTION) {
966 icon_sec = entry->offset; 940 icon_sec = entry->offset;
967 psiconv_debug(lev+3,off+len,"Found the Object Icon Section at %08x", 941 psiconv_debug(config,lev+3,off+len,"Found the Object Icon Section at %08x",
968 icon_sec); 942 icon_sec);
969 } else if (entry->id == PSICONV_ID_OBJECT_SECTION_TABLE_SECTION) { 943 } else if (entry->id == PSICONV_ID_OBJECT_SECTION_TABLE_SECTION) {
970 table_sec = entry->offset; 944 table_sec = entry->offset;
971 psiconv_debug(lev+3,off+len,"Found the Object Section Table Section at %08x", 945 psiconv_debug(config,lev+3,off+len,"Found the Object Section Table Section at %08x",
972 table_sec); 946 table_sec);
973 } else { 947 } else {
974 psiconv_warn(lev+3,off+len, 948 psiconv_warn(config,lev+3,off+len,
975 "Found unknown section in the Object Display Section " 949 "Found unknown section in the Object Display Section "
976 "(ignoring)"); 950 "(ignoring)");
977 psiconv_debug(lev+3,off+len,"Section ID %08x, offset %08x", 951 psiconv_debug(config,lev+3,off+len,"Section ID %08x, offset %08x",
978 entry->id, entry->offset); 952 entry->id, entry->offset);
979 } 953 }
980 } 954 }
981 955
982 psiconv_progress(lev+2,off+len,"Looking for the Object Display Section"); 956 psiconv_progress(config,lev+2,off+len,"Looking for the Object Display Section");
983 if (!icon_sec) { 957 if (!icon_sec) {
984 psiconv_warn(lev+2,off+len,"Object Display Section not found"); 958 psiconv_warn(config,lev+2,off+len,"Object Display Section not found");
985 (*result)->display = NULL; 959 (*result)->display = NULL;
986 } else { 960 } else {
987 psiconv_debug(lev+2,off+len,"Object Display Section at offset %08x", 961 psiconv_debug(config,lev+2,off+len,"Object Display Section at offset %08x",
988 display_sec); 962 display_sec);
989 if ((res = psiconv_parse_object_display_section(buf,lev+2,display_sec,NULL, 963 if ((res = psiconv_parse_object_display_section(config,buf,lev+2,display_sec,NULL,
990 &(*result)->display))) 964 &(*result)->display)))
991 goto ERROR2; 965 goto ERROR2;
992 } 966 }
993 967
994 psiconv_progress(lev+2,off+len,"Looking for the Object Icon Section"); 968 psiconv_progress(config,lev+2,off+len,"Looking for the Object Icon Section");
995 if (!icon_sec) { 969 if (!icon_sec) {
996 psiconv_warn(lev+2,off+len,"Object Icon Section not found"); 970 psiconv_warn(config,lev+2,off+len,"Object Icon Section not found");
997 (*result)->icon = NULL; 971 (*result)->icon = NULL;
998 } else { 972 } else {
999 psiconv_debug(lev+2,off+len,"Object Icon Section at offset %08x",icon_sec); 973 psiconv_debug(config,lev+2,off+len,"Object Icon Section at offset %08x",icon_sec);
1000 if ((res = psiconv_parse_object_icon_section(buf,lev+2,icon_sec,NULL, 974 if ((res = psiconv_parse_object_icon_section(config,buf,lev+2,icon_sec,NULL,
1001 &(*result)->icon))) 975 &(*result)->icon)))
1002 goto ERROR3; 976 goto ERROR3;
1003 } 977 }
1004 978
1005 psiconv_progress(lev+2,off+len, 979 psiconv_progress(config,lev+2,off+len,
1006 "Looking for the Section Table Offset Section"); 980 "Looking for the Section Table Offset Section");
1007 if (!table_sec) { 981 if (!table_sec) {
1008 psiconv_warn(lev+2,off+len, 982 psiconv_warn(config,lev+2,off+len,
1009 "Embedded Section Table Offset Section not found"); 983 "Embedded Section Table Offset Section not found");
1010 (*result)->object = NULL; 984 (*result)->object = NULL;
1011 } else { 985 } else {
1012 psiconv_progress(lev+2,off+len, 986 psiconv_progress(config,lev+2,off+len,
1013 "Extracting object: add %08x to all following offsets", 987 "Extracting object: add %08x to all following offsets",
1014 table_sec); 988 table_sec);
1015 /* We can't determine the length of the object, so we just take it all */ 989 /* We can't determine the length of the object, so we just take it all */
1016 if ((res = psiconv_buffer_subbuffer(&subbuf,buf,table_sec, 990 if ((res = psiconv_buffer_subbuffer(&subbuf,buf,table_sec,
1017 psiconv_buffer_length(buf)-table_sec))) 991 psiconv_buffer_length(buf)-table_sec)))
1020 if (!((*result)->object = malloc(sizeof(*(*result)->object)))) 994 if (!((*result)->object = malloc(sizeof(*(*result)->object))))
1021 goto ERROR5; 995 goto ERROR5;
1022 996
1023 /* We need to find the file type, but we don't have a normal header */ 997 /* We need to find the file type, but we don't have a normal header */
1024 /* So we try to find the Application ID Section and hope for the best */ 998 /* So we try to find the Application ID Section and hope for the best */
1025 psiconv_progress(lev+3,0,"Trying to determine the file type"); 999 psiconv_progress(config,lev+3,0,"Trying to determine the file type");
1026 (*result)->object->type = psiconv_determine_embedded_object_type 1000 (*result)->object->type = psiconv_determine_embedded_object_type
1027 (subbuf,lev+3,&res); 1001 (config,subbuf,lev+3,&res);
1028 switch ((*result)->object->type) { 1002 switch ((*result)->object->type) {
1029 case psiconv_word_file: 1003 case psiconv_word_file:
1030 if ((res = psiconv_parse_word_file(subbuf,lev+3,0, 1004 if ((res = psiconv_parse_word_file(config,subbuf,lev+3,0,
1031 ((psiconv_word_f *) &(*result)->object->file)))) 1005 ((psiconv_word_f *) &(*result)->object->file))))
1032 goto ERROR6; 1006 goto ERROR6;
1033 break; 1007 break;
1034 case psiconv_texted_file: 1008 case psiconv_texted_file:
1035 if ((res = psiconv_parse_texted_file(subbuf,lev+3,0, 1009 if ((res = psiconv_parse_texted_file(config,subbuf,lev+3,0,
1036 ((psiconv_texted_f *) &(*result)->object->file)))) 1010 ((psiconv_texted_f *) &(*result)->object->file))))
1037 goto ERROR6; 1011 goto ERROR6;
1038 break; 1012 break;
1039 case psiconv_sheet_file: 1013 case psiconv_sheet_file:
1040 if ((res = psiconv_parse_sheet_file(subbuf,lev+3,0, 1014 if ((res = psiconv_parse_sheet_file(config,subbuf,lev+3,0,
1041 ((psiconv_sheet_f *) &(*result)->object->file)))) 1015 ((psiconv_sheet_f *) &(*result)->object->file))))
1042 goto ERROR6; 1016 goto ERROR6;
1043 break; 1017 break;
1044 case psiconv_sketch_file: 1018 case psiconv_sketch_file:
1045 if ((res = psiconv_parse_sketch_file(subbuf,lev+3,0, 1019 if ((res = psiconv_parse_sketch_file(config,subbuf,lev+3,0,
1046 ((psiconv_sketch_f *) &(*result)->object->file)))) 1020 ((psiconv_sketch_f *) &(*result)->object->file))))
1047 goto ERROR6; 1021 goto ERROR6;
1048 break; 1022 break;
1049 default: 1023 default:
1050 psiconv_warn(lev+3,0,"Can't parse embedded object (still continuing)"); 1024 psiconv_warn(config,lev+3,0,"Can't parse embedded object (still continuing)");
1051 (*result)->object->file = NULL; 1025 (*result)->object->file = NULL;
1052 } 1026 }
1053 } 1027 }
1054 1028
1029 psiconv_buffer_free(subbuf);
1030 psiconv_free_section_table_section(table);
1031
1055 if (length) 1032 if (length)
1056 *length = len; 1033 *length = len;
1057 1034
1058 psiconv_progress(lev+1,off+len-1,"End of Embedded Object Section " 1035 psiconv_progress(config,lev+1,off+len-1,"End of Embedded Object Section "
1059 "(total length: %08x)",len); 1036 "(total length: %08x)",len);
1060 1037
1061 return res; 1038 return res;
1062 1039
1063 1040
1070ERROR3: 1047ERROR3:
1071 psiconv_free_object_display_section((*result)->display); 1048 psiconv_free_object_display_section((*result)->display);
1072ERROR2: 1049ERROR2:
1073 psiconv_free_section_table_section(table); 1050 psiconv_free_section_table_section(table);
1074ERROR1: 1051ERROR1:
1075 psiconv_warn(lev+1,off,"Reading Embedded Object failed"); 1052 psiconv_error(config,lev+1,off,"Reading Embedded Object failed");
1076 1053
1077 if (length) 1054 if (length)
1078 *length = 0; 1055 *length = 0;
1079 1056
1080 if (res == 0) 1057 if (res == 0)
1082 else 1059 else
1083 return res; 1060 return res;
1084} 1061}
1085 1062
1086psiconv_file_type_t psiconv_determine_embedded_object_type 1063psiconv_file_type_t psiconv_determine_embedded_object_type
1087 (const psiconv_buffer buf,int lev, 1064 (const psiconv_config config,
1065 const psiconv_buffer buf,int lev,
1088 int *status) 1066 int *status)
1089{ 1067{
1090 psiconv_u32 off; 1068 psiconv_u32 off;
1091 psiconv_section_table_section table; 1069 psiconv_section_table_section table;
1092 int res,i; 1070 int res,i;
1093 psiconv_file_type_t file_type = psiconv_unknown_file; 1071 psiconv_file_type_t file_type = psiconv_unknown_file;
1094 psiconv_section_table_entry entry; 1072 psiconv_section_table_entry entry;
1095 psiconv_application_id_section applid; 1073 psiconv_application_id_section applid;
1096 1074
1097 psiconv_progress(lev+1,0,"Going to determine embedded object file type"); 1075 psiconv_progress(config,lev+1,0,"Going to determine embedded object file type");
1098 psiconv_progress(lev+2,0,"Going to read the Section Table Offset Section"); 1076 psiconv_progress(config,lev+2,0,"Going to read the Section Table Offset Section");
1099 off = psiconv_read_u32(buf,lev,0,&res); 1077 off = psiconv_read_u32(config,buf,lev,0,&res);
1100 if (res) 1078 if (res)
1101 goto ERROR1; 1079 goto ERROR1;
1102 psiconv_debug(lev+2,0,"Offset: %08x",off); 1080 psiconv_debug(config,lev+2,0,"Offset: %08x",off);
1103 1081
1104 psiconv_progress(lev+2,off,"Going to read the Section Table Section"); 1082 psiconv_progress(config,lev+2,off,"Going to read the Section Table Section");
1105 if ((res = psiconv_parse_section_table_section(buf,lev+2,off,NULL,&table))) 1083 if ((res = psiconv_parse_section_table_section(config,buf,lev+2,off,NULL,&table)))
1106 goto ERROR1; 1084 goto ERROR1;
1107 1085
1108 psiconv_progress(lev+2,off,"Going to search the Section Table Section " 1086 psiconv_progress(config,lev+2,off,"Going to search the Section Table Section "
1109 "for the Application ID Section"); 1087 "for the Application ID Section");
1110 for (i=0; i < psiconv_list_length(table); i++) { 1088 for (i=0; i < psiconv_list_length(table); i++) {
1111 psiconv_progress(lev+3,off,"Going to read entry %d",i); 1089 psiconv_progress(config,lev+3,off,"Going to read entry %d",i);
1112 if (!(entry = psiconv_list_get(table,i))) 1090 if (!(entry = psiconv_list_get(table,i)))
1113 goto ERROR2; 1091 goto ERROR2;
1114 if (entry->id == PSICONV_ID_APPL_ID_SECTION) { 1092 if (entry->id == PSICONV_ID_APPL_ID_SECTION) {
1115 psiconv_progress(lev+3,off, 1093 psiconv_progress(config,lev+3,off,
1116 "Found the Application ID Section at offset %08x", 1094 "Found the Application ID Section at offset %08x",
1117 entry->offset); 1095 entry->offset);
1118 off = entry->offset; 1096 off = entry->offset;
1119 break; 1097 break;
1120 } 1098 }
1121 } 1099 }
1122 if (i == psiconv_list_length(table)) { 1100 if (i == psiconv_list_length(table)) {
1123 psiconv_warn(lev+2,off,"No Application ID Section found"); 1101 psiconv_error(config,lev+2,off,"No Application ID Section found");
1124 res = PSICONV_E_PARSE; 1102 res = PSICONV_E_PARSE;
1125 goto ERROR2; 1103 goto ERROR2;
1126 } 1104 }
1127 1105
1128 psiconv_progress(lev+2,off,"Going to read the Application ID Section"); 1106 psiconv_progress(config,lev+2,off,"Going to read the Application ID Section");
1129 if ((res = psiconv_parse_application_id_section(buf,lev+2,off,NULL,&applid))) 1107 if ((res = psiconv_parse_application_id_section(config,buf,lev+2,off,NULL,&applid)))
1130 goto ERROR2; 1108 goto ERROR2;
1131 1109
1132 switch (applid->id) { 1110 switch (applid->id) {
1133 case PSICONV_ID_WORD: file_type = psiconv_word_file; 1111 case PSICONV_ID_WORD: file_type = psiconv_word_file;
1134 psiconv_debug(lev+2,off,"Found a Word file"); 1112 psiconv_debug(config,lev+2,off,"Found a Word file");
1135 break; 1113 break;
1136 case PSICONV_ID_TEXTED: file_type = psiconv_texted_file; 1114 case PSICONV_ID_TEXTED: file_type = psiconv_texted_file;
1137 psiconv_debug(lev+2,off,"Found a TextEd file"); 1115 psiconv_debug(config,lev+2,off,"Found a TextEd file");
1138 break; 1116 break;
1139 case PSICONV_ID_SKETCH: file_type = psiconv_sketch_file; 1117 case PSICONV_ID_SKETCH: file_type = psiconv_sketch_file;
1140 psiconv_debug(lev+2,off,"Found a Sketch file"); 1118 psiconv_debug(config,lev+2,off,"Found a Sketch file");
1141 break; 1119 break;
1142 case PSICONV_ID_SHEET: file_type = psiconv_sheet_file; 1120 case PSICONV_ID_SHEET: file_type = psiconv_sheet_file;
1143 psiconv_debug(lev+2,off,"Found a Sheet file"); 1121 psiconv_debug(config,lev+2,off,"Found a Sheet file");
1144 break; 1122 break;
1145 default: psiconv_warn(lev+2,off,"Found an unknown file type"); 1123 default: psiconv_warn(config,lev+2,off,"Found an unknown file type");
1146 psiconv_debug(lev+2,off,"Found ID %08x",applid->id); 1124 psiconv_debug(config,lev+2,off,"Found ID %08x",applid->id);
1147 } 1125 }
1148 1126
1149ERROR2: 1127ERROR2:
1150 psiconv_free_application_id_section(applid); 1128 psiconv_free_application_id_section(applid);
1151ERROR1: 1129ERROR1:
1154 *status = res; 1132 *status = res;
1155 return file_type; 1133 return file_type;
1156 1134
1157} 1135}
1158 1136
1159int psiconv_parse_object_display_section(const psiconv_buffer buf,int lev, 1137int psiconv_parse_object_display_section(const psiconv_config config,
1138 const psiconv_buffer buf,int lev,
1160 psiconv_u32 off, int *length, 1139 psiconv_u32 off, int *length,
1161 psiconv_object_display_section *result) 1140 psiconv_object_display_section *result)
1162{ 1141{
1163 int res = 0; 1142 int res = 0;
1164 int len = 0; 1143 int len = 0;
1165 int leng; 1144 int leng;
1166 psiconv_u32 temp; 1145 psiconv_u32 temp;
1167 1146
1168 psiconv_progress(lev+1,off,"Going to read the Object Display Section"); 1147 psiconv_progress(config,lev+1,off,"Going to read the Object Display Section");
1169 if (!(*result = malloc(sizeof(**result)))) 1148 if (!(*result = malloc(sizeof(**result))))
1170 goto ERROR1; 1149 goto ERROR1;
1171 1150
1172 psiconv_progress(lev+2,off+len,"Going to read the display as icon flag " 1151 psiconv_progress(config,lev+2,off+len,"Going to read the display as icon flag "
1173 "(expecting 0x00 or 0x01)"); 1152 "(expecting 0x00 or 0x01)");
1174 temp = psiconv_read_u8(buf,lev+2,off+len,&res); 1153 temp = psiconv_read_u8(config,buf,lev+2,off+len,&res);
1175 if (res) 1154 if (res)
1176 goto ERROR2; 1155 goto ERROR2;
1177 if (temp == 0x00) { 1156 if (temp == 0x00) {
1178 (*result)->show_icon = psiconv_bool_true; 1157 (*result)->show_icon = psiconv_bool_true;
1179 psiconv_debug(lev+2,off+len,"Displayed as icon"); 1158 psiconv_debug(config,lev+2,off+len,"Displayed as icon");
1180 } else if (temp == 0x01) { 1159 } else if (temp == 0x01) {
1181 (*result)->show_icon = psiconv_bool_false; 1160 (*result)->show_icon = psiconv_bool_false;
1182 psiconv_debug(lev+2,off+len,"Displayed as full document"); 1161 psiconv_debug(config,lev+2,off+len,"Displayed as full document");
1183 } else { 1162 } else {
1184 psiconv_warn(lev+2,off+len,"Unknown Object Display Section Icon Flag"); 1163 psiconv_warn(config,lev+2,off+len,"Unknown Object Display Section Icon Flag");
1185 psiconv_debug(lev+2,off+len,"Icon flag found: %02x",temp); 1164 psiconv_debug(config,lev+2,off+len,"Icon flag found: %02x",temp);
1186 /* Improvise */ 1165 /* Improvise */
1187 (*result)->show_icon = (temp & 0x01?psiconv_bool_false:psiconv_bool_true); 1166 (*result)->show_icon = (temp & 0x01?psiconv_bool_false:psiconv_bool_true);
1188 } 1167 }
1189 len ++; 1168 len ++;
1190 1169
1191 psiconv_progress(lev+2,off+len,"Going to read the display width"); 1170 psiconv_progress(config,lev+2,off+len,"Going to read the display width");
1192 (*result)->width = psiconv_read_length(buf,lev+2,off+len,&leng,&res); 1171 (*result)->width = psiconv_read_length(config,buf,lev+2,off+len,&leng,&res);
1193 if (res) 1172 if (res)
1194 goto ERROR2; 1173 goto ERROR2;
1195 psiconv_debug(lev+2,off+len,"Display width: %f cm",(*result)->width); 1174 psiconv_debug(config,lev+2,off+len,"Display width: %f cm",(*result)->width);
1196 len += leng; 1175 len += leng;
1197 1176
1198 psiconv_progress(lev+2,off+len,"Going to read the display height"); 1177 psiconv_progress(config,lev+2,off+len,"Going to read the display height");
1199 (*result)->height = psiconv_read_length(buf,lev+2,off+len,&leng,&res); 1178 (*result)->height = psiconv_read_length(config,buf,lev+2,off+len,&leng,&res);
1200 if (res) 1179 if (res)
1201 goto ERROR2; 1180 goto ERROR2;
1202 psiconv_debug(lev+2,off+len,"Display length: %f cm",(*result)->height); 1181 psiconv_debug(config,lev+2,off+len,"Display length: %f cm",(*result)->height);
1203 len += leng; 1182 len += leng;
1204 1183
1205 psiconv_progress(lev+2,off+len,"Going to read unknown long (%08x expected)", 1184 psiconv_progress(config,lev+2,off+len,"Going to read unknown long (%08x expected)",
1206 0); 1185 0);
1207 temp = psiconv_read_u32(buf,lev+2,off+len,&res); 1186 temp = psiconv_read_u32(config,buf,lev+2,off+len,&res);
1208 if (temp != 0) { 1187 if (temp != 0) {
1209 psiconv_warn(lev+2,off+len,"Unknown Object Display Section final long"); 1188 psiconv_warn(config,lev+2,off+len,"Unknown Object Display Section final long");
1210 psiconv_debug(lev+2,off+len,"Long read: %08x",temp); 1189 psiconv_debug(config,lev+2,off+len,"Long read: %08x",temp);
1211 } 1190 }
1212 len += 4; 1191 len += 4;
1213 1192
1214 if (length) 1193 if (length)
1215 *length = len; 1194 *length = len;
1216 1195
1217 psiconv_progress(lev+1,off+len-1,"End of Object Display Section " 1196 psiconv_progress(config,lev+1,off+len-1,"End of Object Display Section "
1218 "(total length: %08x",len); 1197 "(total length: %08x",len);
1219 return res; 1198 return res;
1220 1199
1221ERROR2: 1200ERROR2:
1222 free(*result); 1201 free(*result);
1223ERROR1: 1202ERROR1:
1224 psiconv_warn(lev+1,off+len,"Reading of Object Display Section failed"); 1203 psiconv_error(config,lev+1,off+len,"Reading of Object Display Section failed");
1225 if (length) 1204 if (length)
1226 *length=0; 1205 *length=0;
1227 if (!res) 1206 if (!res)
1228 return -PSICONV_E_NOMEM; 1207 return -PSICONV_E_NOMEM;
1229 else 1208 else
1230 return res; 1209 return res;
1231} 1210}
1232 1211
1233int psiconv_parse_object_icon_section(const psiconv_buffer buf,int lev, 1212int psiconv_parse_object_icon_section(const psiconv_config config,
1213 const psiconv_buffer buf,int lev,
1234 psiconv_u32 off, int *length, 1214 psiconv_u32 off, int *length,
1235 psiconv_object_icon_section *result) 1215 psiconv_object_icon_section *result)
1236{ 1216{
1237 int res = 0; 1217 int res = 0;
1238 int len = 0; 1218 int len = 0;
1239 int leng; 1219 int leng;
1240 1220
1241 psiconv_progress(lev+1,off,"Going to read the Object Icon Section"); 1221 psiconv_progress(config,lev+1,off,"Going to read the Object Icon Section");
1242 if (!(*result = malloc(sizeof(**result)))) 1222 if (!(*result = malloc(sizeof(**result))))
1243 goto ERROR1; 1223 goto ERROR1;
1244 1224
1245 psiconv_progress(lev+2,off+len,"Going to read the icon name"); 1225 psiconv_progress(config,lev+2,off+len,"Going to read the icon name");
1246 (*result)->icon_name = psiconv_read_string(buf,lev+2,off+len,&leng,&res); 1226 (*result)->icon_name = psiconv_read_string(config,buf,lev+2,off+len,&leng,&res);
1247 if (res) 1227 if (res)
1248 goto ERROR2; 1228 goto ERROR2;
1249 psiconv_debug(lev+2,off+len,"Icon name: %s",(*result)->icon_name);
1250 len += leng; 1229 len += leng;
1251 1230
1252 psiconv_progress(lev+2,off+len,"Going to read the icon width"); 1231 psiconv_progress(config,lev+2,off+len,"Going to read the icon width");
1253 (*result)->icon_width = psiconv_read_length(buf,lev+2,off+len,&leng,&res); 1232 (*result)->icon_width = psiconv_read_length(config,buf,lev+2,off+len,&leng,&res);
1254 if (res) 1233 if (res)
1255 goto ERROR3; 1234 goto ERROR3;
1256 psiconv_debug(lev+2,off+len,"Icon width: %f cm",(*result)->icon_width); 1235 psiconv_debug(config,lev+2,off+len,"Icon width: %f cm",(*result)->icon_width);
1257 len += leng; 1236 len += leng;
1258 1237
1259 psiconv_progress(lev+2,off+len,"Going to read the icon height"); 1238 psiconv_progress(config,lev+2,off+len,"Going to read the icon height");
1260 (*result)->icon_height = psiconv_read_length(buf,lev+2,off+len,&leng,&res); 1239 (*result)->icon_height = psiconv_read_length(config,buf,lev+2,off+len,&leng,&res);
1261 if (res) 1240 if (res)
1262 goto ERROR3; 1241 goto ERROR3;
1263 psiconv_debug(lev+2,off+len,"Icon length: %f cm",(*result)->icon_height); 1242 psiconv_debug(config,lev+2,off+len,"Icon length: %f cm",(*result)->icon_height);
1264 len += leng; 1243 len += leng;
1265 1244
1266 if (length) 1245 if (length)
1267 *length = len; 1246 *length = len;
1268 1247
1269 psiconv_progress(lev+1,off+len-1,"End of Object Icon Section" 1248 psiconv_progress(config,lev+1,off+len-1,"End of Object Icon Section"
1270 "(total length: %08x",len); 1249 "(total length: %08x",len);
1271 return res; 1250 return res;
1272 1251
1273ERROR3: 1252ERROR3:
1274 free((*result)->icon_name); 1253 free((*result)->icon_name);
1275ERROR2: 1254ERROR2:
1276 free(*result); 1255 free(*result);
1277ERROR1: 1256ERROR1:
1278 psiconv_warn(lev+1,off+len,"Reading of Object Icon Section failed"); 1257 psiconv_error(config,lev+1,off+len,"Reading of Object Icon Section failed");
1279 if (length) 1258 if (length)
1280 *length=0; 1259 *length=0;
1281 if (!res) 1260 if (!res)
1282 return -PSICONV_E_NOMEM; 1261 return -PSICONV_E_NOMEM;
1283 else 1262 else

Legend:
Removed from v.162  
changed lines
  Added in v.268

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