/[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 97 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);
32static void psiconv_free_style_aux(void *style); 36static void psiconv_free_style_aux(void *style);
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);
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);
37 44
38static psiconv_word_styles_section psiconv_empty_word_styles_section(void); 45static psiconv_word_styles_section psiconv_empty_word_styles_section(void);
39static psiconv_text_and_layout psiconv_empty_text_and_layout(void); 46static psiconv_text_and_layout psiconv_empty_text_and_layout(void);
40static psiconv_texted_section psiconv_empty_texted_section(void); 47static psiconv_texted_section psiconv_empty_texted_section(void);
41static psiconv_page_header psiconv_empty_page_header(void); 48static psiconv_page_header psiconv_empty_page_header(void);
42static psiconv_page_layout_section psiconv_empty_page_layout_section(void); 49static psiconv_page_layout_section psiconv_empty_page_layout_section(void);
43static psiconv_word_status_section psiconv_empty_word_status_section(void); 50static psiconv_word_status_section psiconv_empty_word_status_section(void);
44static psiconv_word_f psiconv_empty_word_f(void); 51static psiconv_word_f psiconv_empty_word_f(void);
45static psiconv_sheet_status_section psiconv_empty_sheet_status_section(void); 52static psiconv_sheet_status_section psiconv_empty_sheet_status_section(void);
46static psiconv_sheet_formula_list psiconv_empty_sheet_formula_list(void); 53static psiconv_formula_list psiconv_empty_formula_list(void);
47static psiconv_sheet_workbook_section 54static psiconv_sheet_workbook_section
48 psiconv_empty_sheet_workbook_section(void); 55 psiconv_empty_sheet_workbook_section(void);
49static psiconv_sheet_f psiconv_empty_sheet_f(void); 56static psiconv_sheet_f psiconv_empty_sheet_f(void);
50static psiconv_texted_f psiconv_empty_texted_f(void); 57static psiconv_texted_f psiconv_empty_texted_f(void);
51static psiconv_paint_data_section psiconv_empty_paint_data_section(void); 58static psiconv_paint_data_section psiconv_empty_paint_data_section(void);
150 0.0, /* space_below */ 157 0.0, /* space_below */
151 psiconv_bool_false, /* keep_together */ 158 psiconv_bool_false, /* keep_together */
152 psiconv_bool_false, /* keep_with_next */ 159 psiconv_bool_false, /* keep_with_next */
153 psiconv_bool_false, /* on_next_page */ 160 psiconv_bool_false, /* on_next_page */
154 psiconv_bool_false, /* no_widow_protection */ 161 psiconv_bool_false, /* no_widow_protection */
162 psiconv_bool_false, /* wrap_to_fit_cell */
155 0.0, /* left_margin */ 163 0.0, /* left_margin */
156 &bullet, /* bullet */ 164 &bullet, /* bullet */
157 &no_border, /* left_border */ 165 &no_border, /* left_border */
158 &no_border, /* right_border */ 166 &no_border, /* right_border */
159 &no_border, /* top_border */ 167 &no_border, /* top_border */
314 return ss->normal; 322 return ss->normal;
315 else 323 else
316 return psiconv_list_get(ss->styles,0xff - nr); 324 return psiconv_list_get(ss->styles,0xff - nr);
317} 325}
318 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
319void psiconv_free_color (psiconv_color color) 355void psiconv_free_color (psiconv_color color)
320{ 356{
321 if (color) 357 if (color)
322 free(color); 358 free(color);
323} 359}
545{ 581{
546 if (section) 582 if (section)
547 free(section); 583 free(section);
548} 584}
549 585
550void psiconv_free_sheet_formula(psiconv_sheet_formula formula) 586void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
551{ 587{
552 if (formula) 588 if (numberformat)
553 free(formula); 589 free(numberformat);
554} 590}
555 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
609void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
610{
611 if (cell) {
612 psiconv_free_sheet_cell_aux(cell);
613 free(cell);
614 }
615}
616
556void psiconv_free_sheet_formula_list(psiconv_sheet_formula_list list) 617void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
618{
619 if (list)
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)
557{ 646{
558 if (list) 647 if (list)
559 psiconv_list_free(list); 648 psiconv_list_free(list);
560} 649}
561 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 }
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);
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);
688 free(sheet);
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);
696}
697
698void psiconv_free_formula_aux(void *data)
699{
700 psiconv_formula formula;
701 formula = data;
702 if (formula->type == psiconv_formula_dat_string)
703 free(formula->data.dat_string);
704 else if ((formula->type != psiconv_formula_dat_int) &&
705 (formula->type != psiconv_formula_dat_var) &&
706 (formula->type != psiconv_formula_dat_float) &&
707 (formula->type != psiconv_formula_dat_cellref) &&
708 (formula->type != psiconv_formula_dat_cellblock) &&
709 (formula->type != psiconv_formula_dat_vcellblock) &&
710 (formula->type != psiconv_formula_mark_opsep) &&
711 (formula->type != psiconv_formula_mark_opend) &&
712 (formula->type != psiconv_formula_mark_eof) &&
713 (formula->type != psiconv_formula_unknown))
714 psiconv_free_formula_list(formula->data.fun_operands);
715}
716
717void psiconv_free_formula(psiconv_formula formula)
718{
719 if (formula) {
720 psiconv_free_formula_aux(formula);
721 free(formula);
722 }
723}
724
725void psiconv_free_formula_list(psiconv_formula_list list)
726{
727 if (list)
728 psiconv_list_free_el(list,psiconv_free_formula_aux);
729}
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
562void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section) 770void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
563{ 771{
564 if (section) { 772 if (section) {
565 psiconv_free_sheet_formula_list(section->formulas); 773 psiconv_free_formula_list(section->formulas);
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);
566 free(section); 778 free(section);
567 } 779 }
568} 780}
569 781
570void psiconv_free_sheet_f(psiconv_sheet_f file) 782void psiconv_free_sheet_f(psiconv_sheet_f file)
977 result->cursor_row = result->cursor_column = 0; 1189 result->cursor_row = result->cursor_column = 0;
978 result->sheet_display_size = result->graph_display_size = 1000; 1190 result->sheet_display_size = result->graph_display_size = 1000;
979 return result; 1191 return result;
980} 1192}
981 1193
982psiconv_sheet_formula_list psiconv_empty_sheet_formula_list(void) 1194psiconv_formula_list psiconv_empty_formula_list(void)
983{ 1195{
984 return psiconv_list_new(sizeof(struct psiconv_sheet_formula_s)); 1196 return psiconv_list_new(sizeof(struct psiconv_formula_s));
985} 1197}
986 1198
987psiconv_sheet_workbook_section psiconv_empty_sheet_workbook_section(void) 1199psiconv_sheet_workbook_section psiconv_empty_sheet_workbook_section(void)
988{ 1200{
989 psiconv_sheet_workbook_section result; 1201 psiconv_sheet_workbook_section result;
990 if (!(result = malloc(sizeof(*result)))) 1202 if (!(result = malloc(sizeof(*result))))
991 goto ERROR1; 1203 goto ERROR1;
992 if (!(result->formulas = psiconv_empty_sheet_formula_list())) 1204 if (!(result->formulas = psiconv_empty_formula_list()))
993 goto ERROR2; 1205 goto ERROR2;
994 return result; 1206 return result;
995ERROR2: 1207ERROR2:
996 free(result); 1208 free(result);
997ERROR1: 1209ERROR1:

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

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