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

Legend:
Removed from v.160  
changed lines
  Added in v.270

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