/[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 171
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);
44static void psiconv_free_sheet_cell_aux(void *cell);
45static void psiconv_free_sheet_line_aux(void *line);
46static void psiconv_free_sheet_worksheet_aux (void *data);
37 47
38static psiconv_word_styles_section psiconv_empty_word_styles_section(void); 48static psiconv_word_styles_section psiconv_empty_word_styles_section(void);
39static psiconv_text_and_layout psiconv_empty_text_and_layout(void); 49static psiconv_text_and_layout psiconv_empty_text_and_layout(void);
40static psiconv_texted_section psiconv_empty_texted_section(void); 50static psiconv_texted_section psiconv_empty_texted_section(void);
41static psiconv_page_header psiconv_empty_page_header(void); 51static psiconv_page_header psiconv_empty_page_header(void);
42static psiconv_page_layout_section psiconv_empty_page_layout_section(void); 52static psiconv_page_layout_section psiconv_empty_page_layout_section(void);
43static psiconv_word_status_section psiconv_empty_word_status_section(void); 53static psiconv_word_status_section psiconv_empty_word_status_section(void);
44static psiconv_word_f psiconv_empty_word_f(void); 54static psiconv_word_f psiconv_empty_word_f(void);
45static psiconv_sheet_status_section psiconv_empty_sheet_status_section(void); 55static psiconv_sheet_status_section psiconv_empty_sheet_status_section(void);
46static psiconv_sheet_formula_list psiconv_empty_sheet_formula_list(void); 56static psiconv_formula_list psiconv_empty_formula_list(void);
47static psiconv_sheet_workbook_section 57static psiconv_sheet_workbook_section
48 psiconv_empty_sheet_workbook_section(void); 58 psiconv_empty_sheet_workbook_section(void);
49static psiconv_sheet_f psiconv_empty_sheet_f(void); 59static psiconv_sheet_f psiconv_empty_sheet_f(void);
50static psiconv_texted_f psiconv_empty_texted_f(void); 60static psiconv_texted_f psiconv_empty_texted_f(void);
51static psiconv_paint_data_section psiconv_empty_paint_data_section(void); 61static psiconv_paint_data_section psiconv_empty_paint_data_section(void);
150 0.0, /* space_below */ 160 0.0, /* space_below */
151 psiconv_bool_false, /* keep_together */ 161 psiconv_bool_false, /* keep_together */
152 psiconv_bool_false, /* keep_with_next */ 162 psiconv_bool_false, /* keep_with_next */
153 psiconv_bool_false, /* on_next_page */ 163 psiconv_bool_false, /* on_next_page */
154 psiconv_bool_false, /* no_widow_protection */ 164 psiconv_bool_false, /* no_widow_protection */
165 psiconv_bool_false, /* wrap_to_fit_cell */
155 0.0, /* left_margin */ 166 0.0, /* left_margin */
156 &bullet, /* bullet */ 167 &bullet, /* bullet */
157 &no_border, /* left_border */ 168 &no_border, /* left_border */
158 &no_border, /* right_border */ 169 &no_border, /* right_border */
159 &no_border, /* top_border */ 170 &no_border, /* top_border */
314 return ss->normal; 325 return ss->normal;
315 else 326 else
316 return psiconv_list_get(ss->styles,0xff - nr); 327 return psiconv_list_get(ss->styles,0xff - nr);
317} 328}
318 329
330psiconv_formula psiconv_get_formula (psiconv_formula_list ss, int nr)
331{
332 return psiconv_list_get(ss,psiconv_list_length(ss)-nr-1);
333}
334
335/* TODO: What if a cell is both in a default row and a default column?!? */
336psiconv_sheet_cell_layout psiconv_get_default_layout
337 (psiconv_sheet_line_list row_defaults,
338 psiconv_sheet_line_list col_defaults,
339 psiconv_sheet_cell_layout cell_default,
340 int row,int col)
341{
342 int i;
343 psiconv_sheet_line line;
344 for (i = 0;i < psiconv_list_length(row_defaults);i++) {
345 line = psiconv_list_get(row_defaults,i);
346 if (line->position == row)
347 return line->layout;
348 }
349 for (i = 0;i < psiconv_list_length(col_defaults);i++) {
350 line = psiconv_list_get(col_defaults,i);
351 if (line->position == col)
352 return line->layout;
353 }
354 return cell_default;
355}
356
357
319void psiconv_free_color (psiconv_color color) 358void psiconv_free_color (psiconv_color color)
320{ 359{
321 if (color) 360 if (color)
322 free(color); 361 free(color);
323} 362}
406{ 445{
407 if (styles) { 446 if (styles) {
408 psiconv_free_word_style(styles->normal); 447 psiconv_free_word_style(styles->normal);
409 if (styles->styles) 448 if (styles->styles)
410 psiconv_list_free_el(styles->styles,psiconv_free_style_aux); 449 psiconv_list_free_el(styles->styles,psiconv_free_style_aux);
450 free(styles);
411 } 451 }
412} 452}
413 453
414void psiconv_free_header_section(psiconv_header_section header) 454void psiconv_free_header_section(psiconv_header_section header)
415{ 455{
436 free(section->name); 476 free(section->name);
437 free(section); 477 free(section);
438 } 478 }
439} 479}
440 480
481void psiconv_free_object_icon_section(psiconv_object_icon_section section)
482{
483 if (section) {
484 if (section->icon_name)
485 free(section->icon_name);
486 free(section);
487 }
488}
489
490void psiconv_free_object_display_section(psiconv_object_display_section section)
491{
492 if (section)
493 free(section);
494}
495
496void psiconv_free_embedded_object_section
497 (psiconv_embedded_object_section object)
498{
499 if (object) {
500 psiconv_free_object_icon_section(object->icon);
501 psiconv_free_object_display_section(object->display);
502 psiconv_free_file(object->object);
503 free(object);
504 }
505}
506
441void psiconv_free_in_line_layout_aux(void * layout) 507void psiconv_free_in_line_layout_aux(void * layout)
442{ 508{
443 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout); 509 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout);
510 psiconv_free_embedded_object_section
511 (((psiconv_in_line_layout) layout)->object);
444} 512}
445 513
446void psiconv_free_in_line_layout(psiconv_in_line_layout layout) 514void psiconv_free_in_line_layout(psiconv_in_line_layout layout)
447{ 515{
448 if (layout) { 516 if (layout) {
545{ 613{
546 if (section) 614 if (section)
547 free(section); 615 free(section);
548} 616}
549 617
550void psiconv_free_sheet_formula(psiconv_sheet_formula formula) 618void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
551{ 619{
552 if (formula) 620 if (numberformat)
553 free(formula); 621 free(numberformat);
554} 622}
555 623
624void psiconv_free_sheet_cell_layout(psiconv_sheet_cell_layout layout)
625{
626 psiconv_free_paragraph_layout(layout->paragraph);
627 psiconv_free_character_layout(layout->character);
628 psiconv_free_sheet_numberformat(layout->numberformat);
629}
630
631void psiconv_free_sheet_cell_aux(void *cell)
632{
633 psiconv_sheet_cell data = cell;
634
635 psiconv_free_sheet_cell_layout(data->layout);
636
637 if ((data->type == psiconv_cell_string) && (data->data.dat_string))
638 free(data->data.dat_string);
639}
640
641void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
642{
643 if (cell) {
644 psiconv_free_sheet_cell_aux(cell);
645 free(cell);
646 }
647}
648
556void psiconv_free_sheet_formula_list(psiconv_sheet_formula_list list) 649void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
650{
651 if (list)
652 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
653}
654
655void psiconv_free_sheet_line_aux(void *line)
656{
657 psiconv_sheet_line data = line;
658
659 psiconv_free_sheet_cell_layout(data->layout);
660}
661
662void psiconv_free_sheet_line(psiconv_sheet_line line)
663{
664 if (line) {
665 psiconv_free_sheet_line_aux(line);
666 free(line);
667 }
668}
669
670
671void psiconv_free_sheet_line_list(psiconv_sheet_line_list list)
672{
673 if (list)
674 psiconv_list_free_el(list,psiconv_free_sheet_line_aux);
675}
676
677void psiconv_free_sheet_grid_break_list(psiconv_sheet_grid_break_list list)
557{ 678{
558 if (list) 679 if (list)
559 psiconv_list_free(list); 680 psiconv_list_free(list);
560} 681}
561 682
683void psiconv_free_sheet_grid_size(psiconv_sheet_grid_size s)
684{
685 if (s)
686 free(s);
687}
688
689void psiconv_free_sheet_grid_size_list(psiconv_sheet_grid_size_list list)
690{
691 if (list)
692 psiconv_list_free(list);
693}
694
695void psiconv_free_sheet_grid_section(psiconv_sheet_grid_section sec)
696{
697 if (sec) {
698 psiconv_free_sheet_grid_size_list(sec->row_heights);
699 psiconv_free_sheet_grid_size_list(sec->column_heights);
700 psiconv_free_sheet_grid_break_list(sec->row_page_breaks);
701 psiconv_free_sheet_grid_break_list(sec->column_page_breaks);
702 free(sec);
703 }
704}
705
706void psiconv_free_sheet_worksheet_aux (void *data)
707{
708 psiconv_sheet_worksheet section = data;
709 psiconv_free_sheet_cell_layout(section->default_layout);
710 psiconv_free_sheet_cell_list(section->cells);
711 psiconv_free_sheet_line_list(section->row_default_layouts);
712 psiconv_free_sheet_line_list(section->col_default_layouts);
713 psiconv_free_sheet_grid_section(section->grid);
714}
715
716void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet)
717{
718 if (sheet) {
719 psiconv_free_sheet_worksheet_aux(sheet);
720 free(sheet);
721 }
722}
723
724void psiconv_free_sheet_worksheet_list(psiconv_sheet_worksheet_list list)
725{
726 if (list)
727 psiconv_list_free_el(list,psiconv_free_sheet_worksheet_aux);
728}
729
730void psiconv_free_formula_aux(void *data)
731{
732 psiconv_formula formula;
733 formula = data;
734 if (formula->type == psiconv_formula_dat_string)
735 free(formula->data.dat_string);
736 else if ((formula->type != psiconv_formula_dat_int) &&
737 (formula->type != psiconv_formula_dat_var) &&
738 (formula->type != psiconv_formula_dat_float) &&
739 (formula->type != psiconv_formula_dat_cellref) &&
740 (formula->type != psiconv_formula_dat_cellblock) &&
741 (formula->type != psiconv_formula_dat_vcellblock) &&
742 (formula->type != psiconv_formula_mark_opsep) &&
743 (formula->type != psiconv_formula_mark_opend) &&
744 (formula->type != psiconv_formula_mark_eof) &&
745 (formula->type != psiconv_formula_unknown))
746 psiconv_free_formula_list(formula->data.fun_operands);
747}
748
749void psiconv_free_formula(psiconv_formula formula)
750{
751 if (formula) {
752 psiconv_free_formula_aux(formula);
753 free(formula);
754 }
755}
756
757void psiconv_free_formula_list(psiconv_formula_list list)
758{
759 if (list)
760 psiconv_list_free_el(list,psiconv_free_formula_aux);
761}
762
763void psiconv_free_sheet_name_section(psiconv_sheet_name_section section)
764{
765 if (section) {
766 if(section->name)
767 free(section->name);
768 free(section);
769 }
770}
771
772void psiconv_free_sheet_info_section(psiconv_sheet_info_section section)
773{
774 if (section) {
775 free(section);
776 }
777}
778
779void psiconv_free_sheet_variable_aux(void * variable)
780{
781 psiconv_sheet_variable var = variable;
782 if (var->name)
783 free(var->name);
784 if (var->type == psiconv_var_string)
785 free(var->data.dat_string);
786}
787
788void psiconv_free_sheet_variable(psiconv_sheet_variable var)
789{
790 if (var) {
791 psiconv_free_sheet_variable_aux(var);
792 free(var);
793 }
794}
795
796void psiconv_free_sheet_variable_list(psiconv_sheet_variable_list list)
797{
798 if (list)
799 psiconv_list_free_el(list,psiconv_free_sheet_variable_aux);
800}
801
562void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section) 802void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
563{ 803{
564 if (section) { 804 if (section) {
565 psiconv_free_sheet_formula_list(section->formulas); 805 psiconv_free_formula_list(section->formulas);
806 psiconv_free_sheet_worksheet_list(section->worksheets);
807 psiconv_free_sheet_name_section(section->name);
808 psiconv_free_sheet_info_section(section->info);
809 psiconv_free_sheet_variable_list(section->variables);
566 free(section); 810 free(section);
567 } 811 }
568} 812}
569 813
570void psiconv_free_sheet_f(psiconv_sheet_f file) 814void psiconv_free_sheet_f(psiconv_sheet_f file)
977 result->cursor_row = result->cursor_column = 0; 1221 result->cursor_row = result->cursor_column = 0;
978 result->sheet_display_size = result->graph_display_size = 1000; 1222 result->sheet_display_size = result->graph_display_size = 1000;
979 return result; 1223 return result;
980} 1224}
981 1225
982psiconv_sheet_formula_list psiconv_empty_sheet_formula_list(void) 1226psiconv_formula_list psiconv_empty_formula_list(void)
983{ 1227{
984 return psiconv_list_new(sizeof(struct psiconv_sheet_formula_s)); 1228 return psiconv_list_new(sizeof(struct psiconv_formula_s));
985} 1229}
986 1230
987psiconv_sheet_workbook_section psiconv_empty_sheet_workbook_section(void) 1231psiconv_sheet_workbook_section psiconv_empty_sheet_workbook_section(void)
988{ 1232{
989 psiconv_sheet_workbook_section result; 1233 psiconv_sheet_workbook_section result;
990 if (!(result = malloc(sizeof(*result)))) 1234 if (!(result = malloc(sizeof(*result))))
991 goto ERROR1; 1235 goto ERROR1;
992 if (!(result->formulas = psiconv_empty_sheet_formula_list())) 1236 if (!(result->formulas = psiconv_empty_formula_list()))
993 goto ERROR2; 1237 goto ERROR2;
994 return result; 1238 return result;
995ERROR2: 1239ERROR2:
996 free(result); 1240 free(result);
997ERROR1: 1241ERROR1:
1102psiconv_sketch_section psiconv_empty_sketch_section(void) 1346psiconv_sketch_section psiconv_empty_sketch_section(void)
1103{ 1347{
1104 psiconv_sketch_section result; 1348 psiconv_sketch_section result;
1105 if (!(result = malloc(sizeof(*result)))) 1349 if (!(result = malloc(sizeof(*result))))
1106 goto ERROR1; 1350 goto ERROR1;
1107 result->form_xsize = 320; 1351 result->displayed_xsize = 320;
1108 result->form_ysize = 200; 1352 result->displayed_ysize = 200;
1109 result->picture_x_offset = result->picture_y_offset = result->picture_xsize = 1353 result->picture_data_x_offset = result->picture_data_y_offset =
1110 result->picture_ysize = 0; 1354 result->form_xsize = result->form_ysize =
1355 result->displayed_size_x_offset = result->displayed_size_y_offset = 0;
1111 result->magnification_x = result->magnification_y = 1.0; 1356 result->magnification_x = result->magnification_y = 1.0;
1112 result->cut_left = result->cut_right = result->cut_top = 1357 result->cut_left = result->cut_right = result->cut_top =
1113 result->cut_bottom = 0.0; 1358 result->cut_bottom = 0.0;
1114 if (!(result->picture = psiconv_empty_paint_data_section())) 1359 if (!(result->picture = psiconv_empty_paint_data_section()))
1115 goto ERROR2; 1360 goto ERROR2;

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

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