Mercurial > libpst
annotate src/lspst.c @ 198:7c60d6d1c681
decode more recurrence mapi elements
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 12 May 2009 19:34:49 -0700 |
parents | 320cfcba8058 |
children | e3a46f66332b |
rev | line source |
---|---|
16 | 1 /*** |
2 * lspst.c | |
3 * Part of the LibPST project | |
4 * Author: Joe Nahmias <joe@nahmias.net> | |
5 * Based on readpst.c by by David Smith <dave.s@earthcorp.com> | |
6 * | |
7 */ | |
8 | |
122
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
9 #include "define.h" |
bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents:
120
diff
changeset
|
10 |
16 | 11 struct file_ll { |
43 | 12 char *dname; |
13 int32_t stored_count; | |
167
40e9de445038
improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents:
164
diff
changeset
|
14 int32_t item_count; |
43 | 15 int32_t skip_count; |
16 int32_t type; | |
16 | 17 }; |
43 | 18 |
19 | |
16 | 20 void canonicalize_filename(char *fname); |
21 void debug_print(char *fmt, ...); | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
22 void usage(char *prog_name); |
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
23 void version(); |
43 | 24 |
25 // global settings | |
26 pst_file pstfile; | |
27 | |
16 | 28 |
43 | 29 void create_enter_dir(struct file_ll* f, pst_item *item) |
30 { | |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
31 pst_convert_utf8(item, &item->file_as); |
167
40e9de445038
improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents:
164
diff
changeset
|
32 f->item_count = 0; |
43 | 33 f->skip_count = 0; |
34 f->type = item->type; | |
167
40e9de445038
improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents:
164
diff
changeset
|
35 f->stored_count = (item->folder) ? item->folder->item_count : 0; |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
167
diff
changeset
|
36 f->dname = strdup(item->file_as.str); |
43 | 37 } |
16 | 38 |
39 | |
43 | 40 void close_enter_dir(struct file_ll *f) |
41 { | |
42 free(f->dname); | |
43 } | |
16 | 44 |
45 | |
186
0a4f7ecd7452
more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents:
172
diff
changeset
|
46 void process(pst_item *outeritem, pst_desc_tree *d_ptr) |
43 | 47 { |
48 struct file_ll ff; | |
49 pst_item *item = NULL; | |
50 | |
51 DEBUG_ENT("process"); | |
52 memset(&ff, 0, sizeof(ff)); | |
53 create_enter_dir(&ff, outeritem); | |
16 | 54 |
43 | 55 while (d_ptr) { |
56 if (!d_ptr->desc) { | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
57 DEBUG_WARN(("main: ERROR item's desc record is NULL\n")); |
43 | 58 ff.skip_count++; |
59 } | |
60 else { | |
164
ab384fed78c5
Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents:
154
diff
changeset
|
61 DEBUG_MAIN(("main: Desc Email ID %"PRIx64" [d_ptr->d_id = %"PRIx64"]\n", d_ptr->desc->i_id, d_ptr->d_id)); |
16 | 62 |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
63 item = pst_parse_item(&pstfile, d_ptr, NULL); |
43 | 64 DEBUG_MAIN(("main: About to process item @ %p.\n", item)); |
65 if (item) { | |
66 if (item->message_store) { | |
67 // there should only be one message_store, and we have already done it | |
68 DIE(("main: A second message_store has been found. Sorry, this must be an error.\n")); | |
69 } | |
16 | 70 |
43 | 71 if (item->folder && d_ptr->child) { |
72 // if this is a folder, we want to recurse into it | |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
73 pst_convert_utf8(item, &item->file_as); |
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
74 printf("Folder \"%s\"\n", item->file_as.str); |
43 | 75 process(item, d_ptr->child); |
16 | 76 |
43 | 77 } else if (item->contact && (item->type == PST_TYPE_CONTACT)) { |
198
7c60d6d1c681
decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents:
195
diff
changeset
|
78 if (!ff.type) ff.type = item->type; |
43 | 79 // Process Contact item |
80 if (ff.type != PST_TYPE_CONTACT) { | |
81 DEBUG_MAIN(("main: I have a contact, but the folder isn't a contacts folder. Processing anyway\n")); | |
82 } | |
83 printf("Contact"); | |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
84 if (item->contact->fullname.str) |
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
85 printf("\t%s", pst_rfc2426_escape(item->contact->fullname.str)); |
43 | 86 printf("\n"); |
16 | 87 |
198
7c60d6d1c681
decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents:
195
diff
changeset
|
88 } else if (item->email && ((item->type == PST_TYPE_NOTE) || (item->type == PST_TYPE_SCHEDULE) || (item->type == PST_TYPE_REPORT))) { |
7c60d6d1c681
decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents:
195
diff
changeset
|
89 if (!ff.type) ff.type = item->type; |
43 | 90 // Process Email item |
198
7c60d6d1c681
decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents:
195
diff
changeset
|
91 if ((ff.type != PST_TYPE_NOTE) && (ff.type != PST_TYPE_SCHEDULE) && (ff.type != PST_TYPE_REPORT)) { |
43 | 92 DEBUG_MAIN(("main: I have an email, but the folder isn't an email folder. Processing anyway\n")); |
93 } | |
94 printf("Email"); | |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
95 if (item->email->outlook_sender_name.str) |
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
96 printf("\tFrom: %s", item->email->outlook_sender_name.str); |
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
97 if (item->subject.str) |
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
98 printf("\tSubject: %s", item->subject.str); |
43 | 99 printf("\n"); |
16 | 100 |
43 | 101 } else if (item->journal && (item->type == PST_TYPE_JOURNAL)) { |
198
7c60d6d1c681
decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents:
195
diff
changeset
|
102 if (!ff.type) ff.type = item->type; |
43 | 103 // Process Journal item |
104 if (ff.type != PST_TYPE_JOURNAL) { | |
105 DEBUG_MAIN(("main: I have a journal entry, but folder isn't specified as a journal type. Processing...\n")); | |
106 } | |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
107 if (item->subject.str) |
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
108 printf("Journal\t%s\n", pst_rfc2426_escape(item->subject.str)); |
16 | 109 |
43 | 110 } else if (item->appointment && (item->type == PST_TYPE_APPOINTMENT)) { |
198
7c60d6d1c681
decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents:
195
diff
changeset
|
111 if (!ff.type) ff.type = item->type; |
43 | 112 // Process Calendar Appointment item |
113 DEBUG_MAIN(("main: Processing Appointment Entry\n")); | |
114 if (ff.type != PST_TYPE_APPOINTMENT) { | |
115 DEBUG_MAIN(("main: I have an appointment, but folder isn't specified as an appointment type. Processing...\n")); | |
116 } | |
117 printf("Appointment"); | |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
118 if (item->subject.str) |
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
119 printf("\tSUMMARY: %s", pst_rfc2426_escape(item->subject.str)); |
50 | 120 if (item->appointment->start) |
121 printf("\tSTART: %s", pst_rfc2445_datetime_format(item->appointment->start)); | |
122 if (item->appointment->end) | |
123 printf("\tEND: %s", pst_rfc2445_datetime_format(item->appointment->end)); | |
124 printf("\tALL DAY: %s", (item->appointment->all_day==1 ? "Yes" : "No")); | |
43 | 125 printf("\n"); |
16 | 126 |
43 | 127 } else { |
128 ff.skip_count++; | |
129 DEBUG_MAIN(("main: Unknown item type. %i. Ascii1=\"%s\"\n", | |
130 item->type, item->ascii_type)); | |
131 } | |
46 | 132 pst_freeItem(item); |
43 | 133 } else { |
134 ff.skip_count++; | |
135 DEBUG_MAIN(("main: A NULL item was seen\n")); | |
136 } | |
137 d_ptr = d_ptr->next; | |
138 } | |
139 } | |
140 close_enter_dir(&ff); | |
52 | 141 DEBUG_RET(); |
43 | 142 } |
16 | 143 |
43 | 144 |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
145 void usage(char *prog_name) { |
50 | 146 DEBUG_ENT("usage"); |
147 version(); | |
148 printf("Usage: %s [OPTIONS] {PST FILENAME}\n", prog_name); | |
149 printf("OPTIONS:\n"); | |
150 printf("\t-d <filename> \t- Debug to file. This is a binary log. Use readlog to print it\n"); | |
151 printf("\t-h\t- Help. This screen\n"); | |
152 printf("\t-V\t- Version. Display program version\n"); | |
153 DEBUG_RET(); | |
154 } | |
155 | |
156 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
157 void version() { |
50 | 158 DEBUG_ENT("version"); |
159 printf("lspst / LibPST v%s\n", VERSION); | |
160 #if BYTE_ORDER == BIG_ENDIAN | |
161 printf("Big Endian implementation being used.\n"); | |
162 #elif BYTE_ORDER == LITTLE_ENDIAN | |
163 printf("Little Endian implementation being used.\n"); | |
164 #else | |
165 # error "Byte order not supported by this library" | |
166 #endif | |
167 #ifdef __GNUC__ | |
168 printf("GCC %d.%d : %s %s\n", __GNUC__, __GNUC_MINOR__, __DATE__, __TIME__); | |
169 #endif | |
170 DEBUG_RET(); | |
171 } | |
172 | |
173 | |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
174 int main(int argc, char* const* argv) { |
43 | 175 pst_item *item = NULL; |
186
0a4f7ecd7452
more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents:
172
diff
changeset
|
176 pst_desc_tree *d_ptr; |
43 | 177 char *temp = NULL; //temporary char pointer |
50 | 178 int c; |
43 | 179 char *d_log = NULL; |
16 | 180 |
50 | 181 while ((c = getopt(argc, argv, "d:hV"))!= -1) { |
182 switch (c) { | |
183 case 'd': | |
184 d_log = optarg; | |
185 break; | |
186 case 'h': | |
187 usage(argv[0]); | |
188 exit(0); | |
189 break; | |
190 case 'V': | |
191 version(); | |
192 exit(0); | |
193 break; | |
194 default: | |
195 usage(argv[0]); | |
196 exit(1); | |
197 break; | |
198 } | |
199 } | |
43 | 200 |
48 | 201 #ifdef DEBUG_ALL |
202 // force a log file | |
203 if (!d_log) d_log = "lspst.log"; | |
204 #endif // defined DEBUG_ALL | |
43 | 205 DEBUG_INIT(d_log); |
206 DEBUG_REGISTER_CLOSE(); | |
207 DEBUG_ENT("main"); | |
208 | |
50 | 209 if (argc <= optind) { |
210 usage(argv[0]); | |
211 exit(2); | |
212 } | |
213 | |
43 | 214 // Open PST file |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
215 if (pst_open(&pstfile, argv[optind])) DIE(("Error opening File\n")); |
16 | 216 |
43 | 217 // Load PST index |
218 if (pst_load_index(&pstfile)) DIE(("Index Error\n")); | |
219 | |
220 pst_load_extended_attributes(&pstfile); | |
16 | 221 |
43 | 222 d_ptr = pstfile.d_head; // first record is main record |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
223 item = pst_parse_item(&pstfile, d_ptr, NULL); |
43 | 224 if (!item || !item->message_store) { |
225 DEBUG_RET(); | |
226 DIE(("main: Could not get root record\n")); | |
227 } | |
16 | 228 |
43 | 229 // default the file_as to the same as the main filename if it doesn't exist |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
230 if (!item->file_as.str) { |
43 | 231 if (!(temp = strrchr(argv[1], '/'))) |
232 if (!(temp = strrchr(argv[1], '\\'))) | |
233 temp = argv[1]; | |
234 else | |
235 temp++; // get past the "\\" | |
236 else | |
237 temp++; // get past the "/" | |
172
6954d315aaa8
move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents:
167
diff
changeset
|
238 item->file_as.str = strdup(temp); |
151
cda7c812ec01
track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents:
150
diff
changeset
|
239 item->file_as.is_utf8 = 1; |
43 | 240 } |
16 | 241 |
43 | 242 d_ptr = pst_getTopOfFolders(&pstfile, item); |
243 if (!d_ptr) DIE(("Top of folders record not found. Cannot continue\n")); | |
16 | 244 |
43 | 245 process(item, d_ptr->child); // do the childred of TOPF |
46 | 246 pst_freeItem(item); |
43 | 247 pst_close(&pstfile); |
16 | 248 |
43 | 249 DEBUG_RET(); |
250 return 0; | |
16 | 251 } |
43 | 252 |
253 | |
254 // This function will make sure that a filename is in cannonical form. That | |
16 | 255 // is, it will replace any slashes, backslashes, or colons with underscores. |
256 void canonicalize_filename(char *fname) { | |
43 | 257 DEBUG_ENT("canonicalize_filename"); |
258 if (fname == NULL) { | |
259 DEBUG_RET(); | |
260 return; | |
261 } | |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
59
diff
changeset
|
262 while ((fname = strpbrk(fname, "/\\:"))) |
43 | 263 *fname = '_'; |
264 DEBUG_RET(); | |
16 | 265 } |
43 | 266 |
267 |