/[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 142
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}
547{ 581{
548 if (section) 582 if (section)
549 free(section); 583 free(section);
550} 584}
551 585
552void psiconv_free_numberformat(psiconv_numberformat numberformat) 586void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
553{ 587{
554 if (numberformat) 588 if (numberformat)
555 free(numberformat); 589 free(numberformat);
556} 590}
557 591
592void psiconv_free_sheet_cell_layout(psiconv_sheet_cell_layout layout)
593{
594 psiconv_free_paragraph_layout(layout->paragraph);
595 psiconv_free_character_layout(layout->character);
596 psiconv_free_sheet_numberformat(layout->numberformat);
597}
598
599void psiconv_free_sheet_cell_aux(void *cell)
600{
601 psiconv_sheet_cell data = cell;
602
603 psiconv_free_sheet_cell_layout(data->layout);
604
605 if ((data->type == psiconv_cell_string) && (data->data.dat_string))
606 free(data->data.dat_string);
607}
608
558void psiconv_free_sheet_cell(psiconv_sheet_cell cell) 609void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
559{ 610{
560 if (cell) { 611 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); 612 psiconv_free_sheet_cell_aux(cell);
613 free(cell);
614 }
577} 615}
578 616
579void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list) 617void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
580{ 618{
581 if (list) 619 if (list)
582 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux); 620 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
583} 621}
584 622
585void psiconv_free_sheet_worksheet_section( 623void psiconv_free_sheet_line_aux(void *line)
586 psiconv_sheet_worksheet_section section)
587{ 624{
625 psiconv_sheet_line data = line;
626
627 psiconv_free_sheet_cell_layout(data->layout);
628}
629
630void psiconv_free_sheet_line(psiconv_sheet_line line)
631{
632 if (line) {
633 psiconv_free_sheet_line_aux(line);
634 free(line);
635 }
636}
637
638
639void psiconv_free_sheet_line_list(psiconv_sheet_line_list list)
640{
641 if (list)
642 psiconv_list_free_el(list,psiconv_free_sheet_line_aux);
643}
644
645void psiconv_free_sheet_grid_break_list(psiconv_sheet_grid_break_list list)
646{
647 if (list)
648 psiconv_list_free(list);
649}
650
651void psiconv_free_sheet_grid_size(psiconv_sheet_grid_size s)
652{
653 if (s)
654 free(s);
655}
656
657void psiconv_free_sheet_grid_size_list(psiconv_sheet_grid_size_list list)
658{
659 if (list)
660 psiconv_list_free(list);
661}
662
663void psiconv_free_sheet_grid_section(psiconv_sheet_grid_section sec)
664{
588 if (section) { 665 if (sec) {
589 psiconv_free_paragraph_layout(section->paragraph); 666 psiconv_free_sheet_grid_size_list(sec->row_heights);
590 psiconv_free_character_layout(section->character); 667 psiconv_free_sheet_grid_size_list(sec->column_heights);
591 psiconv_free_numberformat(section->numberformat); 668 psiconv_free_sheet_grid_break_list(sec->row_page_breaks);
669 psiconv_free_sheet_grid_break_list(sec->column_page_breaks);
670 free(sec);
671 }
672}
673
674void psiconv_free_sheet_worksheet_aux (void *data)
675{
676 psiconv_sheet_worksheet section = data;
677 psiconv_free_sheet_cell_layout(section->default_layout);
592 psiconv_free_sheet_cell_list(section->cells); 678 psiconv_free_sheet_cell_list(section->cells);
679 psiconv_free_sheet_line_list(section->row_default_layouts);
680 psiconv_free_sheet_line_list(section->col_default_layouts);
681 psiconv_free_sheet_grid_section(section->grid);
682}
683
684void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet)
685{
686 if (sheet) {
687 psiconv_free_sheet_worksheet_aux(sheet);
593 free(section); 688 free(sheet);
594 } 689 }
690}
691
692void psiconv_free_sheet_worksheet_list(psiconv_sheet_worksheet_list list)
693{
694 if (list)
695 psiconv_list_free_el(list,psiconv_free_sheet_worksheet_aux);
595} 696}
596 697
597void psiconv_free_formula_aux(void *data) 698void psiconv_free_formula_aux(void *data)
598{ 699{
599 psiconv_formula formula; 700 psiconv_formula formula;
625{ 726{
626 if (list) 727 if (list)
627 psiconv_list_free_el(list,psiconv_free_formula_aux); 728 psiconv_list_free_el(list,psiconv_free_formula_aux);
628} 729}
629 730
731void psiconv_free_sheet_name_section(psiconv_sheet_name_section section)
732{
733 if (section) {
734 if(section->name)
735 free(section->name);
736 free(section);
737 }
738}
739
740void psiconv_free_sheet_info_section(psiconv_sheet_info_section section)
741{
742 if (section) {
743 free(section);
744 }
745}
746
747void psiconv_free_sheet_variable_aux(void * variable)
748{
749 psiconv_sheet_variable var = variable;
750 if (var->name)
751 free(var->name);
752 if (var->type == psiconv_var_string)
753 free(var->data.dat_string);
754}
755
756void psiconv_free_sheet_variable(psiconv_sheet_variable var)
757{
758 if (var) {
759 psiconv_free_sheet_variable_aux(var);
760 free(var);
761 }
762}
763
764void psiconv_free_sheet_variable_list(psiconv_sheet_variable_list list)
765{
766 if (list)
767 psiconv_list_free_el(list,psiconv_free_sheet_variable_aux);
768}
769
630void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section) 770void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
631{ 771{
632 if (section) { 772 if (section) {
633 psiconv_free_formula_list(section->formulas); 773 psiconv_free_formula_list(section->formulas);
634 psiconv_free_sheet_worksheet_section(section->worksheet); 774 psiconv_free_sheet_worksheet_list(section->worksheets);
775 psiconv_free_sheet_name_section(section->name);
776 psiconv_free_sheet_info_section(section->info);
777 psiconv_free_sheet_variable_list(section->variables);
635 free(section); 778 free(section);
636 } 779 }
637} 780}
638 781
639void psiconv_free_sheet_f(psiconv_sheet_f file) 782void psiconv_free_sheet_f(psiconv_sheet_f file)

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

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