/[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 94 Revision 163
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);
53static psiconv_formula_list psiconv_empty_formula_list(void);
54static psiconv_sheet_workbook_section
55 psiconv_empty_sheet_workbook_section(void);
46static psiconv_sheet_f psiconv_empty_sheet_f(void); 56static psiconv_sheet_f psiconv_empty_sheet_f(void);
47static psiconv_texted_f psiconv_empty_texted_f(void); 57static psiconv_texted_f psiconv_empty_texted_f(void);
48static psiconv_paint_data_section psiconv_empty_paint_data_section(void); 58static psiconv_paint_data_section psiconv_empty_paint_data_section(void);
49static psiconv_pictures psiconv_empty_pictures(void); 59static psiconv_pictures psiconv_empty_pictures(void);
50static psiconv_mbm_f psiconv_empty_mbm_f(void); 60static psiconv_mbm_f psiconv_empty_mbm_f(void);
147 0.0, /* space_below */ 157 0.0, /* space_below */
148 psiconv_bool_false, /* keep_together */ 158 psiconv_bool_false, /* keep_together */
149 psiconv_bool_false, /* keep_with_next */ 159 psiconv_bool_false, /* keep_with_next */
150 psiconv_bool_false, /* on_next_page */ 160 psiconv_bool_false, /* on_next_page */
151 psiconv_bool_false, /* no_widow_protection */ 161 psiconv_bool_false, /* no_widow_protection */
162 psiconv_bool_false, /* wrap_to_fit_cell */
152 0.0, /* left_margin */ 163 0.0, /* left_margin */
153 &bullet, /* bullet */ 164 &bullet, /* bullet */
154 &no_border, /* left_border */ 165 &no_border, /* left_border */
155 &no_border, /* right_border */ 166 &no_border, /* right_border */
156 &no_border, /* top_border */ 167 &no_border, /* top_border */
311 return ss->normal; 322 return ss->normal;
312 else 323 else
313 return psiconv_list_get(ss->styles,0xff - nr); 324 return psiconv_list_get(ss->styles,0xff - nr);
314} 325}
315 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
316void psiconv_free_color (psiconv_color color) 355void psiconv_free_color (psiconv_color color)
317{ 356{
318 if (color) 357 if (color)
319 free(color); 358 free(color);
320} 359}
403{ 442{
404 if (styles) { 443 if (styles) {
405 psiconv_free_word_style(styles->normal); 444 psiconv_free_word_style(styles->normal);
406 if (styles->styles) 445 if (styles->styles)
407 psiconv_list_free_el(styles->styles,psiconv_free_style_aux); 446 psiconv_list_free_el(styles->styles,psiconv_free_style_aux);
447 free(styles);
408 } 448 }
409} 449}
410 450
411void psiconv_free_header_section(psiconv_header_section header) 451void psiconv_free_header_section(psiconv_header_section header)
412{ 452{
433 free(section->name); 473 free(section->name);
434 free(section); 474 free(section);
435 } 475 }
436} 476}
437 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
438void psiconv_free_in_line_layout_aux(void * layout) 503void psiconv_free_in_line_layout_aux(void * layout)
439{ 504{
440 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);
441} 507}
442 508
443void psiconv_free_in_line_layout(psiconv_in_line_layout layout) 509void psiconv_free_in_line_layout(psiconv_in_line_layout layout)
444{ 510{
445 if (layout) { 511 if (layout) {
542{ 608{
543 if (section) 609 if (section)
544 free(section); 610 free(section);
545} 611}
546 612
613void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
614{
615 if (numberformat)
616 free(numberformat);
617}
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
636void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
637{
638 if (cell) {
639 psiconv_free_sheet_cell_aux(cell);
640 free(cell);
641 }
642}
643
644void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
645{
646 if (list)
647 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
648}
649
650void psiconv_free_sheet_line_aux(void *line)
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{
692 if (sec) {
693 psiconv_free_sheet_grid_size_list(sec->row_heights);
694 psiconv_free_sheet_grid_size_list(sec->column_heights);
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);
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);
715 free(sheet);
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);
723}
724
725void psiconv_free_formula_aux(void *data)
726{
727 psiconv_formula formula;
728 formula = data;
729 if (formula->type == psiconv_formula_dat_string)
730 free(formula->data.dat_string);
731 else if ((formula->type != psiconv_formula_dat_int) &&
732 (formula->type != psiconv_formula_dat_var) &&
733 (formula->type != psiconv_formula_dat_float) &&
734 (formula->type != psiconv_formula_dat_cellref) &&
735 (formula->type != psiconv_formula_dat_cellblock) &&
736 (formula->type != psiconv_formula_dat_vcellblock) &&
737 (formula->type != psiconv_formula_mark_opsep) &&
738 (formula->type != psiconv_formula_mark_opend) &&
739 (formula->type != psiconv_formula_mark_eof) &&
740 (formula->type != psiconv_formula_unknown))
741 psiconv_free_formula_list(formula->data.fun_operands);
742}
743
744void psiconv_free_formula(psiconv_formula formula)
745{
746 if (formula) {
747 psiconv_free_formula_aux(formula);
748 free(formula);
749 }
750}
751
752void psiconv_free_formula_list(psiconv_formula_list list)
753{
754 if (list)
755 psiconv_list_free_el(list,psiconv_free_formula_aux);
756}
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
797void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
798{
799 if (section) {
800 psiconv_free_formula_list(section->formulas);
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);
805 free(section);
806 }
807}
808
547void psiconv_free_sheet_f(psiconv_sheet_f file) 809void psiconv_free_sheet_f(psiconv_sheet_f file)
548{ 810{
549 if (file) { 811 if (file) {
550 psiconv_free_page_layout_section(file->page_sec); 812 psiconv_free_page_layout_section(file->page_sec);
551 psiconv_free_sheet_status_section(file->status_sec); 813 psiconv_free_sheet_status_section(file->status_sec);
814 psiconv_free_sheet_workbook_section(file->workbook_sec);
552 free(file); 815 free(file);
553 } 816 }
554} 817}
555 818
556void psiconv_free_texted_f(psiconv_texted_f file) 819void psiconv_free_texted_f(psiconv_texted_f file)
953 result->cursor_row = result->cursor_column = 0; 1216 result->cursor_row = result->cursor_column = 0;
954 result->sheet_display_size = result->graph_display_size = 1000; 1217 result->sheet_display_size = result->graph_display_size = 1000;
955 return result; 1218 return result;
956} 1219}
957 1220
1221psiconv_formula_list psiconv_empty_formula_list(void)
1222{
1223 return psiconv_list_new(sizeof(struct psiconv_formula_s));
1224}
1225
1226psiconv_sheet_workbook_section psiconv_empty_sheet_workbook_section(void)
1227{
1228 psiconv_sheet_workbook_section result;
1229 if (!(result = malloc(sizeof(*result))))
1230 goto ERROR1;
1231 if (!(result->formulas = psiconv_empty_formula_list()))
1232 goto ERROR2;
1233 return result;
1234ERROR2:
1235 free(result);
1236ERROR1:
1237 return NULL;
1238}
1239
1240
958psiconv_sheet_f psiconv_empty_sheet_f(void) 1241psiconv_sheet_f psiconv_empty_sheet_f(void)
959{ 1242{
960 psiconv_sheet_f result; 1243 psiconv_sheet_f result;
961 if (!(result = malloc(sizeof(*result)))) 1244 if (!(result = malloc(sizeof(*result))))
962 goto ERROR1; 1245 goto ERROR1;
963 if (!(result->page_sec = psiconv_empty_page_layout_section())) 1246 if (!(result->page_sec = psiconv_empty_page_layout_section()))
964 goto ERROR2; 1247 goto ERROR2;
965 if (!(result->status_sec = psiconv_empty_sheet_status_section())) 1248 if (!(result->status_sec = psiconv_empty_sheet_status_section()))
966 goto ERROR3; 1249 goto ERROR3;
1250 if (!(result->workbook_sec = psiconv_empty_sheet_workbook_section()))
1251 goto ERROR4;
967 return result; 1252 return result;
1253ERROR4:
1254 psiconv_free_sheet_status_section(result->status_sec);
968ERROR3: 1255ERROR3:
969 psiconv_free_page_layout_section(result->page_sec); 1256 psiconv_free_page_layout_section(result->page_sec);
970ERROR2: 1257ERROR2:
971 free(result); 1258 free(result);
972ERROR1: 1259ERROR1:
1054psiconv_sketch_section psiconv_empty_sketch_section(void) 1341psiconv_sketch_section psiconv_empty_sketch_section(void)
1055{ 1342{
1056 psiconv_sketch_section result; 1343 psiconv_sketch_section result;
1057 if (!(result = malloc(sizeof(*result)))) 1344 if (!(result = malloc(sizeof(*result))))
1058 goto ERROR1; 1345 goto ERROR1;
1059 result->form_xsize = 320; 1346 result->displayed_xsize = 320;
1060 result->form_ysize = 200; 1347 result->displayed_ysize = 200;
1061 result->picture_x_offset = result->picture_y_offset = result->picture_xsize = 1348 result->picture_data_x_offset = result->picture_data_y_offset =
1062 result->picture_ysize = 0; 1349 result->form_xsize = result->form_ysize =
1350 result->displayed_size_x_offset = result->displayed_size_y_offset = 0;
1063 result->magnification_x = result->magnification_y = 1.0; 1351 result->magnification_x = result->magnification_y = 1.0;
1064 result->cut_left = result->cut_right = result->cut_top = 1352 result->cut_left = result->cut_right = result->cut_top =
1065 result->cut_bottom = 0.0; 1353 result->cut_bottom = 0.0;
1066 if (!(result->picture = psiconv_empty_paint_data_section())) 1354 if (!(result->picture = psiconv_empty_paint_data_section()))
1067 goto ERROR2; 1355 goto ERROR2;

Legend:
Removed from v.94  
changed lines
  Added in v.163

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