/[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 111 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);
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);
38static void psiconv_free_sheet_worksheet_aux (void *data); 42static void psiconv_free_sheet_worksheet_aux (void *data);
43static void psiconv_free_sheet_variable_aux(void * variable);
39 44
40static psiconv_word_styles_section psiconv_empty_word_styles_section(void); 45static psiconv_word_styles_section psiconv_empty_word_styles_section(void);
41static psiconv_text_and_layout psiconv_empty_text_and_layout(void); 46static psiconv_text_and_layout psiconv_empty_text_and_layout(void);
42static psiconv_texted_section psiconv_empty_texted_section(void); 47static psiconv_texted_section psiconv_empty_texted_section(void);
43static psiconv_page_header psiconv_empty_page_header(void); 48static psiconv_page_header psiconv_empty_page_header(void);
317 return ss->normal; 322 return ss->normal;
318 else 323 else
319 return psiconv_list_get(ss->styles,0xff - nr); 324 return psiconv_list_get(ss->styles,0xff - nr);
320} 325}
321 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
322void psiconv_free_color (psiconv_color color) 355void psiconv_free_color (psiconv_color color)
323{ 356{
324 if (color) 357 if (color)
325 free(color); 358 free(color);
326} 359}
561 psiconv_free_paragraph_layout(layout->paragraph); 594 psiconv_free_paragraph_layout(layout->paragraph);
562 psiconv_free_character_layout(layout->character); 595 psiconv_free_character_layout(layout->character);
563 psiconv_free_sheet_numberformat(layout->numberformat); 596 psiconv_free_sheet_numberformat(layout->numberformat);
564} 597}
565 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
566void psiconv_free_sheet_cell(psiconv_sheet_cell cell) 609void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
567{ 610{
568 if (cell) { 611 if (cell) {
569 psiconv_free_sheet_cell_layout(cell->layout); 612 psiconv_free_sheet_cell_aux(cell);
570
571 if ((cell->type == psiconv_cell_string) && (cell->data.dat_string))
572 free(cell->data.dat_string);
573 free(cell); 613 free(cell);
574 } 614 }
575}
576
577void psiconv_free_sheet_cell_aux(void *data)
578{
579 psiconv_sheet_cell cell;
580 cell = data;
581 psiconv_free_sheet_cell(cell);
582} 615}
583 616
584void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list) 617void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
585{ 618{
586 if (list) 619 if (list)
587 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux); 620 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
621}
622
623void psiconv_free_sheet_line_aux(void *line)
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{
665 if (sec) {
666 psiconv_free_sheet_grid_size_list(sec->row_heights);
667 psiconv_free_sheet_grid_size_list(sec->column_heights);
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 }
588} 672}
589 673
590void psiconv_free_sheet_worksheet_aux (void *data) 674void psiconv_free_sheet_worksheet_aux (void *data)
591{ 675{
592 psiconv_sheet_worksheet section = data; 676 psiconv_sheet_worksheet section = data;
593 psiconv_free_sheet_cell_layout(section->default_layout); 677 psiconv_free_sheet_cell_layout(section->default_layout);
594 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);
595} 682}
596 683
597void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet) 684void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet)
598{ 685{
599 if (sheet) { 686 if (sheet) {
639{ 726{
640 if (list) 727 if (list)
641 psiconv_list_free_el(list,psiconv_free_formula_aux); 728 psiconv_list_free_el(list,psiconv_free_formula_aux);
642} 729}
643 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
644void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section) 770void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
645{ 771{
646 if (section) { 772 if (section) {
647 psiconv_free_formula_list(section->formulas); 773 psiconv_free_formula_list(section->formulas);
648 psiconv_free_sheet_worksheet_list(section->worksheets); 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);
649 free(section); 778 free(section);
650 } 779 }
651} 780}
652 781
653void psiconv_free_sheet_f(psiconv_sheet_f file) 782void psiconv_free_sheet_f(psiconv_sheet_f file)

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

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