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

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

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

Revision 105 Revision 142
22 22
23#include <stdlib.h> 23#include <stdlib.h>
24 24
25#include "parse_routines.h" 25#include "parse_routines.h"
26#include "error.h" 26#include "error.h"
27
28#ifdef DMALLOC
29#include <dmalloc.h>
30#endif
31
27 32
28struct formula_element 33struct formula_element
29{ 34{
30 psiconv_formula_type_t formula_type; 35 psiconv_formula_type_t formula_type;
31 int number_of_args; 36 int number_of_args;
46 {psiconv_formula_op_mul,2,"*"}, 51 {psiconv_formula_op_mul,2,"*"},
47 {psiconv_formula_op_div,2,"/"}, 52 {psiconv_formula_op_div,2,"/"},
48 {psiconv_formula_op_pow,2,"^"}, 53 {psiconv_formula_op_pow,2,"^"},
49 {psiconv_formula_op_pos,1,"+"}, 54 {psiconv_formula_op_pos,1,"+"},
50 {psiconv_formula_op_neg,1,"-"}, 55 {psiconv_formula_op_neg,1,"-"},
51 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 56 {psiconv_formula_op_not,1,"NOT"},
52 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 57 {psiconv_formula_op_and,2,"AND"},
53 {psiconv_formula_unknown,0,"*UNKNOWN*"}, /* 10 */ 58 {psiconv_formula_op_or,2,"OR"}, /* 10 */
54 {psiconv_formula_op_con,2,"&"}, 59 {psiconv_formula_op_con,2,"&"},
55 {psiconv_formula_op_bra,1,"{}"}, 60 {psiconv_formula_op_bra,1,"()"},
56 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 61 {psiconv_formula_unknown,0,"*UNKNOWN*"},
57 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 62 {psiconv_formula_unknown,0,"*UNKNOWN*"},
58 {psiconv_formula_mark_eof,0,"End of formula"}, 63 {psiconv_formula_mark_eof,0,"End of formula"},
59 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 64 {psiconv_formula_unknown,0,"*UNKNOWN*"},
60 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 65 {psiconv_formula_unknown,0,"*UNKNOWN*"},
284 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 289 {psiconv_formula_unknown,0,"*UNKNOWN*"},
285 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 290 {psiconv_formula_unknown,0,"*UNKNOWN*"},
286 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 291 {psiconv_formula_unknown,0,"*UNKNOWN*"},
287 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 292 {psiconv_formula_unknown,0,"*UNKNOWN*"},
288 {psiconv_formula_unknown,0,"*UNKNOWN*"}, 293 {psiconv_formula_unknown,0,"*UNKNOWN*"},
289 {psiconv_formula_unknown,0,"*UNKNOWN*"},
290 {psiconv_formula_unknown,0,"*UNKNOWN*"},
291 {psiconv_formula_unknown,0,"*UNKNOWN*"},
292 {psiconv_formula_unknown,0,"*UNKNOWN*"}}; 294 {psiconv_formula_unknown,0,"*UNKNOWN*"}};
293
294static psiconv_string_t psiconv_read_sheet_string(const psiconv_buffer buf,
295 int lev,
296 psiconv_u32 off,int *length, int *status)
297{
298 int stringlen,i,len,localstatus;
299 psiconv_string_t result;
300 char *res_copy;
301
302 psiconv_progress(lev+1,off,"Going to read a sheet string");
303
304 stringlen = psiconv_read_u8(buf,lev+2,off,&localstatus);
305 if (localstatus)
306 goto ERROR1;
307 psiconv_debug(lev+2,off,"Length: %i",stringlen);
308 len = 1;
309
310 result = malloc(stringlen + 1);
311 if (!result)
312 goto ERROR1;
313 for (i = 0; (i < stringlen) && !localstatus; i++)
314 result[i] = psiconv_read_u8(buf,lev,off+i+len,&localstatus);
315 if (localstatus)
316 goto ERROR2;
317 result[stringlen] = 0;
318 len += stringlen;
319
320 res_copy = psiconv_make_printable(result);
321 if (!res_copy)
322 goto ERROR2;
323 psiconv_debug(lev+2,off,"Contents: `%s'",res_copy);
324 free(res_copy);
325
326 if (length)
327 *length = len;
328
329 if (status)
330 *status = 0;
331
332 psiconv_progress(lev+1,off+len-1,"End of sheet string (total length: %08x)",
333 len);
334
335 return result;
336
337
338ERROR2:
339 free(result);
340ERROR1:
341 psiconv_warn(lev+1,off,"Reading of sheet string failed");
342 if (status)
343 *status = localstatus;
344 if (length)
345 *length = 0;
346 return NULL;
347}
348
349 295
350static int psiconv_parse_sheet_ref(const psiconv_buffer buf,int lev, 296static int psiconv_parse_sheet_ref(const psiconv_buffer buf,int lev,
351 psiconv_u32 off, int *length, 297 psiconv_u32 off, int *length,
352 psiconv_sheet_ref_t *result) 298 psiconv_sheet_ref_t *result)
353{ 299{
447{ 393{
448 int res=0; 394 int res=0;
449 int len=0; 395 int len=0;
450 int leng; 396 int leng;
451 int eof = 0; 397 int eof = 0;
452 psiconv_u8 marker; 398 psiconv_u8 marker,submarker,submarker2;
453 psiconv_formula_list formula_stack; 399 psiconv_formula_list formula_stack;
454 psiconv_formula formula,subformula1,subformula2,subformula3,subformula4; 400 psiconv_formula formula,subformula,subformula1,subformula2,
401 subformula3,subformula4;
402 psiconv_u16 temp,nr_of_subs;
455 403
456 psiconv_progress(lev+1,off,"Going to read a formula element list"); 404 psiconv_progress(lev+1,off,"Going to read a formula element list");
457 if (!(*result = malloc(sizeof(**result)))) 405 if (!(*result = malloc(sizeof(**result))))
458 goto ERROR1; 406 goto ERROR1;
459 if (!(formula_stack = psiconv_list_new(sizeof(struct psiconv_formula_s)))) 407 if (!(formula_stack = psiconv_list_new(sizeof(struct psiconv_formula_s))))
530 formula->type = formula_elements[marker].formula_type; 478 formula->type = formula_elements[marker].formula_type;
531 len += leng; 479 len += leng;
532 if ((res = psiconv_list_add(formula_stack,formula))) 480 if ((res = psiconv_list_add(formula_stack,formula)))
533 goto ERROR8; 481 goto ERROR8;
534 formula->type = psiconv_formula_unknown; 482 formula->type = psiconv_formula_unknown;
535 } else if (formula_elements[marker].formula_type == 483 } else if ((formula_elements[marker].formula_type ==
484 psiconv_formula_dat_cellblock) ||
485 (formula_elements[marker].formula_type ==
536 psiconv_formula_dat_cellblock) { 486 psiconv_formula_dat_vcellblock)) {
537 psiconv_progress(lev+3,off+len,"Next item: a cell block"); 487 psiconv_progress(lev+3,off+len,"Next item: a cell block");
538 if ((res = psiconv_parse_sheet_cell_block(buf,lev+2,off+len,&leng, 488 if ((res = psiconv_parse_sheet_cell_block(buf,lev+2,off+len,&leng,
539 &formula->data.dat_cellblock))) 489 &formula->data.dat_cellblock)))
540 goto ERROR8; 490 goto ERROR8;
541 formula->type = formula_elements[marker].formula_type; 491 formula->type = formula_elements[marker].formula_type;
545 formula->type = psiconv_formula_unknown; 495 formula->type = psiconv_formula_unknown;
546 } else if (formula_elements[marker].formula_type == 496 } else if (formula_elements[marker].formula_type ==
547 psiconv_formula_dat_string) { 497 psiconv_formula_dat_string) {
548 psiconv_progress(lev+3,off+len,"Next item: a string"); 498 psiconv_progress(lev+3,off+len,"Next item: a string");
549 formula->data.dat_string = 499 formula->data.dat_string =
550 psiconv_read_sheet_string(buf,lev+2,off+len,&leng,&res); 500 psiconv_read_short_string(buf,lev+2,off+len,&leng,&res);
551 if (res) 501 if (res)
552 goto ERROR8; 502 goto ERROR8;
553 formula->type = formula_elements[marker].formula_type; 503 formula->type = formula_elements[marker].formula_type;
554 len += leng; 504 len += leng;
555 if ((res = psiconv_list_add(formula_stack,formula))) 505 if ((res = psiconv_list_add(formula_stack,formula)))
556 goto ERROR8; 506 goto ERROR8;
557 formula->type = psiconv_formula_unknown; 507 formula->type = psiconv_formula_unknown;
558 } else if ((formula_elements[marker].formula_type == 508 } else if ((formula_elements[marker].formula_type ==
559 psiconv_formula_dat_var) || 509 psiconv_formula_dat_var)) {
560 (formula_elements[marker].formula_type == 510 psiconv_progress(lev+3,off+len,"Next item: a variable reference");
561 psiconv_formula_dat_vcellblock)) { 511 formula->data.dat_variable = psiconv_read_u32(buf,lev+2,off+len,&res);
562 psiconv_warn(lev+3,off+len,"Not yet supported formula mark!"); 512 if (res)
563 goto ERROR8; 513 goto ERROR8;
514 formula->type = formula_elements[marker].formula_type;
515 len += 4;
516 if ((res = psiconv_list_add(formula_stack,formula)))
517 goto ERROR8;
518 formula->type = psiconv_formula_unknown;
564 } else if (formula_elements[marker].number_of_args == -1) { 519 } else if (formula_elements[marker].number_of_args == -1) {
565 psiconv_warn(lev+3,off+len,"Vararg functions not yet supported!"); 520 psiconv_progress(lev+3,off+len,"Going to parse a vararg function");
521 if (!(formula->data.fun_operands =
522 psiconv_list_new(sizeof(*formula))))
523 goto ERROR8;
524 formula->type = formula_elements[marker].formula_type;
525 nr_of_subs = 0;
526 do {
527 nr_of_subs ++;
528 psiconv_progress(lev+4,off+len,"Going to read vararg argument %d",
529 nr_of_subs);
530 if ((res = psiconv_parse_formula_element_list(buf,lev+4,off+len,&leng,
531 &subformula,maxlen)))
532 goto ERROR8;
533 len += leng;
534 if ((res = psiconv_list_add(formula->data.fun_operands,subformula))) {
535 psiconv_free_formula(subformula);
536 goto ERROR8;
537 }
538 free(subformula);
539 psiconv_progress(lev+4,off+len,"Going to read the next marker");
540 submarker = psiconv_read_u8(buf,lev+4,off+len,&res);
541 len ++;
542 if (res)
543 goto ERROR8;
544 submarker2 = psiconv_read_u8(buf,lev+4,off+len,&res);
545 if (res)
546 goto ERROR8;
547 } while ((formula_elements[submarker].formula_type
548 == psiconv_formula_mark_opsep) &&
549 (formula_elements[submarker2].formula_type
550 != psiconv_formula_mark_opend));
551 if ((formula_elements[submarker].formula_type ==
552 psiconv_formula_mark_opsep) &&
553 (formula_elements[submarker2].formula_type ==
554 psiconv_formula_mark_opend)) {
555 submarker=submarker2;
556 len++;
557 }
558 if (formula_elements[submarker].formula_type
559 != psiconv_formula_mark_opend) {
560 psiconv_warn(lev+3,off+len,"Formula corrupted!");
561 psiconv_debug(lev+3,off+len,"Found unexpected marker %02x",submarker);
566 goto ERROR8; 562 goto ERROR8;
563 }
564 psiconv_progress(lev+3,off+len,"Going to read the repeated marker %02x",
565 marker);
566 submarker = psiconv_read_u8(buf,lev+3,off+len,&res);
567 if (res)
568 goto ERROR8;
569 if (submarker != marker) {
570 psiconv_warn(lev+3,off+len,"Formula corrupted!");
571 psiconv_debug(lev+3,off+len,"Expected marker %02x, found %02x",
572 marker,submarker);
573 goto ERROR8;
574 }
575 len++;
576 psiconv_progress(lev+3,off+len,
577 "Going to read the number of arguments (%d expected)",
578 nr_of_subs);
579 temp = psiconv_read_u16(buf,lev+3,off+len,&res);
580 if (res)
581 goto ERROR8;
582 if (temp != nr_of_subs) {
583 psiconv_warn(lev+3,off+len,"Formula corrupted!");
584 psiconv_debug(lev+3,off+len,
585 "Read %d arguments, but formula says there are %d",
586 nr_of_subs,temp);
587 goto ERROR8;
588 }
589 len += 2;
590 if ((res = psiconv_list_add(formula_stack,formula)))
591 goto ERROR8;
592 formula->type = psiconv_formula_unknown;
567 } else { 593 } else {
568 if (formula_elements[marker].number_of_args > 0) 594 if (formula_elements[marker].number_of_args > 0)
569 if ((res = psiconv_list_pop(formula_stack,subformula1))) 595 if ((res = psiconv_list_pop(formula_stack,subformula1)))
570 goto ERROR8; 596 goto ERROR8;
571 if (formula_elements[marker].number_of_args > 1) 597 if (formula_elements[marker].number_of_args > 1)

Legend:
Removed from v.105  
changed lines
  Added in v.142

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