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

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

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

Revision 168 Revision 233
1/* 1/*
2 parse_simple.c - Part of psiconv, a PSION 5 file formats converter 2 parse_simple.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.
23#include <stdlib.h> 23#include <stdlib.h>
24#include <math.h> 24#include <math.h>
25 25
26#include "parse_routines.h" 26#include "parse_routines.h"
27#include "error.h" 27#include "error.h"
28#include "unicode.h"
28 29
29#ifdef DMALLOC 30#ifdef DMALLOC
30#include <dmalloc.h> 31#include <dmalloc.h>
31#endif 32#endif
32 33
34static psiconv_float_t pow2(int n);
35static psiconv_string_t psiconv_read_string_aux(const psiconv_config config,
36 const psiconv_buffer buf,int lev,
37 psiconv_u32 off,int *length, int *status,
38 int kind);
39
33/* Very inefficient, but good enough for now. By implementing it ourselves, 40/* Very inefficient, but good enough for now. By implementing it ourselves,
34 we do not have to link with -lm */ 41 we do not have to link with -lm */
35psiconv_float_t pow2(int n) 42psiconv_float_t pow2(int n)
36{ 43{
37 psiconv_float_t res=1.0; 44 psiconv_float_t res=1.0;
46 int *status) 53 int *status)
47{ 54{
48 psiconv_u8 *ptr; 55 psiconv_u8 *ptr;
49 ptr = psiconv_buffer_get(buf,off); 56 ptr = psiconv_buffer_get(buf,off);
50 if (!ptr) { 57 if (!ptr) {
51 psiconv_warn(config,lev,off,"Trying byte read past the end of the file"); 58 psiconv_error(config,lev,off,"Trying byte read past the end of the file");
52 if (status) 59 if (status)
53 *status = -PSICONV_E_PARSE; 60 *status = -PSICONV_E_PARSE;
54 return 0; 61 return 0;
55 } 62 }
56 if (status) 63 if (status)
63{ 70{
64 psiconv_u8 *ptr0,*ptr1; 71 psiconv_u8 *ptr0,*ptr1;
65 ptr0 = psiconv_buffer_get(buf,off); 72 ptr0 = psiconv_buffer_get(buf,off);
66 ptr1 = psiconv_buffer_get(buf,off+1); 73 ptr1 = psiconv_buffer_get(buf,off+1);
67 if (!ptr0 || !ptr1) { 74 if (!ptr0 || !ptr1) {
68 psiconv_warn(config,lev,off,"Trying word read past the end of the file"); 75 psiconv_error(config,lev,off,"Trying word read past the end of the file");
69 if (status) 76 if (status)
70 *status = -PSICONV_E_PARSE; 77 *status = -PSICONV_E_PARSE;
71 return 0; 78 return 0;
72 } 79 }
73 if (status) 80 if (status)
82 ptr0 = psiconv_buffer_get(buf,off); 89 ptr0 = psiconv_buffer_get(buf,off);
83 ptr1 = psiconv_buffer_get(buf,off+1); 90 ptr1 = psiconv_buffer_get(buf,off+1);
84 ptr2 = psiconv_buffer_get(buf,off+2); 91 ptr2 = psiconv_buffer_get(buf,off+2);
85 ptr3 = psiconv_buffer_get(buf,off+3); 92 ptr3 = psiconv_buffer_get(buf,off+3);
86 if (!ptr0 || !ptr1 || !ptr2 || !ptr3) { 93 if (!ptr0 || !ptr1 || !ptr2 || !ptr3) {
87 psiconv_warn(config,lev,off,"Trying long read past the end of the file"); 94 psiconv_error(config,lev,off,"Trying long read past the end of the file");
88 if (status) 95 if (status)
89 *status = -PSICONV_E_PARSE; 96 *status = -PSICONV_E_PARSE;
90 return 0; 97 return 0;
91 } 98 }
92 if (status) 99 if (status)
107 *length = localstatus?0:4; 114 *length = localstatus?0:4;
108 115
109 return localstatus?0:(temp & 0x7fffffff)*(temp&0x80000000?-1:1); 116 return localstatus?0:(temp & 0x7fffffff)*(temp&0x80000000?-1:1);
110} 117}
111 118
112psiconv_S_t psiconv_read_S(const psiconv_config config,const psiconv_buffer buf, int lev, psiconv_u32 off, 119psiconv_u32 psiconv_read_S(const psiconv_config config,const psiconv_buffer buf, int lev, psiconv_u32 off,
113 int *length,int *status) 120 int *length,int *status)
114{ 121{
115 psiconv_u8 temp; 122 psiconv_u8 temp;
116 psiconv_S_t res; 123 psiconv_u32 res;
117 int len,localstatus; 124 int len,localstatus;
118 125
119 psiconv_progress(config,lev+1,off,"Going to read a S length indicator"); 126 psiconv_progress(config,lev+1,off,"Going to read a S length indicator");
120 temp = psiconv_read_u8(config,buf,lev+2,off,&localstatus); 127 temp = psiconv_read_u8(config,buf,lev+2,off,&localstatus);
121 if (localstatus) 128 if (localstatus)
131 if (localstatus) 138 if (localstatus)
132 goto ERROR; 139 goto ERROR;
133 len = 2; 140 len = 2;
134 psiconv_debug(config,lev+2,off,"Indicator (2 bytes): %04x",res); 141 psiconv_debug(config,lev+2,off,"Indicator (2 bytes): %04x",res);
135 } else { 142 } else {
136 psiconv_warn(config,lev+2,off,"S indicator: unknown encoding!"); 143 psiconv_error(config,lev+2,off,"S indicator: unknown encoding!");
137 psiconv_debug(config,lev+2,off,"Raw data first byte: %02x",temp); 144 psiconv_debug(config,lev+2,off,"Raw data first byte: %02x",temp);
138 goto ERROR; 145 goto ERROR;
139 } 146 }
140 147
141 if (length) 148 if (length)
147 "End of S length indicator (total length: %08x)", len); 154 "End of S length indicator (total length: %08x)", len);
148 155
149 return res; 156 return res;
150 157
151ERROR: 158ERROR:
152 psiconv_warn(config,lev+1,off,"Reading of S indicator failed"); 159 psiconv_error(config,lev+1,off,"Reading of S indicator failed");
153 if (status) 160 if (status)
154 *status = localstatus; 161 *status = localstatus;
155 if (length) 162 if (length)
156 *length = 0; 163 *length = 0;
157 return 0; 164 return 0;
158} 165}
159 166
160psiconv_X_t psiconv_read_X(const psiconv_config config,const psiconv_buffer buf, int lev, psiconv_u32 off, 167psiconv_u32 psiconv_read_X(const psiconv_config config,const psiconv_buffer buf, int lev, psiconv_u32 off,
161 int *length, int *status) 168 int *length, int *status)
162{ 169{
163 psiconv_u8 temp; 170 psiconv_u8 temp;
164 psiconv_X_t res; 171 psiconv_u32 res;
165 int len,localstatus; 172 int len,localstatus;
166 173
167 psiconv_progress(config,lev+1,off,"Going to read a X length indicator"); 174 psiconv_progress(config,lev+1,off,"Going to read a X length indicator");
168 temp = psiconv_read_u8(config,buf,lev+2,off,&localstatus); 175 temp = psiconv_read_u8(config,buf,lev+2,off,&localstatus);
169 if (localstatus) 176 if (localstatus)
185 if (localstatus) 192 if (localstatus)
186 goto ERROR; 193 goto ERROR;
187 len = 4; 194 len = 4;
188 psiconv_debug(config,lev+2,off,"Indicator (4 bytes): %08x",res); 195 psiconv_debug(config,lev+2,off,"Indicator (4 bytes): %08x",res);
189 } else { 196 } else {
190 psiconv_warn(config,lev+2,off,"X indicator: unknown encoding!"); 197 psiconv_error(config,lev+2,off,"X indicator: unknown encoding!");
191 psiconv_debug(config,lev+2,off,"Raw data first byte: %02x",temp); 198 psiconv_debug(config,lev+2,off,"Raw data first byte: %02x",temp);
192 goto ERROR; 199 goto ERROR;
193 } 200 }
194 201
195 if (length) 202 if (length)
201 "End of X length indicator (total length: %08x)", len); 208 "End of X length indicator (total length: %08x)", len);
202 209
203 return res; 210 return res;
204 211
205ERROR: 212ERROR:
206 psiconv_warn(config,lev+1,off,"Reading of X indicator failed"); 213 psiconv_error(config,lev+1,off,"Reading of X indicator failed");
207 if (status) 214 if (status)
208 *status = localstatus; 215 *status = localstatus;
209 if (length) 216 if (length)
210 *length = 0; 217 *length = 0;
211 return 0; 218 return 0;
218 int localstatus; 225 int localstatus;
219 226
220 res = (2.54/1440.0) * ((psiconv_s32) psiconv_read_u32(config,buf,lev,off, 227 res = (2.54/1440.0) * ((psiconv_s32) psiconv_read_u32(config,buf,lev,off,
221 &localstatus)); 228 &localstatus));
222 if (localstatus) { 229 if (localstatus) {
223 psiconv_warn(config,lev+1,off,"Reading of length failed"); 230 psiconv_error(config,lev+1,off,"Reading of length failed");
224 if (length) 231 if (length)
225 *length = 0; 232 *length = 0;
226 if (status) 233 if (status)
227 *status = localstatus; 234 *status = localstatus;
228 return 0; 235 return 0;
240{ 247{
241 psiconv_size_t res; 248 psiconv_size_t res;
242 int localstatus; 249 int localstatus;
243 res = ((psiconv_s32) psiconv_read_u32(config,buf,lev,off,&localstatus)) / 20.0; 250 res = ((psiconv_s32) psiconv_read_u32(config,buf,lev,off,&localstatus)) / 20.0;
244 if (localstatus) { 251 if (localstatus) {
245 psiconv_warn(config,lev+1,off,"Reading of size failed"); 252 psiconv_error(config,lev+1,off,"Reading of size failed");
246 if (length) 253 if (length)
247 *length = 0; 254 *length = 0;
248 if (status) 255 if (status)
249 *status = localstatus; 256 *status = localstatus;
250 return 0; 257 return 0;
262{ 269{
263 psiconv_u8 temp; 270 psiconv_u8 temp;
264 int localstatus; 271 int localstatus;
265 temp = psiconv_read_u8(config,buf,lev,off,&localstatus); 272 temp = psiconv_read_u8(config,buf,lev,off,&localstatus);
266 if (localstatus) { 273 if (localstatus) {
267 psiconv_warn(config,lev+1,off,"Reading of bool failed"); 274 psiconv_error(config,lev+1,off,"Reading of bool failed");
268 if (length) 275 if (length)
269 *length = 0; 276 *length = 0;
270 return localstatus; 277 return localstatus;
271 } 278 }
272 if (length) 279 if (length)
282 psiconv_debug(config,lev+1,off,"Boolean value: %02x",temp); 289 psiconv_debug(config,lev+1,off,"Boolean value: %02x",temp);
283 *result = psiconv_bool_true; 290 *result = psiconv_bool_true;
284 return 0; 291 return 0;
285} 292}
286 293
287psiconv_string_t psiconv_read_string(const psiconv_config config,const psiconv_buffer buf,int lev, 294psiconv_string_t psiconv_read_string(const psiconv_config config,
295 const psiconv_buffer buf,int lev,
288 psiconv_u32 off,int *length, int *status) 296 psiconv_u32 off,int *length, int *status)
289{ 297{
298 return psiconv_read_string_aux(config,buf,lev,off,length,status,-1);
299}
300
301psiconv_string_t psiconv_read_short_string(const psiconv_config config,
302 const psiconv_buffer buf,int lev,
303 psiconv_u32 off,int *length, int *status)
304{
305 return psiconv_read_string_aux(config,buf,lev,off,length,status,-2);
306}
307
308psiconv_string_t psiconv_read_charlist(const psiconv_config config,
309 const psiconv_buffer buf, int lev,
310 psiconv_u32 off, int nrofchars,
311 int *status)
312{
313 int length;
314 if (nrofchars <= 0) {
315 psiconv_error(config,lev,off,
316 "psiconv_read_charlist called with non-positive nrofchars");
317 if (status)
318 *status = -PSICONV_E_OTHER;
319 return NULL;
320 }
321 return psiconv_read_string_aux(config,buf,lev,off,&length,status,nrofchars);
322}
323
324
325psiconv_string_t psiconv_read_string_aux(const psiconv_config config,
326 const psiconv_buffer buf,int lev,
327 psiconv_u32 off,int *length, int *status,
328 int kind)
329{
290 int stringlen,i,leng,len,localstatus; 330 int bytecount,i,leng,len,localstatus;
291 psiconv_string_t result; 331 psiconv_string_t result;
292 char *res_copy; 332 char *res_copy;
333 psiconv_list string;
334 psiconv_ucs2 nextchar;
335 psiconv_ucs2 *nextcharptr;
293 336
294 psiconv_progress(config,lev+1,off,"Going to read a string"); 337 psiconv_progress(config,lev+1,off,"Going to read a string");
295 338
339 if (kind == -1)
296 stringlen = psiconv_read_S(config,buf,lev+2,off,&leng,&localstatus); 340 bytecount = psiconv_read_S(config,buf,lev+2,off,&leng,&localstatus);
341 else if (kind == -2) {
342 bytecount = psiconv_read_u8(config,buf,lev+2,off,&localstatus);
343 leng = 1;
344 } else {
345 bytecount = kind;
346 leng = 0;
347 localstatus = 0;
348 }
297 if (localstatus) 349 if (localstatus)
298 goto ERROR1; 350 goto ERROR1;
299 psiconv_debug(config,lev+2,off,"Length: %i",stringlen); 351 psiconv_debug(config,lev+2,off,"Length: %i",bytecount);
300 len = leng; 352 len = leng;
301 353
302 result = malloc(stringlen + 1); 354 if (!(string = psiconv_list_new(sizeof(*result))))
303 if (!result)
304 goto ERROR1; 355 goto ERROR1;
305 for (i = 0; (i < stringlen) && !localstatus; i++) 356
306 result[i] = psiconv_read_u8(config,buf,lev,off+i+len,&localstatus); 357 /* Read the string into a temporary list */
358 i = 0;
359 while (i < bytecount) {
360 nextchar = psiconv_unicode_read_char(config,buf,lev,off+i+len,
361 &leng,&localstatus);
307 if (localstatus) 362 if (localstatus)
363 goto ERROR2;
364 if ((localstatus = psiconv_list_add(string,&nextchar)))
365 goto ERROR2;
366 i += leng;
367 }
368 if (i > bytecount) {
369 psiconv_error(config,lev,off+i+len,"Malformed string");
370 localstatus = PSICONV_E_PARSE;
308 goto ERROR2; 371 goto ERROR2;
372 }
373 len += bytecount;
374
375 /* Copy the list to the actual string */
376 if (!(result = malloc(sizeof(*result) * (psiconv_list_length(string) + 1))))
377 goto ERROR2;
378 for (i = 0; i < psiconv_list_length(string); i++) {
379 if (!(nextcharptr = psiconv_list_get(string,i))) {
380 psiconv_error(config,lev,off+i+len,"Data structure corruption");
381 goto ERROR3;
382 }
383 result[i] = *nextcharptr;
384 }
309 result[stringlen] = 0; 385 result[i] = 0;
310 len += stringlen;
311 386
312 res_copy = psiconv_make_printable(result); 387 res_copy = psiconv_make_printable(config,result);
313 if (!res_copy) 388 if (!res_copy)
314 goto ERROR2; 389 goto ERROR3;
315 psiconv_debug(config,lev+2,off,"Contents: `%s'",res_copy); 390 psiconv_debug(config,lev+2,off,"Contents: `%s'",res_copy);
316 free(res_copy); 391 free(res_copy);
317 392
393 psiconv_list_free(string);
394
318 if (length) 395 if (length)
319 *length = len; 396 *length = len;
320 397
321 if (status) 398 if (status)
322 *status = 0; 399 *status = 0;
323 400
324 psiconv_progress(config,lev+1,off+len-1,"End of string (total length: %08x)",len); 401 psiconv_progress(config,lev+1,off+len-1,"End of string (total length: %08x)",len);
325 402
326 return result; 403 return result;
327 404
405ERROR3:
406 free(result);
328ERROR2: 407ERROR2:
329 free(result); 408 psiconv_list_free(string);
330ERROR1: 409ERROR1:
331 psiconv_warn(config,lev+1,off,"Reading of string failed"); 410 psiconv_error(config,lev+1,off,"Reading of string failed");
332 if (status)
333 *status = localstatus;
334 if (length)
335 *length = 0;
336 return NULL;
337}
338
339psiconv_string_t psiconv_read_short_string(const psiconv_config config, const psiconv_buffer buf,
340 int lev,
341 psiconv_u32 off,int *length, int *status)
342{
343 int stringlen,i,len,localstatus;
344 psiconv_string_t result;
345 char *res_copy;
346
347 psiconv_progress(config,lev+1,off,"Going to read a short string");
348
349 stringlen = psiconv_read_u8(config,buf,lev+2,off,&localstatus);
350 if (localstatus)
351 goto ERROR1;
352 psiconv_debug(config,lev+2,off,"Length: %i",stringlen);
353 len = 1;
354
355 result = malloc(stringlen + 1);
356 if (!result)
357 goto ERROR1;
358 for (i = 0; (i < stringlen) && !localstatus; i++)
359 result[i] = psiconv_read_u8(config,buf,lev,off+i+len,&localstatus);
360 if (localstatus)
361 goto ERROR2;
362 result[stringlen] = 0;
363 len += stringlen;
364
365 res_copy = psiconv_make_printable(result);
366 if (!res_copy)
367 goto ERROR2;
368 psiconv_debug(config,lev+2,off,"Contents: `%s'",res_copy);
369 free(res_copy);
370
371 if (length)
372 *length = len;
373
374 if (status)
375 *status = 0;
376
377 psiconv_progress(config,lev+1,off+len-1,"End of short string (total length: %08x)",
378 len);
379
380 return result;
381
382
383ERROR2:
384 free(result);
385ERROR1:
386 psiconv_warn(config,lev+1,off,"Reading of short string failed");
387 if (status) 411 if (status)
388 *status = localstatus; 412 *status = localstatus;
389 if (length) 413 if (length)
390 *length = 0; 414 *length = 0;
391 return NULL; 415 return NULL;
423 *length = 8; 447 *length = 8;
424 if (*status) 448 if (*status)
425 *status = res; 449 *status = res;
426 return result; 450 return result;
427ERROR: 451ERROR:
428 psiconv_warn(config,lev+1,off,"Reading of float failed"); 452 psiconv_error(config,lev+1,off,"Reading of float failed");
429 if (length) 453 if (length)
430 *length = 0; 454 *length = 0;
431 if (*status) 455 if (*status)
432 *status = res; 456 *status = res;
433 return 0.0; 457 return 0.0;

Legend:
Removed from v.168  
changed lines
  Added in v.233

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