1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
3 <head> |
|
4 <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> |
|
5 <title>TB9.2 Example Applications: examples/PIPS/antiword/src/prop0.c Source File</title> |
|
6 <link href="tabs.css" rel="stylesheet" type="text/css"/> |
|
7 <link href="doxygen.css" rel="stylesheet" type="text/css"/> |
|
8 </head> |
|
9 <body> |
|
10 <!-- Generated by Doxygen 1.6.2 --> |
|
11 <h1>examples/PIPS/antiword/src/prop0.c</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span> |
|
12 <a name="l00002"></a>00002 <span class="comment"> * prop0.c</span> |
|
13 <a name="l00003"></a>00003 <span class="comment"> * Copyright (C) 2002-2004 A.J. van Os; Released under GNU GPL</span> |
|
14 <a name="l00004"></a>00004 <span class="comment"> *</span> |
|
15 <a name="l00005"></a>00005 <span class="comment"> * Description:</span> |
|
16 <a name="l00006"></a>00006 <span class="comment"> * Read the property information from a Word for DOS file</span> |
|
17 <a name="l00007"></a>00007 <span class="comment"> */</span> |
|
18 <a name="l00008"></a>00008 |
|
19 <a name="l00009"></a>00009 <span class="preprocessor">#include <string.h></span> |
|
20 <a name="l00010"></a>00010 <span class="preprocessor">#include <time.h></span> |
|
21 <a name="l00011"></a>00011 <span class="preprocessor">#include "antiword.h"</span> |
|
22 <a name="l00012"></a>00012 |
|
23 <a name="l00013"></a>00013 |
|
24 <a name="l00014"></a>00014 <span class="comment">/*</span> |
|
25 <a name="l00015"></a>00015 <span class="comment"> * tConvertDosDate - convert DOS date format</span> |
|
26 <a name="l00016"></a>00016 <span class="comment"> *</span> |
|
27 <a name="l00017"></a>00017 <span class="comment"> * returns Unix time_t or -1</span> |
|
28 <a name="l00018"></a>00018 <span class="comment"> */</span> |
|
29 <a name="l00019"></a>00019 <span class="keyword">static</span> time_t |
|
30 <a name="l00020"></a>00020 tConvertDosDate(<span class="keyword">const</span> <span class="keywordtype">char</span> *szDosDate) |
|
31 <a name="l00021"></a>00021 { |
|
32 <a name="l00022"></a>00022 <span class="keyword">struct </span>tm tTime; |
|
33 <a name="l00023"></a>00023 <span class="keyword">const</span> <span class="keywordtype">char</span> *pcTmp; |
|
34 <a name="l00024"></a>00024 time_t tResult; |
|
35 <a name="l00025"></a>00025 |
|
36 <a name="l00026"></a>00026 memset(&tTime, 0, <span class="keyword">sizeof</span>(tTime)); |
|
37 <a name="l00027"></a>00027 pcTmp = szDosDate; |
|
38 <a name="l00028"></a>00028 <span class="comment">/* Get the month */</span> |
|
39 <a name="l00029"></a>00029 <span class="keywordflow">if</span> (!isdigit(*pcTmp)) { |
|
40 <a name="l00030"></a>00030 <span class="keywordflow">return</span> (time_t)-1; |
|
41 <a name="l00031"></a>00031 } |
|
42 <a name="l00032"></a>00032 tTime.tm_mon = (int)(*pcTmp - <span class="charliteral">'0'</span>); |
|
43 <a name="l00033"></a>00033 pcTmp++; |
|
44 <a name="l00034"></a>00034 <span class="keywordflow">if</span> (isdigit(*pcTmp)) { |
|
45 <a name="l00035"></a>00035 tTime.tm_mon *= 10; |
|
46 <a name="l00036"></a>00036 tTime.tm_mon += (int)(*pcTmp - <span class="charliteral">'0'</span>); |
|
47 <a name="l00037"></a>00037 pcTmp++; |
|
48 <a name="l00038"></a>00038 } |
|
49 <a name="l00039"></a>00039 <span class="comment">/* Get the first separater */</span> |
|
50 <a name="l00040"></a>00040 <span class="keywordflow">if</span> (isalnum(*pcTmp)) { |
|
51 <a name="l00041"></a>00041 <span class="keywordflow">return</span> (time_t)-1; |
|
52 <a name="l00042"></a>00042 } |
|
53 <a name="l00043"></a>00043 pcTmp++; |
|
54 <a name="l00044"></a>00044 <span class="comment">/* Get the day */</span> |
|
55 <a name="l00045"></a>00045 <span class="keywordflow">if</span> (!isdigit(*pcTmp)) { |
|
56 <a name="l00046"></a>00046 <span class="keywordflow">return</span> (time_t)-1; |
|
57 <a name="l00047"></a>00047 } |
|
58 <a name="l00048"></a>00048 tTime.tm_mday = (int)(*pcTmp - <span class="charliteral">'0'</span>); |
|
59 <a name="l00049"></a>00049 pcTmp++; |
|
60 <a name="l00050"></a>00050 <span class="keywordflow">if</span> (isdigit(*pcTmp)) { |
|
61 <a name="l00051"></a>00051 tTime.tm_mday *= 10; |
|
62 <a name="l00052"></a>00052 tTime.tm_mday += (int)(*pcTmp - <span class="charliteral">'0'</span>); |
|
63 <a name="l00053"></a>00053 pcTmp++; |
|
64 <a name="l00054"></a>00054 } |
|
65 <a name="l00055"></a>00055 <span class="comment">/* Get the second separater */</span> |
|
66 <a name="l00056"></a>00056 <span class="keywordflow">if</span> (isalnum(*pcTmp)) { |
|
67 <a name="l00057"></a>00057 <span class="keywordflow">return</span> (time_t)-1; |
|
68 <a name="l00058"></a>00058 } |
|
69 <a name="l00059"></a>00059 pcTmp++; |
|
70 <a name="l00060"></a>00060 <span class="comment">/* Get the year */</span> |
|
71 <a name="l00061"></a>00061 <span class="keywordflow">if</span> (!isdigit(*pcTmp)) { |
|
72 <a name="l00062"></a>00062 <span class="keywordflow">return</span> (time_t)-1; |
|
73 <a name="l00063"></a>00063 } |
|
74 <a name="l00064"></a>00064 tTime.tm_year = (int)(*pcTmp - <span class="charliteral">'0'</span>); |
|
75 <a name="l00065"></a>00065 pcTmp++; |
|
76 <a name="l00066"></a>00066 <span class="keywordflow">if</span> (isdigit(*pcTmp)) { |
|
77 <a name="l00067"></a>00067 tTime.tm_year *= 10; |
|
78 <a name="l00068"></a>00068 tTime.tm_year += (int)(*pcTmp - <span class="charliteral">'0'</span>); |
|
79 <a name="l00069"></a>00069 pcTmp++; |
|
80 <a name="l00070"></a>00070 } |
|
81 <a name="l00071"></a>00071 <span class="comment">/* Check the values */</span> |
|
82 <a name="l00072"></a>00072 <span class="keywordflow">if</span> (tTime.tm_mon == 0 || tTime.tm_mday == 0 || tTime.tm_mday > 31) { |
|
83 <a name="l00073"></a>00073 <span class="keywordflow">return</span> (time_t)-1; |
|
84 <a name="l00074"></a>00074 } |
|
85 <a name="l00075"></a>00075 <span class="comment">/* Correct the values */</span> |
|
86 <a name="l00076"></a>00076 tTime.tm_mon--; <span class="comment">/* From 01-12 to 00-11 */</span> |
|
87 <a name="l00077"></a>00077 <span class="keywordflow">if</span> (tTime.tm_year < 80) { |
|
88 <a name="l00078"></a>00078 tTime.tm_year += 100; <span class="comment">/* 00 means 2000 is 100 */</span> |
|
89 <a name="l00079"></a>00079 } |
|
90 <a name="l00080"></a>00080 tTime.tm_isdst = -1; |
|
91 <a name="l00081"></a>00081 tResult = mktime(&tTime); |
|
92 <a name="l00082"></a>00082 NO_DBG_MSG(ctime(&tResult)); |
|
93 <a name="l00083"></a>00083 <span class="keywordflow">return</span> tResult; |
|
94 <a name="l00084"></a>00084 } <span class="comment">/* end of tConvertDosDate */</span> |
|
95 <a name="l00085"></a>00085 |
|
96 <a name="l00086"></a>00086 <span class="comment">/*</span> |
|
97 <a name="l00087"></a>00087 <span class="comment"> * Build the lists with Document Property Information for Word for DOS files</span> |
|
98 <a name="l00088"></a>00088 <span class="comment"> */</span> |
|
99 <a name="l00089"></a>00089 <span class="keywordtype">void</span> |
|
100 <a name="l00090"></a>00090 vGet0DopInfo(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader) |
|
101 <a name="l00091"></a>00091 { |
|
102 <a name="l00092"></a>00092 document_block_type tDocument; |
|
103 <a name="l00093"></a>00093 UCHAR *aucBuffer; |
|
104 <a name="l00094"></a>00094 ULONG ulBeginSumdInfo, ulBeginNextBlock; |
|
105 <a name="l00095"></a>00095 <span class="keywordtype">size_t</span> tLen; |
|
106 <a name="l00096"></a>00096 USHORT usOffset; |
|
107 <a name="l00097"></a>00097 |
|
108 <a name="l00098"></a>00098 tDocument.ucHdrFtrSpecification = 0; |
|
109 <a name="l00099"></a>00099 tDocument.usDefaultTabWidth = usGetWord(0x70, aucHeader); <span class="comment">/* dxaTab */</span> |
|
110 <a name="l00100"></a>00100 tDocument.tCreateDate = (time_t)-1; |
|
111 <a name="l00101"></a>00101 tDocument.tRevisedDate = (time_t)-1; |
|
112 <a name="l00102"></a>00102 |
|
113 <a name="l00103"></a>00103 ulBeginSumdInfo = 128 * (ULONG)usGetWord(0x1c, aucHeader); |
|
114 <a name="l00104"></a>00104 DBG_HEX(ulBeginSumdInfo); |
|
115 <a name="l00105"></a>00105 ulBeginNextBlock = 128 * (ULONG)usGetWord(0x6a, aucHeader); |
|
116 <a name="l00106"></a>00106 DBG_HEX(ulBeginNextBlock); |
|
117 <a name="l00107"></a>00107 |
|
118 <a name="l00108"></a>00108 <span class="keywordflow">if</span> (ulBeginSumdInfo < ulBeginNextBlock && ulBeginNextBlock != 0) { |
|
119 <a name="l00109"></a>00109 <span class="comment">/* There is a summary information block */</span> |
|
120 <a name="l00110"></a>00110 tLen = (size_t)(ulBeginNextBlock - ulBeginSumdInfo); |
|
121 <a name="l00111"></a>00111 aucBuffer = xmalloc(tLen); |
|
122 <a name="l00112"></a>00112 <span class="comment">/* Read the summary information block */</span> |
|
123 <a name="l00113"></a>00113 <span class="keywordflow">if</span> (bReadBytes(aucBuffer, tLen, ulBeginSumdInfo, pFile)) { |
|
124 <a name="l00114"></a>00114 usOffset = usGetWord(12, aucBuffer); |
|
125 <a name="l00115"></a>00115 <span class="keywordflow">if</span> (aucBuffer[usOffset] != 0) { |
|
126 <a name="l00116"></a>00116 NO_DBG_STRN(aucBuffer + usOffset, 8); |
|
127 <a name="l00117"></a>00117 tDocument.tRevisedDate = |
|
128 <a name="l00118"></a>00118 tConvertDosDate((<span class="keywordtype">char</span> *)aucBuffer + usOffset); |
|
129 <a name="l00119"></a>00119 } |
|
130 <a name="l00120"></a>00120 usOffset = usGetWord(14, aucBuffer); |
|
131 <a name="l00121"></a>00121 <span class="keywordflow">if</span> (aucBuffer[usOffset] != 0) { |
|
132 <a name="l00122"></a>00122 NO_DBG_STRN(aucBuffer + usOffset, 8); |
|
133 <a name="l00123"></a>00123 tDocument.tCreateDate = |
|
134 <a name="l00124"></a>00124 tConvertDosDate((<span class="keywordtype">char</span> *)aucBuffer + usOffset); |
|
135 <a name="l00125"></a>00125 } |
|
136 <a name="l00126"></a>00126 } |
|
137 <a name="l00127"></a>00127 aucBuffer = xfree(aucBuffer); |
|
138 <a name="l00128"></a>00128 } |
|
139 <a name="l00129"></a>00129 vCreateDocumentInfoList(&tDocument); |
|
140 <a name="l00130"></a>00130 } <span class="comment">/* end of vGet0DopInfo */</span> |
|
141 <a name="l00131"></a>00131 |
|
142 <a name="l00132"></a>00132 <span class="comment">/*</span> |
|
143 <a name="l00133"></a>00133 <span class="comment"> * Fill the section information block with information</span> |
|
144 <a name="l00134"></a>00134 <span class="comment"> * from a Word for DOS file.</span> |
|
145 <a name="l00135"></a>00135 <span class="comment"> */</span> |
|
146 <a name="l00136"></a>00136 <span class="keyword">static</span> <span class="keywordtype">void</span> |
|
147 <a name="l00137"></a>00137 vGet0SectionInfo(<span class="keyword">const</span> UCHAR *aucGrpprl, <span class="keywordtype">size_t</span> tBytes, |
|
148 <a name="l00138"></a>00138 section_block_type *pSection) |
|
149 <a name="l00139"></a>00139 { |
|
150 <a name="l00140"></a>00140 USHORT usCcol; |
|
151 <a name="l00141"></a>00141 UCHAR ucTmp; |
|
152 <a name="l00142"></a>00142 |
|
153 <a name="l00143"></a>00143 fail(aucGrpprl == NULL || pSection == NULL); |
|
154 <a name="l00144"></a>00144 |
|
155 <a name="l00145"></a>00145 <span class="keywordflow">if</span> (tBytes < 2) { |
|
156 <a name="l00146"></a>00146 <span class="keywordflow">return</span>; |
|
157 <a name="l00147"></a>00147 } |
|
158 <a name="l00148"></a>00148 <span class="comment">/* bkc */</span> |
|
159 <a name="l00149"></a>00149 ucTmp = ucGetByte(1, aucGrpprl); |
|
160 <a name="l00150"></a>00150 DBG_HEX(ucTmp); |
|
161 <a name="l00151"></a>00151 ucTmp &= 0x07; |
|
162 <a name="l00152"></a>00152 DBG_HEX(ucTmp); |
|
163 <a name="l00153"></a>00153 pSection->bNewPage = ucTmp != 0 && ucTmp != 1; |
|
164 <a name="l00154"></a>00154 <span class="keywordflow">if</span> (tBytes < 18) { |
|
165 <a name="l00155"></a>00155 <span class="keywordflow">return</span>; |
|
166 <a name="l00156"></a>00156 } |
|
167 <a name="l00157"></a>00157 <span class="comment">/* ccolM1 */</span> |
|
168 <a name="l00158"></a>00158 usCcol = (USHORT)ucGetByte(17, aucGrpprl); |
|
169 <a name="l00159"></a>00159 DBG_DEC(usCcol); |
|
170 <a name="l00160"></a>00160 } <span class="comment">/* end of vGet0SectionInfo */</span> |
|
171 <a name="l00161"></a>00161 |
|
172 <a name="l00162"></a>00162 <span class="comment">/*</span> |
|
173 <a name="l00163"></a>00163 <span class="comment"> * Build the lists with Section Property Information for Word for DOS files</span> |
|
174 <a name="l00164"></a>00164 <span class="comment"> */</span> |
|
175 <a name="l00165"></a>00165 <span class="keywordtype">void</span> |
|
176 <a name="l00166"></a>00166 vGet0SepInfo(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader) |
|
177 <a name="l00167"></a>00167 { |
|
178 <a name="l00168"></a>00168 section_block_type tSection; |
|
179 <a name="l00169"></a>00169 UCHAR *aucBuffer; |
|
180 <a name="l00170"></a>00170 ULONG ulBeginOfText, ulTextOffset, ulBeginSectInfo; |
|
181 <a name="l00171"></a>00171 ULONG ulCharPos, ulSectPage, ulBeginNextBlock; |
|
182 <a name="l00172"></a>00172 <span class="keywordtype">size_t</span> tSectInfoLen, tIndex, tSections, tBytes; |
|
183 <a name="l00173"></a>00173 UCHAR aucTmp[2], aucFpage[35]; |
|
184 <a name="l00174"></a>00174 |
|
185 <a name="l00175"></a>00175 fail(pFile == NULL || aucHeader == NULL); |
|
186 <a name="l00176"></a>00176 |
|
187 <a name="l00177"></a>00177 ulBeginOfText = 128; |
|
188 <a name="l00178"></a>00178 NO_DBG_HEX(ulBeginOfText); |
|
189 <a name="l00179"></a>00179 ulBeginSectInfo = 128 * (ULONG)usGetWord(0x18, aucHeader); |
|
190 <a name="l00180"></a>00180 DBG_HEX(ulBeginSectInfo); |
|
191 <a name="l00181"></a>00181 ulBeginNextBlock = 128 * (ULONG)usGetWord(0x1a, aucHeader); |
|
192 <a name="l00182"></a>00182 DBG_HEX(ulBeginNextBlock); |
|
193 <a name="l00183"></a>00183 <span class="keywordflow">if</span> (ulBeginSectInfo == ulBeginNextBlock) { |
|
194 <a name="l00184"></a>00184 <span class="comment">/* There is no section information block */</span> |
|
195 <a name="l00185"></a>00185 <span class="keywordflow">return</span>; |
|
196 <a name="l00186"></a>00186 } |
|
197 <a name="l00187"></a>00187 |
|
198 <a name="l00188"></a>00188 <span class="comment">/* Get the the number of sections */</span> |
|
199 <a name="l00189"></a>00189 <span class="keywordflow">if</span> (!bReadBytes(aucTmp, 2, ulBeginSectInfo, pFile)) { |
|
200 <a name="l00190"></a>00190 <span class="keywordflow">return</span>; |
|
201 <a name="l00191"></a>00191 } |
|
202 <a name="l00192"></a>00192 tSections = (size_t)usGetWord(0, aucTmp); |
|
203 <a name="l00193"></a>00193 NO_DBG_DEC(tSections); |
|
204 <a name="l00194"></a>00194 |
|
205 <a name="l00195"></a>00195 <span class="comment">/* Read the Section Descriptors */</span> |
|
206 <a name="l00196"></a>00196 tSectInfoLen = 10 * tSections; |
|
207 <a name="l00197"></a>00197 NO_DBG_DEC(tSectInfoLen); |
|
208 <a name="l00198"></a>00198 aucBuffer = xmalloc(tSectInfoLen); |
|
209 <a name="l00199"></a>00199 <span class="keywordflow">if</span> (!bReadBytes(aucBuffer, tSectInfoLen, ulBeginSectInfo + 4, pFile)) { |
|
210 <a name="l00200"></a>00200 aucBuffer = xfree(aucBuffer); |
|
211 <a name="l00201"></a>00201 <span class="keywordflow">return</span>; |
|
212 <a name="l00202"></a>00202 } |
|
213 <a name="l00203"></a>00203 NO_DBG_PRINT_BLOCK(aucBuffer, tSectInfoLen); |
|
214 <a name="l00204"></a>00204 |
|
215 <a name="l00205"></a>00205 <span class="comment">/* Read the Section Properties */</span> |
|
216 <a name="l00206"></a>00206 <span class="keywordflow">for</span> (tIndex = 0; tIndex < tSections; tIndex++) { |
|
217 <a name="l00207"></a>00207 ulTextOffset = ulGetLong(10 * tIndex, aucBuffer); |
|
218 <a name="l00208"></a>00208 NO_DBG_HEX(ulTextOffset); |
|
219 <a name="l00209"></a>00209 ulCharPos = ulBeginOfText + ulTextOffset; |
|
220 <a name="l00210"></a>00210 NO_DBG_HEX(ulTextOffset); |
|
221 <a name="l00211"></a>00211 ulSectPage = ulGetLong(10 * tIndex + 6, aucBuffer); |
|
222 <a name="l00212"></a>00212 NO_DBG_HEX(ulSectPage); |
|
223 <a name="l00213"></a>00213 <span class="keywordflow">if</span> (ulSectPage == FC_INVALID || <span class="comment">/* Must use defaults */</span> |
|
224 <a name="l00214"></a>00214 ulSectPage < 128 || <span class="comment">/* Should not happen */</span> |
|
225 <a name="l00215"></a>00215 ulSectPage >= ulBeginSectInfo) { <span class="comment">/* Should not happen */</span> |
|
226 <a name="l00216"></a>00216 DBG_HEX_C(ulSectPage != FC_INVALID, ulSectPage); |
|
227 <a name="l00217"></a>00217 vDefault2SectionInfoList(ulCharPos); |
|
228 <a name="l00218"></a>00218 <span class="keywordflow">continue</span>; |
|
229 <a name="l00219"></a>00219 } |
|
230 <a name="l00220"></a>00220 <span class="comment">/* Get the number of bytes to read */</span> |
|
231 <a name="l00221"></a>00221 <span class="keywordflow">if</span> (!bReadBytes(aucTmp, 1, ulSectPage, pFile)) { |
|
232 <a name="l00222"></a>00222 <span class="keywordflow">continue</span>; |
|
233 <a name="l00223"></a>00223 } |
|
234 <a name="l00224"></a>00224 tBytes = 1 + (size_t)ucGetByte(0, aucTmp); |
|
235 <a name="l00225"></a>00225 NO_DBG_DEC(tBytes); |
|
236 <a name="l00226"></a>00226 <span class="keywordflow">if</span> (tBytes > <span class="keyword">sizeof</span>(aucFpage)) { |
|
237 <a name="l00227"></a>00227 DBG_DEC(tBytes); |
|
238 <a name="l00228"></a>00228 tBytes = <span class="keyword">sizeof</span>(aucFpage); |
|
239 <a name="l00229"></a>00229 } |
|
240 <a name="l00230"></a>00230 <span class="comment">/* Read the bytes */</span> |
|
241 <a name="l00231"></a>00231 <span class="keywordflow">if</span> (!bReadBytes(aucFpage, tBytes, ulSectPage, pFile)) { |
|
242 <a name="l00232"></a>00232 <span class="keywordflow">continue</span>; |
|
243 <a name="l00233"></a>00233 } |
|
244 <a name="l00234"></a>00234 NO_DBG_PRINT_BLOCK(aucFpage, tBytes); |
|
245 <a name="l00235"></a>00235 <span class="comment">/* Process the bytes */</span> |
|
246 <a name="l00236"></a>00236 vGetDefaultSection(&tSection); |
|
247 <a name="l00237"></a>00237 vGet0SectionInfo(aucFpage + 1, tBytes - 1, &tSection); |
|
248 <a name="l00238"></a>00238 vAdd2SectionInfoList(&tSection, ulCharPos); |
|
249 <a name="l00239"></a>00239 } |
|
250 <a name="l00240"></a>00240 <span class="comment">/* Clean up before you leave */</span> |
|
251 <a name="l00241"></a>00241 aucBuffer = xfree(aucBuffer); |
|
252 <a name="l00242"></a>00242 } <span class="comment">/* end of vGet0SepInfo */</span> |
|
253 <a name="l00243"></a>00243 |
|
254 <a name="l00244"></a>00244 <span class="comment">/*</span> |
|
255 <a name="l00245"></a>00245 <span class="comment"> * Fill the style information block with information</span> |
|
256 <a name="l00246"></a>00246 <span class="comment"> * from a Word for DOS file.</span> |
|
257 <a name="l00247"></a>00247 <span class="comment"> */</span> |
|
258 <a name="l00248"></a>00248 <span class="keyword">static</span> <span class="keywordtype">void</span> |
|
259 <a name="l00249"></a>00249 vGet0StyleInfo(<span class="keywordtype">int</span> iFodo, <span class="keyword">const</span> UCHAR *aucGrpprl, style_block_type *pStyle) |
|
260 <a name="l00250"></a>00250 { |
|
261 <a name="l00251"></a>00251 <span class="keywordtype">int</span> iBytes; |
|
262 <a name="l00252"></a>00252 UCHAR ucTmp; |
|
263 <a name="l00253"></a>00253 |
|
264 <a name="l00254"></a>00254 fail(iFodo <= 0 || aucGrpprl == NULL || pStyle == NULL); |
|
265 <a name="l00255"></a>00255 |
|
266 <a name="l00256"></a>00256 pStyle->usIstdNext = ISTD_NORMAL; |
|
267 <a name="l00257"></a>00257 |
|
268 <a name="l00258"></a>00258 iBytes = (int)ucGetByte(iFodo, aucGrpprl); |
|
269 <a name="l00259"></a>00259 <span class="keywordflow">if</span> (iBytes < 1) { |
|
270 <a name="l00260"></a>00260 <span class="keywordflow">return</span>; |
|
271 <a name="l00261"></a>00261 } |
|
272 <a name="l00262"></a>00262 <span class="comment">/* stc if styled */</span> |
|
273 <a name="l00263"></a>00263 ucTmp = ucGetByte(iFodo + 1, aucGrpprl); |
|
274 <a name="l00264"></a>00264 <span class="keywordflow">if</span> ((ucTmp & BIT(0)) != 0) { |
|
275 <a name="l00265"></a>00265 ucTmp >>= 1; |
|
276 <a name="l00266"></a>00266 <span class="keywordflow">if</span> (ucTmp >= 88 && ucTmp <= 94) { |
|
277 <a name="l00267"></a>00267 <span class="comment">/* Header levels 1 through 7 */</span> |
|
278 <a name="l00268"></a>00268 pStyle->usIstd = ucTmp - 87; |
|
279 <a name="l00269"></a>00269 pStyle->ucNumLevel = 1; |
|
280 <a name="l00270"></a>00270 } |
|
281 <a name="l00271"></a>00271 } |
|
282 <a name="l00272"></a>00272 <span class="keywordflow">if</span> (iBytes < 2) { |
|
283 <a name="l00273"></a>00273 <span class="keywordflow">return</span>; |
|
284 <a name="l00274"></a>00274 } |
|
285 <a name="l00275"></a>00275 <span class="comment">/* jc */</span> |
|
286 <a name="l00276"></a>00276 ucTmp = ucGetByte(iFodo + 2, aucGrpprl); |
|
287 <a name="l00277"></a>00277 pStyle->ucAlignment = ucTmp & 0x02; |
|
288 <a name="l00278"></a>00278 <span class="keywordflow">if</span> (iBytes < 3) { |
|
289 <a name="l00279"></a>00279 <span class="keywordflow">return</span>; |
|
290 <a name="l00280"></a>00280 } |
|
291 <a name="l00281"></a>00281 <span class="comment">/* stc */</span> |
|
292 <a name="l00282"></a>00282 ucTmp = ucGetByte(iFodo + 3, aucGrpprl); |
|
293 <a name="l00283"></a>00283 ucTmp &= 0x7f; |
|
294 <a name="l00284"></a>00284 <span class="keywordflow">if</span> (ucTmp >= 88 && ucTmp <= 94) { |
|
295 <a name="l00285"></a>00285 <span class="comment">/* Header levels 1 through 7 */</span> |
|
296 <a name="l00286"></a>00286 pStyle->usIstd = ucTmp - 87; |
|
297 <a name="l00287"></a>00287 pStyle->ucNumLevel = 1; |
|
298 <a name="l00288"></a>00288 } |
|
299 <a name="l00289"></a>00289 <span class="keywordflow">if</span> (iBytes < 6) { |
|
300 <a name="l00290"></a>00290 <span class="keywordflow">return</span>; |
|
301 <a name="l00291"></a>00291 } |
|
302 <a name="l00292"></a>00292 <span class="comment">/* dxaRight */</span> |
|
303 <a name="l00293"></a>00293 pStyle->sRightIndent = (short)usGetWord(iFodo + 5, aucGrpprl); |
|
304 <a name="l00294"></a>00294 NO_DBG_DEC(pStyle->sRightIndent); |
|
305 <a name="l00295"></a>00295 <span class="keywordflow">if</span> (iBytes < 8) { |
|
306 <a name="l00296"></a>00296 <span class="keywordflow">return</span>; |
|
307 <a name="l00297"></a>00297 } |
|
308 <a name="l00298"></a>00298 <span class="comment">/* dxaLeft */</span> |
|
309 <a name="l00299"></a>00299 pStyle->sLeftIndent = (short)usGetWord(iFodo + 7, aucGrpprl); |
|
310 <a name="l00300"></a>00300 NO_DBG_DEC(pStyle->sLeftIndent); |
|
311 <a name="l00301"></a>00301 <span class="keywordflow">if</span> (iBytes < 10) { |
|
312 <a name="l00302"></a>00302 <span class="keywordflow">return</span>; |
|
313 <a name="l00303"></a>00303 } |
|
314 <a name="l00304"></a>00304 <span class="comment">/* dxaLeft1 */</span> |
|
315 <a name="l00305"></a>00305 pStyle->sLeftIndent1 = (short)usGetWord(iFodo + 9, aucGrpprl); |
|
316 <a name="l00306"></a>00306 NO_DBG_DEC(pStyle->sLeftIndent1); |
|
317 <a name="l00307"></a>00307 <span class="keywordflow">if</span> (iBytes < 14) { |
|
318 <a name="l00308"></a>00308 <span class="keywordflow">return</span>; |
|
319 <a name="l00309"></a>00309 } |
|
320 <a name="l00310"></a>00310 <span class="comment">/* dyaBefore */</span> |
|
321 <a name="l00311"></a>00311 pStyle->usBeforeIndent = usGetWord(iFodo + 13, aucGrpprl); |
|
322 <a name="l00312"></a>00312 NO_DBG_DEC(pStyle->usBeforeIndent); |
|
323 <a name="l00313"></a>00313 <span class="keywordflow">if</span> (iBytes < 16) { |
|
324 <a name="l00314"></a>00314 <span class="keywordflow">return</span>; |
|
325 <a name="l00315"></a>00315 } |
|
326 <a name="l00316"></a>00316 <span class="comment">/* dyaAfter */</span> |
|
327 <a name="l00317"></a>00317 pStyle->usAfterIndent = usGetWord(iFodo + 15, aucGrpprl); |
|
328 <a name="l00318"></a>00318 NO_DBG_DEC(pStyle->usAfterIndent); |
|
329 <a name="l00319"></a>00319 } <span class="comment">/* end of vGet0StyleInfo */</span> |
|
330 <a name="l00320"></a>00320 |
|
331 <a name="l00321"></a>00321 <span class="comment">/*</span> |
|
332 <a name="l00322"></a>00322 <span class="comment"> * Build the lists with Paragraph Information for Word for DOS files</span> |
|
333 <a name="l00323"></a>00323 <span class="comment"> */</span> |
|
334 <a name="l00324"></a>00324 <span class="keywordtype">void</span> |
|
335 <a name="l00325"></a>00325 vGet0PapInfo(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader) |
|
336 <a name="l00326"></a>00326 { |
|
337 <a name="l00327"></a>00327 style_block_type tStyle; |
|
338 <a name="l00328"></a>00328 ULONG ulBeginParfInfo, ulCharPos, ulCharPosNext; |
|
339 <a name="l00329"></a>00329 <span class="keywordtype">int</span> iIndex, iRun, iFodo; |
|
340 <a name="l00330"></a>00330 UCHAR aucFpage[128]; |
|
341 <a name="l00331"></a>00331 |
|
342 <a name="l00332"></a>00332 fail(pFile == NULL || aucHeader == NULL); |
|
343 <a name="l00333"></a>00333 |
|
344 <a name="l00334"></a>00334 ulBeginParfInfo = 128 * (ULONG)usGetWord(0x12, aucHeader); |
|
345 <a name="l00335"></a>00335 NO_DBG_HEX(ulBeginParfInfo); |
|
346 <a name="l00336"></a>00336 |
|
347 <a name="l00337"></a>00337 <span class="keywordflow">do</span> { |
|
348 <a name="l00338"></a>00338 <span class="keywordflow">if</span> (!bReadBytes(aucFpage, 128, ulBeginParfInfo, pFile)) { |
|
349 <a name="l00339"></a>00339 <span class="keywordflow">return</span>; |
|
350 <a name="l00340"></a>00340 } |
|
351 <a name="l00341"></a>00341 NO_DBG_PRINT_BLOCK(aucFpage, 128); |
|
352 <a name="l00342"></a>00342 ulCharPosNext = ulGetLong(0, aucFpage); |
|
353 <a name="l00343"></a>00343 iRun = (int)ucGetByte(0x7f, aucFpage); |
|
354 <a name="l00344"></a>00344 NO_DBG_DEC(iRun); |
|
355 <a name="l00345"></a>00345 <span class="keywordflow">for</span> (iIndex = 0; iIndex < iRun; iIndex++) { |
|
356 <a name="l00346"></a>00346 iFodo = (int)usGetWord(6 * iIndex + 8, aucFpage); |
|
357 <a name="l00347"></a>00347 <span class="keywordflow">if</span> (iFodo <= 0 || iFodo > 0x79) { |
|
358 <a name="l00348"></a>00348 DBG_DEC_C(iFodo != (<span class="keywordtype">int</span>)0xffff, iFodo); |
|
359 <a name="l00349"></a>00349 <span class="keywordflow">continue</span>; |
|
360 <a name="l00350"></a>00350 } |
|
361 <a name="l00351"></a>00351 vFillStyleFromStylesheet(0, &tStyle); |
|
362 <a name="l00352"></a>00352 vGet0StyleInfo(iFodo, aucFpage + 4, &tStyle); |
|
363 <a name="l00353"></a>00353 ulCharPos = ulCharPosNext; |
|
364 <a name="l00354"></a>00354 ulCharPosNext = ulGetLong(6 * iIndex + 4, aucFpage); |
|
365 <a name="l00355"></a>00355 tStyle.ulFileOffset = ulCharPos; |
|
366 <a name="l00356"></a>00356 vAdd2StyleInfoList(&tStyle); |
|
367 <a name="l00357"></a>00357 } |
|
368 <a name="l00358"></a>00358 ulBeginParfInfo += 128; |
|
369 <a name="l00359"></a>00359 } <span class="keywordflow">while</span> (ulCharPosNext == ulBeginParfInfo); |
|
370 <a name="l00360"></a>00360 } <span class="comment">/* end of vGet0PapInfo */</span> |
|
371 <a name="l00361"></a>00361 |
|
372 <a name="l00362"></a>00362 <span class="comment">/*</span> |
|
373 <a name="l00363"></a>00363 <span class="comment"> * Fill the font information block with information</span> |
|
374 <a name="l00364"></a>00364 <span class="comment"> * from a Word for DOS file.</span> |
|
375 <a name="l00365"></a>00365 <span class="comment"> */</span> |
|
376 <a name="l00366"></a>00366 <span class="keyword">static</span> <span class="keywordtype">void</span> |
|
377 <a name="l00367"></a>00367 vGet0FontInfo(<span class="keywordtype">int</span> iFodo, <span class="keyword">const</span> UCHAR *aucGrpprl, font_block_type *pFont) |
|
378 <a name="l00368"></a>00368 { |
|
379 <a name="l00369"></a>00369 <span class="keywordtype">int</span> iBytes; |
|
380 <a name="l00370"></a>00370 UCHAR ucTmp; |
|
381 <a name="l00371"></a>00371 |
|
382 <a name="l00372"></a>00372 fail(iFodo <= 0 || aucGrpprl == NULL || pFont == NULL); |
|
383 <a name="l00373"></a>00373 |
|
384 <a name="l00374"></a>00374 iBytes = (int)ucGetByte(iFodo, aucGrpprl); |
|
385 <a name="l00375"></a>00375 <span class="keywordflow">if</span> (iBytes < 2) { |
|
386 <a name="l00376"></a>00376 <span class="keywordflow">return</span>; |
|
387 <a name="l00377"></a>00377 } |
|
388 <a name="l00378"></a>00378 <span class="comment">/* fBold, fItalic, cFtc */</span> |
|
389 <a name="l00379"></a>00379 ucTmp = ucGetByte(iFodo + 2, aucGrpprl); |
|
390 <a name="l00380"></a>00380 <span class="keywordflow">if</span> ((ucTmp & BIT(0)) != 0) { |
|
391 <a name="l00381"></a>00381 pFont->usFontStyle |= FONT_BOLD; |
|
392 <a name="l00382"></a>00382 } |
|
393 <a name="l00383"></a>00383 <span class="keywordflow">if</span> ((ucTmp & BIT(1)) != 0) { |
|
394 <a name="l00384"></a>00384 pFont->usFontStyle |= FONT_ITALIC; |
|
395 <a name="l00385"></a>00385 } |
|
396 <a name="l00386"></a>00386 pFont->ucFontNumber = ucTmp >> 2; |
|
397 <a name="l00387"></a>00387 NO_DBG_DEC(pFont->ucFontNumber); |
|
398 <a name="l00388"></a>00388 <span class="keywordflow">if</span> (iBytes < 3) { |
|
399 <a name="l00389"></a>00389 <span class="keywordflow">return</span>; |
|
400 <a name="l00390"></a>00390 } |
|
401 <a name="l00391"></a>00391 <span class="comment">/* cHps */</span> |
|
402 <a name="l00392"></a>00392 pFont->usFontSize = (USHORT)ucGetByte(iFodo + 3, aucGrpprl); |
|
403 <a name="l00393"></a>00393 NO_DBG_DEC(pFont->usFontSize); |
|
404 <a name="l00394"></a>00394 <span class="keywordflow">if</span> (iBytes < 4) { |
|
405 <a name="l00395"></a>00395 <span class="keywordflow">return</span>; |
|
406 <a name="l00396"></a>00396 } |
|
407 <a name="l00397"></a>00397 <span class="comment">/* cKul, fStrike, fCaps, fSmallCaps, fVanish */</span> |
|
408 <a name="l00398"></a>00398 ucTmp = ucGetByte(iFodo + 4, aucGrpprl); |
|
409 <a name="l00399"></a>00399 <span class="keywordflow">if</span> ((ucTmp & BIT(0)) != 0 || (ucTmp & BIT(2)) != 0) { |
|
410 <a name="l00400"></a>00400 pFont->usFontStyle |= FONT_UNDERLINE; |
|
411 <a name="l00401"></a>00401 } |
|
412 <a name="l00402"></a>00402 <span class="keywordflow">if</span> ((ucTmp & BIT(1)) != 0) { |
|
413 <a name="l00403"></a>00403 pFont->usFontStyle |= FONT_STRIKE; |
|
414 <a name="l00404"></a>00404 } |
|
415 <a name="l00405"></a>00405 <span class="keywordflow">if</span> ((ucTmp & BIT(4)) != 0) { |
|
416 <a name="l00406"></a>00406 pFont->usFontStyle |= FONT_CAPITALS; |
|
417 <a name="l00407"></a>00407 } |
|
418 <a name="l00408"></a>00408 <span class="keywordflow">if</span> ((ucTmp & BIT(5)) != 0) { |
|
419 <a name="l00409"></a>00409 pFont->usFontStyle |= FONT_SMALL_CAPITALS; |
|
420 <a name="l00410"></a>00410 } |
|
421 <a name="l00411"></a>00411 <span class="keywordflow">if</span> ((ucTmp & BIT(7)) != 0) { |
|
422 <a name="l00412"></a>00412 pFont->usFontStyle |= FONT_HIDDEN; |
|
423 <a name="l00413"></a>00413 } |
|
424 <a name="l00414"></a>00414 DBG_HEX(pFont->usFontStyle); |
|
425 <a name="l00415"></a>00415 <span class="keywordflow">if</span> (iBytes < 6) { |
|
426 <a name="l00416"></a>00416 <span class="keywordflow">return</span>; |
|
427 <a name="l00417"></a>00417 } |
|
428 <a name="l00418"></a>00418 <span class="comment">/* cIss */</span> |
|
429 <a name="l00419"></a>00419 ucTmp = ucGetByte(iFodo + 6, aucGrpprl); |
|
430 <a name="l00420"></a>00420 <span class="keywordflow">if</span> (ucTmp != 0) { |
|
431 <a name="l00421"></a>00421 <span class="keywordflow">if</span> (ucTmp < 128) { |
|
432 <a name="l00422"></a>00422 pFont->usFontStyle |= FONT_SUPERSCRIPT; |
|
433 <a name="l00423"></a>00423 DBG_MSG(<span class="stringliteral">"Superscript"</span>); |
|
434 <a name="l00424"></a>00424 } <span class="keywordflow">else</span> { |
|
435 <a name="l00425"></a>00425 pFont->usFontStyle |= FONT_SUBSCRIPT; |
|
436 <a name="l00426"></a>00426 DBG_MSG(<span class="stringliteral">"Subscript"</span>); |
|
437 <a name="l00427"></a>00427 } |
|
438 <a name="l00428"></a>00428 } |
|
439 <a name="l00429"></a>00429 <span class="keywordflow">if</span> (iBytes < 7) { |
|
440 <a name="l00430"></a>00430 <span class="keywordflow">return</span>; |
|
441 <a name="l00431"></a>00431 } |
|
442 <a name="l00432"></a>00432 <span class="comment">/* cIco */</span> |
|
443 <a name="l00433"></a>00433 ucTmp = ucGetByte(iFodo + 7, aucGrpprl); |
|
444 <a name="l00434"></a>00434 <span class="keywordflow">switch</span> (ucTmp & 0x07) { |
|
445 <a name="l00435"></a>00435 <span class="keywordflow">case</span> 0: pFont->ucFontColor = FONT_COLOR_BLACK; <span class="keywordflow">break</span>; |
|
446 <a name="l00436"></a>00436 <span class="keywordflow">case</span> 1: pFont->ucFontColor = FONT_COLOR_RED; <span class="keywordflow">break</span>; |
|
447 <a name="l00437"></a>00437 <span class="keywordflow">case</span> 2: pFont->ucFontColor = FONT_COLOR_GREEN; <span class="keywordflow">break</span>; |
|
448 <a name="l00438"></a>00438 <span class="keywordflow">case</span> 3: pFont->ucFontColor = FONT_COLOR_BLUE; <span class="keywordflow">break</span>; |
|
449 <a name="l00439"></a>00439 <span class="keywordflow">case</span> 4: pFont->ucFontColor = FONT_COLOR_CYAN; <span class="keywordflow">break</span>; |
|
450 <a name="l00440"></a>00440 <span class="keywordflow">case</span> 5: pFont->ucFontColor = FONT_COLOR_MAGENTA; <span class="keywordflow">break</span>; |
|
451 <a name="l00441"></a>00441 <span class="keywordflow">case</span> 6: pFont->ucFontColor = FONT_COLOR_YELLOW; <span class="keywordflow">break</span>; |
|
452 <a name="l00442"></a>00442 <span class="keywordflow">case</span> 7: pFont->ucFontColor = FONT_COLOR_WHITE; <span class="keywordflow">break</span>; |
|
453 <a name="l00443"></a>00443 <span class="keywordflow">default</span>:pFont->ucFontColor = FONT_COLOR_BLACK; <span class="keywordflow">break</span>; |
|
454 <a name="l00444"></a>00444 } |
|
455 <a name="l00445"></a>00445 NO_DBG_DEC(pFont->ucFontColor); |
|
456 <a name="l00446"></a>00446 } <span class="comment">/* end of vGet0FontInfo */</span> |
|
457 <a name="l00447"></a>00447 |
|
458 <a name="l00448"></a>00448 <span class="comment">/*</span> |
|
459 <a name="l00449"></a>00449 <span class="comment"> * Build the lists with Character Information for Word for DOS files</span> |
|
460 <a name="l00450"></a>00450 <span class="comment"> */</span> |
|
461 <a name="l00451"></a>00451 <span class="keywordtype">void</span> |
|
462 <a name="l00452"></a>00452 vGet0ChrInfo(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader) |
|
463 <a name="l00453"></a>00453 { |
|
464 <a name="l00454"></a>00454 font_block_type tFont; |
|
465 <a name="l00455"></a>00455 ULONG ulBeginCharInfo, ulCharPos, ulCharPosNext; |
|
466 <a name="l00456"></a>00456 <span class="keywordtype">int</span> iIndex, iRun, iFodo; |
|
467 <a name="l00457"></a>00457 UCHAR aucFpage[128]; |
|
468 <a name="l00458"></a>00458 |
|
469 <a name="l00459"></a>00459 fail(pFile == NULL || aucHeader == NULL); |
|
470 <a name="l00460"></a>00460 |
|
471 <a name="l00461"></a>00461 ulBeginCharInfo = ulGetLong(0x0e, aucHeader); |
|
472 <a name="l00462"></a>00462 NO_DBG_HEX(ulBeginCharInfo); |
|
473 <a name="l00463"></a>00463 ulBeginCharInfo = ROUND128(ulBeginCharInfo); |
|
474 <a name="l00464"></a>00464 NO_DBG_HEX(ulBeginCharInfo); |
|
475 <a name="l00465"></a>00465 |
|
476 <a name="l00466"></a>00466 <span class="keywordflow">do</span> { |
|
477 <a name="l00467"></a>00467 <span class="keywordflow">if</span> (!bReadBytes(aucFpage, 128, ulBeginCharInfo, pFile)) { |
|
478 <a name="l00468"></a>00468 <span class="keywordflow">return</span>; |
|
479 <a name="l00469"></a>00469 } |
|
480 <a name="l00470"></a>00470 NO_DBG_PRINT_BLOCK(aucFpage, 128); |
|
481 <a name="l00471"></a>00471 ulCharPosNext = ulGetLong(0, aucFpage); |
|
482 <a name="l00472"></a>00472 iRun = (int)ucGetByte(0x7f, aucFpage); |
|
483 <a name="l00473"></a>00473 NO_DBG_DEC(iRun); |
|
484 <a name="l00474"></a>00474 <span class="keywordflow">for</span> (iIndex = 0; iIndex < iRun; iIndex++) { |
|
485 <a name="l00475"></a>00475 iFodo = (int)usGetWord(6 * iIndex + 8, aucFpage); |
|
486 <a name="l00476"></a>00476 <span class="keywordflow">if</span> (iFodo <= 0 || iFodo > 0x79) { |
|
487 <a name="l00477"></a>00477 DBG_DEC_C(iFodo != (<span class="keywordtype">int</span>)0xffff, iFodo); |
|
488 <a name="l00478"></a>00478 <span class="keywordflow">continue</span>; |
|
489 <a name="l00479"></a>00479 } |
|
490 <a name="l00480"></a>00480 vFillFontFromStylesheet(0, &tFont); |
|
491 <a name="l00481"></a>00481 vGet0FontInfo(iFodo, aucFpage + 4, &tFont); |
|
492 <a name="l00482"></a>00482 ulCharPos = ulCharPosNext; |
|
493 <a name="l00483"></a>00483 ulCharPosNext = ulGetLong(6 * iIndex + 4, aucFpage); |
|
494 <a name="l00484"></a>00484 tFont.ulFileOffset = ulCharPos; |
|
495 <a name="l00485"></a>00485 vAdd2FontInfoList(&tFont); |
|
496 <a name="l00486"></a>00486 } |
|
497 <a name="l00487"></a>00487 ulBeginCharInfo += 128; |
|
498 <a name="l00488"></a>00488 } <span class="keywordflow">while</span> (ulCharPosNext == ulBeginCharInfo); |
|
499 <a name="l00489"></a>00489 } <span class="comment">/* end of vGet0ChrInfo */</span> |
|
500 </pre></div></div> |
|
501 <hr size="1"/><address style="text-align: right;"><small>Generated by |
|
502 <a href="http://www.doxygen.org/index.html"> |
|
503 <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address> |
|
504 </body> |
|
505 </html> |
|