annotate src/libpst.c @ 36:6fe121a971c9 stable-0-5-7

valgrind fixes
author carl
date Thu, 09 Aug 2007 15:46:34 -0700
parents b2f247463b83
children 2ad7ef0a3c4f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1 /***
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2 * libpst.c
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3 * Part of the LibPST project
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4 * Written by David Smith
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
5 * dave.s@earthcorp.com
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
6 */
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
7 #include <stdio.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
8 #include <stdlib.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
9 #include <time.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
10 #include <string.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
11 #include <ctype.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
12 #include <limits.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
13 #include <wchar.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
14
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
15 #include <errno.h>
33
12cac756bc05 enable -d option, but if not specified, don't generate a debug file
carl
parents: 31
diff changeset
16 #include <sys/stat.h> // mkdir
12cac756bc05 enable -d option, but if not specified, don't generate a debug file
carl
parents: 31
diff changeset
17 #include <fcntl.h> // for Win32 definition of _O_BINARY
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
18 #include "define.h"
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
19 #include "libstrfunc.h"
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
20
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
21 #ifdef _MSC_VER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
22 # include <windows.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
23 #else
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
24 # include <unistd.h>
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
25 #endif //ifdef _MSC_VER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
26
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
27 #include "libpst.h"
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
28 #include "timeconv.h"
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
29
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
30 #define FILE_SIZE_POINTER 0xA8
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
31 #define INDEX_POINTER 0xC4
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
32 #define SECOND_POINTER 0xBC
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
33 // the encryption setting could be at 0x1CC. Will require field testing
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
34 #define ENC_OFFSET 0x1CD
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
35 // says the type of index we have
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
36 #define INDEX_TYPE_OFFSET 0x0A
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
37
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
38 // for the 64bit 2003 outlook PST we need new file offsets
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
39 // perhaps someone can figure out the header format for the pst files...
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
40 #define FILE_SIZE_POINTER_64 0xB8
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
41 #define INDEX_POINTER_64 0xF0
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
42 #define SECOND_POINTER_64 0xE0
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
43
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
44 #define PST_SIGNATURE 0x4E444221
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
45
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
46 struct _pst_table_ptr_struct{
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
47 int32_t start;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
48 int32_t u1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
49 int32_t offset;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
50 };
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
51
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
52 typedef struct _pst_block_header {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
53 int16_t type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
54 int16_t count;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
55 } pst_block_header;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
56
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
57 typedef struct _pst_id2_assoc {
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
58 u_int32_t id2;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
59 u_int32_t id;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
60 int32_t table2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
61 } pst_id2_assoc;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
62
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
63 // this is an array of the un-encrypted values. the un-encrypted value is in the position
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
64 // of the encrypted value. ie the encrypted value 0x13 represents 0x02
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
65 // 0 1 2 3 4 5 6 7
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
66 // 8 9 a b c d e f
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
67 unsigned char comp_enc [] =
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
68 { 0x47, 0xf1, 0xb4, 0xe6, 0x0b, 0x6a, 0x72, 0x48,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
69 0x85, 0x4e, 0x9e, 0xeb, 0xe2, 0xf8, 0x94, 0x53, /*0x0f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
70 0xe0, 0xbb, 0xa0, 0x02, 0xe8, 0x5a, 0x09, 0xab,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
71 0xdb, 0xe3, 0xba, 0xc6, 0x7c, 0xc3, 0x10, 0xdd, /*0x1f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
72 0x39, 0x05, 0x96, 0x30, 0xf5, 0x37, 0x60, 0x82,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
73 0x8c, 0xc9, 0x13, 0x4a, 0x6b, 0x1d, 0xf3, 0xfb, /*0x2f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
74 0x8f, 0x26, 0x97, 0xca, 0x91, 0x17, 0x01, 0xc4,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
75 0x32, 0x2d, 0x6e, 0x31, 0x95, 0xff, 0xd9, 0x23, /*0x3f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
76 0xd1, 0x00, 0x5e, 0x79, 0xdc, 0x44, 0x3b, 0x1a,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
77 0x28, 0xc5, 0x61, 0x57, 0x20, 0x90, 0x3d, 0x83, /*0x4f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
78 0xb9, 0x43, 0xbe, 0x67, 0xd2, 0x46, 0x42, 0x76,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
79 0xc0, 0x6d, 0x5b, 0x7e, 0xb2, 0x0f, 0x16, 0x29, /*0x5f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
80 0x3c, 0xa9, 0x03, 0x54, 0x0d, 0xda, 0x5d, 0xdf,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
81 0xf6, 0xb7, 0xc7, 0x62, 0xcd, 0x8d, 0x06, 0xd3, /*0x6f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
82 0x69, 0x5c, 0x86, 0xd6, 0x14, 0xf7, 0xa5, 0x66,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
83 0x75, 0xac, 0xb1, 0xe9, 0x45, 0x21, 0x70, 0x0c, /*0x7f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
84 0x87, 0x9f, 0x74, 0xa4, 0x22, 0x4c, 0x6f, 0xbf,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
85 0x1f, 0x56, 0xaa, 0x2e, 0xb3, 0x78, 0x33, 0x50, /*0x8f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
86 0xb0, 0xa3, 0x92, 0xbc, 0xcf, 0x19, 0x1c, 0xa7,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
87 0x63, 0xcb, 0x1e, 0x4d, 0x3e, 0x4b, 0x1b, 0x9b, /*0x9f*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
88 0x4f, 0xe7, 0xf0, 0xee, 0xad, 0x3a, 0xb5, 0x59,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
89 0x04, 0xea, 0x40, 0x55, 0x25, 0x51, 0xe5, 0x7a, /*0xaf*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
90 0x89, 0x38, 0x68, 0x52, 0x7b, 0xfc, 0x27, 0xae,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
91 0xd7, 0xbd, 0xfa, 0x07, 0xf4, 0xcc, 0x8e, 0x5f, /*0xbf*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
92 0xef, 0x35, 0x9c, 0x84, 0x2b, 0x15, 0xd5, 0x77,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
93 0x34, 0x49, 0xb6, 0x12, 0x0a, 0x7f, 0x71, 0x88, /*0xcf*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
94 0xfd, 0x9d, 0x18, 0x41, 0x7d, 0x93, 0xd8, 0x58,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
95 0x2c, 0xce, 0xfe, 0x24, 0xaf, 0xde, 0xb8, 0x36, /*0xdf*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
96 0xc8, 0xa1, 0x80, 0xa6, 0x99, 0x98, 0xa8, 0x2f,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
97 0x0e, 0x81, 0x65, 0x73, 0xe4, 0xc2, 0xa2, 0x8a, /*0xef*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
98 0xd4, 0xe1, 0x11, 0xd0, 0x08, 0x8b, 0x2a, 0xf2,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
99 0xed, 0x9a, 0x64, 0x3f, 0xc1, 0x6c, 0xf9, 0xec}; /*0xff*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
100
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
101 int32_t pst_open(pst_file *pf, char *name, char *mode) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
102 u_int32_t sig;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
103
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
104 DEBUG_ENT("pst_open");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
105
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
106 if (!pf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
107 WARN (("cannot be passed a NULL pst_file\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
108 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
109 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
110 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
111 memset(pf, 0, sizeof(pst_file));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
112
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
113 #ifdef _MSC_VER
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
114 // set the default open mode for windows
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
115 _fmode = _O_BINARY;
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
116 #endif //_MSC_VER
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
117 if ((pf->fp = fopen(name, mode)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
118 WARN(("cannot open PST file. Error\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
119 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
120 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
121 }
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
122
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
123 // Check pst file magic
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
124 if (fread(&sig, sizeof(sig), 1, pf->fp) == 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
125 fclose(pf->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
126 WARN(("cannot read signature from PST file. Closing on error\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
127 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
128 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
129 }
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
130 LE32_CPU(sig); // architecture independant byte-swapping (little, big, pdp)
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
131 DEBUG_INFO(("sig = %X\n", sig));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
132 if (sig != PST_SIGNATURE) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
133 fclose(pf->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
134 WARN(("not a PST file that I know. Closing with error\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
135 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
136 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
137 }
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
138
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
139 // read index type
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
140 _pst_getAtPos(pf->fp, INDEX_TYPE_OFFSET, &(pf->ind_type), sizeof(unsigned char));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
141 DEBUG_INFO(("index_type = %i\n", pf->ind_type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
142 if (pf->ind_type != 0x0E) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
143 WARN(("unknown index structure. Could this be a new Outlook 2003 PST file?\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
144 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
145 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
146 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
147
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
148 // read encryption setting
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
149 _pst_getAtPos(pf->fp, ENC_OFFSET, &(pf->encryption), sizeof(unsigned char));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
150 DEBUG_INFO(("encrypt = %i\n", pf->encryption));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
151
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
152 _pst_getAtPos(pf->fp, SECOND_POINTER-4, &(pf->index2_count), sizeof(pf->index2_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
153 _pst_getAtPos(pf->fp, SECOND_POINTER, &(pf->index2), sizeof(pf->index2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
154 LE32_CPU(pf->index2_count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
155 LE32_CPU(pf->index2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
156 DEBUG_INFO(("Pointer2 is %#X, count %i[%#x]\n", pf->index2, pf->index2_count, pf->index2_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
157
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
158 _pst_getAtPos(pf->fp, FILE_SIZE_POINTER, &(pf->size), sizeof(pf->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
159 LE32_CPU(pf->size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
160
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
161 _pst_getAtPos(pf->fp, INDEX_POINTER-4, &(pf->index1_count), sizeof(pf->index1_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
162 _pst_getAtPos(pf->fp, INDEX_POINTER, &(pf->index1), sizeof(pf->index1));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
163 LE32_CPU(pf->index1_count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
164 LE32_CPU(pf->index1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
165 DEBUG_INFO(("Pointer1 is %#X, count %i[%#x]\n", pf->index1, pf->index1_count, pf->index1_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
166
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
167 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
168 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
169 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
170
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
171
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
172 int32_t pst_close(pst_file *pf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
173 DEBUG_ENT("pst_close");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
174 if (!pf->fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
175 WARN(("cannot close NULL fp\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
176 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
177 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
178 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
179 if (fclose(pf->fp)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
180 WARN(("fclose returned non-zero value\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
181 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
182 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
183 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
184 // we must free the id linklist and the desc tree
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
185 _pst_free_id (pf->i_head);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
186 _pst_free_desc (pf->d_head);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
187 _pst_free_xattrib (pf->x_head);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
188 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
189 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
190 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
191
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
192
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
193 pst_desc_ll* pst_getTopOfFolders(pst_file *pf, pst_item *root) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
194 pst_desc_ll *ret;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
195 DEBUG_ENT("pst_getTopOfFolders");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
196 if (!root || !root->message_store) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
197 DEBUG_INDEX(("There isn't a top of folder record here.\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
198 ret = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
199 } else if (!root->message_store->top_of_personal_folder) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
200 // this is the OST way
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
201 // ASSUMPTION: Top Of Folders record in PST files is *always* descid 0x2142
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
202 ret = _pst_getDptr(pf, 0x2142);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
203 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
204 ret = _pst_getDptr(pf, root->message_store->top_of_personal_folder->id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
205 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
206 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
207 return ret;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
208 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
209
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
210
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
211 int32_t pst_attach_to_mem(pst_file *pf, pst_item_attach *attach, unsigned char **b){
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
212 int32_t size=0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
213 pst_index_ll *ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
214 struct holder h = {b, NULL, 0, "", 0};
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
215 DEBUG_ENT("pst_attach_to_mem");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
216 if (attach->id_val != -1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
217 ptr = _pst_getID(pf, attach->id_val);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
218 if (ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
219 size = _pst_ff_getID2data(pf, ptr, &h);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
220 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
221 DEBUG_WARN(("Couldn't find ID pointer. Cannot handle attachment\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
222 size = 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
223 }
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
224 attach->size = size; // may as well update it to what is correct for this instance
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
225 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
226 size = attach->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
227 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
228 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
229 return size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
230 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
231
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
232
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
233 int32_t pst_attach_to_file(pst_file *pf, pst_item_attach *attach, FILE* fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
234 pst_index_ll *ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
235 struct holder h = {NULL, fp, 0, "", 0};
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
236 int32_t size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
237 DEBUG_ENT("pst_attach_to_file");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
238 if (attach->id_val != -1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
239 ptr = _pst_getID(pf, attach->id_val);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
240 if (ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
241 size = _pst_ff_getID2data(pf, ptr, &h);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
242 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
243 DEBUG_WARN(("Couldn't find ID pointer. Cannot save attachment to file\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
244 size = 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
245 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
246 attach->size = size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
247 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
248 // save the attachment to file
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
249 size = attach->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
250 pst_fwrite(attach->data, 1, size, fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
251 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
252 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
253 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
254 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
255
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
256
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
257 int32_t pst_attach_to_file_base64(pst_file *pf, pst_item_attach *attach, FILE* fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
258 pst_index_ll *ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
259 struct holder h = {NULL, fp, 1, "", 0};
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
260 int32_t size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
261 char *c;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
262 DEBUG_ENT("pst_attach_to_file_base64");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
263 if (attach->id_val != -1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
264 ptr = _pst_getID(pf, attach->id_val);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
265 if (ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
266 size = _pst_ff_getID2data(pf, ptr, &h);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
267 // will need to encode any bytes left over
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
268 c = base64_encode(h.base64_extra_chars, h.base64_extra);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
269 if (c) pst_fwrite(c, 1, strlen(c), fp);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
270 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
271 DEBUG_WARN (("Couldn't find ID pointer. Cannot save attachement to Base64\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
272 size = 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
273 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
274 attach->size = size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
275 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
276 // encode the attachment to the file
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
277 c = base64_encode(attach->data, attach->size);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
278 if (c) pst_fwrite(c, 1, strlen(c), fp);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
279 size = attach->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
280 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
281 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
282 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
283 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
284
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
285
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
286 int32_t pst_load_index (pst_file *pf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
287 int32_t x;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
288 u_int32_t y;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
289 DEBUG_ENT("pst_load_index");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
290 if (!pf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
291 WARN(("Cannot load index for a NULL pst_file\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
292 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
293 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
294 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
295
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 33
diff changeset
296 x = _pst_build_id_ptr(pf, pf->index1, 0, pf->index1_count, 0, INT32_MAX);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
297 DEBUG_INDEX(("build id ptr returns %i\n", x));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
298
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
299 y = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
300 x = _pst_build_desc_ptr(pf, pf->index2, 0, pf->index2_count, &y, 0x21, INT32_MAX);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
301 DEBUG_INDEX(("build desc ptr returns %i\n", x));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
302
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
303 DEBUG_CODE(_pst_printDptr(pf););
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
304 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
305 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
306 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
307
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
308
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
309 pst_desc_ll* pst_getNextDptr(pst_desc_ll* d) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
310 pst_desc_ll* r = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
311 DEBUG_ENT("pst_getNextDptr");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
312 if (d) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
313 if ((r = d->child) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
314 while (!d->next && d->parent) d = d->parent;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
315 r = d->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
316 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
317 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
318 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
319 return r;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
320 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
321
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
322
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
323 typedef struct _pst_x_attrib {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
324 u_int16_t extended;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
325 u_int16_t zero;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
326 u_int16_t type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
327 u_int16_t map;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
328 } pst_x_attrib;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
329
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
330
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
331 int32_t pst_load_extended_attributes(pst_file *pf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
332 // for PST files this will load up ID2 0x61 and check it's "list" attribute.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
333 pst_desc_ll *p;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
334 pst_num_array *na;
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
335 pst_index2_ll *list2;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
336 unsigned char * buffer=NULL, *headerbuffer=NULL;//, *tc;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
337 pst_x_attrib xattrib;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
338 int32_t bptr = 0, bsize, hsize, tint, err=0, x;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
339 pst_x_attrib_ll *ptr, *p_head=NULL, *p_sh=NULL, *p_sh2=NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
340
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
341 DEBUG_ENT("pst_loadExtendedAttributes");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
342 if ((p = _pst_getDptr(pf, 0x61)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
343 DEBUG_WARN(("Cannot find DescID 0x61 for loading the Extended Attributes\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
344 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
345 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
346 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
347 if (p->list_index) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
348 list2 = _pst_build_id2(pf, p->list_index, NULL);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
349 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
350 if (!p->desc) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
351 DEBUG_WARN(("desc is NULL for item 0x61. Cannot load Extended Attributes\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
352 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
353 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
354 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
355 if ((na = _pst_parse_block(pf, p->desc->id, list2)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
356 DEBUG_WARN(("Cannot process desc block for item 0x61. Not loading extended Attributes\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
357 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
358 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
359 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
360 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
361 while (x < na->count_item) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
362 if (na->items[x]->id == 0x0003) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
363 buffer = na->items[x]->data;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
364 bsize = na->items[x]->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
365 } else if (na->items[x]->id == 0x0004) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
366 headerbuffer = na->items[x]->data;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
367 hsize = na->items[x]->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
368 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
369 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
370 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
371
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
372 if (!buffer) {
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
373 if (na) _pst_free_list(na);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
374 DEBUG_WARN(("No extended attributes buffer found. Not processing\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
375 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
376 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
377 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
378
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
379 memcpy(&xattrib, &(buffer[bptr]), sizeof(xattrib));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
380 LE16_CPU(xattrib.extended);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
381 LE16_CPU(xattrib.zero);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
382 LE16_CPU(xattrib.type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
383 LE16_CPU(xattrib.map);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
384 bptr += sizeof(xattrib);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
385
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
386 while (xattrib.type != 0 && bptr < bsize) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
387 ptr = (pst_x_attrib_ll*) xmalloc(sizeof(pst_x_attrib_ll));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
388 memset(ptr, 0, sizeof(pst_x_attrib_ll));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
389 ptr->type = xattrib.type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
390 ptr->map = xattrib.map+0x8000;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
391 ptr->next = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
392 DEBUG_INDEX(("xattrib: ext = %#hx, zero = %#hx, type = %#hx, map = %#hx\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
393 xattrib.extended, xattrib.zero, xattrib.type, xattrib.map));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
394 err=0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
395 if (xattrib.type & 0x0001) { // if the Bit 1 is set
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
396 // pointer to Unicode field in buffer
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
397 if (xattrib.extended < hsize) {
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
398 char *wt;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
399 // copy the size of the header. It is 32 bit int
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
400 memcpy(&tint, &(headerbuffer[xattrib.extended]), sizeof(tint));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
401 LE32_CPU(tint);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
402 wt = (char*) xmalloc(tint+2); // plus 2 for a uni-code zero
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
403 memset(wt, 0, tint+2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
404 memcpy(wt, &(headerbuffer[xattrib.extended+sizeof(tint)]), tint);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
405 ptr->data = _pst_wide_to_single(wt, tint);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
406 free(wt);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
407 DEBUG_INDEX(("Read string (converted from UTF-16): %s\n", ptr->data));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
408 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
409 DEBUG_INDEX(("Cannot read outside of buffer [%i !< %i]\n", xattrib.extended, hsize));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
410 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
411 ptr->mytype = PST_MAP_HEADER;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
412 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
413 // contains the attribute code to map to.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
414 ptr->data = (int*)xmalloc(sizeof(int32_t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
415 memset(ptr->data, 0, sizeof(int32_t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
416 *((int32_t*)ptr->data) = xattrib.extended;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
417 ptr->mytype = PST_MAP_ATTRIB;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
418 DEBUG_INDEX(("Mapped attribute %#x to %#x\n", ptr->map, *((int32_t*)ptr->data)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
419 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
420
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
421 if (err==0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
422 // add it to the list
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
423 p_sh = p_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
424 p_sh2 = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
425 while (p_sh && ptr->map > p_sh->map) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
426 p_sh2 = p_sh;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
427 p_sh = p_sh->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
428 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
429 if (!p_sh2) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
430 // needs to go before first item
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
431 ptr->next = p_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
432 p_head = ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
433 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
434 // it will go after p_sh2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
435 ptr->next = p_sh2->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
436 p_sh2->next = ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
437 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
438 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
439 free(ptr);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
440 ptr = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
441 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
442 memcpy(&xattrib, &(buffer[bptr]), sizeof(xattrib));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
443 LE16_CPU(xattrib.extended);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
444 LE16_CPU(xattrib.zero);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
445 LE16_CPU(xattrib.type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
446 LE16_CPU(xattrib.map);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
447 bptr += sizeof(xattrib);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
448 }
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
449 if (list2) _pst_free_id2(list2);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
450 if (na) _pst_free_list(na);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
451 pf->x_head = p_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
452 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
453 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
454 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
455
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
456
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
457 #define BLOCK_SIZE 516 // index blocks
24
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
458 #define DESC_BLOCK_SIZE 516 // descriptor blocks was 520 but bogus
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
459 #define ITEM_COUNT_OFFSET 0x1f0 // count byte
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
460 #define LEVEL_INDICATOR_OFFSET 0x1f3 // node or leaf
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
461 #define BACKLINK_OFFSET 0x1f8 // backlink u1 value
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
462 #define ITEM_SIZE 12
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
463 #define DESC_SIZE 16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
464 #define INDEX_COUNT_MAX 41 // max active items
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
465 #define DESC_COUNT_MAX 31 // max active items
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
466
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 33
diff changeset
467 int32_t _pst_build_id_ptr(pst_file *pf, int32_t offset, int32_t depth, int32_t linku1, u_int32_t start_val, u_int32_t end_val) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
468 struct _pst_table_ptr_struct table, table2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
469 pst_index_ll *i_ptr=NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
470 pst_index index;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
471 int32_t x, item_count;
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 33
diff changeset
472 u_int32_t old = start_val;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
473 char *buf = NULL, *bptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
474
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
475 DEBUG_ENT("_pst_build_id_ptr");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
476 DEBUG_INDEX(("offset %x depth %i linku1 %x start %x end %x\n", offset, depth, linku1, start_val, end_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
477 if (end_val <= start_val) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
478 DEBUG_WARN(("The end value is BEFORE the start value. This function will quit. Soz. [start:%#x, end:%#x]\n", start_val, end_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
479 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
480 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
481 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
482 DEBUG_INDEX(("Reading index block\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
483 if (_pst_read_block_size(pf, offset, BLOCK_SIZE, &buf, 0, 0) < BLOCK_SIZE) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
484 DEBUG_WARN(("Failed to read %i bytes\n", BLOCK_SIZE));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
485 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
486 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
487 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
488 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
489 bptr = buf;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
490 DEBUG_HEXDUMPC(buf, BLOCK_SIZE, ITEM_SIZE);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
491 item_count = (int)(unsigned)(buf[ITEM_COUNT_OFFSET]);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
492 if (item_count > INDEX_COUNT_MAX) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
493 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, INDEX_COUNT_MAX));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
494 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
495 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
496 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
497 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
498 memcpy(&index, buf+BACKLINK_OFFSET, sizeof(index));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
499 LE32_CPU(index.id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
500 if (index.id != linku1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
501 DEBUG_WARN(("Backlink %#x in this node does not match required %#x\n", index.id, linku1));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
502 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
503 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
504 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
505 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
506
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
507 if (buf[LEVEL_INDICATOR_OFFSET] == '\0') {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
508 // this node contains leaf pointers
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
509 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
510 while (x < item_count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
511 memcpy(&index, bptr, sizeof(index));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
512 LE32_CPU(index.id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
513 LE32_CPU(index.offset);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
514 LE16_CPU(index.size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
515 LE16_CPU(index.u1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
516 bptr += sizeof(index);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
517 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
518 if (index.id == 0) break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
519 DEBUG_INDEX(("[%i]%i Item [id = %#x, offset = %#x, u1 = %#x, size = %i(%#x)]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
520 depth, x, index.id, index.offset, index.u1, index.size, index.size));
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
521 // if (index.id & 0x02) DEBUG_INDEX(("two-bit set!!\n"));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
522 if ((index.id >= end_val) || (index.id < old)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
523 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
524 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
525 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
526 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
527 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
528 old = index.id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
529 if (x == 1) { // first entry
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 33
diff changeset
530 if ((start_val) && (index.id != start_val)) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
531 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
532 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
533 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
534 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
535 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
536 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
537 i_ptr = (pst_index_ll*) xmalloc(sizeof(pst_index_ll));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
538 i_ptr->id = index.id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
539 i_ptr->offset = index.offset;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
540 i_ptr->u1 = index.u1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
541 i_ptr->size = index.size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
542 i_ptr->next = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
543 if (pf->i_tail) pf->i_tail->next = i_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
544 if (!pf->i_head) pf->i_head = i_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
545 pf->i_tail = i_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
546 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
547 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
548 // this node contains node pointers
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
549 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
550 while (x < item_count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
551 memcpy(&table, bptr, sizeof(table));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
552 LE32_CPU(table.start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
553 LE32_CPU(table.u1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
554 LE32_CPU(table.offset);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
555 bptr += sizeof(table);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
556 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
557 if (table.start == 0) break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
558 if (x < item_count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
559 memcpy(&table2, bptr, sizeof(table));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
560 LE32_CPU(table2.start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
561 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
562 else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
563 table2.start = end_val;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
564 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
565 DEBUG_INDEX(("[%i] %i Index Table [start id = %#x, u1 = %#x, offset = %#x, end id = %#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
566 depth, x, table.start, table.u1, table.offset, table2.start));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
567 if ((table.start >= end_val) || (table.start < old)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
568 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
569 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
570 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
571 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
572 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
573 old = table.start;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
574 if (x == 1) { // first entry
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 33
diff changeset
575 if ((start_val) && (table.start != start_val)) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
576 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
577 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
578 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
579 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
580 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
581 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
582 _pst_build_id_ptr(pf, table.offset, depth+1, table.u1, table.start, table2.start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
583 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
584 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
585 if (buf) free (buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
586 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
587 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
588 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
589
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
590
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
591 /** this list node type is used for a quick cache
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
592 of the descriptor tree nodes (rooted at pf->d_head)
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
593 and for a "lost and found" list.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
594 If the parent isn't found yet, put it on the lost and found
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
595 list and check it each time you read a new item.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
596 */
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
597 struct cache_list_node {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
598 pst_desc_ll *ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
599 /** only used for lost and found lists */
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
600 u_int32_t parent;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
601 struct cache_list_node *next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
602 struct cache_list_node *prev;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
603 };
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
604 struct cache_list_node *cache_head;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
605 struct cache_list_node *cache_tail;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
606 struct cache_list_node *lostfound_head;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
607 int32_t cache_count;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
608
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
609
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
610 /**
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
611 add the d_ptr descriptor into the global tree
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
612 */
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
613 void record_descriptor(pst_file *pf, pst_desc_ll *d_ptr, u_int32_t parent_id) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
614 struct cache_list_node *lostfound_ptr = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
615 struct cache_list_node *cache_ptr = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
616 pst_desc_ll *parent = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
617
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
618 if (parent_id == 0 || parent_id == d_ptr->id) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
619 // add top level node to the descriptor tree
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
620 if (parent_id == 0) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
621 DEBUG_INDEX(("No Parent\n"));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
622 } else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
623 DEBUG_INDEX(("Record is its own parent. What is this world coming to?\n"));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
624 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
625 if (pf->d_tail) pf->d_tail->next = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
626 if (!pf->d_head) pf->d_head = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
627 d_ptr->prev = pf->d_tail;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
628 pf->d_tail = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
629 } else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
630 DEBUG_INDEX(("Searching for parent\n"));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
631 // check in the cache for the parent
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
632 cache_ptr = cache_head;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
633 while (cache_ptr && (cache_ptr->ptr->id != parent_id)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
634 cache_ptr = cache_ptr->next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
635 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
636 if (!cache_ptr && (parent = _pst_getDptr(pf, parent_id)) == NULL) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
637 // check in the lost/found list
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
638 lostfound_ptr = lostfound_head;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
639 while (lostfound_ptr && (lostfound_ptr->ptr->id != parent_id)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
640 lostfound_ptr = lostfound_ptr->next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
641 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
642 if (!lostfound_ptr) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
643 DEBUG_WARN(("ERROR -- cannot find parent with id %#x. Adding to lost/found\n", parent_id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
644 lostfound_ptr = (struct cache_list_node*) xmalloc(sizeof(struct cache_list_node));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
645 lostfound_ptr->prev = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
646 lostfound_ptr->next = lostfound_head;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
647 lostfound_ptr->parent = parent_id;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
648 lostfound_ptr->ptr = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
649 lostfound_head = lostfound_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
650 } else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
651 parent = lostfound_ptr->ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
652 DEBUG_INDEX(("Found parent (%#x) in Lost and Found\n", parent->id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
653 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
654 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
655
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
656 if (cache_ptr || parent) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
657 if (cache_ptr)
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
658 // parent is already in the cache
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
659 parent = cache_ptr->ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
660 else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
661 //add the parent to the cache
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
662 DEBUG_INDEX(("Cache addition\n"));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
663 cache_ptr = (struct cache_list_node*) xmalloc(sizeof(struct cache_list_node));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
664 cache_ptr->prev = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
665 cache_ptr->next = cache_head;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
666 cache_ptr->ptr = parent;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
667 cache_head = cache_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
668 if (!cache_tail) cache_tail = cache_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
669 cache_count++;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
670 if (cache_count > 100) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
671 DEBUG_INDEX(("trimming quick cache\n"));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
672 //remove one from the end
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
673 cache_ptr = cache_tail;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
674 cache_tail = cache_ptr->prev;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
675 free (cache_ptr);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
676 cache_count--;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
677 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
678 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
679 DEBUG_INDEX(("Found a parent\n"));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
680 parent->no_child++;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
681 d_ptr->parent = parent;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
682 if (parent->child_tail) parent->child_tail->next = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
683 if (!parent->child) parent->child = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
684 d_ptr->prev = parent->child_tail;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
685 parent->child_tail = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
686 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
687 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
688 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
689
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
690 int32_t _pst_build_desc_ptr (pst_file *pf, int32_t offset, int32_t depth, int32_t linku1, u_int32_t *high_id, u_int32_t start_val, u_int32_t end_val) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
691 struct _pst_table_ptr_struct table, table2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
692 pst_desc desc_rec;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
693 pst_desc_ll *d_ptr=NULL, *parent=NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
694 int32_t x, item_count;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
695 u_int32_t old = start_val;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
696 char *buf = NULL, *bptr;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
697 struct cache_list_node *cache_ptr = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
698 struct cache_list_node *lostfound_ptr = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
699 struct cache_list_node *lostfound_shd = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
700 struct cache_list_node *lostfound_tmp = NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
701
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
702 if (depth == 0) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
703 // initialize the linked list and lost/found list.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
704 cache_head = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
705 cache_tail = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
706 lostfound_head = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
707 cache_count = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
708 }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
709
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
710 DEBUG_ENT("_pst_build_desc_ptr");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
711 DEBUG_INDEX(("offset %x depth %i linku1 %x start %x end %x\n", offset, depth, linku1, start_val, end_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
712 if (end_val <= start_val) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
713 DEBUG_WARN(("The end value is BEFORE the start value. This function will quit. Soz. [start:%#x, end:%#x]\n", start_val, end_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
714 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
715 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
716 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
717 DEBUG_INDEX(("Reading desc block\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
718 if (_pst_read_block_size(pf, offset, DESC_BLOCK_SIZE, &buf, 0, 0) < DESC_BLOCK_SIZE) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
719 DEBUG_WARN(("Failed to read %i bytes\n", DESC_BLOCK_SIZE));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
720 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
721 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
722 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
723 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
724 bptr = buf;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
725 item_count = (int)(unsigned)(buf[ITEM_COUNT_OFFSET]);
36
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
726 memcpy(&desc_rec.d_id, buf+BACKLINK_OFFSET, sizeof(u_int32_t)); // for valgrind, only have 3 ints here, not 4
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
727 LE32_CPU(desc_rec.d_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
728 if (desc_rec.d_id != linku1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
729 DEBUG_WARN(("Backlink %#x in this node does not match required %#x\n", desc_rec.d_id, linku1));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
730 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
731 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
732 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
733 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
734 if (buf[LEVEL_INDICATOR_OFFSET] == '\0') {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
735 // this node contains leaf pointers
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
736 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, 16);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
737 if (item_count > DESC_COUNT_MAX) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
738 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, DESC_COUNT_MAX));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
739 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
740 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
741 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
742 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
743 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
744 while (x < item_count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
745 memcpy(&desc_rec, bptr, sizeof(desc_rec));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
746 LE32_CPU(desc_rec.d_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
747 LE32_CPU(desc_rec.desc_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
748 LE32_CPU(desc_rec.list_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
749 LE32_CPU(desc_rec.parent_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
750 bptr+= sizeof(desc_rec);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
751 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
752 if (desc_rec.d_id == 0) break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
753 DEBUG_INDEX(("[%i] Item(%#x) = [d_id = %#x, desc_id = %#x, list_id = %#x, parent_id = %#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
754 depth, x, desc_rec.d_id, desc_rec.desc_id, desc_rec.list_id, desc_rec.parent_id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
755 if ((desc_rec.d_id >= end_val) || (desc_rec.d_id < old)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
756 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
757 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, 16);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
758 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
759 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
760 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
761 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
762 old = desc_rec.d_id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
763 if (x == 1) { // first entry
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
764 if (start_val && (desc_rec.d_id != start_val)) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
765 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
766 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
767 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
768 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
769 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
770 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
771 // When duplicates found, just update the info.... perhaps this is correct functionality
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
772 DEBUG_INDEX(("Searching for existing record\n"));
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
773 if (desc_rec.d_id <= *high_id && (d_ptr = _pst_getDptr(pf, desc_rec.d_id))) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
774 DEBUG_INDEX(("Updating Existing Values\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
775 d_ptr->list_index = _pst_getID(pf, desc_rec.list_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
776 d_ptr->desc = _pst_getID(pf, desc_rec.desc_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
777 DEBUG_INDEX(("\tdesc = %#x\tlist_index=%#x\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
778 (d_ptr->desc==NULL?0:d_ptr->desc->id),
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
779 (d_ptr->list_index==NULL?0:d_ptr->list_index->id)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
780 if (d_ptr->parent && desc_rec.parent_id != d_ptr->parent->id) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
781 DEBUG_INDEX(("WARNING -- Parent of record has changed. Moving it\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
782 //hmmm, we must move the record.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
783 // first we must remove from current location
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
784 // change previous record to point next to our next
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
785 // if no previous, then use parent's child
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
786 // if no parent then change pf->d_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
787 // change next's prev to our prev
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
788 // if no next then change parent's child_tail
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
789 // if no parent then change pf->d_tail
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
790 if (d_ptr->prev)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
791 d_ptr->prev->next = d_ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
792 else if (d_ptr->parent)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
793 d_ptr->parent->child = d_ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
794 else
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
795 pf->d_head = d_ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
796
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
797 if (d_ptr->next)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
798 d_ptr->next->prev = d_ptr->prev;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
799 else if (d_ptr->parent)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
800 d_ptr->parent->child_tail = d_ptr->prev;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
801 else
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
802 pf->d_tail = d_ptr->prev;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
803
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
804 d_ptr->prev = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
805 d_ptr->next = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
806 d_ptr->parent = NULL;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
807 record_descriptor(pf, d_ptr, desc_rec.parent_id); // add to the global tree
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
808 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
809 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
810 if (*high_id < desc_rec.d_id) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
811 DEBUG_INDEX(("Updating New High\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
812 *high_id = desc_rec.d_id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
813 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
814 DEBUG_INDEX(("New Record\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
815 d_ptr = (pst_desc_ll*) xmalloc(sizeof(pst_desc_ll));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
816 d_ptr->id = desc_rec.d_id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
817 d_ptr->list_index = _pst_getID(pf, desc_rec.list_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
818 d_ptr->desc = _pst_getID(pf, desc_rec.desc_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
819 d_ptr->prev = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
820 d_ptr->next = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
821 d_ptr->parent = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
822 d_ptr->child = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
823 d_ptr->child_tail = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
824 d_ptr->no_child = 0;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
825 record_descriptor(pf, d_ptr, desc_rec.parent_id); // add to the global tree
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
826
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
827 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
828 // check here to see if d_ptr is the parent of any of the items in the lost / found list
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
829 lostfound_ptr = lostfound_head;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
830 lostfound_shd = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
831 while (lostfound_ptr) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
832 if (lostfound_ptr->parent == d_ptr->id) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
833 DEBUG_INDEX(("Found a child (%#x) of the current record. Joining to main structure.\n", lostfound_ptr->ptr->id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
834 parent = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
835 d_ptr = lostfound_ptr->ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
836 parent->no_child++;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
837 d_ptr->parent = parent;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
838 if (parent->child_tail) parent->child_tail->next = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
839 if (!parent->child) parent->child = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
840 d_ptr->prev = parent->child_tail;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
841 parent->child_tail = d_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
842 if (!lostfound_shd) lostfound_head = lostfound_ptr->next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
843 else lostfound_shd->next = lostfound_ptr->next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
844 lostfound_tmp = lostfound_ptr->next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
845 free(lostfound_ptr);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
846 lostfound_ptr = lostfound_tmp;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
847 } else {
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
848 lostfound_shd = lostfound_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
849 lostfound_ptr = lostfound_ptr->next;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
850 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
851 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
852 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
853 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
854 // this node contains node pointers
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
855 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, ITEM_SIZE);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
856 if (item_count > INDEX_COUNT_MAX) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
857 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, INDEX_COUNT_MAX));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
858 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
859 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
860 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
861 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
862 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
863 while (x < item_count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
864 memcpy(&table, bptr, sizeof(table));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
865 LE32_CPU(table.start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
866 LE32_CPU(table.u1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
867 LE32_CPU(table.offset);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
868 bptr += sizeof(table);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
869 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
870 if (table.start == 0) break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
871 if (x < item_count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
872 memcpy(&table2, bptr, sizeof(table));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
873 LE32_CPU(table2.start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
874 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
875 else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
876 table2.start = end_val;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
877 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
878 DEBUG_INDEX(("[%i] %i Descriptor Table [start id = %#x, u1 = %#x, offset = %#x, end id = %#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
879 depth, x, table.start, table.u1, table.offset, table2.start));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
880 if ((table.start >= end_val) || (table.start < old)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
881 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
882 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
883 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
884 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
885 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
886 old = table.start;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
887 if (x == 1) { // first entry
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
888 if (start_val != -1 && table.start != start_val) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
889 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
890 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
891 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
892 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
893 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
894 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
895 _pst_build_desc_ptr(pf, table.offset, depth+1, table.u1, high_id, table.start, table2.start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
896 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
897 }
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
898 if (depth == 0) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
899 // free the quick cache
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
900 while (cache_head) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
901 cache_ptr = cache_head->next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
902 free(cache_head);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
903 cache_head = cache_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
904 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
905 // free the lost and found
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
906 while (lostfound_head) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
907 lostfound_ptr = lostfound_head->next;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
908 WARN(("unused lost/found item with parent %d))", lostfound_head->parent));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
909 free(lostfound_head);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
910 lostfound_head = lostfound_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
911 }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
912 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
913 if (buf) free(buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
914 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
915 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
916 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
917
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
918
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
919 void* _pst_parse_item(pst_file *pf, pst_desc_ll *d_ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
920 pst_num_array * list;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
921 pst_index2_ll *id2_head = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
922 pst_index_ll *id_ptr = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
923 pst_item *item = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
924 pst_item_attach *attach = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
925 int x;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
926 DEBUG_ENT("_pst_parse_item");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
927 if (!d_ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
928 DEBUG_WARN(("you cannot pass me a NULL! I don't want it!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
929 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
930 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
931 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
932
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
933 if (d_ptr->list_index) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
934 id2_head = _pst_build_id2(pf, d_ptr->list_index, NULL);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
935 _pst_printID2ptr(id2_head);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
936 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
937 DEBUG_WARN(("Have not been able to fetch any id2 values for this item. Brace yourself!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
938 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
939
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
940 if (!d_ptr->desc) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
941 DEBUG_WARN(("why is d_ptr->desc == NULL? I don't want to do anything else with this record\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
942 if (id2_head) _pst_free_id2(id2_head);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
943 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
944 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
945 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
946
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
947 if ((list = _pst_parse_block(pf, d_ptr->desc->id, id2_head)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
948 DEBUG_WARN(("_pst_parse_block() returned an error for d_ptr->desc->id [%#x]\n", d_ptr->desc->id));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
949 if (id2_head) _pst_free_id2(id2_head);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
950 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
951 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
952 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
953
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
954 item = (pst_item*) xmalloc(sizeof(pst_item));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
955 memset(item, 0, sizeof(pst_item));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
956
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
957 if (_pst_process(list, item)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
958 DEBUG_WARN(("_pst_process() returned non-zero value. That is an error\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
959 if (item) free(item);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
960 if (list) _pst_free_list(list);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
961 if (id2_head) _pst_free_id2(id2_head);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
962 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
963 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
964 } else {
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
965 if (list) _pst_free_list(list);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
966 list = NULL; //_pst_process will free the items in the list
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
967 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
968
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
969 if ((id_ptr = _pst_getID2(id2_head, 0x671))) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
970 // attachements exist - so we will process them
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
971 while (item->attach) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
972 attach = item->attach->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
973 free(item->attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
974 item->attach = attach;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
975 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
976
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
977 DEBUG_EMAIL(("ATTACHEMENT processing attachement\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
978 if ((list = _pst_parse_block(pf, id_ptr->id, id2_head)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
979 DEBUG_WARN(("ERROR error processing main attachment record\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
980 if (item) free(item);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
981 if (id2_head) _pst_free_id2(id2_head);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
982 DEBUG_RET();
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
983 return NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
984 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
985 else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
986 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
987 while (x < list->count_array) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
988 attach = (pst_item_attach*) xmalloc (sizeof(pst_item_attach));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
989 memset (attach, 0, sizeof(pst_item_attach));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
990 attach->next = item->attach;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
991 item->attach = attach;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
992 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
993 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
994
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
995 if (_pst_process(list, item)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
996 DEBUG_WARN(("ERROR _pst_process() failed with attachments\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
997 if (item) free(item);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
998 if (list) _pst_free_list(list);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
999 if (id2_head) _pst_free_id2(id2_head);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1000 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1001 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1002 }
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1003 if (list) _pst_free_list(list);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1004 list = NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1005
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1006 // now we will have initial information of each attachment stored in item->attach...
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1007 // we must now read the secondary record for each based on the id2 val associated with
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1008 // each attachment
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1009 attach = item->attach;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1010 while (attach) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1011 if ((id_ptr = _pst_getID2(id2_head, attach->id2_val))) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1012 // id_ptr is a record describing the attachment
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1013 // we pass NULL instead of id2_head cause we don't want it to
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1014 // load all the extra stuff here.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1015 if ((list = _pst_parse_block(pf, id_ptr->id, NULL)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1016 DEBUG_WARN(("ERROR error processing an attachment record\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1017 attach = attach->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1018 continue;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1019 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1020 if (_pst_process(list, item)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1021 DEBUG_WARN(("ERROR _pst_process() failed with an attachment\n"));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1022 if (list) _pst_free_list(list);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1023 list = NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1024 attach = attach->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1025 continue;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1026 }
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1027 if (list) _pst_free_list(list);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1028 list = NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1029 if ((id_ptr = _pst_getID2(id2_head, attach->id2_val))) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1030 // id2_val has been updated to the ID2 value of the datablock containing the
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1031 // attachment data
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1032 attach->id_val = id_ptr->id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1033 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1034 DEBUG_WARN(("have not located the correct value for the attachment [%#x]\n", attach->id2_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1035 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1036 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1037 DEBUG_WARN(("ERROR cannot locate id2 value %#x\n", attach->id2_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1038 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1039 attach = attach->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1040 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1041 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1042 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1043
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1044 _pst_free_id2(id2_head);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1045 id2_head = NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1046 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1047 return item;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1048 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1049
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1050
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1051 void freeall(unsigned char *buf, pst_block_offset_pointer *p1,
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1052 pst_block_offset_pointer *p2,
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1053 pst_block_offset_pointer *p3,
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1054 pst_block_offset_pointer *p4,
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1055 pst_block_offset_pointer *p5,
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1056 pst_block_offset_pointer *p6,
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1057 pst_block_offset_pointer *p7) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1058 if (buf) free(buf);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1059 if (p1->needfree) free(p1->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1060 if (p2->needfree) free(p2->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1061 if (p3->needfree) free(p3->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1062 if (p4->needfree) free(p4->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1063 if (p5->needfree) free(p5->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1064 if (p6->needfree) free(p6->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1065 if (p7->needfree) free(p7->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1066 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1067
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1068
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1069 pst_num_array * _pst_parse_block(pst_file *pf, u_int32_t block_id, pst_index2_ll *i2_head) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1070 unsigned char *buf = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1071 pst_num_array *na_ptr = NULL, *na_head = NULL;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1072 pst_block_offset_pointer block_offset1;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1073 pst_block_offset_pointer block_offset2;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1074 pst_block_offset_pointer block_offset3;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1075 pst_block_offset_pointer block_offset4;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1076 pst_block_offset_pointer block_offset5;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1077 pst_block_offset_pointer block_offset6;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1078 pst_block_offset_pointer block_offset7;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1079 u_int32_t size;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1080 u_int32_t x;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1081 u_int32_t num_recs;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1082 u_int32_t count_rec;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1083 u_int32_t num_list;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1084 u_int32_t cur_list;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1085 u_int32_t block_type;
36
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
1086 u_int32_t rec_size = 0;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1087 u_int32_t ind_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1088 unsigned char* list_start;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1089 unsigned char* t_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1090 unsigned char* fr_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1091 unsigned char* to_ptr;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1092 unsigned char* ind2_end;
36
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
1093 unsigned char* ind2_ptr = NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1094 size_t read_size=0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1095 pst_x_attrib_ll *mapptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1096
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1097 struct {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1098 u_int16_t type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1099 u_int16_t ref_type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1100 u_int32_t value;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1101 } table_rec; //for type 1 (0xBCEC) blocks
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1102 struct {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1103 u_int16_t ref_type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1104 u_int16_t type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1105 u_int16_t ind2_off;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1106 u_int8_t size;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1107 u_int8_t slot;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1108 } table2_rec; //for type 2 (0x7CEC) blocks
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1109 struct {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1110 u_int32_t id;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1111 } table3_rec; //for type 3 (0x0101) blocks
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1112 struct {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1113 u_int16_t index_offset;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1114 u_int16_t type;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1115 u_int32_t offset;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1116 } block_hdr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1117 struct {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1118 unsigned char seven_c;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1119 unsigned char item_count;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1120 u_int16_t u1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1121 u_int16_t u2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1122 u_int16_t u3;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1123 u_int16_t rec_size;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1124 u_int32_t b_five_offset;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1125 u_int32_t ind2_offset;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1126 u_int16_t u7;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1127 u_int16_t u8;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1128 } seven_c_blk;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1129 struct _type_d_rec {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1130 u_int32_t id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1131 u_int32_t u1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1132 } * type_d_rec;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1133
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1134 DEBUG_ENT("_pst_parse_block");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1135 if ((read_size = _pst_ff_getIDblock_dec(pf, block_id, &buf)) == 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1136 WARN(("Error reading block id %#x\n", block_id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1137 if (buf) free (buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1138 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1139 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1140 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1141
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1142 block_offset1.needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1143 block_offset2.needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1144 block_offset3.needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1145 block_offset4.needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1146 block_offset5.needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1147 block_offset6.needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1148 block_offset7.needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1149
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1150 memcpy(&block_hdr, buf, sizeof(block_hdr));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1151 LE16_CPU(block_hdr.index_offset);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1152 LE16_CPU(block_hdr.type);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1153 LE32_CPU(block_hdr.offset);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1154 DEBUG_EMAIL(("block header (index_offset=%#hx, type=%#hx, offset=%#hx\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1155
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1156 ind_ptr = block_hdr.index_offset;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1157
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1158 if (block_hdr.type == 0xBCEC) { //type 1
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1159 block_type = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1160
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1161 if (_pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, block_hdr.offset, &block_offset1)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1162 DEBUG_WARN(("internal error (bc.b5 offset %#x) in reading block id %#x\n", block_hdr.offset, block_id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1163 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1164 DEBUG_RET();
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1165 return NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1166 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1167 memcpy(&table_rec, block_offset1.from, sizeof(table_rec));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1168 LE16_CPU(table_rec.type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1169 LE16_CPU(table_rec.ref_type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1170 LE32_CPU(table_rec.value);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1171 DEBUG_EMAIL(("table_rec (type=%#hx, ref_type=%#hx, value=%#x)\n", table_rec.type, table_rec.ref_type, table_rec.value));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1172
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1173 if (table_rec.type != 0x02B5) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1174 WARN(("Unknown second block constant - %#X for id %#x\n", table_rec.type, block_id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1175 DEBUG_HEXDUMPC(buf, sizeof(table_rec), 0x10);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1176 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1177 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1178 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1179 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1180
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1181 if (_pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, table_rec.value, &block_offset2)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1182 DEBUG_WARN(("internal error (bc.b5.desc offset) in reading block id %#x\n", table_rec.value, block_id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1183 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1184 DEBUG_RET();
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1185 return NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1186 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1187 list_start = block_offset2.from;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1188 to_ptr = block_offset2.to;
28
51d826f31329 more cleanup from Arne, document 7c block format
carl
parents: 24
diff changeset
1189 num_list = (to_ptr - list_start)/sizeof(table_rec);
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 33
diff changeset
1190 num_recs = 1; // only going to be one object in these blocks
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1191 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1192 else if (block_hdr.type == 0x7CEC) { //type 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1193 block_type = 2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1194
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1195 if (_pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, block_hdr.offset, &block_offset3)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1196 DEBUG_WARN(("internal error (7c.7c offset %#x) in reading block id %#x\n", block_hdr.offset, block_id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1197 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1198 DEBUG_RET();
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1199 return NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1200 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1201 fr_ptr = block_offset3.from; //now got pointer to "7C block"
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1202 memset(&seven_c_blk, 0, sizeof(seven_c_blk));
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1203 memcpy(&seven_c_blk, fr_ptr, sizeof(seven_c_blk));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1204 LE16_CPU(seven_c_blk.u1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1205 LE16_CPU(seven_c_blk.u2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1206 LE16_CPU(seven_c_blk.u3);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1207 LE16_CPU(seven_c_blk.rec_size);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1208 LE32_CPU(seven_c_blk.b_five_offset);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1209 LE32_CPU(seven_c_blk.ind2_offset);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1210 LE16_CPU(seven_c_blk.u7);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1211 LE16_CPU(seven_c_blk.u8);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1212
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1213 list_start = fr_ptr + sizeof(seven_c_blk); // the list of item numbers start after this record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1214
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1215 if (seven_c_blk.seven_c != 0x7C) { // this would mean it isn't a 7C block!
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1216 WARN(("Error. There isn't a 7C where I want to see 7C!\n"));
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1217 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1218 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1219 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1220 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1221
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1222 rec_size = seven_c_blk.rec_size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1223 num_list = seven_c_blk.item_count;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1224
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1225 if (_pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, seven_c_blk.b_five_offset, &block_offset4)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1226 DEBUG_WARN(("internal error (7c.b5 offset %#x) in reading block id %#x\n", seven_c_blk.b_five_offset, block_id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1227 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1228 DEBUG_RET();
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1229 return NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1230 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1231 memcpy(&table_rec, block_offset4.from, sizeof(table_rec));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1232 LE16_CPU(table_rec.type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1233 LE16_CPU(table_rec.ref_type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1234 LE32_CPU(table_rec.value);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1235
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1236 if (table_rec.type != 0x04B5) { // different constant than a type 1 record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1237 WARN(("Unknown second block constant - %#X for id %#x\n", table_rec.type, block_id));
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1238 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1239 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1240 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1241 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1242
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1243 if (_pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, table_rec.value, &block_offset5)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1244 DEBUG_WARN(("internal error (7c.5b.desc offset %#x) in reading block id %#x\n", table_rec.value, block_id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1245 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1246 DEBUG_RET();
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1247 return NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1248 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1249 num_recs = (block_offset5.to - block_offset5.from) / 6; // this will give the number of records in this block
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1250
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1251 if (_pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, seven_c_blk.ind2_offset, &block_offset6)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1252 DEBUG_WARN(("internal error (7c.ind2 offset %#x) in reading block id %#x\n", seven_c_blk.ind2_offset, block_id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1253 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1254 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1255 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1256 }
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1257 ind2_ptr = block_offset6.from;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1258 ind2_end = block_offset6.to;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1259 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1260 else if (block_hdr.index_offset == 0x0101) { //type 2
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1261 unsigned char *buf2 = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1262 int n = block_hdr.type; // count
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1263 int m = sizeof(table3_rec);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1264 int i;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1265 block_type = 3;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1266 for (i=0; i<n; i++) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1267 memcpy(&table3_rec, buf+8+i*m, m);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1268 LE32_CPU(table3_rec.id);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1269 _pst_ff_getIDblock_dec(pf, table3_rec.id, &buf2);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1270 if (buf2) free(buf2);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1271 buf2 = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1272 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1273 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1274 DEBUG_RET();
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1275 return NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1276 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1277 WARN(("ERROR: Unknown block constant - %#X for id %#x\n", block_hdr.type, block_id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1278 DEBUG_HEXDUMPC(buf, read_size,0x10);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1279 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1280 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1281 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1282 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1283
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1284 DEBUG_EMAIL(("Mallocing number of records %i\n", num_recs));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1285 for (count_rec=0; count_rec<num_recs; count_rec++) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1286 na_ptr = (pst_num_array*) xmalloc(sizeof(pst_num_array));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1287 memset(na_ptr, 0, sizeof(pst_num_array));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1288 na_ptr->next = na_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1289 na_head = na_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1290 // allocate an array of count num_recs to contain sizeof(struct_pst_num_item)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1291 na_ptr->items = (struct _pst_num_item**) xmalloc(sizeof(struct _pst_num_item)*num_list);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1292 na_ptr->count_item = num_list;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1293 na_ptr->count_array = num_recs; // each record will have a record of the total number of records
36
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
1294 for (x=0; x<num_list; x++) na_ptr->items[x] = NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1295 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1296
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1297 DEBUG_EMAIL(("going to read %i (%#x) items\n", na_ptr->count_item, na_ptr->count_item));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1298
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1299 fr_ptr = list_start; // initialize fr_ptr to the start of the list.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1300 for (cur_list=0; cur_list<num_list; cur_list++) { //we will increase fr_ptr as we progress through index
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1301 unsigned char* value_pointer = NULL; // needed for block type 2 with values larger than 4 bytes
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1302 int value_size = 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1303 if (block_type == 1) {
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1304 memcpy(&table_rec, fr_ptr, sizeof(table_rec));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1305 LE16_CPU(table_rec.type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1306 LE16_CPU(table_rec.ref_type);
28
51d826f31329 more cleanup from Arne, document 7c block format
carl
parents: 24
diff changeset
1307 //LE32_CPU(table_rec.value); // done later, some may be order invariant
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1308 fr_ptr += sizeof(table_rec);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1309 } else if (block_type == 2) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1310 // we will copy the table2_rec values into a table_rec record so that we can keep the rest of the code
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1311 memcpy(&table2_rec, fr_ptr, sizeof(table2_rec));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1312 LE16_CPU(table2_rec.ref_type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1313 LE16_CPU(table2_rec.type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1314 LE16_CPU(table2_rec.ind2_off);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1315
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1316 // table_rec and table2_rec are arranged differently, so assign the values across
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1317 table_rec.type = table2_rec.type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1318 table_rec.ref_type = table2_rec.ref_type;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1319 if ((ind2_end - ind2_ptr) <= (table2_rec.ind2_off + table2_rec.size)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1320 int n = table2_rec.size;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1321 int m = sizeof(table_rec.value);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1322 table_rec.value = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1323 if (n <= m) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1324 memcpy(&table_rec.value, ind2_ptr + table2_rec.ind2_off, n);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1325 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1326 else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1327 value_pointer = ind2_ptr + table2_rec.ind2_off;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1328 value_size = n;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1329 }
28
51d826f31329 more cleanup from Arne, document 7c block format
carl
parents: 24
diff changeset
1330 //LE32_CPU(table_rec.value); // done later, some may be order invariant
51d826f31329 more cleanup from Arne, document 7c block format
carl
parents: 24
diff changeset
1331 }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1332 else {
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1333 DEBUG_WARN (("Trying to read outside buffer, buffer size %#x, offset %#x, data size %#x\n",
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1334 read_size, ind2_end-ind2_ptr+table2_rec.ind2_off, table2_rec.size));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1335 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1336 fr_ptr += sizeof(table2_rec);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1337 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1338 WARN(("Missing code for block_type %i\n", block_type));
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1339 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1340 if (na_head) _pst_free_list(na_head);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1341 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1342 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1343 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1344 DEBUG_EMAIL(("reading block %i (type=%#x, ref_type=%#x, value=%#x)\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1345 x, table_rec.type, table_rec.ref_type, table_rec.value));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1346
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1347 na_ptr->items[x] = (struct _pst_num_item*) xmalloc(sizeof(struct _pst_num_item));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1348 memset(na_ptr->items[x], 0, sizeof(struct _pst_num_item)); //init it
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1349
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1350 // check here to see if the id of the attribute is a mapped one
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1351 mapptr = pf->x_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1352 while (mapptr && (mapptr->map < table_rec.type)) mapptr = mapptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1353 if (mapptr && (mapptr->map == table_rec.type)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1354 if (mapptr->mytype == PST_MAP_ATTRIB) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1355 na_ptr->items[x]->id = *((int*)mapptr->data);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1356 DEBUG_EMAIL(("Mapped attrib %#x to %#x\n", table_rec.type, na_ptr->items[x]->id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1357 } else if (mapptr->mytype == PST_MAP_HEADER) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1358 DEBUG_EMAIL(("Internet Header mapping found %#x\n", table_rec.type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1359 na_ptr->items[x]->id = PST_ATTRIB_HEADER;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1360 na_ptr->items[x]->extra = mapptr->data;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1361 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1362 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1363 na_ptr->items[x]->id = table_rec.type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1364 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1365 na_ptr->items[x]->type = 0; // checked later before it is set
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1366 /* Reference Types
24
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1367 0x0002 - Signed 16bit value
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1368 0x0003 - Signed 32bit value
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1369 0x0004 - 4-byte floating point
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1370 0x0005 - Floating point double
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1371 0x0006 - Signed 64-bit int
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1372 0x0007 - Application Time
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1373 0x000A - 32-bit error value
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1374 0x000B - Boolean (non-zero = true)
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1375 0x000D - Embedded Object
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1376 0x0014 - 8-byte signed integer (64-bit)
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1377 0x001E - Null terminated String
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1378 0x001F - Unicode string
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1379 0x0040 - Systime - Filetime structure
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1380 0x0048 - OLE Guid
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1381 0x0102 - Binary data
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1382 0x1003 - Array of 32bit values
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1383 0x1014 - Array of 64bit values
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1384 0x101E - Array of Strings
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
1385 0x1102 - Array of Binary data
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1386 */
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1387
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1388 if (table_rec.ref_type == 0x0002 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1389 table_rec.ref_type == 0x0003 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1390 table_rec.ref_type == 0x000b) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1391 //contains 32 bits of data
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1392 na_ptr->items[x]->size = sizeof(int32_t);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1393 na_ptr->items[x]->type = table_rec.ref_type;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1394 na_ptr->items[x]->data = xmalloc(sizeof(int32_t));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1395 memcpy(na_ptr->items[x]->data, &(table_rec.value), sizeof(int32_t));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1396
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1397 } else if (table_rec.ref_type == 0x0005 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1398 table_rec.ref_type == 0x000d ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1399 table_rec.ref_type == 0x0014 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1400 table_rec.ref_type == 0x001e ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1401 table_rec.ref_type == 0x0040 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1402 table_rec.ref_type == 0x0048 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1403 table_rec.ref_type == 0x0102 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1404 table_rec.ref_type == 0x1003 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1405 table_rec.ref_type == 0x1014 ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1406 table_rec.ref_type == 0x101e ||
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1407 table_rec.ref_type == 0x1102) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1408 //contains index reference to data
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1409 LE32_CPU(table_rec.value);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1410 if (value_pointer) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1411 // in a type 2 block, with a value that is more than 4 bytes
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1412 // directly stored in this block.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1413 na_ptr->items[x]->size = value_size;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1414 na_ptr->items[x]->type = table_rec.ref_type;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1415 na_ptr->items[x]->data = xmalloc(value_size);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1416 memcpy(na_ptr->items[x]->data, value_pointer, value_size);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1417 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1418 else if (_pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, table_rec.value, &block_offset7)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1419 if (table_rec.value) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1420 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x\n", table_rec.value));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1421 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1422 na_ptr->count_item --; //we will be skipping a row
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1423 continue;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1424 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1425 else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1426 value_size = block_offset7.to - block_offset7.from;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1427 na_ptr->items[x]->size = value_size;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1428 na_ptr->items[x]->type = table_rec.ref_type;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1429 na_ptr->items[x]->data = xmalloc(value_size+1);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1430 memcpy(na_ptr->items[x]->data, block_offset7.from, value_size);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1431 na_ptr->items[x]->data[value_size] = '\0'; // it might be a string, null terminate it.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1432 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1433 if (table_rec.ref_type == 0xd) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1434 // there is still more to do for the type of 0xD
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1435 type_d_rec = (struct _type_d_rec*) na_ptr->items[x]->data;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1436 LE32_CPU(type_d_rec->id);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1437 if ((na_ptr->items[x]->size = _pst_ff_getID2block(pf, type_d_rec->id, i2_head, &(na_ptr->items[x]->data)))==0){
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1438 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n",
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1439 type_d_rec->id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1440 free(na_ptr->items[x]->data);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1441 na_ptr->items[x]->size = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1442 na_ptr->items[x]->data = NULL;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1443 na_ptr->items[x]->type = type_d_rec->id;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1444 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1445 }
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1446 if (na_ptr->items[x]->type == 0) na_ptr->items[x]->type = table_rec.ref_type;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1447 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1448 WARN(("ERROR Unknown ref_type %#x\n", table_rec.ref_type));
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1449 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
1450 if (na_head) _pst_free_list(na_head);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1451 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1452 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1453 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1454 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1455 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1456 DEBUG_EMAIL(("increasing ind2_ptr by %i [%#x] bytes. Was %#x, Now %#x\n", rec_size, rec_size, ind2_ptr, ind2_ptr+rec_size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1457 ind2_ptr += rec_size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1458 }
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1459 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1460 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1461 return na_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1462 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1463
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1464
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1465 // check if item->email is NULL, and init if so
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1466 #define MALLOC_EMAIL(x) { if (!x->email) { x->email = (pst_item_email*) xmalloc(sizeof(pst_item_email)); memset(x->email, 0, sizeof(pst_item_email) );} }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1467 #define MALLOC_FOLDER(x) { if (!x->folder) { x->folder = (pst_item_folder*) xmalloc(sizeof(pst_item_folder)); memset(x->folder, 0, sizeof(pst_item_folder) );} }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1468 #define MALLOC_CONTACT(x) { if (!x->contact) { x->contact = (pst_item_contact*) xmalloc(sizeof(pst_item_contact)); memset(x->contact, 0, sizeof(pst_item_contact) );} }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1469 #define MALLOC_MESSAGESTORE(x) { if (!x->message_store) { x->message_store = (pst_item_message_store*) xmalloc(sizeof(pst_item_message_store)); memset(x->message_store, 0, sizeof(pst_item_message_store));} }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1470 #define MALLOC_JOURNAL(x) { if (!x->journal) { x->journal = (pst_item_journal*) xmalloc(sizeof(pst_item_journal)); memset(x->journal, 0, sizeof(pst_item_journal) );} }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1471 #define MALLOC_APPOINTMENT(x) { if (!x->appointment) { x->appointment = (pst_item_appointment*) xmalloc(sizeof(pst_item_appointment)); memset(x->appointment, 0, sizeof(pst_item_appointment) );} }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1472 // malloc space and copy the current item's data -- plus one on the size for good luck (and string termination)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1473 #define LIST_COPY(targ, type) { \
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1474 targ = type realloc(targ, list->items[x]->size+1); \
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1475 memset(targ, 0, list->items[x]->size+1); \
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1476 memcpy(targ, list->items[x]->data, list->items[x]->size); \
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1477 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1478
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1479 #define NULL_CHECK(x) { if (!x) { DEBUG_EMAIL(("NULL_CHECK: Null Found\n")); break;} }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1480
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1481 #define MOVE_NEXT(targ) { \
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1482 if (next){\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1483 if (!targ) {\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1484 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL. Will stop processing this option\n"));\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1485 break;\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1486 }\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1487 targ = targ->next;\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1488 if (!targ) {\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1489 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL after next. Will stop processing this option\n"));\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1490 break;\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1491 }\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1492 next=0;\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1493 }\
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1494 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1495
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1496
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1497 int32_t _pst_process(pst_num_array *list , pst_item *item) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1498 int32_t x, t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1499 int32_t next = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1500 pst_item_attach *attach;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1501 pst_item_extra_field *ef;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1502
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1503 DEBUG_ENT("_pst_process");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1504 if (!item) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1505 DEBUG_EMAIL(("item cannot be NULL.\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1506 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1507 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1508 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1509
28
51d826f31329 more cleanup from Arne, document 7c block format
carl
parents: 24
diff changeset
1510 attach = item->attach; // a working variable
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1511
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1512 while (list) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1513 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1514 while (x < list->count_item) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1515 // check here to see if the id is one that is mapped.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1516 DEBUG_EMAIL(("#%d - id: %#x type: %#x length: %#x\n", x, list->items[x]->id, list->items[x]->type, list->items[x]->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1517
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1518 switch (list->items[x]->id) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1519 case PST_ATTRIB_HEADER: // CUSTOM attribute for saying the Extra Headers
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1520 DEBUG_EMAIL(("Extra Field - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1521 ef = (pst_item_extra_field*) xmalloc(sizeof(pst_item_extra_field));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1522 memset(ef, 0, sizeof(pst_item_extra_field));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1523 ef->field_name = (char*) xmalloc(strlen(list->items[x]->extra)+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1524 strcpy(ef->field_name, list->items[x]->extra);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1525 LIST_COPY(ef->value, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1526 ef->next = item->extra_fields;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1527 item->extra_fields = ef;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1528 DEBUG_EMAIL(("\"%s\" = \"%s\"\n", ef->field_name, ef->value));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1529 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1530 case 0x0002: // PR_ALTERNATE_RECIPIENT_ALLOWED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1531 // If set to true, the sender allows this email to be autoforwarded
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1532 DEBUG_EMAIL(("AutoForward allowed - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1533 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1534 if (*((short int*)list->items[x]->data) != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1535 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1536 item->email->autoforward = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1537 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1538 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1539 item->email->autoforward = -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1540 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1541 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1542 case 0x0003: // Extended Attributes table
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1543 DEBUG_EMAIL(("Extended Attributes Table - NOT PROCESSED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1544 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1545 case 0x0017: // PR_IMPORTANCE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1546 // How important the sender deems it to be
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1547 // 0 - Low
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1548 // 1 - Normal
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1549 // 2 - High
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1550
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1551 DEBUG_EMAIL(("Importance Level - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1552 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1553 memcpy(&(item->email->importance), list->items[x]->data, sizeof(item->email->importance));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1554 LE32_CPU(item->email->importance);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1555 t = item->email->importance;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1556 DEBUG_EMAIL(("%s [%i]\n", (t==0?"Low":(t==1?"Normal":"High")), t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1557 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1558 case 0x001A: // PR_MESSAGE_CLASS Ascii type of messages - NOT FOLDERS
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1559 // must be case insensitive
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1560 DEBUG_EMAIL(("IPM.x - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1561 LIST_COPY(item->ascii_type, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1562 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1563 // the string begins with IPM.Note...
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1564 item->type = PST_TYPE_NOTE;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1565 else if (pst_stricmp("IPM", item->ascii_type) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1566 // the whole string is just IPM
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1567 item->type = PST_TYPE_NOTE;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1568 else if (pst_strincmp("IPM.Contact", item->ascii_type, 11) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1569 // the string begins with IPM.Contact...
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1570 item->type = PST_TYPE_CONTACT;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1571 else if (pst_strincmp("REPORT.IPM.Note", item->ascii_type, 15) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1572 // the string begins with the above
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1573 item->type = PST_TYPE_REPORT;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1574 else if (pst_strincmp("IPM.Activity", item->ascii_type, 12) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1575 item->type = PST_TYPE_JOURNAL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1576 else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1577 item->type = PST_TYPE_APPOINTMENT;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1578 else
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1579 item->type = PST_TYPE_OTHER;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1580
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1581 DEBUG_EMAIL(("%s\n", item->ascii_type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1582 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1583 case 0x0023: // PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1584 // set if the sender wants a delivery report from all recipients
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1585 DEBUG_EMAIL(("Global Delivery Report - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1586 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1587 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1588 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1589 item->email->delivery_report = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1590 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1591 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1592 item->email->delivery_report = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1593 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1594 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1595 case 0x0026: // PR_PRIORITY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1596 // Priority of a message
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1597 // -1 NonUrgent
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1598 // 0 Normal
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1599 // 1 Urgent
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1600 DEBUG_EMAIL(("Priority - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1601 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1602 memcpy(&(item->email->priority), list->items[x]->data, sizeof(item->email->priority));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1603 LE32_CPU(item->email->priority);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1604 t = item->email->priority;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1605 DEBUG_EMAIL(("%s [%i]\n", (t<0?"NonUrgent":(t==0?"Normal":"Urgent")), t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1606 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1607 case 0x0029:// PR_READ_RECEIPT_REQUESTED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1608 DEBUG_EMAIL(("Read Receipt - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1609 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1610 if (*(short int*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1611 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1612 item->email->read_receipt = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1613 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1614 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1615 item->email->read_receipt = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1616 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1617 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1618 case 0x002B: // PR_RECIPIENT_REASSIGNMENT_PROHIBITED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1619 DEBUG_EMAIL(("Reassignment Prohibited (Private) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1620 if (*(short int*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1621 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1622 item->private_member = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1623 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1624 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1625 item->private_member = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1626 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1627 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1628 case 0x002E: // PR_ORIGINAL_SENSITIVITY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1629 // the sensitivity of the message before being replied to or forwarded
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1630 // 0 - None
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1631 // 1 - Personal
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1632 // 2 - Private
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1633 // 3 - Company Confidential
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1634 DEBUG_EMAIL(("Original Sensitivity - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1635 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1636 memcpy(&(item->email->orig_sensitivity), list->items[x]->data, sizeof(item->email->orig_sensitivity));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1637 LE32_CPU(item->email->orig_sensitivity);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1638 t = item->email->orig_sensitivity;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1639 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal":
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1640 (t==2?"Private":"Company Confidential"))), t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1641 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1642 case 0x0036: // PR_SENSITIVITY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1643 // sender's opinion of the sensitivity of an email
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1644 // 0 - None
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1645 // 1 - Personal
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1646 // 2 - Private
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1647 // 3 - Company Confidiential
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1648 DEBUG_EMAIL(("Sensitivity - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1649 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1650 memcpy(&(item->email->sensitivity), list->items[x]->data, sizeof(item->email->sensitivity));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1651 LE32_CPU(item->email->sensitivity);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1652 t = item->email->sensitivity;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1653 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal":
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1654 (t==2?"Private":"Company Confidential"))), t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1655 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1656 case 0x0037: // PR_SUBJECT raw subject
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1657 // if (list->items[x]->id == 0x0037) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1658 DEBUG_EMAIL(("Raw Subject - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1659 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1660 item->email->subject = (pst_item_email_subject*) realloc(item->email->subject, sizeof(pst_item_email_subject));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1661 memset(item->email->subject, 0, sizeof(pst_item_email_subject));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1662 DEBUG_EMAIL((" [size = %i] ", list->items[x]->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1663 if (list->items[x]->size > 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1664 if (isprint(list->items[x]->data[0])) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1665 // then there are no control bytes at the front
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1666 item->email->subject->off1 = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1667 item->email->subject->off2 = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1668 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1669 memset(item->email->subject->subj, 0, list->items[x]->size+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1670 memcpy(item->email->subject->subj, list->items[x]->data, list->items[x]->size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1671 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1672 DEBUG_EMAIL(("Raw Subject has control codes\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1673 // there might be some control bytes in the first and second bytes
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1674 item->email->subject->off1 = list->items[x]->data[0];
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1675 item->email->subject->off2 = list->items[x]->data[1];
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1676 item->email->subject->subj = realloc(item->email->subject->subj, (list->items[x]->size-2)+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1677 memset(item->email->subject->subj, 0, list->items[x]->size-1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1678 memcpy(item->email->subject->subj, &(list->items[x]->data[2]), list->items[x]->size-2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1679 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1680 DEBUG_EMAIL(("%s\n", item->email->subject->subj));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1681 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1682 // obviously outlook has decided not to be straight with this one.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1683 item->email->subject->off1 = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1684 item->email->subject->off2 = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1685 item->email->subject = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1686 DEBUG_EMAIL(("NULL subject detected\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1687 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1688 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1689 case 0x0039: // PR_CLIENT_SUBMIT_TIME Date Email Sent/Created
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1690 DEBUG_EMAIL(("Date sent - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1691 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1692 LIST_COPY(item->email->sent_date, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1693 LE32_CPU(item->email->sent_date->dwLowDateTime);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1694 LE32_CPU(item->email->sent_date->dwHighDateTime);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1695 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->sent_date)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1696 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1697 case 0x003B: // PR_SENT_REPRESENTING_SEARCH_KEY Sender address 1
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1698 DEBUG_EMAIL(("Sent on behalf of address 1 - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1699 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1700 LIST_COPY(item->email->outlook_sender, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1701 DEBUG_EMAIL(("%s\n", item->email->outlook_sender));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1702 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1703 case 0x003F: // PR_RECEIVED_BY_ENTRYID Structure containing Recipient
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1704 DEBUG_EMAIL(("Recipient Structure 1 -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1705 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1706 case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1707 DEBUG_EMAIL(("Received By Name 1 -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1708 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1709 case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1710 DEBUG_EMAIL(("Sent on behalf of Structure 1 -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1711 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1712 case 0x0042: // PR_SENT_REPRESENTING_NAME Name of Sender Structure
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1713 DEBUG_EMAIL(("Sent on behalf of Structure Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1714 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1715 LIST_COPY(item->email->outlook_sender_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1716 DEBUG_EMAIL(("%s\n", item->email->outlook_sender_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1717 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1718 case 0x0043: // PR_RCVD_REPRESENTING_ENTRYID Recipient Structure 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1719 DEBUG_EMAIL(("Received on behalf of Structure -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1720 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1721 case 0x0044: // PR_RCVD_REPRESENTING_NAME Name of Recipient Structure 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1722 DEBUG_EMAIL(("Received on behalf of Structure Name -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1723 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1724 case 0x004F: // PR_REPLY_RECIPIENT_ENTRIES Reply-To Structure
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1725 DEBUG_EMAIL(("Reply-To Structure -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1726 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1727 case 0x0050: // PR_REPLY_RECIPIENT_NAMES Name of Reply-To Structure
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1728 DEBUG_EMAIL(("Name of Reply-To Structure -"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1729 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1730 LIST_COPY(item->email->reply_to, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1731 DEBUG_EMAIL(("%s\n", item->email->reply_to));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1732 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1733 case 0x0051: // PR_RECEIVED_BY_SEARCH_KEY Recipient Address 1
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1734 DEBUG_EMAIL(("Recipient's Address 1 (Search Key) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1735 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1736 LIST_COPY (item->email->outlook_recipient, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1737 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1738 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1739 case 0x0052: // PR_RCVD_REPRESENTING_SEARCH_KEY Recipient Address 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1740 DEBUG_EMAIL(("Received on behalf of Address (Search Key) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1741 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1742 LIST_COPY(item->email->outlook_recipient2, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1743 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1744 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1745 case 0x0057: // PR_MESSAGE_TO_ME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1746 // this user is listed explicitly in the TO address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1747 DEBUG_EMAIL(("My address in TO field - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1748 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1749 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1750 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1751 item->email->message_to_me = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1752 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1753 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1754 item->email->message_to_me = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1755 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1756 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1757 case 0x0058: // PR_MESSAGE_CC_ME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1758 // this user is listed explicitly in the CC address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1759 DEBUG_EMAIL(("My address in CC field - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1760 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1761 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1762 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1763 item->email->message_cc_me = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1764 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1765 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1766 item->email->message_cc_me = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1767 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1768 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1769 case 0x0059: //PR_MESSAGE_RECIP_ME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1770 // this user appears in TO, CC or BCC address list
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1771 DEBUG_EMAIL(("Message addressed to me - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1772 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1773 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1774 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1775 item->email->message_recip_me = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1776 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1777 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1778 item->email->message_recip_me = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1779 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1780 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1781 case 0x0063: // PR_RESPONSE_REQUESTED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1782 DEBUG_EMAIL(("Response requested - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1783 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1784 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1785 item->response_requested = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1786 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1787 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1788 item->response_requested = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1789 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1790 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1791 case 0x0064: // PR_SENT_REPRESENTING_ADDRTYPE Access method for Sender Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1792 DEBUG_EMAIL(("Sent on behalf of address type - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1793 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1794 LIST_COPY(item->email->sender_access, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1795 DEBUG_EMAIL(("%s\n", item->email->sender_access));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1796 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1797 case 0x0065: // PR_SENT_REPRESENTING_EMAIL_ADDRESS Sender Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1798 DEBUG_EMAIL(("Sent on behalf of Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1799 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1800 LIST_COPY(item->email->sender_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1801 DEBUG_EMAIL(("%s\n", item->email->sender_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1802 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1803 case 0x0070: // PR_CONVERSATION_TOPIC Processed Subject
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1804 DEBUG_EMAIL(("Processed Subject (Conversation Topic) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1805 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1806 LIST_COPY(item->email->proc_subject, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1807 DEBUG_EMAIL(("%s\n", item->email->proc_subject));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1808 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1809 case 0x0071: // PR_CONVERSATION_INDEX Date 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1810 DEBUG_EMAIL(("Conversation Index - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1811 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1812 memcpy(&(item->email->conv_index), list->items[x]->data, sizeof(item->email->conv_index));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1813 DEBUG_EMAIL(("%i\n", item->email->conv_index));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1814 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1815 case 0x0075: // PR_RECEIVED_BY_ADDRTYPE Recipient Access Method
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1816 DEBUG_EMAIL(("Received by Address type - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1817 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1818 LIST_COPY(item->email->recip_access, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1819 DEBUG_EMAIL(("%s\n", item->email->recip_access));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1820 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1821 case 0x0076: // PR_RECEIVED_BY_EMAIL_ADDRESS Recipient Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1822 DEBUG_EMAIL(("Received by Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1823 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1824 LIST_COPY(item->email->recip_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1825 DEBUG_EMAIL(("%s\n", item->email->recip_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1826 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1827 case 0x0077: // PR_RCVD_REPRESENTING_ADDRTYPE Recipient Access Method 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1828 DEBUG_EMAIL(("Received on behalf of Address type - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1829 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1830 LIST_COPY(item->email->recip2_access, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1831 DEBUG_EMAIL(("%s\n", item->email->recip2_access));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1832 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1833 case 0x0078: // PR_RCVD_REPRESENTING_EMAIL_ADDRESS Recipient Address 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1834 DEBUG_EMAIL(("Received on behalf of Address -"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1835 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1836 LIST_COPY(item->email->recip2_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1837 DEBUG_EMAIL(("%s\n", item->email->recip2_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1838 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1839 case 0x007D: // PR_TRANSPORT_MESSAGE_HEADERS Internet Header
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1840 DEBUG_EMAIL(("Internet Header - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1841 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1842 LIST_COPY(item->email->header, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1843 //DEBUG_EMAIL(("%s\n", item->email->header));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1844 DEBUG_EMAIL(("NOT PRINTED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1845 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1846 case 0x0C17: // PR_REPLY_REQUESTED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1847 DEBUG_EMAIL(("Reply Requested - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1848 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1849 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1850 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1851 item->email->reply_requested = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1852 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1853 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1854 item->email->reply_requested = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1855 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1856 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1857 case 0x0C19: // PR_SENDER_ENTRYID Sender Structure 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1858 DEBUG_EMAIL(("Sender Structure 2 -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1859 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1860 case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1861 DEBUG_EMAIL(("Name of Sender Structure 2 -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1862 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1863 case 0x0C1D: // PR_SENDER_SEARCH_KEY Name of Sender Address 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1864 DEBUG_EMAIL(("Name of Sender Address 2 (Sender search key) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1865 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1866 LIST_COPY(item->email->outlook_sender2, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1867 DEBUG_EMAIL(("%s\n", item->email->outlook_sender2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1868 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1869 case 0x0C1E: // PR_SENDER_ADDRTYPE Sender Address 2 access method
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1870 DEBUG_EMAIL(("Sender Address type - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1871 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1872 LIST_COPY(item->email->sender2_access, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1873 DEBUG_EMAIL(("%s\n", item->email->sender2_access));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1874 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1875 case 0x0C1F: // PR_SENDER_EMAIL_ADDRESS Sender Address 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1876 DEBUG_EMAIL(("Sender Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1877 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1878 LIST_COPY(item->email->sender2_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1879 DEBUG_EMAIL(("%s\n", item->email->sender2_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1880 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1881 case 0x0E01: // PR_DELETE_AFTER_SUBMIT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1882 // I am not too sure how this works
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1883 DEBUG_EMAIL(("Delete after submit - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1884 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1885 if (*(int16_t*) list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1886 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1887 item->email->delete_after_submit = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1888 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1889 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1890 item->email->delete_after_submit = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1891 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1892 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1893 case 0x0E03: // PR_DISPLAY_CC CC Addresses
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1894 DEBUG_EMAIL(("Display CC Addresses - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1895 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1896 LIST_COPY(item->email->cc_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1897 DEBUG_EMAIL(("%s\n", item->email->cc_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1898 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1899 case 0x0E04: // PR_DISPLAY_TO Address Sent-To
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1900 DEBUG_EMAIL(("Display Sent-To Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1901 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1902 LIST_COPY(item->email->sentto_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1903 DEBUG_EMAIL(("%s\n", item->email->sentto_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1904 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1905 case 0x0E06: // PR_MESSAGE_DELIVERY_TIME Date 3 - Email Arrival Date
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1906 DEBUG_EMAIL(("Date 3 (Delivery Time) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1907 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1908 LIST_COPY(item->email->arrival_date, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1909 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->arrival_date)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1910 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1911 case 0x0E07: // PR_MESSAGE_FLAGS Email Flag
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1912 // 0x01 - Read
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1913 // 0x02 - Unmodified
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1914 // 0x04 - Submit
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1915 // 0x08 - Unsent
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1916 // 0x10 - Has Attachments
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1917 // 0x20 - From Me
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1918 // 0x40 - Associated
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1919 // 0x80 - Resend
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1920 // 0x100 - RN Pending
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1921 // 0x200 - NRN Pending
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1922 DEBUG_EMAIL(("Message Flags - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1923 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1924 memcpy(&(item->email->flag), list->items[x]->data, sizeof(item->email->flag));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1925 LE32_CPU(item->email->flag);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1926 DEBUG_EMAIL(("%i\n", item->email->flag));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1927 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1928 case 0x0E08: // PR_MESSAGE_SIZE Total size of a message object
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1929 DEBUG_EMAIL(("Message Size - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1930 memcpy(&(item->message_size), list->items[x]->data, sizeof(item->message_size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1931 LE32_CPU(item->message_size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1932 DEBUG_EMAIL(("%i [%#x]\n", item->message_size, item->message_size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1933 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1934 case 0x0E0A: // PR_SENTMAIL_ENTRYID
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1935 // folder that this message is sent to after submission
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1936 DEBUG_EMAIL(("Sentmail EntryID - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1937 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1938 LIST_COPY(item->email->sentmail_folder, (pst_entryid*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1939 LE32_CPU(item->email->sentmail_folder->id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1940 DEBUG_EMAIL(("[id = %#x]\n", item->email->sentmail_folder->id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1941 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1942 case 0x0E1F: // PR_RTF_IN_SYNC
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1943 // True means that the rtf version is same as text body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1944 // False means rtf version is more up-to-date than text body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1945 // if this value doesn't exist, text body is more up-to-date than rtf and
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1946 // cannot update to the rtf
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1947 DEBUG_EMAIL(("Compressed RTF in Sync - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1948 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1949 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1950 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1951 item->email->rtf_in_sync = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1952 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1953 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1954 item->email->rtf_in_sync = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1955 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1956 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1957 case 0x0E20: // PR_ATTACH_SIZE binary Attachment data in record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1958 DEBUG_EMAIL(("Attachment Size - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1959 NULL_CHECK(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1960 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1961 memcpy(&(attach->size), list->items[x]->data, sizeof(attach->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1962 DEBUG_EMAIL(("%i\n", attach->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1963 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1964 case 0x0FF9: // PR_RECORD_KEY Record Header 1
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1965 DEBUG_EMAIL(("Record Key 1 - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1966 LIST_COPY(item->record_key, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1967 item->record_key_size = list->items[x]->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1968 DEBUG_EMAIL_HEXPRINT(item->record_key, item->record_key_size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1969 DEBUG_EMAIL(("\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1970 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1971 case 0x1000: // PR_BODY Plain Text body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1972 DEBUG_EMAIL(("Plain Text body - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1973 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1974 LIST_COPY(item->email->body, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1975 //DEBUG_EMAIL("%s\n", item->email->body);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1976 DEBUG_EMAIL(("NOT PRINTED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1977 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1978 case 0x1006: // PR_RTF_SYNC_BODY_CRC
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1979 DEBUG_EMAIL(("RTF Sync Body CRC - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1980 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1981 memcpy(&(item->email->rtf_body_crc), list->items[x]->data, sizeof(item->email->rtf_body_crc));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1982 LE32_CPU(item->email->rtf_body_crc);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1983 DEBUG_EMAIL(("%#x\n", item->email->rtf_body_crc));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1984 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1985 case 0x1007: // PR_RTF_SYNC_BODY_COUNT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1986 // a count of the *significant* charcters in the rtf body. Doesn't count
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1987 // whitespace and other ignorable characters
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1988 DEBUG_EMAIL(("RTF Sync Body character count - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1989 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1990 memcpy(&(item->email->rtf_body_char_count), list->items[x]->data, sizeof(item->email->rtf_body_char_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1991 LE32_CPU(item->email->rtf_body_char_count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1992 DEBUG_EMAIL(("%i [%#x]\n", item->email->rtf_body_char_count, item->email->rtf_body_char_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1993 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1994 case 0x1008: // PR_RTF_SYNC_BODY_TAG
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1995 // the first couple of lines of RTF body so that after modification, then beginning can
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1996 // once again be found
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1997 DEBUG_EMAIL(("RTF Sync body tag - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1998 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1999 LIST_COPY(item->email->rtf_body_tag, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2000 DEBUG_EMAIL(("%s\n", item->email->rtf_body_tag));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2001 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2002 case 0x1009: // PR_RTF_COMPRESSED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2003 // some compression algorithm has been applied to this. At present
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2004 // it is unknown
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2005 DEBUG_EMAIL(("RTF Compressed body - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2006 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2007 LIST_COPY(item->email->rtf_compressed, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2008 DEBUG_EMAIL(("NOT PRINTED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2009 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2010 case 0x1010: // PR_RTF_SYNC_PREFIX_COUNT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2011 // a count of the ignored characters before the first significant character
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2012 DEBUG_EMAIL(("RTF whitespace prefix count - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2013 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2014 memcpy(&(item->email->rtf_ws_prefix_count), list->items[x]->data, sizeof(item->email->rtf_ws_prefix_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2015 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_prefix_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2016 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2017 case 0x1011: // PR_RTF_SYNC_TRAILING_COUNT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2018 // a count of the ignored characters after the last significant character
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2019 DEBUG_EMAIL(("RTF whitespace tailing count - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2020 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2021 memcpy(&(item->email->rtf_ws_trailing_count), list->items[x]->data, sizeof(item->email->rtf_ws_trailing_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2022 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_trailing_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2023 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2024 case 0x1013: // HTML body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2025 DEBUG_EMAIL(("HTML body - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2026 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2027 LIST_COPY(item->email->htmlbody, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2028 // DEBUG_EMAIL(("%s\n", item->email->htmlbody));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2029 DEBUG_EMAIL(("NOT PRINTED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2030 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2031 case 0x1035: // Message ID
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2032 DEBUG_EMAIL(("Message ID - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2033 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2034 LIST_COPY(item->email->messageid, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2035 DEBUG_EMAIL(("%s\n", item->email->messageid));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2036 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2037 case 0x1042: // in-reply-to
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2038 DEBUG_EMAIL(("In-Reply-To - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2039 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2040 LIST_COPY(item->email->in_reply_to, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2041 DEBUG_EMAIL(("%s\n", item->email->in_reply_to));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2042 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2043 case 0x1046: // Return Path
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2044 DEBUG_EMAIL(("Return Path - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2045 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2046 LIST_COPY(item->email->return_path_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2047 DEBUG_EMAIL(("%s\n", item->email->return_path_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2048 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2049 case 0x3001: // PR_DISPLAY_NAME File As
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2050 DEBUG_EMAIL(("Display Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2051 LIST_COPY(item->file_as, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2052 DEBUG_EMAIL(("%s\n", item->file_as));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2053 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2054 case 0x3002: // PR_ADDRTYPE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2055 DEBUG_EMAIL(("Address Type - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2056 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2057 LIST_COPY(item->contact->address1_transport, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2058 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2059 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2060 case 0x3003: // PR_EMAIL_ADDRESS
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2061 // Contact's email address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2062 DEBUG_EMAIL(("Contact Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2063 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2064 LIST_COPY(item->contact->address1, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2065 DEBUG_EMAIL(("|%s|\n", item->contact->address1));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2066 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2067 case 0x3004: // PR_COMMENT Comment for item - usually folders
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2068 DEBUG_EMAIL(("Comment - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2069 LIST_COPY(item->comment, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2070 DEBUG_EMAIL(("%s\n", item->comment));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2071 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2072 case 0x3007: // PR_CREATION_TIME Date 4 - Creation Date?
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2073 DEBUG_EMAIL(("Date 4 (Item Creation Date) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2074 LIST_COPY(item->create_date, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2075 DEBUG_EMAIL(("%s", fileTimeToAscii(item->create_date)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2076 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2077 case 0x3008: // PR_LAST_MODIFICATION_TIME Date 5 - Modify Date
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2078 DEBUG_EMAIL(("Date 5 (Modify Date) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2079 LIST_COPY(item->modify_date, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2080 DEBUG_EMAIL(("%s", fileTimeToAscii(item->modify_date)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2081 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2082 case 0x300B: // PR_SEARCH_KEY Record Header 2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2083 DEBUG_EMAIL(("Record Search 2 -- NOT HANDLED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2084 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2085 case 0x35DF: // PR_VALID_FOLDER_MASK
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2086 // States which folders are valid for this message store
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2087 // FOLDER_IPM_SUBTREE_VALID 0x1
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2088 // FOLDER_IPM_INBOX_VALID 0x2
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2089 // FOLDER_IPM_OUTBOX_VALID 0x4
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2090 // FOLDER_IPM_WASTEBOX_VALID 0x8
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2091 // FOLDER_IPM_SENTMAIL_VALID 0x10
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2092 // FOLDER_VIEWS_VALID 0x20
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2093 // FOLDER_COMMON_VIEWS_VALID 0x40
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2094 // FOLDER_FINDER_VALID 0x80
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2095 DEBUG_EMAIL(("Valid Folder Mask - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2096 MALLOC_MESSAGESTORE(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2097 memcpy(&(item->message_store->valid_mask), list->items[x]->data, sizeof(int));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2098 LE32_CPU(item->message_store->valid_mask);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2099 DEBUG_EMAIL(("%i\n", item->message_store->valid_mask));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2100 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2101 case 0x35E0: // PR_IPM_SUBTREE_ENTRYID Top of Personal Folder Record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2102 DEBUG_EMAIL(("Top of Personal Folder Record - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2103 MALLOC_MESSAGESTORE(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2104 LIST_COPY(item->message_store->top_of_personal_folder, (pst_entryid*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2105 LE32_CPU(item->message_store->top_of_personal_folder->id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2106 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->top_of_personal_folder->id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2107 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2108 case 0x35E3: // PR_IPM_WASTEBASKET_ENTRYID Deleted Items Folder Record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2109 DEBUG_EMAIL(("Deleted Items Folder record - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2110 MALLOC_MESSAGESTORE(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2111 LIST_COPY(item->message_store->deleted_items_folder, (pst_entryid*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2112 LE32_CPU(item->message_store->deleted_items_folder->id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2113 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->deleted_items_folder->id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2114 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2115 case 0x35E7: // PR_FINDER_ENTRYID Search Root Record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2116 DEBUG_EMAIL(("Search Root record - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2117 MALLOC_MESSAGESTORE(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2118 LIST_COPY(item->message_store->search_root_folder, (pst_entryid*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2119 LE32_CPU(item->message_store->search_root_folder->id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2120 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->search_root_folder->id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2121 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2122 case 0x3602: // PR_CONTENT_COUNT Number of emails stored in a folder
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2123 DEBUG_EMAIL(("Folder Email Count - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2124 MALLOC_FOLDER(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2125 memcpy(&(item->folder->email_count), list->items[x]->data, sizeof(item->folder->email_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2126 LE32_CPU(item->folder->email_count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2127 DEBUG_EMAIL(("%i\n", item->folder->email_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2128 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2129 case 0x3603: // PR_CONTENT_UNREAD Number of unread emails
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2130 DEBUG_EMAIL(("Unread Email Count - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2131 MALLOC_FOLDER(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2132 memcpy(&(item->folder->unseen_email_count), list->items[x]->data, sizeof(item->folder->unseen_email_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2133 LE32_CPU(item->folder->unseen_email_count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2134 DEBUG_EMAIL(("%i\n", item->folder->unseen_email_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2135 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2136 case 0x360A: // PR_SUBFOLDERS Has children
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2137 DEBUG_EMAIL(("Has Subfolders - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2138 MALLOC_FOLDER(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2139 if (*((int32_t*)list->items[x]->data) != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2140 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2141 item->folder->subfolder = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2142 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2143 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2144 item->folder->subfolder = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2145 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2146 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2147 case 0x3613: // PR_CONTAINER_CLASS IPF.x
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2148 DEBUG_EMAIL(("IPF.x - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2149 LIST_COPY(item->ascii_type, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2150 if (strncmp("IPF.Note", item->ascii_type, 8) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2151 item->type = PST_TYPE_NOTE;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2152 else if (strncmp("IPF.Contact", item->ascii_type, 11) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2153 item->type = PST_TYPE_CONTACT;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2154 else if (strncmp("IPF.Journal", item->ascii_type, 11) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2155 item->type = PST_TYPE_JOURNAL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2156 else if (strncmp("IPF.Appointment", item->ascii_type, 15) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2157 item->type = PST_TYPE_APPOINTMENT;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2158 else if (strncmp("IPF.StickyNote", item->ascii_type, 14) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2159 item->type = PST_TYPE_STICKYNOTE;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2160 else if (strncmp("IPF.Task", item->ascii_type, 8) == 0)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2161 item->type = PST_TYPE_TASK;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2162 else
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2163 item->type = PST_TYPE_OTHER;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2164
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2165 DEBUG_EMAIL(("%s [%i]\n", item->ascii_type, item->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2166 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2167 case 0x3617: // PR_ASSOC_CONTENT_COUNT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2168 // associated content are items that are attached to this folder
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2169 // but are hidden from users
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2170 DEBUG_EMAIL(("Associate Content count - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2171 MALLOC_FOLDER(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2172 memcpy(&(item->folder->assoc_count), list->items[x]->data, sizeof(item->folder->assoc_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2173 LE32_CPU(item->folder->assoc_count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2174 DEBUG_EMAIL(("%i [%#x]\n", item->folder->assoc_count, item->folder->assoc_count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2175 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2176 case 0x3701: // PR_ATTACH_DATA_OBJ binary data of attachment
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2177 DEBUG_EMAIL(("Binary Data [Size %i] - ", list->items[x]->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2178 NULL_CHECK(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2179 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2180 if (!list->items[x]->data) { //special case
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2181 attach->id2_val = list->items[x]->type;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2182 DEBUG_EMAIL(("Seen a Reference. The data hasn't been loaded yet. [%#x][%#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2183 attach->id2_val, list->items[x]->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2184 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2185 LIST_COPY(attach->data, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2186 attach->size = list->items[x]->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2187 DEBUG_EMAIL(("NOT PRINTED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2188 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2189 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2190 case 0x3704: // PR_ATTACH_FILENAME Attachment filename (8.3)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2191 DEBUG_EMAIL(("Attachment Filename - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2192 NULL_CHECK(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2193 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2194 LIST_COPY(attach->filename1, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2195 DEBUG_EMAIL(("%s\n", attach->filename1));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2196 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2197 case 0x3705: // PR_ATTACH_METHOD
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2198 // 0 - No Attachment
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2199 // 1 - Attach by Value
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2200 // 2 - Attach by reference
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2201 // 3 - Attach by ref resolve
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2202 // 4 - Attach by ref only
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2203 // 5 - Embedded Message
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2204 // 6 - OLE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2205 DEBUG_EMAIL(("Attachement method - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2206 NULL_CHECK(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2207 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2208 memcpy(&(attach->method), list->items[x]->data, sizeof(attach->method));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2209 LE32_CPU(attach->method);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2210 t = attach->method;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2211 DEBUG_EMAIL(("%s [%i]\n", (t==0?"No Attachment":
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2212 (t==1?"Attach By Value":
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2213 (t==2?"Attach By Reference":
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2214 (t==3?"Attach by Ref. Resolve":
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2215 (t==4?"Attach by Ref. Only":
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2216 (t==5?"Embedded Message":"OLE")))))),t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2217 break;
24
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
2218 case 0x3707: // PR_ATTACH_LONG_FILENAME Attachment filename (long?)
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
2219 DEBUG_EMAIL(("Attachment Filename long - "));
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
2220 NULL_CHECK(attach);
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
2221 MOVE_NEXT(attach);
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
2222 LIST_COPY(attach->filename2, (char*));
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
2223 DEBUG_EMAIL(("%s\n", attach->filename2));
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
2224 break;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2225 case 0x370B: // PR_RENDERING_POSITION
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2226 // position in characters that the attachment appears in the plain text body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2227 DEBUG_EMAIL(("Attachment Position - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2228 NULL_CHECK(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2229 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2230 memcpy(&(attach->position), list->items[x]->data, sizeof(attach->position));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2231 LE32_CPU(attach->position);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2232 DEBUG_EMAIL(("%i [%#x]\n", attach->position));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2233 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2234 case 0x370E: // PR_ATTACH_MIME_TAG Mime type of encoding
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2235 DEBUG_EMAIL(("Attachment mime encoding - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2236 NULL_CHECK(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2237 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2238 LIST_COPY(attach->mimetype, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2239 DEBUG_EMAIL(("%s\n", attach->mimetype));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2240 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2241 case 0x3710: // PR_ATTACH_MIME_SEQUENCE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2242 // sequence number for mime parts. Includes body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2243 DEBUG_EMAIL(("Attachment Mime Sequence - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2244 NULL_CHECK(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2245 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2246 memcpy(&(attach->sequence), list->items[x]->data, sizeof(attach->sequence));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2247 LE32_CPU(attach->sequence);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2248 DEBUG_EMAIL(("%i\n", attach->sequence));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2249 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2250 case 0x3A00: // PR_ACCOUNT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2251 DEBUG_EMAIL(("Contact's Account name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2252 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2253 LIST_COPY(item->contact->account_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2254 DEBUG_EMAIL(("%s\n", item->contact->account_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2255 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2256 case 0x3A01: // PR_ALTERNATE_RECIPIENT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2257 DEBUG_EMAIL(("Contact Alternate Recipient - NOT PROCESSED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2258 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2259 case 0x3A02: // PR_CALLBACK_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2260 DEBUG_EMAIL(("Callback telephone number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2261 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2262 LIST_COPY(item->contact->callback_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2263 DEBUG_EMAIL(("%s\n", item->contact->callback_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2264 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2265 case 0x3A03: // PR_CONVERSION_PROHIBITED
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2266 DEBUG_EMAIL(("Message Conversion Prohibited - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2267 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2268 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2269 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2270 item->email->conversion_prohib = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2271 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2272 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2273 item->email->conversion_prohib = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2274 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2275 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2276 case 0x3A05: // PR_GENERATION suffix
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2277 DEBUG_EMAIL(("Contacts Suffix - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2278 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2279 LIST_COPY(item->contact->suffix, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2280 DEBUG_EMAIL(("%s\n", item->contact->suffix));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2281 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2282 case 0x3A06: // PR_GIVEN_NAME Contact's first name
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2283 DEBUG_EMAIL(("Contacts First Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2284 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2285 LIST_COPY(item->contact->first_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2286 DEBUG_EMAIL(("%s\n", item->contact->first_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2287 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2288 case 0x3A07: // PR_GOVERNMENT_ID_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2289 DEBUG_EMAIL(("Contacts Government ID Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2290 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2291 LIST_COPY(item->contact->gov_id, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2292 DEBUG_EMAIL(("%s\n", item->contact->gov_id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2293 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2294 case 0x3A08: // PR_BUSINESS_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2295 DEBUG_EMAIL(("Business Telephone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2296 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2297 LIST_COPY(item->contact->business_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2298 DEBUG_EMAIL(("%s\n", item->contact->business_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2299 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2300 case 0x3A09: // PR_HOME_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2301 DEBUG_EMAIL(("Home Telephone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2302 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2303 LIST_COPY(item->contact->home_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2304 DEBUG_EMAIL(("%s\n", item->contact->home_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2305 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2306 case 0x3A0A: // PR_INITIALS Contact's Initials
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2307 DEBUG_EMAIL(("Contacts Initials - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2308 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2309 LIST_COPY(item->contact->initials, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2310 DEBUG_EMAIL(("%s\n", item->contact->initials));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2311 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2312 case 0x3A0B: // PR_KEYWORD
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2313 DEBUG_EMAIL(("Keyword - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2314 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2315 LIST_COPY(item->contact->keyword, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2316 DEBUG_EMAIL(("%s\n", item->contact->keyword));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2317 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2318 case 0x3A0C: // PR_LANGUAGE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2319 DEBUG_EMAIL(("Contact's Language - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2320 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2321 LIST_COPY(item->contact->language, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2322 DEBUG_EMAIL(("%s\n", item->contact->language));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2323 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2324 case 0x3A0D: // PR_LOCATION
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2325 DEBUG_EMAIL(("Contact's Location - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2326 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2327 LIST_COPY(item->contact->location, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2328 DEBUG_EMAIL(("%s\n", item->contact->location));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2329 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2330 case 0x3A0E: // PR_MAIL_PERMISSION - Can the recipient receive and send email
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2331 DEBUG_EMAIL(("Mail Permission - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2332 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2333 if (*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2334 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2335 item->contact->mail_permission = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2336 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2337 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2338 item->contact->mail_permission = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2339 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2340 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2341 case 0x3A0F: // PR_MHS_COMMON_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2342 DEBUG_EMAIL(("MHS Common Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2343 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2344 LIST_COPY(item->email->common_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2345 DEBUG_EMAIL(("%s\n", item->email->common_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2346 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2347 case 0x3A10: // PR_ORGANIZATIONAL_ID_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2348 DEBUG_EMAIL(("Organizational ID # - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2349 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2350 LIST_COPY(item->contact->org_id, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2351 DEBUG_EMAIL(("%s\n", item->contact->org_id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2352 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2353 case 0x3A11: // PR_SURNAME Contact's Surname
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2354 DEBUG_EMAIL(("Contacts Surname - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2355 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2356 LIST_COPY(item->contact->surname, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2357 DEBUG_EMAIL(("%s\n", item->contact->surname));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2358 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2359 case 0x3A12: // PR_ORIGINAL_ENTRY_ID
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2360 DEBUG_EMAIL(("Original Entry ID - NOT PROCESSED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2361 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2362 case 0x3A13: // PR_ORIGINAL_DISPLAY_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2363 DEBUG_EMAIL(("Original Display Name - NOT PROCESSED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2364 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2365 case 0x3A14: // PR_ORIGINAL_SEARCH_KEY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2366 DEBUG_EMAIL(("Original Search Key - NOT PROCESSED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2367 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2368 case 0x3A15: // PR_POSTAL_ADDRESS
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2369 DEBUG_EMAIL(("Default Postal Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2370 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2371 LIST_COPY(item->contact->def_postal_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2372 DEBUG_EMAIL(("%s\n", item->contact->def_postal_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2373 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2374 case 0x3A16: // PR_COMPANY_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2375 DEBUG_EMAIL(("Company Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2376 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2377 LIST_COPY(item->contact->company_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2378 DEBUG_EMAIL(("%s\n", item->contact->company_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2379 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2380 case 0x3A17: // PR_TITLE - Job Title
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2381 DEBUG_EMAIL(("Job Title - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2382 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2383 LIST_COPY(item->contact->job_title, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2384 DEBUG_EMAIL(("%s\n", item->contact->job_title));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2385 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2386 case 0x3A18: // PR_DEPARTMENT_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2387 DEBUG_EMAIL(("Department Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2388 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2389 LIST_COPY(item->contact->department, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2390 DEBUG_EMAIL(("%s\n", item->contact->department));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2391 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2392 case 0x3A19: // PR_OFFICE_LOCATION
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2393 DEBUG_EMAIL(("Office Location - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2394 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2395 LIST_COPY(item->contact->office_loc, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2396 DEBUG_EMAIL(("%s\n", item->contact->office_loc));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2397 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2398 case 0x3A1A: // PR_PRIMARY_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2399 DEBUG_EMAIL(("Primary Telephone - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2400 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2401 LIST_COPY(item->contact->primary_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2402 DEBUG_EMAIL(("%s\n", item->contact->primary_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2403 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2404 case 0x3A1B: // PR_BUSINESS2_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2405 DEBUG_EMAIL(("Business Phone Number 2 - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2406 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2407 LIST_COPY(item->contact->business_phone2, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2408 DEBUG_EMAIL(("%s\n", item->contact->business_phone2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2409 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2410 case 0x3A1C: // PR_MOBILE_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2411 DEBUG_EMAIL(("Mobile Phone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2412 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2413 LIST_COPY(item->contact->mobile_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2414 DEBUG_EMAIL(("%s\n", item->contact->mobile_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2415 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2416 case 0x3A1D: // PR_RADIO_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2417 DEBUG_EMAIL(("Radio Phone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2418 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2419 LIST_COPY(item->contact->radio_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2420 DEBUG_EMAIL(("%s\n", item->contact->radio_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2421 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2422 case 0x3A1E: // PR_CAR_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2423 DEBUG_EMAIL(("Car Phone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2424 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2425 LIST_COPY(item->contact->car_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2426 DEBUG_EMAIL(("%s\n", item->contact->car_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2427 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2428 case 0x3A1F: // PR_OTHER_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2429 DEBUG_EMAIL(("Other Phone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2430 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2431 LIST_COPY(item->contact->other_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2432 DEBUG_EMAIL(("%s\n", item->contact->other_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2433 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2434 case 0x3A20: // PR_TRANSMITTABLE_DISPLAY_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2435 DEBUG_EMAIL(("Transmittable Display Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2436 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2437 LIST_COPY(item->contact->transmittable_display_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2438 DEBUG_EMAIL(("%s\n", item->contact->transmittable_display_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2439 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2440 case 0x3A21: // PR_PAGER_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2441 DEBUG_EMAIL(("Pager Phone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2442 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2443 LIST_COPY(item->contact->pager_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2444 DEBUG_EMAIL(("%s\n", item->contact->pager_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2445 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2446 case 0x3A22: // PR_USER_CERTIFICATE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2447 DEBUG_EMAIL(("User Certificate - NOT PROCESSED"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2448 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2449 case 0x3A23: // PR_PRIMARY_FAX_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2450 DEBUG_EMAIL(("Primary Fax Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2451 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2452 LIST_COPY(item->contact->primary_fax, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2453 DEBUG_EMAIL(("%s\n", item->contact->primary_fax));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2454 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2455 case 0x3A24: // PR_BUSINESS_FAX_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2456 DEBUG_EMAIL(("Business Fax Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2457 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2458 LIST_COPY(item->contact->business_fax, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2459 DEBUG_EMAIL(("%s\n", item->contact->business_fax));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2460 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2461 case 0x3A25: // PR_HOME_FAX_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2462 DEBUG_EMAIL(("Home Fax Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2463 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2464 LIST_COPY(item->contact->home_fax, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2465 DEBUG_EMAIL(("%s\n", item->contact->home_fax));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2466 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2467 case 0x3A26: // PR_BUSINESS_ADDRESS_COUNTRY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2468 DEBUG_EMAIL(("Business Address Country - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2469 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2470 LIST_COPY(item->contact->business_country, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2471 DEBUG_EMAIL(("%s\n", item->contact->business_country));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2472 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2473 case 0x3A27: // PR_BUSINESS_ADDRESS_CITY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2474 DEBUG_EMAIL(("Business Address City - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2475 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2476 LIST_COPY(item->contact->business_city, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2477 DEBUG_EMAIL(("%s\n", item->contact->business_city));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2478 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2479 case 0x3A28: // PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2480 DEBUG_EMAIL(("Business Address State - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2481 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2482 LIST_COPY(item->contact->business_state, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2483 DEBUG_EMAIL(("%s\n", item->contact->business_state));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2484 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2485 case 0x3A29: // PR_BUSINESS_ADDRESS_STREET
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2486 DEBUG_EMAIL(("Business Address Street - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2487 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2488 LIST_COPY(item->contact->business_street, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2489 DEBUG_EMAIL(("%s\n", item->contact->business_street));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2490 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2491 case 0x3A2A: // PR_BUSINESS_POSTAL_CODE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2492 DEBUG_EMAIL(("Business Postal Code - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2493 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2494 LIST_COPY(item->contact->business_postal_code, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2495 DEBUG_EMAIL(("%s\n", item->contact->business_postal_code));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2496 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2497 case 0x3A2B: // PR_BUSINESS_PO_BOX
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2498 DEBUG_EMAIL(("Business PO Box - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2499 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2500 LIST_COPY(item->contact->business_po_box, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2501 DEBUG_EMAIL(("%s\n", item->contact->business_po_box));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2502 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2503 case 0x3A2C: // PR_TELEX_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2504 DEBUG_EMAIL(("Telex Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2505 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2506 LIST_COPY(item->contact->telex, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2507 DEBUG_EMAIL(("%s\n", item->contact->telex));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2508 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2509 case 0x3A2D: // PR_ISDN_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2510 DEBUG_EMAIL(("ISDN Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2511 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2512 LIST_COPY(item->contact->isdn_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2513 DEBUG_EMAIL(("%s\n", item->contact->isdn_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2514 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2515 case 0x3A2E: // PR_ASSISTANT_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2516 DEBUG_EMAIL(("Assistant Phone Number - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2517 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2518 LIST_COPY(item->contact->assistant_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2519 DEBUG_EMAIL(("%s\n", item->contact->assistant_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2520 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2521 case 0x3A2F: // PR_HOME2_TELEPHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2522 DEBUG_EMAIL(("Home Phone 2 - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2523 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2524 LIST_COPY(item->contact->home_phone2, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2525 DEBUG_EMAIL(("%s\n", item->contact->home_phone2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2526 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2527 case 0x3A30: // PR_ASSISTANT
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2528 DEBUG_EMAIL(("Assistant's Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2529 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2530 LIST_COPY(item->contact->assistant_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2531 DEBUG_EMAIL(("%s\n", item->contact->assistant_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2532 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2533 case 0x3A40: // PR_SEND_RICH_INFO
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2534 DEBUG_EMAIL(("Can receive Rich Text - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2535 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2536 if(*(int16_t*)list->items[x]->data != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2537 DEBUG_EMAIL(("True\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2538 item->contact->rich_text = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2539 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2540 DEBUG_EMAIL(("False\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2541 item->contact->rich_text = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2542 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2543 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2544 case 0x3A41: // PR_WEDDING_ANNIVERSARY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2545 DEBUG_EMAIL(("Wedding Anniversary - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2546 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2547 LIST_COPY(item->contact->wedding_anniversary, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2548 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->wedding_anniversary)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2549 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2550 case 0x3A42: // PR_BIRTHDAY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2551 DEBUG_EMAIL(("Birthday - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2552 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2553 LIST_COPY(item->contact->birthday, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2554 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->birthday)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2555 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2556 case 0x3A43: // PR_HOBBIES
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2557 DEBUG_EMAIL(("Hobbies - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2558 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2559 LIST_COPY(item->contact->hobbies, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2560 DEBUG_EMAIL(("%s\n", item->contact->hobbies));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2561 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2562 case 0x3A44: // PR_MIDDLE_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2563 DEBUG_EMAIL(("Middle Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2564 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2565 LIST_COPY(item->contact->middle_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2566 DEBUG_EMAIL(("%s\n", item->contact->middle_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2567 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2568 case 0x3A45: // PR_DISPLAY_NAME_PREFIX
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2569 DEBUG_EMAIL(("Display Name Prefix (Title) - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2570 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2571 LIST_COPY(item->contact->display_name_prefix, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2572 DEBUG_EMAIL(("%s\n", item->contact->display_name_prefix));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2573 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2574 case 0x3A46: // PR_PROFESSION
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2575 DEBUG_EMAIL(("Profession - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2576 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2577 LIST_COPY(item->contact->profession, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2578 DEBUG_EMAIL(("%s\n", item->contact->profession));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2579 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2580 case 0x3A47: // PR_PREFERRED_BY_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2581 DEBUG_EMAIL(("Preferred By Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2582 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2583 LIST_COPY(item->contact->pref_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2584 DEBUG_EMAIL(("%s\n", item->contact->pref_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2585 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2586 case 0x3A48: // PR_SPOUSE_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2587 DEBUG_EMAIL(("Spouse's Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2588 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2589 LIST_COPY(item->contact->spouse_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2590 DEBUG_EMAIL(("%s\n", item->contact->spouse_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2591 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2592 case 0x3A49: // PR_COMPUTER_NETWORK_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2593 DEBUG_EMAIL(("Computer Network Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2594 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2595 LIST_COPY(item->contact->computer_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2596 DEBUG_EMAIL(("%s\n", item->contact->computer_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2597 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2598 case 0x3A4A: // PR_CUSTOMER_ID
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2599 DEBUG_EMAIL(("Customer ID - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2600 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2601 LIST_COPY(item->contact->customer_id, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2602 DEBUG_EMAIL(("%s\n", item->contact->customer_id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2603 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2604 case 0x3A4B: // PR_TTYTDD_PHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2605 DEBUG_EMAIL(("TTY/TDD Phone - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2606 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2607 LIST_COPY(item->contact->ttytdd_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2608 DEBUG_EMAIL(("%s\n", item->contact->ttytdd_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2609 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2610 case 0x3A4C: // PR_FTP_SITE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2611 DEBUG_EMAIL(("Ftp Site - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2612 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2613 LIST_COPY(item->contact->ftp_site, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2614 DEBUG_EMAIL(("%s\n", item->contact->ftp_site));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2615 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2616 case 0x3A4D: // PR_GENDER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2617 DEBUG_EMAIL(("Gender - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2618 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2619 memcpy(&item->contact->gender, list->items[x]->data, sizeof(int16_t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2620 LE16_CPU(item->contact->gender);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2621 switch(item->contact->gender) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2622 case 0:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2623 DEBUG_EMAIL(("Unspecified\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2624 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2625 case 1:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2626 DEBUG_EMAIL(("Female\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2627 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2628 case 2:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2629 DEBUG_EMAIL(("Male\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2630 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2631 default:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2632 DEBUG_EMAIL(("Error processing\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2633 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2634 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2635 case 0x3A4E: // PR_MANAGER_NAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2636 DEBUG_EMAIL(("Manager's Name - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2637 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2638 LIST_COPY(item->contact->manager_name, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2639 DEBUG_EMAIL(("%s\n", item->contact->manager_name));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2640 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2641 case 0x3A4F: // PR_NICKNAME
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2642 DEBUG_EMAIL(("Nickname - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2643 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2644 LIST_COPY(item->contact->nickname, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2645 DEBUG_EMAIL(("%s\n", item->contact->nickname));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2646 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2647 case 0x3A50: // PR_PERSONAL_HOME_PAGE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2648 DEBUG_EMAIL(("Personal Home Page - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2649 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2650 LIST_COPY(item->contact->personal_homepage, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2651 DEBUG_EMAIL(("%s\n", item->contact->personal_homepage));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2652 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2653 case 0x3A51: // PR_BUSINESS_HOME_PAGE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2654 DEBUG_EMAIL(("Business Home Page - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2655 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2656 LIST_COPY(item->contact->business_homepage, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2657 DEBUG_EMAIL(("%s\n", item->contact->business_homepage));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2658 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2659 case 0x3A57: // PR_COMPANY_MAIN_PHONE_NUMBER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2660 DEBUG_EMAIL(("Company Main Phone - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2661 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2662 LIST_COPY(item->contact->company_main_phone, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2663 DEBUG_EMAIL(("%s\n", item->contact->company_main_phone));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2664 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2665 case 0x3A58: // PR_CHILDRENS_NAMES
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2666 DEBUG_EMAIL(("Children's Names - NOT PROCESSED\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2667 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2668 case 0x3A59: // PR_HOME_ADDRESS_CITY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2669 DEBUG_EMAIL(("Home Address City - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2670 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2671 LIST_COPY(item->contact->home_city, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2672 DEBUG_EMAIL(("%s\n", item->contact->home_city));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2673 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2674 case 0x3A5A: // PR_HOME_ADDRESS_COUNTRY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2675 DEBUG_EMAIL(("Home Address Country - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2676 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2677 LIST_COPY(item->contact->home_country, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2678 DEBUG_EMAIL(("%s\n", item->contact->home_country));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2679 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2680 case 0x3A5B: // PR_HOME_ADDRESS_POSTAL_CODE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2681 DEBUG_EMAIL(("Home Address Postal Code - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2682 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2683 LIST_COPY(item->contact->home_postal_code, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2684 DEBUG_EMAIL(("%s\n", item->contact->home_postal_code));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2685 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2686 case 0x3A5C: // PR_HOME_ADDRESS_STATE_OR_PROVINCE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2687 DEBUG_EMAIL(("Home Address State or Province - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2688 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2689 LIST_COPY(item->contact->home_state, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2690 DEBUG_EMAIL(("%s\n", item->contact->home_state));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2691 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2692 case 0x3A5D: // PR_HOME_ADDRESS_STREET
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2693 DEBUG_EMAIL(("Home Address Street - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2694 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2695 LIST_COPY(item->contact->home_street, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2696 DEBUG_EMAIL(("%s\n", item->contact->home_street));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2697 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2698 case 0x3A5E: // PR_HOME_ADDRESS_POST_OFFICE_BOX
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2699 DEBUG_EMAIL(("Home Address Post Office Box - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2700 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2701 LIST_COPY(item->contact->home_po_box, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2702 DEBUG_EMAIL(("%s\n", item->contact->home_po_box));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2703 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2704 case 0x3A5F: // PR_OTHER_ADDRESS_CITY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2705 DEBUG_EMAIL(("Other Address City - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2706 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2707 LIST_COPY(item->contact->other_city, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2708 DEBUG_EMAIL(("%s\n", item->contact->other_city));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2709 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2710 case 0x3A60: // PR_OTHER_ADDRESS_COUNTRY
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2711 DEBUG_EMAIL(("Other Address Country - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2712 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2713 LIST_COPY(item->contact->other_country, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2714 DEBUG_EMAIL(("%s\n", item->contact->other_country));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2715 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2716 case 0x3A61: // PR_OTHER_ADDRESS_POSTAL_CODE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2717 DEBUG_EMAIL(("Other Address Postal Code - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2718 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2719 LIST_COPY(item->contact->other_postal_code, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2720 DEBUG_EMAIL(("%s\n", item->contact->other_postal_code));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2721 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2722 case 0x3A62: // PR_OTHER_ADDRESS_STATE_OR_PROVINCE
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2723 DEBUG_EMAIL(("Other Address State - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2724 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2725 LIST_COPY(item->contact->other_state, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2726 DEBUG_EMAIL(("%s\n", item->contact->other_state));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2727 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2728 case 0x3A63: // PR_OTHER_ADDRESS_STREET
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2729 DEBUG_EMAIL(("Other Address Street - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2730 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2731 LIST_COPY(item->contact->other_street, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2732 DEBUG_EMAIL(("%s\n", item->contact->other_street));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2733 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2734 case 0x3A64: // PR_OTHER_ADDRESS_POST_OFFICE_BOX
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2735 DEBUG_EMAIL(("Other Address Post Office box - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2736 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2737 LIST_COPY(item->contact->other_po_box, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2738 DEBUG_EMAIL(("%s\n", item->contact->other_po_box));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2739 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2740 case 0x65E3: // Entry ID?
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2741 DEBUG_EMAIL(("Entry ID - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2742 item->record_key = (char*) xmalloc(16+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2743 memcpy(item->record_key, &(list->items[x]->data[1]), 16); //skip first byte
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2744 item->record_key[16]='\0';
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2745 item->record_key_size=16;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2746 DEBUG_EMAIL_HEXPRINT((char*)item->record_key, 16);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2747 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2748 case 0x67F2: // ID2 value of the attachments proper record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2749 DEBUG_EMAIL(("Attachment ID2 value - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2750 if (attach){
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2751 MOVE_NEXT(attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2752 memcpy(&(attach->id2_val), list->items[x]->data, sizeof(attach->id2_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2753 LE32_CPU(attach->id2_val);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2754 DEBUG_EMAIL(("%#x\n", attach->id2_val));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2755 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2756 DEBUG_EMAIL(("NOT AN ATTACHMENT: %#x\n", list->items[x]->id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2757 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2758 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2759 case 0x67FF: // Extra Property Identifier (Password CheckSum)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2760 DEBUG_EMAIL(("Password checksum [0x67FF] - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2761 MALLOC_MESSAGESTORE(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2762 memcpy(&(item->message_store->pwd_chksum), list->items[x]->data,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2763 sizeof(item->message_store->pwd_chksum));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2764 DEBUG_EMAIL(("%#x\n", item->message_store->pwd_chksum));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2765 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2766 case 0x6F02: // Secure HTML Body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2767 DEBUG_EMAIL(("Secure HTML Body - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2768 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2769 LIST_COPY(item->email->encrypted_htmlbody, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2770 item->email->encrypted_htmlbody_size = list->items[x]->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2771 DEBUG_EMAIL(("Not Printed\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2772 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2773 case 0x6F04: // Secure Text Body
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2774 DEBUG_EMAIL(("Secure Text Body - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2775 MALLOC_EMAIL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2776 LIST_COPY(item->email->encrypted_body, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2777 item->email->encrypted_body_size = list->items[x]->size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2778 DEBUG_EMAIL(("Not Printed\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2779 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2780 case 0x7C07: // top of folders ENTRYID
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2781 DEBUG_EMAIL(("Top of folders RecID [0x7c07] - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2782 MALLOC_MESSAGESTORE(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2783 item->message_store->top_of_folder = (pst_entryid*) xmalloc(sizeof(pst_entryid));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2784 memcpy(item->message_store->top_of_folder, list->items[x]->data, sizeof(pst_entryid));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2785 LE32_CPU(item->message_store->top_of_folder->u1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2786 LE32_CPU(item->message_store->top_of_folder->id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2787 DEBUG_EMAIL_HEXPRINT((char*)item->message_store->top_of_folder->entryid, 16);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2788 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2789 case 0x8005: // Contact's Fullname
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2790 DEBUG_EMAIL(("Contact Fullname - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2791 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2792 LIST_COPY(item->contact->fullname, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2793 DEBUG_EMAIL(("%s\n", item->contact->fullname));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2794 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2795 case 0x801A: // Full Home Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2796 DEBUG_EMAIL(("Home Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2797 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2798 LIST_COPY(item->contact->home_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2799 DEBUG_EMAIL(("%s\n", item->contact->home_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2800 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2801 case 0x801B: // Full Business Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2802 DEBUG_EMAIL(("Business Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2803 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2804 LIST_COPY(item->contact->business_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2805 DEBUG_EMAIL(("%s\n", item->contact->business_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2806 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2807 case 0x801C: // Full Other Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2808 DEBUG_EMAIL(("Other Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2809 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2810 LIST_COPY(item->contact->other_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2811 DEBUG_EMAIL(("%s\n", item->contact->other_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2812 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2813 case 0x8082: // Email Address 1 Transport
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2814 DEBUG_EMAIL(("Email Address 1 Transport - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2815 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2816 LIST_COPY(item->contact->address1_transport, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2817 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2818 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2819 case 0x8083: // Email Address 1 Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2820 DEBUG_EMAIL(("Email Address 1 Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2821 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2822 LIST_COPY(item->contact->address1, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2823 DEBUG_EMAIL(("|%s|\n", item->contact->address1));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2824 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2825 case 0x8084: // Email Address 1 Description
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2826 DEBUG_EMAIL(("Email Address 1 Description - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2827 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2828 LIST_COPY(item->contact->address1_desc, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2829 DEBUG_EMAIL(("|%s|\n", item->contact->address1_desc));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2830 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2831 case 0x8085: // Email Address 1 Record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2832 DEBUG_EMAIL(("Email Address 1 Record - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2833 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2834 LIST_COPY(item->contact->address1a, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2835 DEBUG_EMAIL(("|%s|\n", item->contact->address1a));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2836 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2837 case 0x8092: // Email Address 2 Transport
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2838 DEBUG_EMAIL(("Email Address 2 Transport - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2839 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2840 LIST_COPY(item->contact->address2_transport, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2841 DEBUG_EMAIL(("|%s|\n", item->contact->address2_transport));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2842 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2843 case 0x8093: // Email Address 2 Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2844 DEBUG_EMAIL(("Email Address 2 Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2845 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2846 LIST_COPY(item->contact->address2, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2847 DEBUG_EMAIL(("|%s|\n", item->contact->address2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2848 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2849 case 0x8094: // Email Address 2 Description
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2850 DEBUG_EMAIL (("Email Address 2 Description - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2851 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2852 LIST_COPY(item->contact->address2_desc, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2853 DEBUG_EMAIL(("|%s|\n", item->contact->address2_desc));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2854 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2855 case 0x8095: // Email Address 2 Record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2856 DEBUG_EMAIL(("Email Address 2 Record - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2857 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2858 LIST_COPY(item->contact->address2a, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2859 DEBUG_EMAIL(("|%s|\n", item->contact->address2a));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2860 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2861 case 0x80A2: // Email Address 3 Transport
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2862 DEBUG_EMAIL (("Email Address 3 Transport - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2863 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2864 LIST_COPY(item->contact->address3_transport, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2865 DEBUG_EMAIL(("|%s|\n", item->contact->address3_transport));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2866 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2867 case 0x80A3: // Email Address 3 Address
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2868 DEBUG_EMAIL(("Email Address 3 Address - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2869 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2870 LIST_COPY(item->contact->address3, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2871 DEBUG_EMAIL(("|%s|\n", item->contact->address3));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2872 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2873 case 0x80A4: // Email Address 3 Description
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2874 DEBUG_EMAIL(("Email Address 3 Description - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2875 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2876 LIST_COPY(item->contact->address3_desc, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2877 DEBUG_EMAIL(("|%s|\n", item->contact->address3_desc));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2878 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2879 case 0x80A5: // Email Address 3 Record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2880 DEBUG_EMAIL(("Email Address 3 Record - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2881 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2882 LIST_COPY(item->contact->address3a, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2883 DEBUG_EMAIL(("|%s|\n", item->contact->address3a));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2884 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2885 case 0x80D8: // Internet Free/Busy
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2886 DEBUG_EMAIL(("Internet Free/Busy - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2887 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2888 LIST_COPY(item->contact->free_busy_address, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2889 DEBUG_EMAIL(("%s\n", item->contact->free_busy_address));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2890 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2891 case 0x8205: // Show on Free/Busy as
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2892 // 0: Free
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2893 // 1: Tentative
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2894 // 2: Busy
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2895 // 3: Out Of Office
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2896 DEBUG_EMAIL(("Appointment shows as - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2897 MALLOC_APPOINTMENT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2898 memcpy(&(item->appointment->showas), list->items[x]->data, sizeof(item->appointment->showas));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2899 LE32_CPU(item->appointment->showas);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2900 switch (item->appointment->showas) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2901 case PST_FREEBUSY_FREE:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2902 DEBUG_EMAIL(("Free\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2903 case PST_FREEBUSY_TENTATIVE:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2904 DEBUG_EMAIL(("Tentative\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2905 case PST_FREEBUSY_BUSY:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2906 DEBUG_EMAIL(("Busy\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2907 case PST_FREEBUSY_OUT_OF_OFFICE:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2908 DEBUG_EMAIL(("Out Of Office\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2909 default:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2910 DEBUG_EMAIL(("Unknown Value: %d\n", item->appointment->showas)); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2911 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2912 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2913 case 0x8208: // Location of an appointment
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2914 DEBUG_EMAIL(("Appointment Location - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2915 MALLOC_APPOINTMENT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2916 LIST_COPY(item->appointment->location, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2917 DEBUG_EMAIL(("%s\n", item->appointment->location));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2918 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2919 case 0x8214: // Label for an appointment
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2920 DEBUG_EMAIL(("Label for appointment - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2921 MALLOC_APPOINTMENT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2922 memcpy(&(item->appointment->label), list->items[x]->data, sizeof(item->appointment->label));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2923 LE32_CPU(item->appointment->label);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2924 switch (item->appointment->label) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2925 case PST_APP_LABEL_NONE:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2926 DEBUG_EMAIL(("None\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2927 case PST_APP_LABEL_IMPORTANT:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2928 DEBUG_EMAIL(("Important\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2929 case PST_APP_LABEL_BUSINESS:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2930 DEBUG_EMAIL(("Business\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2931 case PST_APP_LABEL_PERSONAL:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2932 DEBUG_EMAIL(("Personal\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2933 case PST_APP_LABEL_VACATION:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2934 DEBUG_EMAIL(("Vacation\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2935 case PST_APP_LABEL_MUST_ATTEND:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2936 DEBUG_EMAIL(("Must Attend\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2937 case PST_APP_LABEL_TRAVEL_REQ:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2938 DEBUG_EMAIL(("Travel Required\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2939 case PST_APP_LABEL_NEEDS_PREP:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2940 DEBUG_EMAIL(("Needs Preparation\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2941 case PST_APP_LABEL_BIRTHDAY:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2942 DEBUG_EMAIL(("Birthday\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2943 case PST_APP_LABEL_ANNIVERSARY:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2944 DEBUG_EMAIL(("Anniversary\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2945 case PST_APP_LABEL_PHONE_CALL:
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2946 DEBUG_EMAIL(("Phone Call\n")); break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2947 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2948 break;
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2949 case 0x8215: // All day appointment flag
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2950 DEBUG_EMAIL(("All day flag - "));
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2951 MALLOC_APPOINTMENT(item);
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2952 if (*(int16_t*)list->items[x]->data != 0) {
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2953 DEBUG_EMAIL(("True\n"));
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2954 item->appointment->all_day = 1;
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2955 } else {
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2956 DEBUG_EMAIL(("False\n"));
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2957 item->appointment->all_day = 0;
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2958 }
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
2959 break;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2960 case 0x8234: // TimeZone as String
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2961 DEBUG_EMAIL(("TimeZone of times - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2962 MALLOC_APPOINTMENT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2963 LIST_COPY(item->appointment->timezonestring, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2964 DEBUG_EMAIL(("%s\n", item->appointment->timezonestring));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2965 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2966 case 0x8235: // Appointment start time
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2967 DEBUG_EMAIL(("Appointment Start Time - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2968 MALLOC_APPOINTMENT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2969 LIST_COPY(item->appointment->start, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2970 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2971 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2972 case 0x8236: // Appointment end time
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2973 DEBUG_EMAIL(("Appointment End Time - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2974 MALLOC_APPOINTMENT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2975 LIST_COPY(item->appointment->end, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2976 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2977 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2978 case 0x8516: // Journal time start
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2979 DEBUG_EMAIL(("Duplicate Time Start - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2980 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2981 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2982 case 0x8517: // Journal time end
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2983 DEBUG_EMAIL(("Duplicate Time End - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2984 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2985 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2986 case 0x8530: // Followup
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2987 DEBUG_EMAIL(("Followup String - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2988 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2989 LIST_COPY(item->contact->followup, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2990 DEBUG_EMAIL(("%s\n", item->contact->followup));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2991 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2992 case 0x8534: // Mileage
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2993 DEBUG_EMAIL(("Mileage - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2994 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2995 LIST_COPY(item->contact->mileage, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2996 DEBUG_EMAIL(("%s\n", item->contact->mileage));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2997 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2998 case 0x8535: // Billing Information
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2999 DEBUG_EMAIL(("Billing Information - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3000 MALLOC_CONTACT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3001 LIST_COPY(item->contact->billing_information, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3002 DEBUG_EMAIL(("%s\n", item->contact->billing_information));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3003 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3004 case 0x8554: // Outlook Version
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3005 DEBUG_EMAIL(("Outlook Version - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3006 LIST_COPY(item->outlook_version, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3007 DEBUG_EMAIL(("%s\n", item->outlook_version));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3008 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3009 case 0x8560: // Appointment Reminder Time
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3010 DEBUG_EMAIL(("Appointment Reminder Time - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3011 MALLOC_APPOINTMENT(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3012 LIST_COPY(item->appointment->reminder, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3013 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->reminder)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3014 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3015 case 0x8700: // Journal Type
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3016 DEBUG_EMAIL(("Journal Entry Type - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3017 MALLOC_JOURNAL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3018 LIST_COPY(item->journal->type, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3019 DEBUG_EMAIL(("%s\n", item->journal->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3020 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3021 case 0x8706: // Journal Start date/time
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3022 DEBUG_EMAIL(("Start Timestamp - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3023 MALLOC_JOURNAL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3024 LIST_COPY(item->journal->start, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3025 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->start)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3026 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3027 case 0x8708: // Journal End date/time
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3028 DEBUG_EMAIL(("End Timestamp - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3029 MALLOC_JOURNAL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3030 LIST_COPY(item->journal->end, (FILETIME*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3031 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->end)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3032 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3033 case 0x8712: // Title?
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3034 DEBUG_EMAIL(("Journal Entry Type - "));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3035 MALLOC_JOURNAL(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3036 LIST_COPY(item->journal->type, (char*));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3037 DEBUG_EMAIL(("%s\n", item->journal->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3038 break;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3039 default:
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3040 DEBUG_EMAIL(("unknown type %#x\n", list->items[x]->id));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3041 /* Reference Types
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3042
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3043 2 - 0x0002 - Signed 16bit value
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3044 3 - 0x0003 - Signed 32bit value
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3045 11 - 0x000B - Boolean (non-zero = true)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3046 13 - 0x000D - Embedded Object
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3047 30 - 0x001E - Null terminated String
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3048 31 - 0x001F - Unicode string
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3049 64 - 0x0040 - Systime - Filetime structure
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3050 72 - 0x0048 - OLE Guid
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3051 258 - 0x0102 - Binary data
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3052
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3053 - 0x1003 - Array of 32bit values
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3054 - 0x101E - Array of Strings
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3055 - 0x1102 - Array of Binary data
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3056 */
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3057 // DEBUG_EMAIL(("Unknown id [%#x, size=%#x]\n", list->items[x]->id, list->items[x]->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3058 if (list->items[x]->type == 0x02) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3059 DEBUG_EMAIL(("Unknown 16bit int = %hi\n", *(int16_t*)list->items[x]->data));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3060 } else if (list->items[x]->type == 0x03) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3061 DEBUG_EMAIL(("Unknown 32bit int = %i\n", *(int32_t*)list->items[x]->data));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3062 } else if (list->items[x]->type == 0x0b) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3063 DEBUG_EMAIL(("Unknown 16bit boolean = %s [%hi]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3064 (*((int16_t*)list->items[x]->data)!=0?"True":"False"),
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3065 *((int16_t*)list->items[x]->data)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3066 } else if (list->items[x]->type == 0x1e) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3067 DEBUG_EMAIL(("Unknown String Data = \"%s\" [%#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3068 list->items[x]->data, list->items[x]->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3069 } else if (list->items[x]->type == 0x40) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3070 DEBUG_EMAIL(("Unknown Date = \"%s\" [%#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3071 fileTimeToAscii((FILETIME*)list->items[x]->data),
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3072 list->items[x]->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3073 } else if (list->items[x]->type == 0x102) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3074 DEBUG_EMAIL(("Unknown Binary Data [size = %#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3075 list->items[x]->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3076 DEBUG_HEXDUMP(list->items[x]->data, list->items[x]->size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3077 } else if (list->items[x]->type == 0x101E) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3078 DEBUG_EMAIL(("Unknown Array of Strings [%#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3079 list->items[x]->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3080 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3081 DEBUG_EMAIL(("Unknown Not Printable [%#x]\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3082 list->items[x]->type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3083 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3084 if (list->items[x]->data) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3085 free(list->items[x]->data);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3086 list->items[x]->data = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3087 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3088 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3089 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3090 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3091 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3092 list = list->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3093 next = 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3094 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3095 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3096 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3097 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3098
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3099
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3100 int32_t _pst_free_list(pst_num_array *list) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3101 pst_num_array *l;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3102 DEBUG_ENT("_pst_free_list");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3103 while (list) {
36
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3104 int32_t x = 0;
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3105 if (list->items) {
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3106 while (x < list->count_item) {
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3107 if (list->items[x]) {
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3108 if (list->items[x]->data) {
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3109 free (list->items[x]->data);
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3110 }
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3111 free (list->items[x]);
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3112 }
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3113 x++;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3114 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3115 free(list->items);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3116 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3117 l = list;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3118 list = list->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3119 free (l);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3120 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3121 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3122 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3123 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3124
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3125
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3126 int32_t _pst_free_id2(pst_index2_ll * head) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3127 pst_index2_ll *t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3128 DEBUG_ENT("_pst_free_id2");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3129 while (head) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3130 t = head->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3131 free (head);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3132 head = t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3133 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3134 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3135 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3136 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3137
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3138
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3139 int32_t _pst_free_id (pst_index_ll *head) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3140 pst_index_ll *t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3141 DEBUG_ENT("_pst_free_id");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3142 while (head) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3143 t = head->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3144 free(head);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3145 head = t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3146 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3147 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3148 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3149 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3150
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3151
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3152 int32_t _pst_free_desc (pst_desc_ll *head) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3153 pst_desc_ll *t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3154 DEBUG_ENT("_pst_free_desc");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3155 while (head) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3156 while (head->child) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3157 head = head->child;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3158 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3159
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3160 // point t to the next item
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3161 t = head->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3162 if (!t && head->parent) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3163 t = head->parent;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3164 t->child = NULL; // set the child to NULL so we don't come back here again!
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3165 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3166
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3167 if (head) free(head);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3168 else DIE(("head is NULL"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3169
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3170 head = t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3171 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3172 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3173 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3174 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3175
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3176
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3177 int32_t _pst_free_xattrib(pst_x_attrib_ll *x) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3178 pst_x_attrib_ll *t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3179 DEBUG_ENT("_pst_free_xattrib");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3180 while (x) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3181 if (x->data) free(x->data);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3182 t = x->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3183 free(x);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3184 x = t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3185 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3186 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3187 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3188 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3189
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3190
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3191 pst_index2_ll * _pst_build_id2(pst_file *pf, pst_index_ll* list, pst_index2_ll* head_ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3192 pst_block_header block_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3193 pst_index2_ll *head = NULL, *tail = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3194 int32_t x = 0, b_ptr = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3195 char *buf = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3196 pst_id2_assoc id2_rec;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3197 pst_index_ll *i_ptr = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3198 pst_index2_ll *i2_ptr = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3199 DEBUG_ENT("_pst_build_id2");
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3200
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3201 if (head_ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3202 head = head_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3203 while (head_ptr) head_ptr = (tail = head_ptr)->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3204 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3205 if (_pst_read_block_size(pf, list->offset, list->size, &buf, PST_NO_ENC, 0) < list->size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3206 //an error occured in block read
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3207 WARN(("block read error occured. offset = %#x, size = %#x\n", list->offset, list->size));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3208 if (buf) free(buf);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3209 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3210 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3211 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3212 DEBUG_HEXDUMPC(buf, list->size, 16);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3213
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3214 memcpy(&block_head, buf, sizeof(block_head));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3215 LE16_CPU(block_head.type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3216 LE16_CPU(block_head.count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3217
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3218 if (block_head.type != 0x0002) { // some sort of constant?
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3219 WARN(("Unknown constant [%#x] at start of id2 values [offset %#x].\n", block_head.type, list->offset));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3220 if (buf) free(buf);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3221 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3222 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3223 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3224
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3225 DEBUG_INDEX(("ID %#x is likely to be a description record. Count is %i (offset %#x)\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3226 list->id, block_head.count, list->offset));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3227 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3228 b_ptr = 0x04;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3229 while (x < block_head.count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3230 memcpy(&id2_rec, &(buf[b_ptr]), sizeof(id2_rec));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3231 LE32_CPU(id2_rec.id2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3232 LE32_CPU(id2_rec.id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3233 LE32_CPU(id2_rec.table2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3234
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3235 b_ptr += sizeof(id2_rec);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3236 DEBUG_INDEX(("\tid2 = %#x, id = %#x, table2 = %#x\n", id2_rec.id2, id2_rec.id, id2_rec.table2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3237 if ((i_ptr = _pst_getID(pf, id2_rec.id)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3238 DEBUG_WARN(("\t\t%#x - Not Found\n", id2_rec.id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3239 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3240 DEBUG_INDEX(("\t\t%#x - Offset %#x, u1 %#x, Size %i(%#x)\n", i_ptr->id, i_ptr->offset, i_ptr->u1, i_ptr->size, i_ptr->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3241 // add it to the linked list
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3242 i2_ptr = (pst_index2_ll*) xmalloc(sizeof(pst_index2_ll));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3243 i2_ptr->id2 = id2_rec.id2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3244 i2_ptr->id = i_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3245 i2_ptr->next = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3246 if (!head) head = i2_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3247 if (tail) tail->next = i2_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3248 tail = i2_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3249 if (id2_rec.table2 != 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3250 if ((i_ptr = _pst_getID(pf, id2_rec.table2)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3251 DEBUG_WARN(("\tTable2 [%#x] not found\n", id2_rec.table2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3252 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3253 else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3254 DEBUG_INDEX(("\tGoing deeper for table2 [%#x]\n", id2_rec.table2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3255 if ((i2_ptr = _pst_build_id2(pf, i_ptr, head))) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3256 // DEBUG_INDEX(("_pst_build_id2(): \t\tAdding new list onto end of current\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3257 // if (!head)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3258 // head = i2_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3259 // if (tail)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3260 // tail->next = i2_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3261 // while (i2_ptr->next)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3262 // i2_ptr = i2_ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3263 // tail = i2_ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3264 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3265 // need to re-establish tail
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3266 DEBUG_INDEX(("Returned from depth\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3267 if (tail) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3268 while (tail->next) tail = tail->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3269 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3270 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3271 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3272 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3273 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3274 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3275 if (buf) free (buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3276 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3277 return head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3278 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3279
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3280
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3281 // This version of free does NULL check first
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3282 #define SAFE_FREE(x) {if (x) free(x);}
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3283
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3284 void _pst_freeItem(pst_item *item) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3285 pst_item_attach *t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3286 pst_item_extra_field *et;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3287
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3288 DEBUG_ENT("_pst_freeItem");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3289 if (item) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3290 if (item->email) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3291 SAFE_FREE(item->email->arrival_date);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3292 SAFE_FREE(item->email->body);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3293 SAFE_FREE(item->email->cc_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3294 SAFE_FREE(item->email->common_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3295 SAFE_FREE(item->email->encrypted_body);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3296 SAFE_FREE(item->email->encrypted_htmlbody);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3297 SAFE_FREE(item->email->header);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3298 SAFE_FREE(item->email->htmlbody);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3299 SAFE_FREE(item->email->in_reply_to);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3300 SAFE_FREE(item->email->messageid);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3301 SAFE_FREE(item->email->outlook_recipient);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3302 SAFE_FREE(item->email->outlook_recipient2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3303 SAFE_FREE(item->email->outlook_sender);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3304 SAFE_FREE(item->email->outlook_sender_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3305 SAFE_FREE(item->email->outlook_sender2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3306 SAFE_FREE(item->email->proc_subject);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3307 SAFE_FREE(item->email->recip_access);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3308 SAFE_FREE(item->email->recip_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3309 SAFE_FREE(item->email->recip2_access);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3310 SAFE_FREE(item->email->recip2_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3311 SAFE_FREE(item->email->reply_to);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3312 SAFE_FREE(item->email->rtf_body_tag);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3313 SAFE_FREE(item->email->rtf_compressed);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3314 SAFE_FREE(item->email->return_path_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3315 SAFE_FREE(item->email->sender_access);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3316 SAFE_FREE(item->email->sender_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3317 SAFE_FREE(item->email->sender2_access);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3318 SAFE_FREE(item->email->sender2_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3319 SAFE_FREE(item->email->sent_date);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3320 SAFE_FREE(item->email->sentmail_folder);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3321 SAFE_FREE(item->email->sentto_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3322 if (item->email->subject)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3323 SAFE_FREE(item->email->subject->subj);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3324 SAFE_FREE(item->email->subject);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3325 free(item->email);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3326 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3327 if (item->folder) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3328 free(item->folder);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3329 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3330 if (item->message_store) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3331 SAFE_FREE(item->message_store->deleted_items_folder);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3332 SAFE_FREE(item->message_store->search_root_folder);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3333 SAFE_FREE(item->message_store->top_of_personal_folder);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3334 SAFE_FREE(item->message_store->top_of_folder);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3335 free(item->message_store);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3336 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3337 if (item->contact) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3338 SAFE_FREE(item->contact->access_method);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3339 SAFE_FREE(item->contact->account_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3340 SAFE_FREE(item->contact->address1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3341 SAFE_FREE(item->contact->address1a);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3342 SAFE_FREE(item->contact->address1_desc);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3343 SAFE_FREE(item->contact->address1_transport);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3344 SAFE_FREE(item->contact->address2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3345 SAFE_FREE(item->contact->address2a);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3346 SAFE_FREE(item->contact->address2_desc);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3347 SAFE_FREE(item->contact->address2_transport);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3348 SAFE_FREE(item->contact->address3);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3349 SAFE_FREE(item->contact->address3a);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3350 SAFE_FREE(item->contact->address3_desc);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3351 SAFE_FREE(item->contact->address3_transport);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3352 SAFE_FREE(item->contact->assistant_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3353 SAFE_FREE(item->contact->assistant_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3354 SAFE_FREE(item->contact->billing_information);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3355 SAFE_FREE(item->contact->birthday);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3356 SAFE_FREE(item->contact->business_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3357 SAFE_FREE(item->contact->business_city);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3358 SAFE_FREE(item->contact->business_country);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3359 SAFE_FREE(item->contact->business_fax);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3360 SAFE_FREE(item->contact->business_homepage);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3361 SAFE_FREE(item->contact->business_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3362 SAFE_FREE(item->contact->business_phone2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3363 SAFE_FREE(item->contact->business_po_box);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3364 SAFE_FREE(item->contact->business_postal_code);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3365 SAFE_FREE(item->contact->business_state);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3366 SAFE_FREE(item->contact->business_street);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3367 SAFE_FREE(item->contact->callback_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3368 SAFE_FREE(item->contact->car_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3369 SAFE_FREE(item->contact->company_main_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3370 SAFE_FREE(item->contact->company_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3371 SAFE_FREE(item->contact->computer_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3372 SAFE_FREE(item->contact->customer_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3373 SAFE_FREE(item->contact->def_postal_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3374 SAFE_FREE(item->contact->department);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3375 SAFE_FREE(item->contact->display_name_prefix);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3376 SAFE_FREE(item->contact->first_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3377 SAFE_FREE(item->contact->followup);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3378 SAFE_FREE(item->contact->free_busy_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3379 SAFE_FREE(item->contact->ftp_site);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3380 SAFE_FREE(item->contact->fullname);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3381 SAFE_FREE(item->contact->gov_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3382 SAFE_FREE(item->contact->hobbies);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3383 SAFE_FREE(item->contact->home_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3384 SAFE_FREE(item->contact->home_city);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3385 SAFE_FREE(item->contact->home_country);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3386 SAFE_FREE(item->contact->home_fax);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3387 SAFE_FREE(item->contact->home_po_box);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3388 SAFE_FREE(item->contact->home_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3389 SAFE_FREE(item->contact->home_phone2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3390 SAFE_FREE(item->contact->home_postal_code);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3391 SAFE_FREE(item->contact->home_state);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3392 SAFE_FREE(item->contact->home_street);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3393 SAFE_FREE(item->contact->initials);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3394 SAFE_FREE(item->contact->isdn_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3395 SAFE_FREE(item->contact->job_title);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3396 SAFE_FREE(item->contact->keyword);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3397 SAFE_FREE(item->contact->language);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3398 SAFE_FREE(item->contact->location);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3399 SAFE_FREE(item->contact->manager_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3400 SAFE_FREE(item->contact->middle_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3401 SAFE_FREE(item->contact->mileage);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3402 SAFE_FREE(item->contact->mobile_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3403 SAFE_FREE(item->contact->nickname);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3404 SAFE_FREE(item->contact->office_loc);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3405 SAFE_FREE(item->contact->org_id);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3406 SAFE_FREE(item->contact->other_address);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3407 SAFE_FREE(item->contact->other_city);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3408 SAFE_FREE(item->contact->other_country);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3409 SAFE_FREE(item->contact->other_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3410 SAFE_FREE(item->contact->other_po_box);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3411 SAFE_FREE(item->contact->other_postal_code);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3412 SAFE_FREE(item->contact->other_state);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3413 SAFE_FREE(item->contact->other_street);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3414 SAFE_FREE(item->contact->pager_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3415 SAFE_FREE(item->contact->personal_homepage);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3416 SAFE_FREE(item->contact->pref_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3417 SAFE_FREE(item->contact->primary_fax);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3418 SAFE_FREE(item->contact->primary_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3419 SAFE_FREE(item->contact->profession);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3420 SAFE_FREE(item->contact->radio_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3421 SAFE_FREE(item->contact->spouse_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3422 SAFE_FREE(item->contact->suffix);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3423 SAFE_FREE(item->contact->surname);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3424 SAFE_FREE(item->contact->telex);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3425 SAFE_FREE(item->contact->transmittable_display_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3426 SAFE_FREE(item->contact->ttytdd_phone);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3427 SAFE_FREE(item->contact->wedding_anniversary);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3428 free(item->contact);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3429 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3430 while (item->attach) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3431 SAFE_FREE(item->attach->filename1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3432 SAFE_FREE(item->attach->filename2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3433 SAFE_FREE(item->attach->mimetype);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3434 SAFE_FREE(item->attach->data);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3435 t = item->attach->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3436 free(item->attach);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3437 item->attach = t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3438 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3439 while (item->extra_fields) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3440 SAFE_FREE(item->extra_fields->field_name);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3441 SAFE_FREE(item->extra_fields->value);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3442 et = item->extra_fields->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3443 free(item->extra_fields);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3444 item->extra_fields = et;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3445 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3446 if (item->journal) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3447 SAFE_FREE(item->journal->end);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3448 SAFE_FREE(item->journal->start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3449 SAFE_FREE(item->journal->type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3450 free(item->journal);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3451 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3452 if (item->appointment) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3453 SAFE_FREE(item->appointment->location);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3454 SAFE_FREE(item->appointment->reminder);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3455 SAFE_FREE(item->appointment->start);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3456 SAFE_FREE(item->appointment->end);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3457 SAFE_FREE(item->appointment->timezonestring);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3458 free(item->appointment);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3459 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3460 SAFE_FREE(item->ascii_type);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3461 SAFE_FREE(item->comment);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3462 SAFE_FREE(item->create_date);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3463 SAFE_FREE(item->file_as);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3464 SAFE_FREE(item->modify_date);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3465 SAFE_FREE(item->outlook_version);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3466 SAFE_FREE(item->record_key);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3467 free(item);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3468 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3469 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3470 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3471
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3472
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3473 /**
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3474 * The offset might be zero, in which case we have no data, so return a pair of null pointers.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3475 * Or, the offset might end in 0xf, so it is an id2 pointer, in which case we read the id2 block.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3476 * Otherwise, the offset>>4 is an index into the table of offsets in the buffer.
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3477 */
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3478 int32_t _pst_getBlockOffsetPointer(pst_file *pf, pst_index2_ll *i2_head, unsigned char *buf, int32_t read_size, int32_t i_offset, int32_t offset, pst_block_offset_pointer *p) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3479 int32_t size;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3480 pst_block_offset block_offset;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3481 DEBUG_ENT("_pst_getBlockOffsetPointer");
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3482 if (p->needfree) free(p->from);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3483 p->from = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3484 p->needfree = 0;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3485 if (!offset) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3486 p->from = p->to = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3487 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3488 else if ((offset & 0xf) == 0xf) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3489 DEBUG_WARN(("Found id2 %#x value. Will follow it\n", offset));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3490 size = _pst_ff_getID2block(pf, offset, i2_head, &(p->from));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3491 if (size) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3492 p->to = p->from + size;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3493 p->needfree = 1;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3494 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3495 else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3496 p->from = p->to = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3497 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3498 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3499 else if (_pst_getBlockOffset(buf, read_size, i_offset, offset, &block_offset)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3500 p->from = p->to = NULL;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3501 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3502 else {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3503 p->from = buf + block_offset.from;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3504 p->to = buf + block_offset.to;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3505 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3506 DEBUG_RET();
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3507 return (p->from) ? 0 : 1;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3508 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3509
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3510
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3511 int32_t _pst_getBlockOffset(unsigned char *buf, int32_t read_size, int32_t i_offset, int32_t offset, pst_block_offset *p) {
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3512 int32_t low = offset & 0xf;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3513 int32_t of1 = offset >> 4;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3514 DEBUG_ENT("_pst_getBlockOffset");
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3515 if (!p || !buf || !i_offset || low || (i_offset+2+of1+sizeof(*p) > read_size)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3516 DEBUG_WARN(("p is NULL or buf is NULL or offset is 0 or offset has low bits or beyond read size (%p, %p, %#x, %i, %i)\n", p, buf, offset, read_size, i_offset));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3517 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3518 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3519 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3520 memcpy(&(p->from), &(buf[(i_offset+2)+of1]), sizeof(p->from));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3521 memcpy(&(p->to), &(buf[(i_offset+2)+of1+sizeof(p->from)]), sizeof(p->to));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3522 LE16_CPU(p->from);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3523 LE16_CPU(p->to);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3524 DEBUG_WARN(("get block offset finds from=%i(%#x), to=%i(%#x)\n", p->from, p->from, p->to, p->to));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3525 if (p->from > p->to) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3526 DEBUG_WARN(("get block offset from > to"));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3527 return -1;
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3528 }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3529 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3530 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3531 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3532
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3533
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3534 pst_index_ll* _pst_getID(pst_file* pf, u_int32_t id) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3535 pst_index_ll *ptr = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3536 DEBUG_ENT("_pst_getID");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3537 if (id == 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3538 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3539 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3540 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3541
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3542 //if (id & 1) DEBUG_INDEX(("have odd id bit %#x\n", id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3543 //if (id & 2) DEBUG_INDEX(("have two id bit %#x\n", id));
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3544 id &= 0xFFFFFFFE;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3545
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3546 DEBUG_INDEX(("Trying to find %#x\n", id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3547 if (!ptr) ptr = pf->i_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3548 while (ptr && (ptr->id != id)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3549 ptr = ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3550 }
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3551 if (ptr) {DEBUG_INDEX(("Found Value %#x\n", id)); }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3552 else {DEBUG_INDEX(("ERROR: Value %#x not found\n", id)); }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3553 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3554 return ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3555 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3556
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3557
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3558 pst_index_ll * _pst_getID2(pst_index2_ll *ptr, u_int32_t id) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3559 DEBUG_ENT("_pst_getID2");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3560 DEBUG_INDEX(("Head = %p\n", ptr));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3561 DEBUG_INDEX(("Trying to find %#x\n", id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3562 while (ptr && (ptr->id2 != id)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3563 ptr = ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3564 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3565 if (ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3566 if (ptr->id) {DEBUG_INDEX(("Found value %#x\n", ptr->id->id)); }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3567 else {DEBUG_INDEX(("Found value, though it is NULL!\n"));}
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3568 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3569 return ptr->id;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3570 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3571 DEBUG_INDEX(("ERROR Not Found\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3572 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3573 return NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3574 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3575
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3576
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3577 /**
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3578 * find the id in the descriptor tree rooted at pf->d_head
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3579 *
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3580 * @param pf global pst file pointer
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3581 * @param id the id we are looking for
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3582 *
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3583 * @return pointer to the pst_desc_ll node in the descriptor tree
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3584 */
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3585 pst_desc_ll* _pst_getDptr(pst_file *pf, u_int32_t id) {
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3586 pst_desc_ll *ptr = pf->d_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3587 DEBUG_ENT("_pst_getDptr");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3588 while (ptr && (ptr->id != id)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3589 if (ptr->child) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3590 ptr = ptr->child;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3591 continue;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3592 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3593 while (!ptr->next && ptr->parent) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3594 ptr = ptr->parent;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3595 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3596 ptr = ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3597 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3598 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3599 return ptr; // will be NULL or record we are looking for
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3600 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3601
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3602
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3603 int32_t _pst_printDptr(pst_file *pf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3604 pst_desc_ll *ptr = pf->d_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3605 int32_t depth = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3606 char spaces[100];
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3607 DEBUG_ENT("_pst_printDptr");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3608 memset(spaces, ' ', 99);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3609 spaces[99] = '\0';
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3610 while (ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3611 DEBUG_INDEX(("%s%#x [%i] desc=%#x, list=%#x\n", &(spaces[(99-depth<0?0:99-depth)]), ptr->id, ptr->no_child,
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3612 (ptr->desc==NULL?0:ptr->desc->id),
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3613 (ptr->list_index==NULL?0:ptr->list_index->id)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3614 if (ptr->child) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3615 depth++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3616 ptr = ptr->child;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3617 continue;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3618 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3619 while (!ptr->next && ptr->parent) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3620 depth--;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3621 ptr = ptr->parent;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3622 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3623 ptr = ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3624 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3625 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3626 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3627 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3628
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3629
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3630 int32_t _pst_printIDptr(pst_file* pf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3631 pst_index_ll *ptr = pf->i_head;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3632 DEBUG_ENT("_pst_printIDptr");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3633 while (ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3634 DEBUG_INDEX(("%#x offset=%#x size=%#x\n", ptr->id, ptr->offset, ptr->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3635 ptr = ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3636 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3637 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3638 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3639 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3640
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3641
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3642 int32_t _pst_printID2ptr(pst_index2_ll *ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3643 DEBUG_ENT("_pst_printID2ptr");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3644 while (ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3645 DEBUG_INDEX(("%#x id=%#x\n", ptr->id2, (ptr->id!=NULL?ptr->id->id:0)));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3646 ptr = ptr->next;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3647 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3648 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3649 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3650 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3651
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3652
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3653 size_t _pst_read_block(FILE *fp, int32_t offset, void **buf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3654 size_t size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3655 int32_t fpos;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3656 DEBUG_ENT("_pst_read_block");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3657 DEBUG_READ(("Reading block from %#x\n", offset));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3658 fpos = ftell(fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3659 fseek(fp, offset, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3660 fread(&size, sizeof(int16_t), 1, fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3661 fseek(fp, offset, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3662 DEBUG_READ(("Allocating %i bytes\n", size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3663 if (*buf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3664 DEBUG_READ(("Freeing old memory\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3665 free(*buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3666 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3667 *buf = (void*)xmalloc(size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3668 size = fread(*buf, 1, size, fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3669 fseek(fp, fpos, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3670 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3671 return size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3672 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3673
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3674
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3675 // when the first byte of the block being read is 01, then we can assume
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3676 // that it is a list of further ids to read and we will follow those ids
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3677 // recursively calling this function until we have all the data
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3678 // we could do decryption of the encrypted PST files here
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3679 size_t _pst_read_block_size(pst_file *pf, int32_t offset, size_t size, char ** buf, int32_t do_enc, unsigned char is_index) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3680 u_int32_t fpos, x;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3681 int16_t count, y;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3682 char *buf2 = NULL, *buf3 = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3683 unsigned char fdepth;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3684 pst_index_ll *ptr = NULL;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3685 size_t rsize, z;
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3686
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3687 DEBUG_ENT("_pst_read_block_size");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3688 DEBUG_READ(("Reading block from %#x, %i bytes\n", offset, size));
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3689
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3690 fpos = ftell(pf->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3691 fseek(pf->fp, offset, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3692 if (*buf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3693 DEBUG_READ(("Freeing old memory\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3694 free(*buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3695 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3696
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3697 *buf = (void*) xmalloc(size+1); //plus one so that we can NUL terminate it later
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3698 rsize = fread(*buf, 1, size, pf->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3699 if (rsize != size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3700 DEBUG_WARN(("Didn't read all that I could. fread returned less [%i instead of %i]\n", rsize, size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3701 if (feof(pf->fp)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3702 DEBUG_WARN(("We tried to read past the end of the file at [offset %#x, size %#x]\n", offset, size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3703 } else if (ferror(pf->fp)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3704 DEBUG_WARN(("Error is set on file stream.\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3705 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3706 DEBUG_WARN(("I can't tell why it failed\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3707 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3708 size = rsize;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3709 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3710
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3711 // DEBUG_HEXDUMP(*buf, size);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3712
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3713 /* if (is_index) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3714 DEBUG_READ(("_pst_read_block_size: ODD_BLOCK should be here\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3715 DEBUG_READ(("\t: byte 0-1: %#x %#x\n", (*buf)[0], (*buf)[1]));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3716 }*/
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3717
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3718 if ((*buf)[0] == 0x01 && (*buf)[1] != 0x00 && is_index) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3719 //don't do this recursion if we should be at a leaf node
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3720 memcpy(&count, &((*buf)[2]), sizeof(int16_t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3721 LE16_CPU(count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3722 memcpy(&fdepth, &((*buf)[1]), sizeof(fdepth));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3723 DEBUG_READ(("Seen indexes to blocks. Depth is %i\n", fdepth));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3724 // do fancy stuff! :)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3725 DEBUG_READ(("There are %i ids\n", count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3726 // if first 2 blocks are 01 01 then index to blocks
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3727 size = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3728 y = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3729 while (y < count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3730 memcpy(&x, &(*buf)[0x08+(y*4)], sizeof(int32_t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3731 LE32_CPU(x);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3732 if ((ptr = _pst_getID(pf, x)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3733 WARN(("Error. Cannot find ID [%#x] during multi-block read\n", x));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3734 buf3 = (char*) realloc(buf3, size+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3735 buf3[size] = '\0';
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3736 *buf = buf3;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3737 fseek(pf->fp, fpos, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3738 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3739 return size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3740 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3741 if ((z = _pst_read_block_size(pf, ptr->offset, ptr->size, &buf2, do_enc, fdepth-1)) < ptr->size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3742 buf3 = (char*) realloc(buf3, size+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3743 buf3[size] = '\0';
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3744 *buf = buf3;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3745 fseek(pf->fp, fpos, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3746 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3747 return size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3748 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3749 DEBUG_READ(("Melding newley retrieved block with bigger one. New size is %i\n", size+z));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3750 buf3 = (char*) realloc(buf3, size+z+1); //plus one so that we can null terminate it later
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3751 DEBUG_READ(("Doing copy. Start pos is %i, length is %i\n", size, z));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3752 memcpy(&(buf3[size]), buf2, z);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3753 size += z;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3754 y++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3755 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3756 free(*buf);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3757 if (buf2) free(buf2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3758 if (!buf3) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3759 // this can happen if count == 0. We should create an empty buffer so we don't
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3760 // confuse any clients
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3761 buf3 = (char*) xmalloc(1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3762 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3763 *buf = buf3;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3764 } else if (do_enc && pf->encryption)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3765 _pst_decrypt(*buf, size, pf->encryption);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3766
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3767 (*buf)[size] = '\0'; //should be byte after last one read
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3768 fseek(pf->fp, fpos, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3769 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3770 return size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3771 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3772
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3773
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3774 int32_t _pst_decrypt(unsigned char *buf, size_t size, int32_t type) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3775 size_t x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3776 unsigned char y;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3777 DEBUG_ENT("_pst_decrypt");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3778 if (!buf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3779 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3780 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3781 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3782
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3783 if (type == PST_COMP_ENCRYPT) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3784 x = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3785 while (x < size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3786 y = buf[x];
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3787 DEBUG_DECRYPT(("Transposing %#hhx to %#hhx [%#x]\n", buf[x], comp_enc[y], y));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3788 buf[x] = comp_enc[y]; // transpose from encrypt array
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3789 x++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3790 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3791 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3792 WARN(("Unknown encryption: %i. Cannot decrypt\n", type));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3793 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3794 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3795 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3796 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3797 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3798 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3799
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3800
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3801 int32_t _pst_getAtPos(FILE *fp, int32_t pos, void* buf, u_int32_t size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3802 DEBUG_ENT("_pst_getAtPos");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3803 if (fseek(fp, pos, SEEK_SET) == -1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3804 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3805 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3806 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3807
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3808 if (fread(buf, 1, size, fp) < size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3809 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3810 return 2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3811 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3812 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3813 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3814 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3815
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3816
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3817 int32_t _pst_get (FILE *fp, void *buf, u_int32_t size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3818 DEBUG_ENT("_pst_get");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3819 if (fread(buf, 1, size, fp) < size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3820 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3821 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3822 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3823 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3824 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3825 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3826
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3827
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3828 size_t _pst_ff_getIDblock_dec(pst_file *pf, u_int32_t id, unsigned char **b) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3829 size_t r;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3830 DEBUG_ENT("_pst_ff_getIDblock_dec");
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3831 DEBUG_INDEX(("for id %#x\n", id));
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3832 r = _pst_ff_getIDblock(pf, id, b);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3833 int noenc = (id & 2); // disable encryption
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3834 if ((pf->encryption) & !(noenc)) {
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3835 _pst_decrypt(*b, r, pf->encryption);
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3836 }
36
6fe121a971c9 valgrind fixes
carl
parents: 35
diff changeset
3837 DEBUG_HEXDUMPC(*b, r, 16);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3838 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3839 return r;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3840 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3841
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3842
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3843 size_t _pst_ff_getIDblock(pst_file *pf, u_int32_t id, unsigned char** b) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3844 pst_index_ll *rec;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3845 size_t rsize = 0;//, re_size=0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3846 DEBUG_ENT("_pst_ff_getIDblock");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3847 if ((rec = _pst_getID(pf, id)) == NULL) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3848 DEBUG_INDEX(("Cannot find ID %#x\n", id));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3849 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3850 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3851 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3852 fseek(pf->fp, rec->offset, SEEK_SET);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3853 if (*b) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3854 DEBUG_INDEX(("freeing old memory in b\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3855 free(*b);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3856 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3857
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3858 DEBUG_INDEX(("id = %#x, record size = %#x, offset = %#x\n", id, rec->size, rec->offset));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3859 *b = (char*) xmalloc(rec->size+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3860 rsize = fread(*b, 1, rec->size, pf->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3861 if (rsize != rec->size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3862 DEBUG_WARN(("Didn't read all the size. fread returned less [%i instead of %i]\n", rsize, rec->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3863 if (feof(pf->fp)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3864 DEBUG_WARN(("We tried to read past the end of the file [offset %#x, size %#x]\n", rec->offset, rec->size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3865 } else if (ferror(pf->fp)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3866 DEBUG_WARN(("Some error occured on the file stream\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3867 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3868 DEBUG_WARN(("No error has been set on the file stream\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3869 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3870 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3871 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3872 return rsize;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3873 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3874
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3875
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3876 #define PST_PTR_BLOCK_SIZE 0x120
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3877 size_t _pst_ff_getID2block(pst_file *pf, u_int32_t id2, pst_index2_ll *id2_head, unsigned char** buf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3878 pst_index_ll* ptr;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3879 // size_t ret;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3880 struct holder h = {buf, NULL, 0};
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3881 DEBUG_ENT("_pst_ff_getID2block");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3882 ptr = _pst_getID2(id2_head, id2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3883
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3884 if (!ptr) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3885 DEBUG_INDEX(("Cannot find id2 value %#x\n", id2));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3886 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3887 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3888 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3889 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3890 return _pst_ff_getID2data(pf, ptr, &h);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3891 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3892
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3893
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3894 size_t _pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, struct holder *h) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3895 // if the attachment begins with 01 01, <= 256 bytes, it is stored in the record
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3896 int32_t ret;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3897 unsigned char *b = NULL, *t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3898 DEBUG_ENT("_pst_ff_getID2data");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3899 if (!(ptr->id & 0x02)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3900 ret = _pst_ff_getIDblock_dec(pf, ptr->id, &b);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3901 if (h->buf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3902 *(h->buf) = b;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3903 } else if ((h->base64 == 1) && h->fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3904 t = base64_encode(b, ret);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3905 if (t) pst_fwrite(t, 1, strlen(t), h->fp);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3906 free(b);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3907 } else if (h->fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3908 pst_fwrite(b, 1, ret, h->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3909 free(b);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3910 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3911 //if ((*buf)[0] == 0x1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3912 // DEBUG_WARN(("WARNING: buffer starts with 0x1, but I didn't expect it to!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3913 //}
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3914 } else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3915 // here we will assume it is a block that points to others
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3916 DEBUG_READ(("Assuming it is a multi-block record because of it's id\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3917 ret = _pst_ff_compile_ID(pf, ptr->id, h, 0);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3918 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3919 if (h->buf && *h->buf)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3920 (*(h->buf))[ret]='\0';
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3921 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3922 return ret;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3923 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3924
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3925
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3926 size_t _pst_ff_compile_ID(pst_file *pf, u_int32_t id, struct holder *h, int32_t size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3927 size_t z, a;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3928 u_int16_t count, y;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3929 u_int32_t x, b;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3930 unsigned char * buf3 = NULL, *buf2 = NULL, *t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3931 unsigned char fdepth;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3932
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3933 DEBUG_ENT("_pst_ff_compile_ID");
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3934 if ((a = _pst_ff_getIDblock(pf, id, &buf3))==0) {
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3935 if (buf3) free(buf3);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3936 return 0;
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3937 }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3938 if ((buf3[0] != 0x1)) { // if bit 8 is set) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3939 // if ((buf3)[0] != 0x1 && (buf3)[1] > 4) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3940 DEBUG_WARN(("WARNING: buffer doesn't start with 0x1, but I expected it to or doesn't have it's two-bit set!\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3941 DEBUG_WARN(("Treating as normal buffer\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3942 if (pf->encryption) _pst_decrypt(buf3, a, pf->encryption);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3943 if (h->buf)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3944 *(h->buf) = buf3;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3945 else if (h->base64 == 1 && h->fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3946 t = base64_encode(buf3, a);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3947 if (t) pst_fwrite(t, 1, strlen(t), h->fp);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3948 free(buf3);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3949 } else if (h->fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3950 pst_fwrite(buf3, 1, a, h->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3951 free(buf3);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3952 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3953 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3954 return a;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3955 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3956 memcpy (&count, &(buf3[2]), sizeof(int16_t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3957 LE16_CPU(count);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3958 memcpy (&fdepth, &(buf3[1]), sizeof(char));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3959 DEBUG_READ(("Seen index to blocks. Depth is %i\n", fdepth));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3960 DEBUG_READ(("There are %i ids here\n", count));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3961
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3962 y = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3963 while (y < count) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3964 memcpy(&x, &buf3[0x08+(y*4)], sizeof(int32_t));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3965 LE32_CPU(x);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3966 if (fdepth == 0x1) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3967 if ((z = _pst_ff_getIDblock(pf, x, &buf2)) == 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3968 DEBUG_WARN(("call to getIDblock returned zero %i\n", z));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3969 if (buf2) free(buf2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3970 free(buf3);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3971 return z;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3972 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3973 if (pf->encryption) _pst_decrypt(buf2, z, pf->encryption);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3974 if (h->buf) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3975 *(h->buf) = realloc(*(h->buf), size+z+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3976 DEBUG_READ(("appending read data of size %i onto main buffer from pos %i\n", z, size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3977 memcpy(&((*(h->buf))[size]), buf2, z);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3978 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3979 else if ((h->base64 == 1) && h->fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3980 // include any byte left over from the last one encoding
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3981 buf2 = (char*)realloc(buf2, z+h->base64_extra);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3982 memmove(buf2+h->base64_extra, buf2, z);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3983 memcpy(buf2, h->base64_extra_chars, h->base64_extra);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3984 z+= h->base64_extra;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3985
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3986 b = z % 3; // find out how many bytes will be left over after the encoding.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3987 // and save them
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3988 memcpy(h->base64_extra_chars, &(buf2[z-b]), b);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3989 h->base64_extra = b;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3990 t = base64_encode(buf2, z-b);
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 28
diff changeset
3991 if (t) pst_fwrite(t, 1, strlen(t), h->fp);
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3992 DEBUG_READ(("writing %i bytes to file as base64 [%i]. Currently %i\n",
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3993 z, strlen(t), size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3994 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3995 else if (h->fp) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3996 DEBUG_READ(("writing %i bytes to file. Currently %i\n", z, size));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3997 pst_fwrite(buf2, 1, z, h->fp);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3998 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3999 size += z;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4000 y++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4001 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4002 else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4003 if ((z = _pst_ff_compile_ID(pf, x, h, size)) == 0) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4004 DEBUG_WARN(("recursive called returned zero %i\n", z));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4005 free(buf3);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4006 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4007 return z;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4008 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4009 size = z;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4010 y++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4011 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4012 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4013 free(buf3);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4014 if (buf2) free(buf2);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4015 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4016 return size;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4017 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4018
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4019
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4020 #ifdef _MSC_VER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4021 char * fileTimeToAscii(const FILETIME* filetime) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4022 time_t t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4023 DEBUG_ENT("fileTimeToAscii");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4024 t = fileTimeToUnixTime(filetime, 0);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4025 if (t == -1)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4026 DEBUG_WARN(("ERROR time_t varible that was produced, is -1\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4027 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4028 return ctime(&t);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4029 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4030
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4031
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4032 time_t fileTimeToUnixTime(const FILETIME* filetime, DWORD *x) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4033 SYSTEMTIME s;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4034 struct tm t;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4035 DEBUG_ENT("fileTimeToUnixTime");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4036 memset (&t, 0, sizeof(struct tm));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4037 FileTimeToSystemTime(filetime, &s);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4038 t.tm_year = s.wYear-1900; // this is what is required
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4039 t.tm_mon = s.wMonth-1; // also required! It made me a bit confused
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4040 t.tm_mday = s.wDay;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4041 t.tm_hour = s.wHour;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4042 t.tm_min = s.wMinute;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4043 t.tm_sec = s.wSecond;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4044 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4045 return mktime(&t);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4046 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4047
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4048
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4049 struct tm * fileTimeToStructTM (const FILETIME *filetime) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4050 time_t t1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4051 t1 = fileTimeToUnixTime(filetime, 0);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4052 return gmtime(&t1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4053 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4054
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4055
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4056 #endif //_MSC_VER
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4057
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4058 int32_t pst_stricmp(char *a, char *b) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4059 // compare strings case-insensitive.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4060 // returns -1 if a < b, 0 if a==b, 1 if a > b
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4061 while(*a != '\0' && *b != '\0' && toupper(*a)==toupper(*b)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4062 a++; b++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4063 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4064 if (toupper(*a) == toupper(*b))
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4065 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4066 else if (toupper(*a) < toupper(*b))
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4067 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4068 else
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4069 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4070 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4071
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4072
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4073 int32_t pst_strincmp(char *a, char *b, int32_t x) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4074 // compare upto x chars in string a and b case-insensitively
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4075 // returns -1 if a < b, 0 if a==b, 1 if a > b
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4076 int32_t y = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4077 while (*a != '\0' && *b != '\0' && y < x && toupper(*a)==toupper(*b)) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4078 a++; b++; y++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4079 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4080 // if we have reached the end of either string, or a and b still match
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4081 if (*a == '\0' || *b == '\0' || toupper(*a)==toupper(*b))
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4082 return 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4083 else if (toupper(*a) < toupper(*b))
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4084 return -1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4085 else
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4086 return 1;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4087 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4088
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4089
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4090 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4091 size_t r;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4092 DEBUG_ENT("pst_fwrite");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4093 if (ptr)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4094 r = fwrite(ptr, size, nmemb, stream);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4095 else {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4096 r = 0;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4097 DEBUG_WARN(("An attempt to write a NULL Pointer was made\n"));
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4098 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4099 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4100 return r;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4101 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4102
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4103
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4104 char * _pst_wide_to_single(char *wt, int32_t size) {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4105 // returns the first byte of each wide char. the size is the number of bytes in source
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4106 char *x, *y;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4107 DEBUG_ENT("_pst_wide_to_single");
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4108 x = xmalloc((size/2)+1);
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4109 y = x;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4110 while (size != 0 && *wt != '\0') {
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4111 *y = *wt;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4112 wt+=2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4113 size -= 2;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4114 y++;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4115 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4116 *y = '\0';
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4117 DEBUG_RET();
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4118 return x;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4119 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4120