/[public]/psiconv/trunk/lib/psiconv/generate_word.c
ViewVC logotype

Diff of /psiconv/trunk/lib/psiconv/generate_word.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 76 Revision 231
1/* 1/*
2 generate_word.c - Part of psiconv, a PSION 5 file formats converter 2 generate_word.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 2000 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 2000-2004 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.
23#include <stdlib.h> 23#include <stdlib.h>
24 24
25#include "generate_routines.h" 25#include "generate_routines.h"
26#include "error.h" 26#include "error.h"
27 27
28int psiconv_generate_word_status_section(psiconv_buffer buf, 28#ifdef DMALLOC
29#include <dmalloc.h>
30#endif
31
32
33int psiconv_write_word_status_section(const psiconv_config config,
34 psiconv_buffer buf, int lev,
29 psiconv_word_status_section value) 35 psiconv_word_status_section value)
30{ 36{
31 int res; 37 int res;
32 38
39 psiconv_progress(config,lev,0,"Writing word status section");
40
33 if (!value) { 41 if (!value) {
34 psiconv_warn(0,psiconv_list_length(buf),"Null word status section"); 42 psiconv_error(config,lev,0,"Null word status section");
35 return -PSICONV_E_GENERATE; 43 res = -PSICONV_E_GENERATE;
44 goto ERROR;
36 } 45 }
37 46
38 if ((res = psiconv_write_u8(buf,0x02))) 47 if ((res = psiconv_write_u8(config,buf,lev+1,0x02)))
39 return res; 48 goto ERROR;
40 if ((res = psiconv_write_u8(buf,(value->show_tabs?0x01:0x00) | 49 if ((res = psiconv_write_u8(config,buf,lev+1,(value->show_tabs?0x01:0x00) |
41 (value->show_spaces?0x02:0x00) | 50 (value->show_spaces?0x02:0x00) |
42 (value->show_paragraph_ends?0x04:0x00) | 51 (value->show_paragraph_ends?0x04:0x00) |
43 (value->show_line_breaks?0x08:0x00) | 52 (value->show_line_breaks?0x08:0x00) |
44 (value->show_hard_minus?0x20:0x00) | 53 (value->show_hard_minus?0x20:0x00) |
45 (value->show_hard_space?0x40:0x00)))) 54 (value->show_hard_space?0x40:0x00))))
46 return res; 55 goto ERROR;
47 if ((res = psiconv_write_u8(buf,(value->show_full_pictures?0x01:0x00) | 56 if ((res = psiconv_write_u8(config,buf,lev+1,(value->show_full_pictures?0x01:0x00) |
48 (value->show_full_graphs?0x02:0x00)))) 57 (value->show_full_graphs?0x02:0x00))))
58 goto ERROR;
59 if ((res = psiconv_write_bool(config,buf,lev+1,value->show_top_toolbar)))
60 goto ERROR;
61 if ((res = psiconv_write_bool(config,buf,lev+1,value->show_side_toolbar)))
62 goto ERROR;
63 if ((res = psiconv_write_u8(config,buf,lev+1,(value->fit_lines_to_screen?0x08:0x00))))
64 goto ERROR;
65 if ((res = psiconv_write_u32(config,buf,lev+1,value->cursor_position)))
66 goto ERROR;
67 if ((res = psiconv_write_u32(config,buf,lev+1,value->display_size)))
68 goto ERROR;
69 psiconv_progress(config,lev,0,"End of word status section");
70 return 0;
71
72ERROR:
73 psiconv_error(config,lev,0,"Writing of word status section failed");
49 return res; 74 return res;
50 if ((res = psiconv_write_bool(buf,value->show_top_toolbar)))
51 return res;
52 if ((res = psiconv_write_bool(buf,value->show_side_toolbar)))
53 return res;
54 if ((res = psiconv_write_u8(buf,(value->fit_lines_to_screen?0x08:0x00))))
55 return res;
56 if ((res = psiconv_write_u32(buf,value->cursor_position)))
57 return res;
58 return psiconv_write_u32(buf,value->display_size);
59} 75}
60 76
61int psiconv_write_word_styles_section(psiconv_buffer buf, 77int psiconv_write_word_styles_section(const psiconv_config config,
78 psiconv_buffer buf, int lev,
62 psiconv_word_styles_section value) 79 psiconv_word_styles_section value)
63{ 80{
64 int res,i; 81 int res,i,j;
65 psiconv_word_style style; 82 psiconv_word_style style;
66 psiconv_paragraph_layout basepara; 83 psiconv_paragraph_layout basepara;
67 psiconv_character_layout basechar; 84 psiconv_character_layout basechar;
85 psiconv_font font;
86 psiconv_u32 buflen;
68 87
88 psiconv_progress(config,lev,0,"Writing word styles section");
69 89
70 if (!value || !value->normal || !value->styles) { 90 if (!value || !value->normal || !value->styles) {
71 psiconv_warn(0,psiconv_list_length(buf),"Null word styles section"); 91 psiconv_error(config,lev,0,"Null word styles section");
72 res = -PSICONV_E_GENERATE; 92 res = -PSICONV_E_GENERATE;
73 goto ERROR1; 93 goto ERROR1;
74 } 94 }
75 95
76 if (!(basepara=psiconv_basic_paragraph_layout())) { 96 if (!(basepara=psiconv_basic_paragraph_layout())) {
82 res = -PSICONV_E_NOMEM; 102 res = -PSICONV_E_NOMEM;
83 goto ERROR2; 103 goto ERROR2;
84 } 104 }
85 105
86 106
87 if ((res = psiconv_write_paragraph_layout_list(buf,value->normal->paragraph, 107 if ((res = psiconv_write_paragraph_layout_list(config,buf,lev+1,
108 value->normal->paragraph,
88 basepara))) 109 basepara)))
89 goto ERROR3; 110 goto ERROR3;
90 if ((res = psiconv_write_character_layout_list(buf,value->normal->character, 111 /* Always generate the font for Normal */
112 font = basechar->font;
113 basechar->font = NULL;
114 res = psiconv_write_character_layout_list(config,buf,lev+1,
115 value->normal->character,
91 basechar))) 116 basechar);
117 basechar->font = font;
118 if (res)
92 goto ERROR3; 119 goto ERROR3;
93 if ((res = psiconv_write_u32(buf,value->normal->hotkey))) 120 buflen = psiconv_buffer_length(buf);
121 if ((res = psiconv_unicode_write_char(config,buf,lev+1,
122 value->normal->hotkey)))
94 goto ERROR3; 123 goto ERROR3;
95 if ((res = psiconv_write_u8(buf,psiconv_list_length(value->styles)))) 124 for (j = psiconv_buffer_length(buf) - buflen; j < 4; j++)
125 if ((res = psiconv_write_u8(config,buf,lev+1,0)))
126 goto ERROR3;
127
128 if ((res = psiconv_write_u8(config,buf,lev+1,
129 psiconv_list_length(value->styles))))
96 goto ERROR3; 130 goto ERROR3;
97 131
98 132
99 133
100 for (i = 0; i < psiconv_list_length(value->styles); i++) { 134 for (i = 0; i < psiconv_list_length(value->styles); i++) {
101 if (!(style = psiconv_list_get(value->styles,i))) { 135 if (!(style = psiconv_list_get(value->styles,i))) {
102 psiconv_warn(0,psiconv_list_length(buf),"Massive memory corruption"); 136 psiconv_error(config,lev,0,"Massive memory corruption");
103 res = -PSICONV_E_OTHER; 137 res = -PSICONV_E_NOMEM;
104 goto ERROR3; 138 goto ERROR3;
105 } 139 }
140 buflen = psiconv_buffer_length(buf);
106 if ((res = psiconv_write_u32(buf,style->hotkey))) 141 if ((res = psiconv_unicode_write_char(config,buf,lev+1,style->hotkey)))
107 goto ERROR3; 142 goto ERROR3;
143 for (j = psiconv_buffer_length(buf) - buflen; j < 4; j++)
144 if ((res = psiconv_write_u8(config,buf,lev+1,0)))
145 goto ERROR3;
108 } 146 }
109 if ((res = psiconv_write_u8(buf,psiconv_list_length(value->styles)))) 147 if ((res = psiconv_write_u8(config,buf,lev+1,psiconv_list_length(value->styles))))
110 goto ERROR3; 148 goto ERROR3;
111 for (i = 0; i < psiconv_list_length(value->styles); i++) { 149 for (i = 0; i < psiconv_list_length(value->styles); i++) {
112 if (!(style = psiconv_list_get(value->styles,i))) { 150 if (!(style = psiconv_list_get(value->styles,i))) {
113 psiconv_warn(0,psiconv_list_length(buf),"Massive memory corruption"); 151 psiconv_error(config,lev,0,"Massive memory corruption");
114 res = -PSICONV_E_OTHER; 152 res = -PSICONV_E_NOMEM;
115 goto ERROR3; 153 goto ERROR3;
116 } 154 }
117 if (!style->name) { 155 if (!style->name) {
118 psiconv_warn(0,psiconv_list_length(buf),"Null style name"); 156 psiconv_error(config,lev,0,"Null style name");
119 res = -PSICONV_E_GENERATE; 157 res = -PSICONV_E_GENERATE;
120 goto ERROR3; 158 goto ERROR3;
121 } 159 }
122 if ((res = psiconv_write_string(buf,style->name))) 160 if ((res = psiconv_write_string(config,buf,lev+1,style->name)))
123 goto ERROR3; 161 goto ERROR3;
124 if ((res = psiconv_write_u32(buf,style->built_in?PSICONV_ID_STYLE_BUILT_IN: 162 if ((res = psiconv_write_u32(config,buf,lev+1,style->built_in?PSICONV_ID_STYLE_BUILT_IN:
125 PSICONV_ID_STYLE_REMOVABLE))) 163 PSICONV_ID_STYLE_REMOVABLE)))
126 goto ERROR3; 164 goto ERROR3;
127 if ((res = psiconv_write_u32(buf,style->outline_level))) 165 if ((res = psiconv_write_u32(config,buf,lev+1,style->outline_level)))
128 goto ERROR3; 166 goto ERROR3;
129 if ((res = psiconv_write_character_layout_list(buf,style->character, 167 if ((res = psiconv_write_character_layout_list(config,buf,lev+1,style->character,
130 value->normal->character))) 168 value->normal->character)))
131 goto ERROR3; 169 goto ERROR3;
132 if ((res = psiconv_write_paragraph_layout_list(buf,style->paragraph, 170 if ((res = psiconv_write_paragraph_layout_list(config,buf,lev+1,style->paragraph,
133 value->normal->paragraph))) 171 value->normal->paragraph)))
134 goto ERROR3; 172 goto ERROR3;
135 } 173 }
174
175 for (i = 0; i < psiconv_list_length(value->styles); i++)
176 if ((res = psiconv_write_u8(config,buf,lev+1,0xff)))
177 goto ERROR3;
136 res = -PSICONV_E_OK; 178 res = -PSICONV_E_OK;
137 179
138ERROR3: 180ERROR3:
139 psiconv_free_character_layout(basechar); 181 psiconv_free_character_layout(basechar);
140ERROR2: 182ERROR2:
141 psiconv_free_paragraph_layout(basepara); 183 psiconv_free_paragraph_layout(basepara);
142ERROR1: 184ERROR1:
185 if (res)
186 psiconv_error(config,lev,0,"Writing of word styles section failed");
187 else
188 psiconv_progress(config,lev,0,"End of word styles section");
143 return res; 189 return res;
144} 190}

Legend:
Removed from v.76  
changed lines
  Added in v.231

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