/[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 87 Revision 143
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);
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);
56static psiconv_sheet_f psiconv_empty_sheet_f(void);
45static psiconv_texted_f psiconv_empty_texted_f(void); 57static psiconv_texted_f psiconv_empty_texted_f(void);
46static psiconv_paint_data_section psiconv_empty_paint_data_section(void); 58static psiconv_paint_data_section psiconv_empty_paint_data_section(void);
47static psiconv_pictures psiconv_empty_pictures(void); 59static psiconv_pictures psiconv_empty_pictures(void);
48static psiconv_mbm_f psiconv_empty_mbm_f(void); 60static psiconv_mbm_f psiconv_empty_mbm_f(void);
49static psiconv_sketch_section psiconv_empty_sketch_section(void); 61static psiconv_sketch_section psiconv_empty_sketch_section(void);
145 0.0, /* space_below */ 157 0.0, /* space_below */
146 psiconv_bool_false, /* keep_together */ 158 psiconv_bool_false, /* keep_together */
147 psiconv_bool_false, /* keep_with_next */ 159 psiconv_bool_false, /* keep_with_next */
148 psiconv_bool_false, /* on_next_page */ 160 psiconv_bool_false, /* on_next_page */
149 psiconv_bool_false, /* no_widow_protection */ 161 psiconv_bool_false, /* no_widow_protection */
162 psiconv_bool_false, /* wrap_to_fit_cell */
150 0.0, /* left_margin */ 163 0.0, /* left_margin */
151 &bullet, /* bullet */ 164 &bullet, /* bullet */
152 &no_border, /* left_border */ 165 &no_border, /* left_border */
153 &no_border, /* right_border */ 166 &no_border, /* right_border */
154 &no_border, /* top_border */ 167 &no_border, /* top_border */
309 return ss->normal; 322 return ss->normal;
310 else 323 else
311 return psiconv_list_get(ss->styles,0xff - nr); 324 return psiconv_list_get(ss->styles,0xff - nr);
312} 325}
313 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
314void psiconv_free_color (psiconv_color color) 355void psiconv_free_color (psiconv_color color)
315{ 356{
316 if (color) 357 if (color)
317 free(color); 358 free(color);
318} 359}
401{ 442{
402 if (styles) { 443 if (styles) {
403 psiconv_free_word_style(styles->normal); 444 psiconv_free_word_style(styles->normal);
404 if (styles->styles) 445 if (styles->styles)
405 psiconv_list_free_el(styles->styles,psiconv_free_style_aux); 446 psiconv_list_free_el(styles->styles,psiconv_free_style_aux);
447 free(styles);
406 } 448 }
407} 449}
408 450
409void psiconv_free_header_section(psiconv_header_section header) 451void psiconv_free_header_section(psiconv_header_section header)
410{ 452{
530 if (file) { 572 if (file) {
531 psiconv_free_page_layout_section(file->page_sec); 573 psiconv_free_page_layout_section(file->page_sec);
532 psiconv_free_text_and_layout(file->paragraphs); 574 psiconv_free_text_and_layout(file->paragraphs);
533 psiconv_free_word_status_section(file->status_sec); 575 psiconv_free_word_status_section(file->status_sec);
534 psiconv_free_word_styles_section(file->styles_sec); 576 psiconv_free_word_styles_section(file->styles_sec);
577 free(file);
578 }
579}
580
581void psiconv_free_sheet_status_section(psiconv_sheet_status_section section)
582{
583 if (section)
584 free(section);
585}
586
587void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
588{
589 if (numberformat)
590 free(numberformat);
591}
592
593void psiconv_free_sheet_cell_layout(psiconv_sheet_cell_layout layout)
594{
595 psiconv_free_paragraph_layout(layout->paragraph);
596 psiconv_free_character_layout(layout->character);
597 psiconv_free_sheet_numberformat(layout->numberformat);
598}
599
600void psiconv_free_sheet_cell_aux(void *cell)
601{
602 psiconv_sheet_cell data = cell;
603
604 psiconv_free_sheet_cell_layout(data->layout);
605
606 if ((data->type == psiconv_cell_string) && (data->data.dat_string))
607 free(data->data.dat_string);
608}
609
610void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
611{
612 if (cell) {
613 psiconv_free_sheet_cell_aux(cell);
614 free(cell);
615 }
616}
617
618void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
619{
620 if (list)
621 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
622}
623
624void psiconv_free_sheet_line_aux(void *line)
625{
626 psiconv_sheet_line data = line;
627
628 psiconv_free_sheet_cell_layout(data->layout);
629}
630
631void psiconv_free_sheet_line(psiconv_sheet_line line)
632{
633 if (line) {
634 psiconv_free_sheet_line_aux(line);
635 free(line);
636 }
637}
638
639
640void psiconv_free_sheet_line_list(psiconv_sheet_line_list list)
641{
642 if (list)
643 psiconv_list_free_el(list,psiconv_free_sheet_line_aux);
644}
645
646void psiconv_free_sheet_grid_break_list(psiconv_sheet_grid_break_list list)
647{
648 if (list)
649 psiconv_list_free(list);
650}
651
652void psiconv_free_sheet_grid_size(psiconv_sheet_grid_size s)
653{
654 if (s)
655 free(s);
656}
657
658void psiconv_free_sheet_grid_size_list(psiconv_sheet_grid_size_list list)
659{
660 if (list)
661 psiconv_list_free(list);
662}
663
664void psiconv_free_sheet_grid_section(psiconv_sheet_grid_section sec)
665{
666 if (sec) {
667 psiconv_free_sheet_grid_size_list(sec->row_heights);
668 psiconv_free_sheet_grid_size_list(sec->column_heights);
669 psiconv_free_sheet_grid_break_list(sec->row_page_breaks);
670 psiconv_free_sheet_grid_break_list(sec->column_page_breaks);
671 free(sec);
672 }
673}
674
675void psiconv_free_sheet_worksheet_aux (void *data)
676{
677 psiconv_sheet_worksheet section = data;
678 psiconv_free_sheet_cell_layout(section->default_layout);
679 psiconv_free_sheet_cell_list(section->cells);
680 psiconv_free_sheet_line_list(section->row_default_layouts);
681 psiconv_free_sheet_line_list(section->col_default_layouts);
682 psiconv_free_sheet_grid_section(section->grid);
683}
684
685void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet)
686{
687 if (sheet) {
688 psiconv_free_sheet_worksheet_aux(sheet);
689 free(sheet);
690 }
691}
692
693void psiconv_free_sheet_worksheet_list(psiconv_sheet_worksheet_list list)
694{
695 if (list)
696 psiconv_list_free_el(list,psiconv_free_sheet_worksheet_aux);
697}
698
699void psiconv_free_formula_aux(void *data)
700{
701 psiconv_formula formula;
702 formula = data;
703 if (formula->type == psiconv_formula_dat_string)
704 free(formula->data.dat_string);
705 else if ((formula->type != psiconv_formula_dat_int) &&
706 (formula->type != psiconv_formula_dat_var) &&
707 (formula->type != psiconv_formula_dat_float) &&
708 (formula->type != psiconv_formula_dat_cellref) &&
709 (formula->type != psiconv_formula_dat_cellblock) &&
710 (formula->type != psiconv_formula_dat_vcellblock) &&
711 (formula->type != psiconv_formula_mark_opsep) &&
712 (formula->type != psiconv_formula_mark_opend) &&
713 (formula->type != psiconv_formula_mark_eof) &&
714 (formula->type != psiconv_formula_unknown))
715 psiconv_free_formula_list(formula->data.fun_operands);
716}
717
718void psiconv_free_formula(psiconv_formula formula)
719{
720 if (formula) {
721 psiconv_free_formula_aux(formula);
722 free(formula);
723 }
724}
725
726void psiconv_free_formula_list(psiconv_formula_list list)
727{
728 if (list)
729 psiconv_list_free_el(list,psiconv_free_formula_aux);
730}
731
732void psiconv_free_sheet_name_section(psiconv_sheet_name_section section)
733{
734 if (section) {
735 if(section->name)
736 free(section->name);
737 free(section);
738 }
739}
740
741void psiconv_free_sheet_info_section(psiconv_sheet_info_section section)
742{
743 if (section) {
744 free(section);
745 }
746}
747
748void psiconv_free_sheet_variable_aux(void * variable)
749{
750 psiconv_sheet_variable var = variable;
751 if (var->name)
752 free(var->name);
753 if (var->type == psiconv_var_string)
754 free(var->data.dat_string);
755}
756
757void psiconv_free_sheet_variable(psiconv_sheet_variable var)
758{
759 if (var) {
760 psiconv_free_sheet_variable_aux(var);
761 free(var);
762 }
763}
764
765void psiconv_free_sheet_variable_list(psiconv_sheet_variable_list list)
766{
767 if (list)
768 psiconv_list_free_el(list,psiconv_free_sheet_variable_aux);
769}
770
771void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
772{
773 if (section) {
774 psiconv_free_formula_list(section->formulas);
775 psiconv_free_sheet_worksheet_list(section->worksheets);
776 psiconv_free_sheet_name_section(section->name);
777 psiconv_free_sheet_info_section(section->info);
778 psiconv_free_sheet_variable_list(section->variables);
779 free(section);
780 }
781}
782
783void psiconv_free_sheet_f(psiconv_sheet_f file)
784{
785 if (file) {
786 psiconv_free_page_layout_section(file->page_sec);
787 psiconv_free_sheet_status_section(file->status_sec);
788 psiconv_free_sheet_workbook_section(file->workbook_sec);
535 free(file); 789 free(file);
536 } 790 }
537} 791}
538 792
539void psiconv_free_texted_f(psiconv_texted_f file) 793void psiconv_free_texted_f(psiconv_texted_f file)
638 psiconv_free_mbm_f((psiconv_mbm_f) file->file); 892 psiconv_free_mbm_f((psiconv_mbm_f) file->file);
639 else if (file->type == psiconv_sketch_file) 893 else if (file->type == psiconv_sketch_file)
640 psiconv_free_sketch_f((psiconv_sketch_f) file->file); 894 psiconv_free_sketch_f((psiconv_sketch_f) file->file);
641 else if (file->type == psiconv_clipart_file) 895 else if (file->type == psiconv_clipart_file)
642 psiconv_free_clipart_f((psiconv_clipart_f) file->file); 896 psiconv_free_clipart_f((psiconv_clipart_f) file->file);
897 else if (file->type == psiconv_sheet_file)
898 psiconv_free_sheet_f((psiconv_sheet_f) file->file);
643 free(file); 899 free(file);
644 } 900 }
645} 901}
646 902
647int psiconv_compare_color(const psiconv_color value1, 903int psiconv_compare_color(const psiconv_color value1,
856psiconv_page_layout_section psiconv_empty_page_layout_section(void) 1112psiconv_page_layout_section psiconv_empty_page_layout_section(void)
857{ 1113{
858 psiconv_page_layout_section result; 1114 psiconv_page_layout_section result;
859 if (!(result = malloc(sizeof(*result)))) 1115 if (!(result = malloc(sizeof(*result))))
860 goto ERROR1; 1116 goto ERROR1;
861 result->first_page_nr = 0; 1117 result->first_page_nr = 1;
862 result->header_dist = result->footer_dist = 1.27; 1118 result->header_dist = result->footer_dist = 1.27;
863 result->left_margin = result->right_margin = 3.175; 1119 result->left_margin = result->right_margin = 3.175;
864 result->top_margin = result->bottom_margin = 2.54; 1120 result->top_margin = result->bottom_margin = 2.54;
865 result->page_width = 21.0; 1121 result->page_width = 21.0;
866 result->page_height = 29.7; 1122 result->page_height = 29.7;
918 free(result); 1174 free(result);
919ERROR1: 1175ERROR1:
920 return NULL; 1176 return NULL;
921} 1177}
922 1178
1179psiconv_sheet_status_section psiconv_empty_sheet_status_section(void)
1180{
1181 psiconv_sheet_status_section result;
1182 if (!(result = malloc(sizeof(*result))))
1183 return NULL;
1184 result->show_horizontal_scrollbar = result->show_vertical_scrollbar =
1185 psiconv_triple_auto;
1186 result->show_graph = psiconv_bool_false;
1187 result->show_top_sheet_toolbar = result->show_side_sheet_toolbar =
1188 result->show_top_graph_toolbar = result->show_side_graph_toolbar =
1189 psiconv_bool_true;
1190 result->cursor_row = result->cursor_column = 0;
1191 result->sheet_display_size = result->graph_display_size = 1000;
1192 return result;
1193}
1194
1195psiconv_formula_list psiconv_empty_formula_list(void)
1196{
1197 return psiconv_list_new(sizeof(struct psiconv_formula_s));
1198}
1199
1200psiconv_sheet_workbook_section psiconv_empty_sheet_workbook_section(void)
1201{
1202 psiconv_sheet_workbook_section result;
1203 if (!(result = malloc(sizeof(*result))))
1204 goto ERROR1;
1205 if (!(result->formulas = psiconv_empty_formula_list()))
1206 goto ERROR2;
1207 return result;
1208ERROR2:
1209 free(result);
1210ERROR1:
1211 return NULL;
1212}
1213
1214
1215psiconv_sheet_f psiconv_empty_sheet_f(void)
1216{
1217 psiconv_sheet_f result;
1218 if (!(result = malloc(sizeof(*result))))
1219 goto ERROR1;
1220 if (!(result->page_sec = psiconv_empty_page_layout_section()))
1221 goto ERROR2;
1222 if (!(result->status_sec = psiconv_empty_sheet_status_section()))
1223 goto ERROR3;
1224 if (!(result->workbook_sec = psiconv_empty_sheet_workbook_section()))
1225 goto ERROR4;
1226 return result;
1227ERROR4:
1228 psiconv_free_sheet_status_section(result->status_sec);
1229ERROR3:
1230 psiconv_free_page_layout_section(result->page_sec);
1231ERROR2:
1232 free(result);
1233ERROR1:
1234 return NULL;
1235}
1236
923psiconv_texted_f psiconv_empty_texted_f(void) 1237psiconv_texted_f psiconv_empty_texted_f(void)
924{ 1238{
925 psiconv_texted_f result; 1239 psiconv_texted_f result;
926 if (!(result = malloc(sizeof(*result)))) 1240 if (!(result = malloc(sizeof(*result))))
927 goto ERROR1; 1241 goto ERROR1;
1059 if (!(result = malloc(sizeof(*result)))) 1373 if (!(result = malloc(sizeof(*result))))
1060 return NULL; 1374 return NULL;
1061 result->type = type; 1375 result->type = type;
1062 if (type == psiconv_word_file) { 1376 if (type == psiconv_word_file) {
1063 if (!(result->file = psiconv_empty_word_f())) 1377 if (!(result->file = psiconv_empty_word_f()))
1378 goto ERROR;
1379 } else if (type == psiconv_sheet_file) {
1380 if (!(result->file = psiconv_empty_sheet_f()))
1064 goto ERROR; 1381 goto ERROR;
1065 } else if (type == psiconv_texted_file) { 1382 } else if (type == psiconv_texted_file) {
1066 if (!(result->file = psiconv_empty_texted_f())) 1383 if (!(result->file = psiconv_empty_texted_f()))
1067 goto ERROR; 1384 goto ERROR;
1068 } else if (type == psiconv_mbm_file) { 1385 } else if (type == psiconv_mbm_file) {

Legend:
Removed from v.87  
changed lines
  Added in v.143

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