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

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

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

Revision 142 Revision 184
30#include <dmalloc.h> 30#include <dmalloc.h>
31#endif 31#endif
32 32
33 33
34 34
35int psiconv_write_page_header(psiconv_buffer buf, 35int psiconv_write_page_header(const psiconv_config config,
36 psiconv_buffer buf, int lev,
36 const psiconv_page_header value, 37 const psiconv_page_header value,
37 psiconv_buffer *extra_buf) 38 psiconv_buffer *extra_buf)
38{ 39{
39 int res; 40 int res;
40 psiconv_paragraph_layout basepara; 41 psiconv_paragraph_layout basepara;
41 psiconv_character_layout basechar; 42 psiconv_character_layout basechar;
42 43
44 psiconv_progress(config,lev,0,"Writing page header");
45
43 if (!value) { 46 if (!value) {
44 psiconv_warn(0,psiconv_buffer_length(buf),"Null page header"); 47 psiconv_error(config,0,psiconv_buffer_length(buf),"Null page header");
45 res = -PSICONV_E_GENERATE; 48 res = -PSICONV_E_GENERATE;
46 goto ERROR1; 49 goto ERROR1;
47 } 50 }
48 51
49 if (!(basepara=psiconv_basic_paragraph_layout())) { 52 if (!(basepara=psiconv_basic_paragraph_layout())) {
54 res = -PSICONV_E_NOMEM; 57 res = -PSICONV_E_NOMEM;
55 goto ERROR2; 58 goto ERROR2;
56 } 59 }
57 60
58 /* Unknown byte */ 61 /* Unknown byte */
59 if ((res = psiconv_write_u8(buf,0x01))) 62 if ((res = psiconv_write_u8(config,buf,lev+1,0x01)))
60 goto ERROR3; 63 goto ERROR3;
61 if ((res = psiconv_write_bool(buf,value->on_first_page))) 64 if ((res = psiconv_write_bool(config,buf,lev+1,value->on_first_page)))
62 goto ERROR3; 65 goto ERROR3;
63 /* Three unknown bytes */ 66 /* Three unknown bytes */
64 if ((res = psiconv_write_u8(buf,0x00))) 67 if ((res = psiconv_write_u8(config,buf,lev+1,0x00)))
65 goto ERROR3; 68 goto ERROR3;
66 if ((res = psiconv_write_u8(buf,0x00))) 69 if ((res = psiconv_write_u8(config,buf,lev+1,0x00)))
67 goto ERROR3; 70 goto ERROR3;
68 if ((res = psiconv_write_u8(buf,0x00))) 71 if ((res = psiconv_write_u8(config,buf,lev+1,0x00)))
69 goto ERROR3; 72 goto ERROR3;
70 if ((res = psiconv_write_paragraph_layout_list(buf, 73 if ((res = psiconv_write_paragraph_layout_list(config,buf,lev+1,
71 value->base_paragraph_layout,basepara))) 74 value->base_paragraph_layout,basepara)))
72 goto ERROR3; 75 goto ERROR3;
73 if ((res = psiconv_write_character_layout_list(buf, 76 if ((res = psiconv_write_character_layout_list(config,buf,lev+1,
74 value->base_character_layout,basechar))) 77 value->base_character_layout,basechar)))
75 goto ERROR3; 78 goto ERROR3;
76 res = psiconv_write_texted_section(buf,value->text, 79 res = psiconv_write_texted_section(config,buf,lev+1,value->text,
77 value->base_character_layout, 80 value->base_character_layout,
78 value->base_paragraph_layout,extra_buf); 81 value->base_paragraph_layout,extra_buf);
79ERROR3: 82ERROR3:
80 psiconv_free_character_layout(basechar); 83 psiconv_free_character_layout(basechar);
81ERROR2: 84ERROR2:
82 psiconv_free_paragraph_layout(basepara); 85 psiconv_free_paragraph_layout(basepara);
83ERROR1: 86ERROR1:
84 return res; 87 return res;
85} 88}
86 89
87int psiconv_write_page_layout_section(psiconv_buffer buf, 90int psiconv_write_page_layout_section(const psiconv_config config,
91 psiconv_buffer buf, int lev,
88 const psiconv_page_layout_section value) 92 const psiconv_page_layout_section value)
89{ 93{
90 int res; 94 int res;
91 psiconv_buffer header_buf,footer_buf; 95 psiconv_buffer header_buf,footer_buf;
92 96
97 psiconv_progress(config,lev,0,"Writing page layout section");
98
93 if (!value) { 99 if (!value) {
94 psiconv_warn(0,psiconv_buffer_length(buf),"Null page section"); 100 psiconv_error(config,0,psiconv_buffer_length(buf),"Null page section");
95 res = -PSICONV_E_GENERATE; 101 res = -PSICONV_E_GENERATE;
96 goto ERROR1; 102 goto ERROR1;
97 } 103 }
98 104
99 if ((res = psiconv_write_u32(buf,value->first_page_nr))) 105 if ((res = psiconv_write_u32(config,buf,lev+1,value->first_page_nr)))
100 goto ERROR1; 106 goto ERROR1;
101 if ((res = psiconv_write_length(buf,value->header_dist))) 107 if ((res = psiconv_write_length(config,buf,lev+1,value->header_dist)))
102 goto ERROR1; 108 goto ERROR1;
103 if ((res = psiconv_write_length(buf,value->footer_dist))) 109 if ((res = psiconv_write_length(config,buf,lev+1,value->footer_dist)))
104 goto ERROR1; 110 goto ERROR1;
105 if ((res = psiconv_write_length(buf,value->left_margin))) 111 if ((res = psiconv_write_length(config,buf,lev+1,value->left_margin)))
106 goto ERROR1; 112 goto ERROR1;
107 if ((res = psiconv_write_length(buf,value->right_margin))) 113 if ((res = psiconv_write_length(config,buf,lev+1,value->right_margin)))
108 goto ERROR1; 114 goto ERROR1;
109 if ((res = psiconv_write_length(buf,value->top_margin))) 115 if ((res = psiconv_write_length(config,buf,lev+1,value->top_margin)))
110 goto ERROR1; 116 goto ERROR1;
111 if ((res = psiconv_write_length(buf,value->bottom_margin))) 117 if ((res = psiconv_write_length(config,buf,lev+1,value->bottom_margin)))
112 goto ERROR1; 118 goto ERROR1;
113 if ((res = psiconv_write_page_header(buf,value->header,&header_buf))) 119 if ((res = psiconv_write_page_header(config,buf,lev+1,value->header,&header_buf)))
114 goto ERROR1; 120 goto ERROR1;
115 if ((res = psiconv_write_page_header(buf,value->footer,&footer_buf))) 121 if ((res = psiconv_write_page_header(config,buf,lev+1,value->footer,&footer_buf)))
116 goto ERROR2; 122 goto ERROR2;
117 if ((res = psiconv_write_u32(buf,PSICONV_ID_PAGE_DIMENSIONS2))) 123 if ((res = psiconv_write_u32(config,buf,lev+1,PSICONV_ID_PAGE_DIMENSIONS2)))
118 goto ERROR3; 124 goto ERROR3;
119 if ((res = psiconv_write_length(buf,value->page_width))) 125 if ((res = psiconv_write_length(config,buf,lev+1,value->page_width)))
120 goto ERROR3; 126 goto ERROR3;
121 if ((res = psiconv_write_length(buf,value->page_height))) 127 if ((res = psiconv_write_length(config,buf,lev+1,value->page_height)))
122 goto ERROR3; 128 goto ERROR3;
123 if ((res = psiconv_write_bool(buf,value->landscape))) 129 if ((res = psiconv_write_bool(config,buf,lev+1,value->landscape)))
124 goto ERROR3; 130 goto ERROR3;
125 if ((res = psiconv_buffer_concat(buf,header_buf))) 131 if ((res = psiconv_buffer_concat(buf,header_buf)))
126 goto ERROR3; 132 goto ERROR3;
127 res = psiconv_buffer_concat(buf,footer_buf); 133 res = psiconv_buffer_concat(buf,footer_buf);
128 134

Legend:
Removed from v.142  
changed lines
  Added in v.184

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