/[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 42 Revision 134
1/* 1/*
2 data.c - Part of psiconv, a PSION 5 file formats converter 2 data.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 1999 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 1999, 2000 Frodo Looijaard <frodol@dds.nl>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
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#include "general.h"
27 26
28static psiconv_color clone_color(psiconv_color color); 27static psiconv_color clone_color(psiconv_color color);
29static psiconv_font clone_font(psiconv_font font); 28static psiconv_font clone_font(psiconv_font font);
30static psiconv_border clone_border(psiconv_border border); 29static psiconv_border clone_border(psiconv_border border);
31static psiconv_bullet clone_bullet(psiconv_bullet bullet); 30static psiconv_bullet clone_bullet(psiconv_bullet bullet);
33static void psiconv_free_style_aux(void *style); 32static void psiconv_free_style_aux(void *style);
34static void psiconv_free_in_line_layout_aux(void * layout); 33static void psiconv_free_in_line_layout_aux(void * layout);
35static void psiconv_free_paragraph_aux(void * paragraph); 34static void psiconv_free_paragraph_aux(void * paragraph);
36static void psiconv_free_paint_data_section_aux(void * section); 35static void psiconv_free_paint_data_section_aux(void * section);
37static void psiconv_free_clipart_section_aux(void * section); 36static void psiconv_free_clipart_section_aux(void * section);
37static void psiconv_free_formula_aux(void *data);
38static void psiconv_free_sheet_worksheet_aux (void *data);
39static void psiconv_free_sheet_variable_aux(void * variable);
38 40
41static psiconv_word_styles_section psiconv_empty_word_styles_section(void);
42static psiconv_text_and_layout psiconv_empty_text_and_layout(void);
43static psiconv_texted_section psiconv_empty_texted_section(void);
44static psiconv_page_header psiconv_empty_page_header(void);
45static psiconv_page_layout_section psiconv_empty_page_layout_section(void);
46static psiconv_word_status_section psiconv_empty_word_status_section(void);
47static psiconv_word_f psiconv_empty_word_f(void);
48static psiconv_sheet_status_section psiconv_empty_sheet_status_section(void);
49static psiconv_formula_list psiconv_empty_formula_list(void);
50static psiconv_sheet_workbook_section
51 psiconv_empty_sheet_workbook_section(void);
52static psiconv_sheet_f psiconv_empty_sheet_f(void);
53static psiconv_texted_f psiconv_empty_texted_f(void);
54static psiconv_paint_data_section psiconv_empty_paint_data_section(void);
55static psiconv_pictures psiconv_empty_pictures(void);
56static psiconv_mbm_f psiconv_empty_mbm_f(void);
57static psiconv_sketch_section psiconv_empty_sketch_section(void);
58static psiconv_sketch_f psiconv_empty_sketch_f(void);
59static psiconv_clipart_f psiconv_empty_clipart_f(void);
60static psiconv_cliparts psiconv_empty_cliparts(void);
61
62
63/* Note: these defaults seem to be hard-coded somewhere outside the
64 files themself. */
39psiconv_character_layout psiconv_basic_character_layout(void) 65psiconv_character_layout psiconv_basic_character_layout(void)
40{ 66{
41 /* Make the structures static, to oblige IRIX */ 67 /* Make the structures static, to oblige IRIX */
42 static struct psiconv_color black = 68 static struct psiconv_color_s black =
43 { 69 {
44 0x00, /* red */ 70 0x00, /* red */
45 0x00, /* green */ 71 0x00, /* green */
46 0x00, /* blue */ 72 0x00, /* blue */
47 }; 73 };
48 static struct psiconv_color white = 74 static struct psiconv_color_s white =
49 { 75 {
50 0xff, /* red */ 76 0xff, /* red */
51 0xff, /* green */ 77 0xff, /* green */
52 0xff, /* blue */ 78 0xff, /* blue */
53 }; 79 };
54 static struct psiconv_font font = 80 static struct psiconv_font_s font =
55 { 81 {
56 "Times New Roman", /* name */ 82 "Times New Roman", /* name */
57 3 /* screenfont */ 83 3 /* screenfont */
58 }; 84 };
59 struct psiconv_character_layout cl = 85 struct psiconv_character_layout_s cl =
60 { 86 {
61 &black, /* color */ 87 &black, /* color */
62 &white, /* back_color */ 88 &white, /* back_color */
63 10.0, /* font_size */ 89 10.0, /* font_size */
64 psiconv_bool_false, /* italic */ 90 psiconv_bool_false, /* italic */
65 psiconv_bool_false, /* bold */ 91 psiconv_bool_false, /* bold */
66 psiconv_normalscript, /* super_sub */ 92 psiconv_normalscript, /* super_sub */
67 psiconv_bool_false, /* underline */ 93 psiconv_bool_false, /* underline */
68 psiconv_bool_false, /* strike_out */ 94 psiconv_bool_false, /* strikethrough */
69 &font, /* font */ 95 &font, /* font */
70 }; 96 };
71 97
72 return psiconv_clone_character_layout(&cl); 98 return psiconv_clone_character_layout(&cl);
73} 99}
74 100
101/* Note: these defaults seem to be hard-coded somewhere outside the
102 files themself. */
75psiconv_paragraph_layout psiconv_basic_paragraph_layout(void) 103psiconv_paragraph_layout psiconv_basic_paragraph_layout(void)
76{ 104{
77 static struct psiconv_font font = 105 static struct psiconv_font_s font =
78 { 106 {
79 "Times New Roman", /* name */ 107 "Times New Roman", /* name */
80 2 /* screenfont */ 108 2 /* screenfont */
81 }; 109 };
82 static struct psiconv_color black = 110 static struct psiconv_color_s black =
83 { 111 {
84 0x00, /* red */ 112 0x00, /* red */
85 0x00, /* green */ 113 0x00, /* green */
86 0x00, /* blue */ 114 0x00, /* blue */
87 }; 115 };
88 static struct psiconv_color white = 116 static struct psiconv_color_s white =
89 { 117 {
90 0xff, /* red */ 118 0xff, /* red */
91 0xff, /* green */ 119 0xff, /* green */
92 0xff, /* blue */ 120 0xff, /* blue */
93 }; 121 };
94 static struct psiconv_border no_border = 122 static struct psiconv_border_s no_border =
95 { 123 {
96 psiconv_border_none, /* kind */ 124 psiconv_border_none, /* kind */
97 1, /* thickness */ 125 1, /* thickness */
98 &black /* color */ 126 &black /* color */
99 }; 127 };
100 static struct psiconv_bullet bullet = 128 static struct psiconv_bullet_s bullet =
101 { 129 {
102 psiconv_bool_false, /* on */ 130 psiconv_bool_false, /* on */
103 10.0, /* font_size */ 131 10.0, /* font_size */
104 0x95, /* character */ 132 0x95, /* character */
105 psiconv_bool_true, /* indent */ 133 psiconv_bool_true, /* indent */
106 &black, /* color */ 134 &black, /* color */
107 &font, /* font */ 135 &font, /* font */
108 }; 136 };
109 static struct psiconv_all_tabs tabs = 137 static struct psiconv_all_tabs_s tabs =
110 { 138 {
111 0.64, /* normal */ 139 0.64, /* normal */
112 NULL /* kind */ 140 NULL /* kind */
113 }; 141 };
114 struct psiconv_paragraph_layout pl = 142 struct psiconv_paragraph_layout_s pl =
115 { 143 {
116 &white, /* back_color */ 144 &white, /* back_color */
117 0.0, /* indent_left */ 145 0.0, /* indent_left */
118 0.0, /* indent_right */ 146 0.0, /* indent_right */
119 0.0, /* indent_first */ 147 0.0, /* indent_first */
120 psiconv_justify_left, /* justify_hor */ 148 psiconv_justify_left, /* justify_hor */
121 psiconv_justify_middle,/* justify_ver */ 149 psiconv_justify_middle,/* justify_ver */
122 0.0, /* interline */ 150 10.0, /* linespacing */
123 psiconv_bool_false, /* interline_exact */ 151 psiconv_bool_false, /* linespacing_exact */
124 0.0, /* top_space */ 152 0.0, /* space_above */
125 0.0, /* bottom_space */ 153 0.0, /* space_below */
126 psiconv_bool_false, /* on_one_page */
127 psiconv_bool_false, /* together_with */ 154 psiconv_bool_false, /* keep_together */
155 psiconv_bool_false, /* keep_with_next */
128 psiconv_bool_false, /* on_next_page */ 156 psiconv_bool_false, /* on_next_page */
129 psiconv_bool_false, /* no_widow_protection */ 157 psiconv_bool_false, /* no_widow_protection */
158 psiconv_bool_false, /* wrap_to_fit_cell */
130 0.0, /* left_margin */ 159 0.0, /* left_margin */
131 &bullet, /* bullet */ 160 &bullet, /* bullet */
132 &no_border, /* left_border */ 161 &no_border, /* left_border */
133 &no_border, /* right_border */ 162 &no_border, /* right_border */
134 &no_border, /* top_border */ 163 &no_border, /* top_border */
135 &no_border, /* bottom_border */ 164 &no_border, /* bottom_border */
136 &tabs, /* tabs */ 165 &tabs, /* tabs */
137 }; 166 };
138 psiconv_paragraph_layout res; 167 psiconv_paragraph_layout res;
139 168
140 pl.tabs->extras = psiconv_list_new(sizeof(struct psiconv_tab)); 169 if (!(pl.tabs->extras = psiconv_list_new(sizeof(struct psiconv_tab_s))))
170 return NULL;
141 res = psiconv_clone_paragraph_layout(&pl); 171 res = psiconv_clone_paragraph_layout(&pl);
142 psiconv_list_free(pl.tabs->extras); 172 psiconv_list_free(pl.tabs->extras);
143 return res; 173 return res;
144} 174}
145 175
146psiconv_color clone_color(psiconv_color color) 176psiconv_color clone_color(psiconv_color color)
147{ 177{
148 psiconv_color result; 178 psiconv_color result;
149 result = malloc(sizeof(*result)); 179 if (!(result = malloc(sizeof(*result))))
180 return NULL;
150 *result = *color; 181 *result = *color;
151 return result; 182 return result;
152} 183}
153 184
154psiconv_font clone_font(psiconv_font font) 185psiconv_font clone_font(psiconv_font font)
155{ 186{
156 psiconv_font result; 187 psiconv_font result;
157 result = malloc(sizeof(*result)); 188 if(!(result = malloc(sizeof(*result))))
189 goto ERROR1;
158 *result = *font; 190 *result = *font;
159 result->name = strdup(result->name); 191 if (!(result->name = strdup(result->name)))
192 goto ERROR2;
160 return result; 193 return result;
194ERROR2:
195 free(result);
196ERROR1:
197 return NULL;
161} 198}
162 199
163psiconv_border clone_border(psiconv_border border) 200psiconv_border clone_border(psiconv_border border)
164{ 201{
165 psiconv_border result; 202 psiconv_border result;
166 result = malloc(sizeof(*result)); 203 if (!(result = malloc(sizeof(*result))))
204 goto ERROR1;
167 *result = *border; 205 *result = *border;
168 result->color = clone_color(result->color); 206 if(!(result->color = clone_color(result->color)))
207 goto ERROR2;
169 return result; 208 return result;
209ERROR2:
210 free(result);
211ERROR1:
212 return NULL;
170} 213}
171 214
172psiconv_bullet clone_bullet(psiconv_bullet bullet) 215psiconv_bullet clone_bullet(psiconv_bullet bullet)
173{ 216{
174 psiconv_bullet result; 217 psiconv_bullet result;
175 result = malloc(sizeof(*result)); 218 if (!(result = malloc(sizeof(*result))))
219 goto ERROR1;
176 *result = *bullet; 220 *result = *bullet;
177 result->font = clone_font(result->font); 221 if (!(result->font = clone_font(result->font)))
222 goto ERROR2;
178 result->color = clone_color(result->color); 223 if (!(result->color = clone_color(result->color)))
224 goto ERROR3;
179 return result; 225 return result;
226ERROR3:
227 psiconv_free_font(result->font);
228ERROR2:
229 free(result);
230ERROR1:
231 return NULL;
180} 232}
181 233
182psiconv_all_tabs clone_all_tabs(psiconv_all_tabs all_tabs) 234psiconv_all_tabs clone_all_tabs(psiconv_all_tabs all_tabs)
183{ 235{
184 psiconv_all_tabs result; 236 psiconv_all_tabs result;
185 result = malloc(sizeof(*result)); 237 if (!(result = malloc(sizeof(*result))))
238 goto ERROR1;
186 *result = *all_tabs; 239 *result = *all_tabs;
187 result->extras = psiconv_list_clone(result->extras); 240 if (!(result->extras = psiconv_list_clone(result->extras)))
241 goto ERROR2;
188 return result; 242 return result;
243ERROR2:
244 free(result);
245ERROR1:
246 return NULL;
189} 247}
190 248
191psiconv_character_layout psiconv_clone_character_layout 249psiconv_character_layout psiconv_clone_character_layout
192 (psiconv_character_layout ls) 250 (psiconv_character_layout ls)
193{ 251{
194 psiconv_character_layout result; 252 psiconv_character_layout result;
195 253
196 result = malloc(sizeof(*result)); 254 if (!(result = malloc(sizeof(*result))))
255 goto ERROR1;
197 *result = *ls; 256 *result = *ls;
198 result->color = clone_color(result->color); 257 if (!(result->color = clone_color(result->color)))
258 goto ERROR2;
199 result->back_color = clone_color(result->back_color); 259 if (!(result->back_color = clone_color(result->back_color)))
260 goto ERROR3;
200 result->font = clone_font(result->font); 261 if (!(result->font = clone_font(result->font)))
262 goto ERROR4;
201 return result; 263 return result;
264ERROR4:
265 psiconv_free_color(result->back_color);
266ERROR3:
267 psiconv_free_color(result->color);
268ERROR2:
269 free(result);
270ERROR1:
271 return NULL;
202} 272}
203 273
204psiconv_paragraph_layout psiconv_clone_paragraph_layout 274psiconv_paragraph_layout psiconv_clone_paragraph_layout
205 (psiconv_paragraph_layout ls) 275 (psiconv_paragraph_layout ls)
206{ 276{
207 psiconv_paragraph_layout result; 277 psiconv_paragraph_layout result;
208 278
209 result = malloc(sizeof(*result)); 279 if (!(result = malloc(sizeof(*result))))
280 goto ERROR1;
210 *result = *ls; 281 *result = *ls;
211 result->back_color = clone_color(result->back_color); 282 if (!(result->back_color = clone_color(result->back_color)))
283 goto ERROR2;
212 result->bullet = clone_bullet(result->bullet); 284 if (!(result->bullet = clone_bullet(result->bullet)))
285 goto ERROR3;
213 result->left_border = clone_border(result->left_border); 286 if (!(result->left_border = clone_border(result->left_border)))
287 goto ERROR4;
214 result->right_border = clone_border(result->right_border); 288 if (!(result->right_border = clone_border(result->right_border)))
289 goto ERROR5;
215 result->top_border = clone_border(result->top_border); 290 if (!(result->top_border = clone_border(result->top_border)))
291 goto ERROR6;
216 result->bottom_border = clone_border(result->bottom_border); 292 if (!(result->bottom_border = clone_border(result->bottom_border)))
293 goto ERROR7;
217 result->tabs = clone_all_tabs(result->tabs); 294 if (!(result->tabs = clone_all_tabs(result->tabs)))
295 goto ERROR8;
218 return result; 296 return result;
297ERROR8:
298 psiconv_free_border(result->bottom_border);
299ERROR7:
300 psiconv_free_border(result->top_border);
301ERROR6:
302 psiconv_free_border(result->right_border);
303ERROR5:
304 psiconv_free_border(result->left_border);
305ERROR4:
306 psiconv_free_bullet(result->bullet);
307ERROR3:
308 psiconv_free_color(result->back_color);
309ERROR2:
310 free(result);
311ERROR1:
312 return NULL;
219} 313}
220 314
221psiconv_word_style psiconv_get_style (psiconv_word_styles_section ss, int nr) 315psiconv_word_style psiconv_get_style (psiconv_word_styles_section ss, int nr)
222{ 316{
223 if (nr == 0) 317 if (nr == 0)
224 return ss->normal; 318 return ss->normal;
225 else 319 else
226 return psiconv_list_get(ss->styles,0xff - nr); 320 return psiconv_list_get(ss->styles,0xff - nr);
227} 321}
322
323psiconv_formula psiconv_get_formula (psiconv_formula_list ss, int nr)
324{
325 return psiconv_list_get(ss,psiconv_list_length(ss)-nr-1);
326}
327
328/* TODO: What if a cell is both in a default row and a default column?!? */
329psiconv_sheet_cell_layout psiconv_get_default_layout
330 (psiconv_sheet_line_list row_defaults,
331 psiconv_sheet_line_list col_defaults,
332 psiconv_sheet_cell_layout cell_default,
333 int row,int col)
334{
335 int i;
336 psiconv_sheet_line line;
337 for (i = 0;i < psiconv_list_length(row_defaults);i++) {
338 line = psiconv_list_get(row_defaults,i);
339 if (line->position == row)
340 return line->layout;
341 }
342 for (i = 0;i < psiconv_list_length(col_defaults);i++) {
343 line = psiconv_list_get(col_defaults,i);
344 if (line->position == col)
345 return line->layout;
346 }
347 return cell_default;
348}
349
228 350
229void psiconv_free_color (psiconv_color color) 351void psiconv_free_color (psiconv_color color)
230{ 352{
231 if (color) 353 if (color)
232 free(color); 354 free(color);
445 if (file) { 567 if (file) {
446 psiconv_free_page_layout_section(file->page_sec); 568 psiconv_free_page_layout_section(file->page_sec);
447 psiconv_free_text_and_layout(file->paragraphs); 569 psiconv_free_text_and_layout(file->paragraphs);
448 psiconv_free_word_status_section(file->status_sec); 570 psiconv_free_word_status_section(file->status_sec);
449 psiconv_free_word_styles_section(file->styles_sec); 571 psiconv_free_word_styles_section(file->styles_sec);
572 free(file);
573 }
574}
575
576void psiconv_free_sheet_status_section(psiconv_sheet_status_section section)
577{
578 if (section)
579 free(section);
580}
581
582void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
583{
584 if (numberformat)
585 free(numberformat);
586}
587
588void psiconv_free_sheet_cell_layout(psiconv_sheet_cell_layout layout)
589{
590 psiconv_free_paragraph_layout(layout->paragraph);
591 psiconv_free_character_layout(layout->character);
592 psiconv_free_sheet_numberformat(layout->numberformat);
593}
594
595void psiconv_free_sheet_cell_aux(void *cell)
596{
597 psiconv_sheet_cell data = cell;
598
599 psiconv_free_sheet_cell_layout(data->layout);
600
601 if ((data->type == psiconv_cell_string) && (data->data.dat_string))
602 free(data->data.dat_string);
603}
604
605void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
606{
607 if (cell) {
608 psiconv_free_sheet_cell_aux(cell);
609 free(cell);
610 }
611}
612
613void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
614{
615 if (list)
616 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
617}
618
619void psiconv_free_sheet_line_aux(void *line)
620{
621 psiconv_sheet_line data = line;
622
623 psiconv_free_sheet_cell_layout(data->layout);
624}
625
626void psiconv_free_sheet_line(psiconv_sheet_line line)
627{
628 if (line) {
629 psiconv_free_sheet_line_aux(line);
630 free(line);
631 }
632}
633
634
635void psiconv_free_sheet_line_list(psiconv_sheet_line_list list)
636{
637 if (list)
638 psiconv_list_free_el(list,psiconv_free_sheet_line_aux);
639}
640
641void psiconv_free_sheet_grid_break_list(psiconv_sheet_grid_break_list list)
642{
643 if (list)
644 psiconv_list_free(list);
645}
646
647void psiconv_free_sheet_grid_size(psiconv_sheet_grid_size s)
648{
649 if (s)
650 free(s);
651}
652
653void psiconv_free_sheet_grid_size_list(psiconv_sheet_grid_size_list list)
654{
655 if (list)
656 psiconv_list_free(list);
657}
658
659void psiconv_free_sheet_grid_section(psiconv_sheet_grid_section sec)
660{
661 if (sec) {
662 psiconv_free_sheet_grid_size_list(sec->row_heights);
663 psiconv_free_sheet_grid_size_list(sec->column_heights);
664 psiconv_free_sheet_grid_break_list(sec->row_page_breaks);
665 psiconv_free_sheet_grid_break_list(sec->column_page_breaks);
666 free(sec);
667 }
668}
669
670void psiconv_free_sheet_worksheet_aux (void *data)
671{
672 psiconv_sheet_worksheet section = data;
673 psiconv_free_sheet_cell_layout(section->default_layout);
674 psiconv_free_sheet_cell_list(section->cells);
675 psiconv_free_sheet_line_list(section->row_default_layouts);
676 psiconv_free_sheet_line_list(section->col_default_layouts);
677 psiconv_free_sheet_grid_section(section->grid);
678}
679
680void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet)
681{
682 if (sheet) {
683 psiconv_free_sheet_worksheet_aux(sheet);
684 free(sheet);
685 }
686}
687
688void psiconv_free_sheet_worksheet_list(psiconv_sheet_worksheet_list list)
689{
690 if (list)
691 psiconv_list_free_el(list,psiconv_free_sheet_worksheet_aux);
692}
693
694void psiconv_free_formula_aux(void *data)
695{
696 psiconv_formula formula;
697 formula = data;
698 if (formula->type == psiconv_formula_dat_string)
699 free(formula->data.dat_string);
700 else if ((formula->type != psiconv_formula_dat_int) &&
701 (formula->type != psiconv_formula_dat_var) &&
702 (formula->type != psiconv_formula_dat_float) &&
703 (formula->type != psiconv_formula_dat_cellref) &&
704 (formula->type != psiconv_formula_dat_cellblock) &&
705 (formula->type != psiconv_formula_dat_vcellblock) &&
706 (formula->type != psiconv_formula_mark_opsep) &&
707 (formula->type != psiconv_formula_mark_opend) &&
708 (formula->type != psiconv_formula_mark_eof) &&
709 (formula->type != psiconv_formula_unknown))
710 psiconv_free_formula_list(formula->data.fun_operands);
711}
712
713void psiconv_free_formula(psiconv_formula formula)
714{
715 if (formula) {
716 psiconv_free_formula_aux(formula);
717 free(formula);
718 }
719}
720
721void psiconv_free_formula_list(psiconv_formula_list list)
722{
723 if (list)
724 psiconv_list_free_el(list,psiconv_free_formula_aux);
725}
726
727void psiconv_free_sheet_name_section(psiconv_sheet_name_section section)
728{
729 if (section) {
730 if(section->name)
731 free(section->name);
732 free(section);
733 }
734}
735
736void psiconv_free_sheet_info_section(psiconv_sheet_info_section section)
737{
738 if (section) {
739 free(section);
740 }
741}
742
743void psiconv_free_sheet_variable_aux(void * variable)
744{
745 psiconv_sheet_variable var = variable;
746 if (var->name)
747 free(var->name);
748 if (var->type == psiconv_var_string)
749 free(var->data.dat_string);
750}
751
752void psiconv_free_sheet_variable(psiconv_sheet_variable var)
753{
754 if (var) {
755 psiconv_free_sheet_variable_aux(var);
756 free(var);
757 }
758}
759
760void psiconv_free_sheet_variable_list(psiconv_sheet_variable_list list)
761{
762 if (list)
763 psiconv_list_free_el(list,psiconv_free_sheet_variable_aux);
764}
765
766void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
767{
768 if (section) {
769 psiconv_free_formula_list(section->formulas);
770 psiconv_free_sheet_worksheet_list(section->worksheets);
771 psiconv_free_sheet_name_section(section->name);
772 psiconv_free_sheet_info_section(section->info);
773 psiconv_free_sheet_variable_list(section->variables);
774 free(section);
775 }
776}
777
778void psiconv_free_sheet_f(psiconv_sheet_f file)
779{
780 if (file) {
781 psiconv_free_page_layout_section(file->page_sec);
782 psiconv_free_sheet_status_section(file->status_sec);
783 psiconv_free_sheet_workbook_section(file->workbook_sec);
450 free(file); 784 free(file);
451 } 785 }
452} 786}
453 787
454void psiconv_free_texted_f(psiconv_texted_f file) 788void psiconv_free_texted_f(psiconv_texted_f file)
553 psiconv_free_mbm_f((psiconv_mbm_f) file->file); 887 psiconv_free_mbm_f((psiconv_mbm_f) file->file);
554 else if (file->type == psiconv_sketch_file) 888 else if (file->type == psiconv_sketch_file)
555 psiconv_free_sketch_f((psiconv_sketch_f) file->file); 889 psiconv_free_sketch_f((psiconv_sketch_f) file->file);
556 else if (file->type == psiconv_clipart_file) 890 else if (file->type == psiconv_clipart_file)
557 psiconv_free_clipart_f((psiconv_clipart_f) file->file); 891 psiconv_free_clipart_f((psiconv_clipart_f) file->file);
892 else if (file->type == psiconv_sheet_file)
893 psiconv_free_sheet_f((psiconv_sheet_f) file->file);
558 free(file); 894 free(file);
559 } 895 }
560} 896}
897
898int psiconv_compare_color(const psiconv_color value1,
899 const psiconv_color value2)
900{
901 if (!value1 || !value2)
902 return 1;
903 if ((value1->red == value2->red) &&
904 (value1->green == value2->green) &&
905 (value1->blue == value2->blue))
906 return 0;
907 else
908 return 1;
909}
910
911int psiconv_compare_font(const psiconv_font value1,
912 const psiconv_font value2)
913{
914 if (!value1 || !value2 || !value1->name || !value2->name)
915 return 1;
916 if ((value1->screenfont == value2->screenfont) &&
917 !strcmp(value1->name,value2->name))
918 return 0;
919 else
920 return 1;
921}
922
923int psiconv_compare_border(const psiconv_border value1,
924 const psiconv_border value2)
925{
926 if (!value1 || !value2)
927 return 1;
928 if ((value1->kind == value2->kind) &&
929 (value1->thickness == value2->thickness) &&
930 !psiconv_compare_color(value1->color,value2->color))
931 return 0;
932 else
933 return 1;
934}
935
936int psiconv_compare_bullet(const psiconv_bullet value1,
937 const psiconv_bullet value2)
938{
939 if (!value1 || !value2)
940 return 1;
941 if ((value1->on == value2->on) &&
942 (value1->font_size == value2->font_size) &&
943 (value1->character == value2->character) &&
944 (value1->indent == value2->indent) &&
945 !psiconv_compare_color(value1->color,value2->color) &&
946 !psiconv_compare_font(value1->font,value2->font))
947 return 0;
948 else
949 return 1;
950}
951
952int psiconv_compare_tab(const psiconv_tab value1, const psiconv_tab value2)
953{
954 if (!value1 || !value2)
955 return 1;
956 if ((value1->location == value2->location) &&
957 (value1->kind == value2->kind))
958 return 0;
959 else
960 return 1;
961}
962
963int psiconv_compare_all_tabs(const psiconv_all_tabs value1,
964 const psiconv_all_tabs value2)
965{
966 int i;
967
968 if (!value1 || !value2 || !value1->extras || !value2->extras)
969 return 1;
970
971 if ((value1->normal != value2->normal) ||
972 psiconv_list_length(value1->extras) !=
973 psiconv_list_length(value2->extras))
974 return 1;
975 for (i = 0; i < psiconv_list_length(value1->extras); i++)
976 if (psiconv_compare_tab(psiconv_list_get(value1->extras,i),
977 psiconv_list_get(value2->extras,i)))
978
979 return 1;
980 return 0;
981}
982
983int psiconv_compare_paragraph_layout(const psiconv_paragraph_layout value1,
984 const psiconv_paragraph_layout value2)
985{
986 if (!value1 || !value2)
987 return 1;
988 if ((value1->indent_left == value2->indent_left) &&
989 (value1->indent_right == value2->indent_right) &&
990 (value1->indent_first == value2->indent_first) &&
991 (value1->justify_hor == value2->justify_hor) &&
992 (value1->justify_ver == value2->justify_ver) &&
993 (value1->linespacing == value2->linespacing) &&
994 (value1->space_above == value2->space_above) &&
995 (value1->space_below == value2->space_below) &&
996 (value1->keep_together == value2->keep_together) &&
997 (value1->keep_with_next == value2->keep_with_next) &&
998 (value1->on_next_page == value2->on_next_page) &&
999 (value1->no_widow_protection == value2->no_widow_protection) &&
1000 (value1->border_distance == value2->border_distance) &&
1001 !psiconv_compare_color(value1->back_color,value2->back_color) &&
1002 !psiconv_compare_bullet(value1->bullet,value2->bullet) &&
1003 !psiconv_compare_border(value1->left_border,value2->left_border) &&
1004 !psiconv_compare_border(value1->right_border,value2->right_border) &&
1005 !psiconv_compare_border(value1->top_border,value2->top_border) &&
1006 !psiconv_compare_border(value1->bottom_border,value2->bottom_border) &&
1007 !psiconv_compare_all_tabs(value1->tabs,value2->tabs))
1008 return 0;
1009 else
1010 return 1;
1011}
1012
1013
1014int psiconv_compare_character_layout(const psiconv_character_layout value1,
1015 const psiconv_character_layout value2)
1016{
1017 if (!value1 || !value2)
1018 return 1;
1019 if ((value1->font_size == value2->font_size) &&
1020 (value1->italic == value2->italic) &&
1021 (value1->bold == value2->bold) &&
1022 (value1->super_sub == value2->super_sub) &&
1023 (value1->underline == value2->underline) &&
1024 (value1->strikethrough == value2->strikethrough) &&
1025 !psiconv_compare_color(value1->color,value2->color) &&
1026 !psiconv_compare_color(value1->back_color,value2->back_color) &&
1027 !psiconv_compare_font(value1->font,value2->font))
1028 return 0;
1029 else
1030 return 1;
1031}
1032
1033
1034
1035psiconv_word_styles_section psiconv_empty_word_styles_section(void)
1036{
1037 psiconv_word_styles_section result;
1038 if (!(result = malloc(sizeof(*result))))
1039 goto ERROR1;
1040 if (!(result->styles = psiconv_list_new(sizeof(struct psiconv_word_style_s))))
1041 goto ERROR2;
1042 if (!(result->normal = malloc(sizeof(struct psiconv_word_style_s))))
1043 goto ERROR3;
1044 if (!(result->normal->character = psiconv_basic_character_layout()))
1045 goto ERROR4;
1046 if (!(result->normal->paragraph = psiconv_basic_paragraph_layout()))
1047 goto ERROR5;
1048 result->normal->hotkey = 'N';
1049 result->normal->name = NULL;
1050 result->normal->built_in = psiconv_bool_true;
1051 result->normal->outline_level = 0;
1052 return result;
1053ERROR5:
1054 psiconv_free_character_layout(result->normal->character);
1055ERROR4:
1056 free(result->normal);
1057ERROR3:
1058 psiconv_list_free(result->styles);
1059ERROR2:
1060 free(result);
1061ERROR1:
1062 return NULL;
1063}
1064
1065psiconv_text_and_layout psiconv_empty_text_and_layout(void)
1066{
1067 return psiconv_list_new(sizeof(struct psiconv_paragraph_s));
1068}
1069
1070psiconv_texted_section psiconv_empty_texted_section(void)
1071{
1072 psiconv_texted_section result;
1073 if (!(result = malloc(sizeof(*result))))
1074 goto ERROR1;
1075 if (!(result->paragraphs = psiconv_empty_text_and_layout()))
1076 goto ERROR2;
1077 return result;
1078ERROR2:
1079 free(result);
1080ERROR1:
1081 return NULL;
1082}
1083
1084psiconv_page_header psiconv_empty_page_header(void)
1085{
1086 psiconv_page_header result;
1087 if (!(result = malloc(sizeof(*result))))
1088 goto ERROR1;
1089 result->on_first_page = psiconv_bool_true;
1090 if (!(result->base_paragraph_layout = psiconv_basic_paragraph_layout()))
1091 goto ERROR2;
1092 if (!(result->base_character_layout = psiconv_basic_character_layout()))
1093 goto ERROR3;
1094 if (!(result->text = psiconv_empty_texted_section()))
1095 goto ERROR4;
1096 return result;
1097ERROR4:
1098 psiconv_free_character_layout(result->base_character_layout);
1099ERROR3:
1100 psiconv_free_paragraph_layout(result->base_paragraph_layout);
1101ERROR2:
1102 free(result);
1103ERROR1:
1104 return NULL;
1105}
1106
1107psiconv_page_layout_section psiconv_empty_page_layout_section(void)
1108{
1109 psiconv_page_layout_section result;
1110 if (!(result = malloc(sizeof(*result))))
1111 goto ERROR1;
1112 result->first_page_nr = 1;
1113 result->header_dist = result->footer_dist = 1.27;
1114 result->left_margin = result->right_margin = 3.175;
1115 result->top_margin = result->bottom_margin = 2.54;
1116 result->page_width = 21.0;
1117 result->page_height = 29.7;
1118 result->landscape = psiconv_bool_false;
1119 if (!(result->header = psiconv_empty_page_header()))
1120 goto ERROR2;
1121 if (!(result->footer = psiconv_empty_page_header()))
1122 goto ERROR3;
1123 return result;
1124ERROR3:
1125 psiconv_free_page_header(result->header);
1126ERROR2:
1127 free(result);
1128ERROR1:
1129 return NULL;
1130}
1131
1132psiconv_word_status_section psiconv_empty_word_status_section(void)
1133{
1134 psiconv_word_status_section result;
1135 if (!(result = malloc(sizeof(*result))))
1136 return NULL;
1137 result->show_tabs = result->show_spaces = result->show_paragraph_ends =
1138 result->show_hard_minus = result->show_hard_space =
1139 result->fit_lines_to_screen = psiconv_bool_false;
1140 result->show_full_pictures = result->show_full_graphs =
1141 result->show_top_toolbar = result->show_side_toolbar =
1142 psiconv_bool_true;
1143 result->cursor_position = 0;
1144 result->display_size = 1000;
1145 return result;
1146}
1147
1148psiconv_word_f psiconv_empty_word_f(void)
1149{
1150 psiconv_word_f result;
1151 if (!(result = malloc(sizeof(*result))))
1152 goto ERROR1;
1153 if (!(result->page_sec = psiconv_empty_page_layout_section()))
1154 goto ERROR2;
1155 if (!(result->paragraphs = psiconv_empty_text_and_layout()))
1156 goto ERROR3;
1157 if (!(result->status_sec = psiconv_empty_word_status_section()))
1158 goto ERROR4;
1159 if (!(result->styles_sec = psiconv_empty_word_styles_section()))
1160 goto ERROR5;
1161 return result;
1162ERROR5:
1163 psiconv_free_word_status_section(result->status_sec);
1164ERROR4:
1165 psiconv_free_text_and_layout(result->paragraphs);
1166ERROR3:
1167 psiconv_free_page_layout_section(result->page_sec);
1168ERROR2:
1169 free(result);
1170ERROR1:
1171 return NULL;
1172}
1173
1174psiconv_sheet_status_section psiconv_empty_sheet_status_section(void)
1175{
1176 psiconv_sheet_status_section result;
1177 if (!(result = malloc(sizeof(*result))))
1178 return NULL;
1179 result->show_horizontal_scrollbar = result->show_vertical_scrollbar =
1180 psiconv_triple_auto;
1181 result->show_graph = psiconv_bool_false;
1182 result->show_top_sheet_toolbar = result->show_side_sheet_toolbar =
1183 result->show_top_graph_toolbar = result->show_side_graph_toolbar =
1184 psiconv_bool_true;
1185 result->cursor_row = result->cursor_column = 0;
1186 result->sheet_display_size = result->graph_display_size = 1000;
1187 return result;
1188}
1189
1190psiconv_formula_list psiconv_empty_formula_list(void)
1191{
1192 return psiconv_list_new(sizeof(struct psiconv_formula_s));
1193}
1194
1195psiconv_sheet_workbook_section psiconv_empty_sheet_workbook_section(void)
1196{
1197 psiconv_sheet_workbook_section result;
1198 if (!(result = malloc(sizeof(*result))))
1199 goto ERROR1;
1200 if (!(result->formulas = psiconv_empty_formula_list()))
1201 goto ERROR2;
1202 return result;
1203ERROR2:
1204 free(result);
1205ERROR1:
1206 return NULL;
1207}
1208
1209
1210psiconv_sheet_f psiconv_empty_sheet_f(void)
1211{
1212 psiconv_sheet_f result;
1213 if (!(result = malloc(sizeof(*result))))
1214 goto ERROR1;
1215 if (!(result->page_sec = psiconv_empty_page_layout_section()))
1216 goto ERROR2;
1217 if (!(result->status_sec = psiconv_empty_sheet_status_section()))
1218 goto ERROR3;
1219 if (!(result->workbook_sec = psiconv_empty_sheet_workbook_section()))
1220 goto ERROR4;
1221 return result;
1222ERROR4:
1223 psiconv_free_sheet_status_section(result->status_sec);
1224ERROR3:
1225 psiconv_free_page_layout_section(result->page_sec);
1226ERROR2:
1227 free(result);
1228ERROR1:
1229 return NULL;
1230}
1231
1232psiconv_texted_f psiconv_empty_texted_f(void)
1233{
1234 psiconv_texted_f result;
1235 if (!(result = malloc(sizeof(*result))))
1236 goto ERROR1;
1237 if (!(result->page_sec = psiconv_empty_page_layout_section()))
1238 goto ERROR2;
1239 if (!(result->texted_sec = psiconv_empty_texted_section()))
1240 goto ERROR3;
1241 return result;
1242ERROR3:
1243 psiconv_free_page_layout_section(result->page_sec);
1244ERROR2:
1245 free(result);
1246ERROR1:
1247 return NULL;
1248}
1249
1250psiconv_paint_data_section psiconv_empty_paint_data_section(void)
1251{
1252 psiconv_paint_data_section result;
1253 if (!(result = malloc(sizeof(*result))))
1254 goto ERROR1;
1255 /* Is this correct? */
1256 result->xsize = result->ysize = result->pic_xsize = result->pic_ysize = 0;
1257 /* Probably forbidden... */
1258 if (!(result->red = malloc(0)))
1259 goto ERROR2;
1260 if (!(result->green = malloc(0)))
1261 goto ERROR3;
1262 if (!(result->blue = malloc(0)))
1263 goto ERROR4;
1264 return result;
1265ERROR4:
1266 free(result->green);
1267ERROR3:
1268 free(result->red);
1269ERROR2:
1270 free(result);
1271ERROR1:
1272 return NULL;
1273}
1274
1275
1276psiconv_pictures psiconv_empty_pictures(void)
1277{
1278 psiconv_pictures result;
1279 psiconv_paint_data_section pds;
1280 if (!(result = psiconv_list_new(sizeof(struct psiconv_paint_data_section_s))))
1281 goto ERROR1;
1282 if (!(pds = psiconv_empty_paint_data_section()))
1283 goto ERROR2;
1284 if (psiconv_list_add(result,pds))
1285 goto ERROR3;
1286 free(pds);
1287 return result;
1288ERROR3:
1289 psiconv_free_paint_data_section(pds);
1290ERROR2:
1291 psiconv_list_free(result);
1292ERROR1:
1293 return NULL;
1294}
1295
1296psiconv_mbm_f psiconv_empty_mbm_f(void)
1297{
1298 psiconv_mbm_f result;
1299 if (!(result = malloc(sizeof(*result))))
1300 goto ERROR1;
1301 if (!(result->sections = psiconv_empty_pictures()))
1302 goto ERROR2;
1303 return result;
1304ERROR2:
1305 free(result);
1306ERROR1:
1307 return NULL;
1308}
1309
1310psiconv_sketch_section psiconv_empty_sketch_section(void)
1311{
1312 psiconv_sketch_section result;
1313 if (!(result = malloc(sizeof(*result))))
1314 goto ERROR1;
1315 result->form_xsize = 320;
1316 result->form_ysize = 200;
1317 result->picture_x_offset = result->picture_y_offset = result->picture_xsize =
1318 result->picture_ysize = 0;
1319 result->magnification_x = result->magnification_y = 1.0;
1320 result->cut_left = result->cut_right = result->cut_top =
1321 result->cut_bottom = 0.0;
1322 if (!(result->picture = psiconv_empty_paint_data_section()))
1323 goto ERROR2;
1324 return result;
1325ERROR2:
1326 free(result);
1327ERROR1:
1328 return NULL;
1329}
1330
1331psiconv_sketch_f psiconv_empty_sketch_f(void)
1332{
1333 psiconv_sketch_f result;
1334 if (!(result = malloc(sizeof(*result))))
1335 goto ERROR1;
1336 if (!(result->sketch_sec = psiconv_empty_sketch_section()))
1337 goto ERROR2;
1338 return result;
1339ERROR2:
1340 free(result);
1341ERROR1:
1342 return NULL;
1343}
1344
1345psiconv_cliparts psiconv_empty_cliparts(void)
1346{
1347 /* Is this correct? */
1348 return psiconv_list_new(sizeof(struct psiconv_clipart_section_s));
1349}
1350
1351psiconv_clipart_f psiconv_empty_clipart_f(void)
1352{
1353 psiconv_clipart_f result;
1354 if (!(result = malloc(sizeof(*result))))
1355 goto ERROR1;
1356 if (!(result->sections = psiconv_empty_cliparts()))
1357 goto ERROR2;
1358 return result;
1359ERROR2:
1360 free(result);
1361ERROR1:
1362 return NULL;
1363}
1364
1365psiconv_file psiconv_empty_file(psiconv_file_type_t type)
1366{
1367 psiconv_file result;
1368 if (!(result = malloc(sizeof(*result))))
1369 return NULL;
1370 result->type = type;
1371 if (type == psiconv_word_file) {
1372 if (!(result->file = psiconv_empty_word_f()))
1373 goto ERROR;
1374 } else if (type == psiconv_sheet_file) {
1375 if (!(result->file = psiconv_empty_sheet_f()))
1376 goto ERROR;
1377 } else if (type == psiconv_texted_file) {
1378 if (!(result->file = psiconv_empty_texted_f()))
1379 goto ERROR;
1380 } else if (type == psiconv_mbm_file) {
1381 if (!(result->file = psiconv_empty_mbm_f()))
1382 goto ERROR;
1383 } else if (type == psiconv_sketch_file) {
1384 if (!(result->file = psiconv_empty_sketch_f()))
1385 goto ERROR;
1386 } else if (type == psiconv_clipart_file) {
1387 if (!(result->file = psiconv_empty_clipart_f()))
1388 goto ERROR;
1389 } else
1390 goto ERROR;
1391 return result;
1392ERROR:
1393 free(result);
1394 return NULL;
1395}

Legend:
Removed from v.42  
changed lines
  Added in v.134

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