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

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

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

Revision 110 Revision 159
21#include "compat.h" 21#include "compat.h"
22#include <stdlib.h> 22#include <stdlib.h>
23#include <string.h> 23#include <string.h>
24#include "data.h" 24#include "data.h"
25#include "list.h" 25#include "list.h"
26
27#ifdef DMALLOC
28#include <dmalloc.h>
29#endif
26 30
27static psiconv_color clone_color(psiconv_color color); 31static psiconv_color clone_color(psiconv_color color);
28static psiconv_font clone_font(psiconv_font font); 32static psiconv_font clone_font(psiconv_font font);
29static psiconv_border clone_border(psiconv_border border); 33static psiconv_border clone_border(psiconv_border border);
30static psiconv_bullet clone_bullet(psiconv_bullet bullet); 34static psiconv_bullet clone_bullet(psiconv_bullet bullet);
33static void psiconv_free_in_line_layout_aux(void * layout); 37static void psiconv_free_in_line_layout_aux(void * layout);
34static void psiconv_free_paragraph_aux(void * paragraph); 38static void psiconv_free_paragraph_aux(void * paragraph);
35static void psiconv_free_paint_data_section_aux(void * section); 39static void psiconv_free_paint_data_section_aux(void * section);
36static void psiconv_free_clipart_section_aux(void * section); 40static void psiconv_free_clipart_section_aux(void * section);
37static void psiconv_free_formula_aux(void *data); 41static void psiconv_free_formula_aux(void *data);
42static void psiconv_free_sheet_worksheet_aux (void *data);
43static void psiconv_free_sheet_variable_aux(void * variable);
38 44
39static psiconv_word_styles_section psiconv_empty_word_styles_section(void); 45static psiconv_word_styles_section psiconv_empty_word_styles_section(void);
40static psiconv_text_and_layout psiconv_empty_text_and_layout(void); 46static psiconv_text_and_layout psiconv_empty_text_and_layout(void);
41static psiconv_texted_section psiconv_empty_texted_section(void); 47static psiconv_texted_section psiconv_empty_texted_section(void);
42static psiconv_page_header psiconv_empty_page_header(void); 48static psiconv_page_header psiconv_empty_page_header(void);
316 return ss->normal; 322 return ss->normal;
317 else 323 else
318 return psiconv_list_get(ss->styles,0xff - nr); 324 return psiconv_list_get(ss->styles,0xff - nr);
319} 325}
320 326
327psiconv_formula psiconv_get_formula (psiconv_formula_list ss, int nr)
328{
329 return psiconv_list_get(ss,psiconv_list_length(ss)-nr-1);
330}
331
332/* TODO: What if a cell is both in a default row and a default column?!? */
333psiconv_sheet_cell_layout psiconv_get_default_layout
334 (psiconv_sheet_line_list row_defaults,
335 psiconv_sheet_line_list col_defaults,
336 psiconv_sheet_cell_layout cell_default,
337 int row,int col)
338{
339 int i;
340 psiconv_sheet_line line;
341 for (i = 0;i < psiconv_list_length(row_defaults);i++) {
342 line = psiconv_list_get(row_defaults,i);
343 if (line->position == row)
344 return line->layout;
345 }
346 for (i = 0;i < psiconv_list_length(col_defaults);i++) {
347 line = psiconv_list_get(col_defaults,i);
348 if (line->position == col)
349 return line->layout;
350 }
351 return cell_default;
352}
353
354
321void psiconv_free_color (psiconv_color color) 355void psiconv_free_color (psiconv_color color)
322{ 356{
323 if (color) 357 if (color)
324 free(color); 358 free(color);
325} 359}
408{ 442{
409 if (styles) { 443 if (styles) {
410 psiconv_free_word_style(styles->normal); 444 psiconv_free_word_style(styles->normal);
411 if (styles->styles) 445 if (styles->styles)
412 psiconv_list_free_el(styles->styles,psiconv_free_style_aux); 446 psiconv_list_free_el(styles->styles,psiconv_free_style_aux);
447 free(styles);
413 } 448 }
414} 449}
415 450
416void psiconv_free_header_section(psiconv_header_section header) 451void psiconv_free_header_section(psiconv_header_section header)
417{ 452{
438 free(section->name); 473 free(section->name);
439 free(section); 474 free(section);
440 } 475 }
441} 476}
442 477
478void psiconv_free_object_icon_section(psiconv_object_icon_section section)
479{
480 if (section) {
481 if (section->icon_name)
482 free(section->icon_name);
483 free(section);
484 }
485}
486
487void psiconv_free_object_display_section(psiconv_object_display_section section)
488{
489 if (section)
490 free(section);
491}
492
493void psiconv_free_object(psiconv_object object)
494{
495 if (object) {
496 psiconv_free_object_icon_section(object->icon);
497 psiconv_free_object_display_section(object->display);
498 psiconv_free_file(object->object);
499 free(object);
500 }
501}
502
443void psiconv_free_in_line_layout_aux(void * layout) 503void psiconv_free_in_line_layout_aux(void * layout)
444{ 504{
445 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout); 505 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout);
506 psiconv_free_object(((psiconv_in_line_layout) layout)->object);
446} 507}
447 508
448void psiconv_free_in_line_layout(psiconv_in_line_layout layout) 509void psiconv_free_in_line_layout(psiconv_in_line_layout layout)
449{ 510{
450 if (layout) { 511 if (layout) {
547{ 608{
548 if (section) 609 if (section)
549 free(section); 610 free(section);
550} 611}
551 612
552void psiconv_free_numberformat(psiconv_numberformat numberformat) 613void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
553{ 614{
554 if (numberformat) 615 if (numberformat)
555 free(numberformat); 616 free(numberformat);
556} 617}
557 618
619void psiconv_free_sheet_cell_layout(psiconv_sheet_cell_layout layout)
620{
621 psiconv_free_paragraph_layout(layout->paragraph);
622 psiconv_free_character_layout(layout->character);
623 psiconv_free_sheet_numberformat(layout->numberformat);
624}
625
626void psiconv_free_sheet_cell_aux(void *cell)
627{
628 psiconv_sheet_cell data = cell;
629
630 psiconv_free_sheet_cell_layout(data->layout);
631
632 if ((data->type == psiconv_cell_string) && (data->data.dat_string))
633 free(data->data.dat_string);
634}
635
558void psiconv_free_sheet_cell(psiconv_sheet_cell cell) 636void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
559{ 637{
560 if (cell) { 638 if (cell) {
561 psiconv_free_paragraph_layout(cell->paragraph);
562 psiconv_free_character_layout(cell->character);
563 psiconv_free_numberformat(cell->numberformat);
564
565 if ((cell->type == psiconv_cell_string) && (cell->data.dat_string))
566 free(cell->data.dat_string);
567
568 free(cell);
569 }
570}
571
572void psiconv_free_sheet_cell_aux(void *data)
573{
574 psiconv_sheet_cell cell;
575 cell = data;
576 psiconv_free_sheet_cell(cell); 639 psiconv_free_sheet_cell_aux(cell);
640 free(cell);
641 }
577} 642}
578 643
579void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list) 644void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
580{ 645{
581 if (list) 646 if (list)
582 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux); 647 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
583} 648}
584 649
585void psiconv_free_sheet_worksheet_section( 650void psiconv_free_sheet_line_aux(void *line)
586 psiconv_sheet_worksheet_section section)
587{ 651{
652 psiconv_sheet_line data = line;
653
654 psiconv_free_sheet_cell_layout(data->layout);
655}
656
657void psiconv_free_sheet_line(psiconv_sheet_line line)
658{
659 if (line) {
660 psiconv_free_sheet_line_aux(line);
661 free(line);
662 }
663}
664
665
666void psiconv_free_sheet_line_list(psiconv_sheet_line_list list)
667{
668 if (list)
669 psiconv_list_free_el(list,psiconv_free_sheet_line_aux);
670}
671
672void psiconv_free_sheet_grid_break_list(psiconv_sheet_grid_break_list list)
673{
674 if (list)
675 psiconv_list_free(list);
676}
677
678void psiconv_free_sheet_grid_size(psiconv_sheet_grid_size s)
679{
680 if (s)
681 free(s);
682}
683
684void psiconv_free_sheet_grid_size_list(psiconv_sheet_grid_size_list list)
685{
686 if (list)
687 psiconv_list_free(list);
688}
689
690void psiconv_free_sheet_grid_section(psiconv_sheet_grid_section sec)
691{
588 if (section) { 692 if (sec) {
589 psiconv_free_paragraph_layout(section->paragraph); 693 psiconv_free_sheet_grid_size_list(sec->row_heights);
590 psiconv_free_character_layout(section->character); 694 psiconv_free_sheet_grid_size_list(sec->column_heights);
591 psiconv_free_numberformat(section->numberformat); 695 psiconv_free_sheet_grid_break_list(sec->row_page_breaks);
696 psiconv_free_sheet_grid_break_list(sec->column_page_breaks);
697 free(sec);
698 }
699}
700
701void psiconv_free_sheet_worksheet_aux (void *data)
702{
703 psiconv_sheet_worksheet section = data;
704 psiconv_free_sheet_cell_layout(section->default_layout);
592 psiconv_free_sheet_cell_list(section->cells); 705 psiconv_free_sheet_cell_list(section->cells);
706 psiconv_free_sheet_line_list(section->row_default_layouts);
707 psiconv_free_sheet_line_list(section->col_default_layouts);
708 psiconv_free_sheet_grid_section(section->grid);
709}
710
711void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet)
712{
713 if (sheet) {
714 psiconv_free_sheet_worksheet_aux(sheet);
593 free(section); 715 free(sheet);
594 } 716 }
717}
718
719void psiconv_free_sheet_worksheet_list(psiconv_sheet_worksheet_list list)
720{
721 if (list)
722 psiconv_list_free_el(list,psiconv_free_sheet_worksheet_aux);
595} 723}
596 724
597void psiconv_free_formula_aux(void *data) 725void psiconv_free_formula_aux(void *data)
598{ 726{
599 psiconv_formula formula; 727 psiconv_formula formula;
625{ 753{
626 if (list) 754 if (list)
627 psiconv_list_free_el(list,psiconv_free_formula_aux); 755 psiconv_list_free_el(list,psiconv_free_formula_aux);
628} 756}
629 757
758void psiconv_free_sheet_name_section(psiconv_sheet_name_section section)
759{
760 if (section) {
761 if(section->name)
762 free(section->name);
763 free(section);
764 }
765}
766
767void psiconv_free_sheet_info_section(psiconv_sheet_info_section section)
768{
769 if (section) {
770 free(section);
771 }
772}
773
774void psiconv_free_sheet_variable_aux(void * variable)
775{
776 psiconv_sheet_variable var = variable;
777 if (var->name)
778 free(var->name);
779 if (var->type == psiconv_var_string)
780 free(var->data.dat_string);
781}
782
783void psiconv_free_sheet_variable(psiconv_sheet_variable var)
784{
785 if (var) {
786 psiconv_free_sheet_variable_aux(var);
787 free(var);
788 }
789}
790
791void psiconv_free_sheet_variable_list(psiconv_sheet_variable_list list)
792{
793 if (list)
794 psiconv_list_free_el(list,psiconv_free_sheet_variable_aux);
795}
796
630void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section) 797void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
631{ 798{
632 if (section) { 799 if (section) {
633 psiconv_free_formula_list(section->formulas); 800 psiconv_free_formula_list(section->formulas);
634 psiconv_free_sheet_worksheet_section(section->worksheet); 801 psiconv_free_sheet_worksheet_list(section->worksheets);
802 psiconv_free_sheet_name_section(section->name);
803 psiconv_free_sheet_info_section(section->info);
804 psiconv_free_sheet_variable_list(section->variables);
635 free(section); 805 free(section);
636 } 806 }
637} 807}
638 808
639void psiconv_free_sheet_f(psiconv_sheet_f file) 809void psiconv_free_sheet_f(psiconv_sheet_f file)

Legend:
Removed from v.110  
changed lines
  Added in v.159

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