Debugged and cleaned up the time-related queries.
[mymail.git] / mymail.c
1
2 /*
3  *  Copyright (c) 2013 Francois Fleuret
4  *  Written by Francois Fleuret <francois@fleuret.org>
5  *
6  *  This file is part of mymail.
7  *
8  *  mymail is free software: you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License version 3 as
10  *  published by the Free Software Foundation.
11  *
12  *  mymail is distributed in the hope that it will be useful, but
13  *  WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *  General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with mymail.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 /*
23
24   This command is a dumb mail indexer. It can either (1) scan
25   directories containing mbox files, and create a db file containing
26   for each mail a list of fields computed from the header, or (2)
27   read such a db file and get all the mails matching regexp-defined
28   conditions on the fields, to create a resulting mbox file.
29
30   It is low-tech, simple, light and fast.
31
32 */
33
34 #define _GNU_SOURCE
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <locale.h>
42 #include <getopt.h>
43 #include <limits.h>
44 #include <dirent.h>
45 #include <regex.h>
46 #include <time.h>
47
48 #define MYMAIL_DB_MAGIC_TOKEN "mymail_index_file"
49 #define VERSION "0.9.2"
50
51 #define MAX_NB_SEARCH_CONDITIONS 32
52
53 #define BUFFER_SIZE 65536
54 #define TOKEN_BUFFER_SIZE 1024
55
56 #define LEADING_FROM_LINE_REGEXP_STRING "^From [^ ]*  \\(Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\) \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\) [ 123][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9][0-9][0-9][0-9]\n$"
57
58 regex_t leading_from_line_regexp;
59
60 /* Global variables! */
61
62 int paranoid;
63 int quiet;
64 int ignore_dot_files;
65
66 /********************************************************************/
67
68 enum {
69   ID_MAIL = 0,
70   ID_LEADING_LINE,
71   ID_FROM,
72   ID_TO,
73   ID_SUBJECT,
74   ID_DATE,
75   ID_PARTICIPANT,
76   ID_BODY,
77   ID_INTERVAL,
78   MAX_ID
79 };
80
81 static char *field_names[] = {
82   "mail",
83   "lead",
84   "from",
85   "to",
86   "subject",
87   "date",
88   "part",
89   "body",
90   "interval"
91 };
92
93 /********************************************************************/
94
95 struct search_condition {
96   int field_id;
97   int negation;
98   regex_t regexp;
99   time_t interval_start, interval_stop;
100 };
101
102 /********************************************************************/
103
104 struct parsable_field {
105   int id;
106   int cflags;
107   char *regexp_string;
108   regex_t regexp;
109 };
110
111 static struct parsable_field fields_to_parse[] = {
112   {
113     ID_LEADING_LINE,
114     0,
115     "^From ",
116     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
117   },
118
119   {
120     ID_FROM,
121     REG_ICASE,
122     "^\\(from\\|reply-to\\|sender\\|return-path\\): ",
123     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
124   },
125
126   {
127     ID_TO,
128     REG_ICASE,
129     "^\\(to\\|cc\\|bcc\\): ",
130     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
131   },
132
133   {
134     ID_SUBJECT,
135     REG_ICASE,
136     "^subject: ",
137     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
138   },
139
140   {
141     ID_DATE,
142     REG_ICASE,
143     "^date: ",
144     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
145   },
146
147 };
148
149 /********************************************************************/
150
151 int xor(int a, int b) {
152   return (a && !b) || (!a && b);
153 }
154
155 const char *parse_token(char *token_buffer, size_t token_buffer_size,
156                         char separator, const char *string) {
157   char *u = token_buffer;
158   while(u < token_buffer + token_buffer_size - 1 && *string &&
159         *string != separator) {
160     *(u++) = *(string++);
161   }
162   while(*string == separator) string++;
163   *u = '\0';
164   return string;
165 }
166
167 char *default_value(char *current_value,
168                     const char *env_variable,
169                     const char *hard_default_value) {
170   if(current_value) {
171     return current_value;
172   } else {
173     char *env_value = getenv(env_variable);
174     if(env_value) {
175       return strdup(env_value);
176     } else if(hard_default_value) {
177       return strdup(hard_default_value);
178     } else {
179       return 0;
180     }
181   }
182 }
183
184 FILE *safe_fopen(const char *path, const char *mode, const char *comment) {
185   FILE *result = fopen(path, mode);
186   /* printf("Opening '%s' with mode \"%s\"\n", path, mode); */
187   if(result) {
188     return result;
189   } else {
190     fprintf(stderr,
191             "mymail: Cannot open file '%s' (%s) with mode \"%s\".\n",
192             path, comment, mode);
193     exit(EXIT_FAILURE);
194   }
195 }
196
197 /*********************************************************************/
198
199 void print_version(FILE *out) {
200   fprintf(out, "mymail version %s (%s)\n", VERSION, UNAME);
201 }
202
203 void print_usage(FILE *out) {
204   print_version(out);
205   fprintf(out, "Written by Francois Fleuret <francois@fleuret.org>.\n");
206   fprintf(out, "\n");
207   fprintf(out, "Usage: mymail [options] [<mbox dir1> [<mbox dir2> ...]|<db file1> [<db file2> ...]]\n");
208   fprintf(out, "\n");
209   fprintf(out, " -h, --help\n");
210   fprintf(out, "         show this help\n");
211   fprintf(out, " -v, --version\n");
212   fprintf(out, "         print the version number\n");
213   fprintf(out, " -q, --quiet\n");
214   fprintf(out, "         do not print information during search\n");
215   fprintf(out, " -p <db filename pattern>, --db-pattern <db filename pattern>\n");
216   fprintf(out, "         set the db filename pattern for recursive search\n");
217   fprintf(out, " -r <db root path>, --db-root <db root path>\n");
218   fprintf(out, "         set the db root path for recursive search\n");
219   fprintf(out, " -l <db filename list>, --db-list <db filename list>\n");
220   fprintf(out, "         set the semicolon-separated list of db files for search\n");
221   fprintf(out, " -m <mbox filename pattern>, --mbox-pattern <mbox filename pattern>\n");
222   fprintf(out, "         set the mbox filename pattern for recursive search\n");
223   fprintf(out, " -s <search pattern>, --search <search pattern>\n");
224   fprintf(out, "         search for matching mails in the db file\n");
225   fprintf(out, " -d <db filename>, --db-file-generate <db filename>\n");
226   fprintf(out, "         set the db filename for indexing\n");
227   fprintf(out, " -i, --index\n");
228   fprintf(out, "         index mails\n");
229   fprintf(out, " -o <output filename>, --output <output filename>\n");
230   fprintf(out, "         set the result file, use stdout if unset\n");
231   fprintf(out, " -a <search field>, --default-search <search field>\n");
232   fprintf(out, "         set the default search field\n");
233 }
234
235 /*********************************************************************/
236
237 int ignore_entry(const char *name) {
238   return
239     strcmp(name, ".") == 0 ||
240     strcmp(name, "..") == 0 ||
241     (ignore_dot_files && name[0] == '.' && name[1] != '/');
242 }
243
244 int is_a_leading_from_line(char *mbox_line) {
245   return
246     strncmp(mbox_line, "From ", 5) == 0 &&
247     regexec(&leading_from_line_regexp, mbox_line, 0, 0, 0) == 0;
248 }
249
250 int mbox_line_match_search(struct search_condition *condition,
251                            int mbox_id, const char *mbox_value) {
252
253   if(condition->field_id == ID_INTERVAL) {
254     if(mbox_id == ID_LEADING_LINE) {
255       const char *c;
256       time_t t;
257       struct tm tm;
258
259       c = mbox_value;
260       while(*c && *c != ' ') c++; while(*c && *c == ' ') c++;
261       strptime(c, "%a %b %e %k:%M:%S %Y", &tm);
262       t = mktime(&tm);
263
264       return (t >= condition->interval_start &&
265               (condition->interval_stop == 0 ||
266                t <= condition->interval_stop));
267     } else {
268       return 0;
269     }
270   } else {
271     return
272       (
273
274        (condition->field_id == mbox_id)
275
276        ||
277
278        (condition->field_id == ID_PARTICIPANT && (mbox_id == ID_LEADING_LINE ||
279                                                   mbox_id == ID_FROM ||
280                                                   mbox_id == ID_TO))
281        ||
282
283        (condition->field_id == ID_FROM && mbox_id == ID_LEADING_LINE)
284
285        )
286
287       &&
288
289       regexec(&condition->regexp, mbox_value, 0, 0, 0) == 0;
290   }
291 }
292
293 void update_body_hits(char *mail_filename, int position_in_mail,
294                       int nb_search_conditions, struct search_condition *search_conditions,
295                       int nb_body_conditions,
296                       int *hits) {
297   FILE *mail_file;
298   int header, n;
299   char raw_mbox_line[BUFFER_SIZE];
300   int nb_body_hits;
301
302   nb_body_hits = 0;
303
304   header = 1;
305   mail_file = safe_fopen(mail_filename, "r", "mbox for body scan");
306
307   fseek(mail_file, position_in_mail, SEEK_SET);
308
309   if(fgets(raw_mbox_line, BUFFER_SIZE, mail_file)) {
310     while(nb_body_hits < nb_body_conditions) {
311       /* last_mbox_line_was_empty = (raw_mbox_line[0] == '\n'); */
312       /* if(last_mbox_line_was_empty) { header = 0; } */
313
314       if(raw_mbox_line[0] == '\n') { header = 0; }
315
316       if(!header) {
317         for(n = 0; n < nb_search_conditions; n++) {
318           if(search_conditions[n].field_id == ID_BODY && !hits[n]) {
319             hits[n] =
320               (regexec(&search_conditions[n].regexp, raw_mbox_line, 0, 0, 0) == 0);
321             if(hits[n]) {
322               nb_body_hits++;
323             }
324           }
325         }
326       }
327
328       if(!fgets(raw_mbox_line, BUFFER_SIZE, mail_file) ||
329          (is_a_leading_from_line(raw_mbox_line)))
330         break;
331     }
332   }
333
334   fclose(mail_file);
335 }
336
337 void extract_mail(const char *mail_filename, unsigned long int position_in_mail,
338                 FILE *output_file) {
339   char raw_mbox_line[BUFFER_SIZE];
340   FILE *mail_file;
341
342   mail_file = safe_fopen(mail_filename, "r", "mbox for mail extraction");
343   fseek(mail_file, position_in_mail, SEEK_SET);
344
345   if(fgets(raw_mbox_line, BUFFER_SIZE, mail_file)) {
346     fprintf(output_file, "%s", raw_mbox_line);
347     while(1) {
348       if(!fgets(raw_mbox_line, BUFFER_SIZE, mail_file) ||
349          (is_a_leading_from_line(raw_mbox_line))
350          )
351         break;
352       fprintf(output_file, "%s", raw_mbox_line);
353     }
354   }
355
356   fclose(mail_file);
357 }
358
359 int search_in_db(const char *db_filename,
360                  int nb_search_conditions,
361                  struct search_condition *search_conditions,
362                  FILE *output_file) {
363
364   int hits[MAX_NB_SEARCH_CONDITIONS];
365   char raw_db_line[BUFFER_SIZE];
366   char current_mail_filename[PATH_MAX + 1];
367   unsigned long int current_position_in_mail;
368   char mbox_name[TOKEN_BUFFER_SIZE];
369   const char *mbox_value;
370   int mbox_id;
371   int already_written, m, n;
372   int nb_body_conditions, nb_fulfilled_body_conditions;
373   FILE *db_file;
374   int nb_extracted_mails;
375
376   nb_extracted_mails = 0;
377
378   if(!quiet) {
379     printf("Searching in '%s' ... ", db_filename);
380     fflush(stdout);
381   }
382
383   db_file = safe_fopen(db_filename, "r", "index file for search");
384
385   /* First, check the db file leading line integrity */
386
387   if(fgets(raw_db_line, BUFFER_SIZE, db_file)) {
388     if(strncmp(raw_db_line, MYMAIL_DB_MAGIC_TOKEN, strlen(MYMAIL_DB_MAGIC_TOKEN))) {
389       fprintf(stderr,
390               "mymail: Header line in '%s' does not match the mymail db format.\n",
391               db_filename);
392       exit(EXIT_FAILURE);
393     }
394   } else {
395     fprintf(stderr,
396             "mymail: Cannot read the header line in '%s'.\n",
397             db_filename);
398     exit(EXIT_FAILURE);
399   }
400
401   /* Then parse the said db file */
402
403   current_position_in_mail = 0;
404   already_written = 0;
405
406   for(n = 0; n < nb_search_conditions; n++) { hits[n] = 0; }
407
408   nb_body_conditions = 0;
409   for(n = 0; n < nb_search_conditions; n++) {
410     if(search_conditions[n].field_id == ID_BODY) {
411       nb_body_conditions++;
412     }
413   }
414
415   strcpy(current_mail_filename, "");
416
417   while(fgets(raw_db_line, BUFFER_SIZE, db_file)) {
418     mbox_value = parse_token(mbox_name, TOKEN_BUFFER_SIZE, ' ', raw_db_line);
419
420     if(strcmp("mail", mbox_name) == 0) {
421       char position_in_file_string[TOKEN_BUFFER_SIZE];
422
423       if(current_mail_filename[0]) {
424
425         /* We first check all conditions but the body ones */
426
427         for(n = 0; n < nb_search_conditions &&
428               ((search_conditions[n].field_id == ID_BODY) ||
429                xor(hits[n], search_conditions[n].negation)); n++);
430
431         if(n == nb_search_conditions) {
432
433           /* Now check the body ones */
434
435           if(nb_body_conditions > 0) {
436             update_body_hits(current_mail_filename, current_position_in_mail,
437                              nb_search_conditions, search_conditions,
438                              nb_body_conditions,
439                              hits);
440           }
441
442           nb_fulfilled_body_conditions = 0;
443
444           for(n = 0; n < nb_search_conditions; n++) {
445             if(search_conditions[n].field_id == ID_BODY &&
446                xor(hits[n], search_conditions[n].negation)) {
447               nb_fulfilled_body_conditions++;
448             }
449           }
450
451           if(nb_body_conditions == nb_fulfilled_body_conditions) {
452             nb_extracted_mails++;
453             extract_mail(current_mail_filename, current_position_in_mail, output_file);
454           }
455         }
456       }
457
458       for(n = 0; n < nb_search_conditions; n++) { hits[n] = 0; }
459
460       mbox_value = parse_token(position_in_file_string, TOKEN_BUFFER_SIZE, ' ', mbox_value);
461       mbox_value = parse_token(current_mail_filename, TOKEN_BUFFER_SIZE, '\n', mbox_value);
462       current_position_in_mail = atol(position_in_file_string);
463       already_written = 0;
464     }
465
466     else {
467       mbox_id = -1;
468       for(m = 0; (m < MAX_ID) && mbox_id == -1; m++) {
469         if(strncmp(field_names[m], mbox_name, strlen(mbox_name)) == 0) {
470           mbox_id = m;
471         }
472       }
473       for(n = 0; n < nb_search_conditions; n++) {
474         hits[n] |= mbox_line_match_search(&search_conditions[n],
475                                           mbox_id, mbox_value);
476       }
477     }
478   }
479
480   fclose(db_file);
481
482   if(!quiet) {
483     printf("done.\n");
484     fflush(stdout);
485   }
486
487   return nb_extracted_mails;
488 }
489
490 int recursive_search_in_db(const char *entry_name, regex_t *db_filename_regexp,
491                            int nb_search_conditions,
492                            struct search_condition *search_conditions,
493                            FILE *output_file) {
494   DIR *dir;
495   struct dirent *dir_e;
496   struct stat sb;
497   char subname[PATH_MAX + 1];
498   int nb_extracted_mails = 0;
499
500   if(lstat(entry_name, &sb) != 0) {
501     fprintf(stderr,
502             "mymail: Cannot stat \"%s\": %s\n",
503             entry_name,
504             strerror(errno));
505     exit(EXIT_FAILURE);
506   }
507
508   /* printf("recursive_search_in_db %s\n", entry_name); */
509
510   dir = opendir(entry_name);
511
512   if(dir) {
513     while((dir_e = readdir(dir))) {
514       if(!ignore_entry(dir_e->d_name)) {
515         snprintf(subname, PATH_MAX, "%s/%s", entry_name, dir_e->d_name);
516         nb_extracted_mails += recursive_search_in_db(subname, db_filename_regexp,
517                                                      nb_search_conditions, search_conditions,
518                                                      output_file);
519       }
520     }
521     closedir(dir);
522   }
523
524   else {
525     const char *s = entry_name, *filename = entry_name;
526     while(*s) { if(*s == '/') { filename = s+1; } s++; }
527
528     if(regexec(db_filename_regexp, filename, 0, 0, 0) == 0) {
529       nb_extracted_mails +=
530         search_in_db(entry_name, nb_search_conditions, search_conditions, output_file);
531     }
532   }
533
534   return nb_extracted_mails;
535 }
536
537 /*********************************************************************/
538
539 void index_one_mbox_line(unsigned int nb_fields_to_parse,
540                          struct parsable_field *fields_to_parse,
541                          char *raw_mbox_line, FILE *db_file) {
542   regmatch_t matches;
543   unsigned int f;
544   for(f = 0; f < nb_fields_to_parse; f++) {
545     if(regexec(&fields_to_parse[f].regexp, raw_mbox_line, 1, &matches, 0) == 0) {
546       fprintf(db_file, "%s %s\n",
547               field_names[fields_to_parse[f].id],
548               raw_mbox_line + matches.rm_eo);
549     }
550   }
551 }
552
553 void index_mbox(const char *mbox_filename,
554                 int nb_fields_to_parse, struct parsable_field *fields_to_parse,
555                 FILE *db_file) {
556   char raw_mbox_line[BUFFER_SIZE], full_line[BUFFER_SIZE];
557   char *end_of_full_line;
558   FILE *file;
559   int in_header, new_header;
560   unsigned long int position_in_file;
561
562   file = safe_fopen(mbox_filename, "r", "mbox for indexing");
563
564   in_header = 0;
565   new_header = 0;
566
567   position_in_file = 0;
568   end_of_full_line = 0;
569   full_line[0] = '\0';
570
571   while(fgets(raw_mbox_line, BUFFER_SIZE, file)) {
572     if(is_a_leading_from_line(raw_mbox_line)) {
573       if(in_header) {
574         fprintf(stderr,
575                 "Got a ^\"From \" in the header in %s:%lu.\n",
576                 mbox_filename, position_in_file);
577         fprintf(stderr, "%s", raw_mbox_line);
578         if(paranoid) { exit(EXIT_FAILURE); }
579       }
580       in_header = 1;
581       new_header = 1;
582     } else if(raw_mbox_line[0] == '\n') {
583       if(in_header) { in_header = 0; }
584     }
585
586     if(in_header) {
587       if(new_header) {
588         fprintf(db_file, "mail %lu %s\n", position_in_file, mbox_filename);
589         new_header = 0;
590       }
591
592       if(raw_mbox_line[0] == ' ' || raw_mbox_line[0] == '\t') {
593         char *start = raw_mbox_line;
594         while(*start == ' ' || *start == '\t') start++;
595         *(end_of_full_line++) = ' ';
596         strcpy(end_of_full_line, start);
597         while(*end_of_full_line && *end_of_full_line != '\n') {
598           end_of_full_line++;
599         }
600         *end_of_full_line = '\0';
601       }
602
603       else {
604         /*
605           if(!((raw_mbox_line[0] >= 'a' && raw_mbox_line[0] <= 'z') ||
606           (raw_mbox_line[0] >= 'A' && raw_mbox_line[0] <= 'Z'))) {
607           fprintf(stderr,
608           "Header line syntax error %s:%lu.\n",
609           mbox_filename, position_in_file);
610           fprintf(stderr, "%s", raw_mbox_line);
611           }
612         */
613
614         if(full_line[0]) {
615           index_one_mbox_line(nb_fields_to_parse, fields_to_parse, full_line, db_file);
616         }
617
618         end_of_full_line = full_line;
619         strcpy(end_of_full_line, raw_mbox_line);
620         while(*end_of_full_line && *end_of_full_line != '\n') {
621           end_of_full_line++;
622         }
623         *end_of_full_line = '\0';
624       }
625
626     }
627
628     position_in_file += strlen(raw_mbox_line);
629   }
630
631   fclose(file);
632 }
633
634 void recursive_index_mbox(FILE *db_file,
635                           const char *entry_name, regex_t *mbox_filename_regexp,
636                           int nb_fields_to_parse, struct parsable_field *fields_to_parse) {
637   DIR *dir;
638   struct dirent *dir_e;
639   struct stat sb;
640   char subname[PATH_MAX + 1];
641
642   if(lstat(entry_name, &sb) != 0) {
643     fprintf(stderr,
644             "mymail: Cannot stat \"%s\": %s\n",
645             entry_name,
646             strerror(errno));
647     exit(EXIT_FAILURE);
648   }
649
650   dir = opendir(entry_name);
651
652   if(dir) {
653     while((dir_e = readdir(dir))) {
654       if(!ignore_entry(dir_e->d_name)) {
655         snprintf(subname, PATH_MAX, "%s/%s", entry_name, dir_e->d_name);
656         recursive_index_mbox(db_file, subname, mbox_filename_regexp,
657                              nb_fields_to_parse, fields_to_parse);
658       }
659     }
660     closedir(dir);
661   } else {
662     const char *s = entry_name, *filename = s;
663     while(*s) { if(*s == '/') { filename = s+1; }; s++; }
664     if(!mbox_filename_regexp || regexec(mbox_filename_regexp, filename, 0, 0, 0) == 0) {
665       index_mbox(entry_name, nb_fields_to_parse, fields_to_parse, db_file);
666     }
667   }
668 }
669
670 /*********************************************************************/
671
672 /* For long options that have no equivalent short option, use a
673    non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
674 enum {
675   OPT_BASH_MODE = CHAR_MAX + 1
676 };
677
678 static struct option long_options[] = {
679   { "help", no_argument, 0, 'h' },
680   { "version", no_argument, 0, 'v' },
681   { "quiet", no_argument, 0, 'q' },
682   { "db-file-generate", 1, 0, 'd' },
683   { "db-pattern", 1, 0, 'p' },
684   { "db-root", 1, 0, 'r' },
685   { "db-list", 1, 0, 'l' },
686   { "mbox-pattern", 1, 0, 'm' },
687   { "search", 1, 0, 's' },
688   { "index", 0, 0, 'i' },
689   { "output", 1, 0, 'o' },
690   { "default-search", 1, 0, 'a' },
691   { 0, 0, 0, 0 }
692 };
693
694 struct time_criterion {
695   char *label;
696   int start_hour, end_hour;
697   int past_week_day;
698 };
699
700 /*********************************************************************/
701
702 static struct time_criterion time_criteria[] = {
703
704   { "8h",         8,       -1, -1 },
705   { "today",     24,       -1, -1 },
706   { "24h",       24,       -1, -1 },
707   { "week",      24 *   7, -1, -1 },
708   { "month",     24 *  31, -1, -1 },
709   { "year",      24 * 365, -1, -1 },
710
711   { "yesterday", 48,       24, -1 },
712
713   { "monday",    -1,       -1,  1 },
714   { "tuesday",   -1,       -1,  2 },
715   { "wednesday", -1,       -1,  3 },
716   { "thursday",  -1,       -1,  4 },
717   { "friday",    -1,       -1,  5 },
718   { "saturday",  -1,       -1,  6 },
719   { "sunday",    -1,       -1,  7 },
720
721 };
722
723 /*********************************************************************/
724
725 time_t time_for_past_day(int day) {
726   time_t t;
727   struct tm *tm;
728   int delta_day;
729   t = time(0);
730   tm = localtime(&t);
731   delta_day = (7 + tm->tm_wday - day) % 7;
732   if(delta_day == 0) { delta_day = 7; }
733   return t - (delta_day * 3600 * 24 + tm->tm_sec + 60 * tm->tm_min + 3600 * tm->tm_hour);
734 }
735
736 void init_condition(struct search_condition *condition, const char *full_string,
737                     const char *default_search_field) {
738   char full_search_field[TOKEN_BUFFER_SIZE], *search_field;
739   unsigned int k, m;
740   const char *string;
741
742   string = parse_token(full_search_field, TOKEN_BUFFER_SIZE, ' ', full_string);
743   search_field = full_search_field;
744
745   if(search_field[0] == '!') {
746     search_field++;
747     condition->negation = 1;
748   } else {
749     condition->negation = 0;
750   }
751
752   condition->field_id = -1;
753
754   /* Recently */
755
756   for(k = 0; k < sizeof(time_criteria) / sizeof(struct time_criterion); k++) {
757     if(strcmp(time_criteria[k].label, search_field) == 0) {
758       condition->field_id = ID_INTERVAL;
759       if(time_criteria[k].past_week_day < 0) {
760         condition->interval_start = time(0) - 3600 * time_criteria[k].start_hour;
761         if(time_criteria[k].end_hour >= 0) {
762           condition->interval_stop = time(0) - 3600 * time_criteria[k].end_hour;
763         } else {
764           condition->interval_stop = 0;
765         }
766       } else {
767         condition->interval_start = time_for_past_day(time_criteria[k].past_week_day);
768         condition->interval_stop = condition->interval_start + 3600 * 24;
769       }
770       break;
771     }
772   }
773
774   if(condition->field_id == -1) {
775
776     /* No time condition matched, look for the search fields */
777
778     for(m = 0; (m < MAX_ID) && condition->field_id == -1; m++) {
779       if(strncmp(field_names[m], search_field, strlen(search_field)) == 0) {
780         condition->field_id = m;
781       }
782     }
783
784     /* None match, if there is a default search field, re-run the search with it */
785
786     if(condition->field_id == -1) {
787       if(default_search_field) {
788         for(m = 0; (m < MAX_ID) && condition->field_id == -1; m++) {
789           if(strncmp(field_names[m],
790                      default_search_field, strlen(default_search_field)) == 0) {
791             condition->field_id = m;
792           }
793         }
794         string = full_string;
795       }
796     }
797
798     if(condition->field_id == -1) {
799       fprintf(stderr,
800               "mymail: Syntax error in field name \"%s\".\n",
801               search_field);
802       exit(EXIT_FAILURE);
803     }
804
805     if(regcomp(&condition->regexp,
806                string,
807                REG_ICASE)) {
808       fprintf(stderr,
809               "mymail: Syntax error in regexp \"%s\" for field \"%s\".\n",
810               string,
811               field_names[condition->field_id]);
812       exit(EXIT_FAILURE);
813     }
814   }
815 }
816
817 void free_condition(struct search_condition *condition) {
818   if(condition->field_id != ID_INTERVAL) {
819     regfree(&condition->regexp);
820   }
821 }
822
823 /*********************************************************************/
824 /*********************************************************************/
825 /*********************************************************************/
826
827 int main(int argc, char **argv) {
828   char *db_filename = 0;
829   char *db_filename_regexp_string = 0;
830   char *db_root_path = 0;
831   char *db_filename_list = 0;
832   char *mbox_filename_regexp_string = 0;
833   char *default_search_field;
834   char output_filename[PATH_MAX + 1];
835   int action_index = 0;
836   int error = 0, show_help = 0;
837   const unsigned int nb_fields_to_parse =
838     sizeof(fields_to_parse) / sizeof(struct parsable_field);
839   char c;
840   unsigned int f, n;
841   unsigned int nb_search_conditions;
842   struct search_condition search_conditions[MAX_NB_SEARCH_CONDITIONS];
843
844   if(regcomp(&leading_from_line_regexp, LEADING_FROM_LINE_REGEXP_STRING, 0)) {
845     fprintf(stderr,
846             "mymail: Cannot compile leading \"from\" line regexp. That is strange.\n");
847     exit(EXIT_FAILURE);
848   }
849
850   paranoid = 0;
851   quiet = 0;
852   default_search_field = 0;
853   ignore_dot_files = 1;
854   strncpy(output_filename, "", PATH_MAX);
855
856   setlocale(LC_ALL, "");
857
858   nb_search_conditions = 0;
859
860   while ((c = getopt_long(argc, argv, "hvqip:s:d:r:l:o:a:m:",
861                           long_options, NULL)) != -1) {
862
863     switch(c) {
864
865     case 'h':
866       show_help = 1;
867       break;
868
869     case 'v':
870       print_version(stdout);
871       break;
872
873     case 'q':
874       quiet = 1;
875       break;
876
877     case 'i':
878       action_index = 1;
879       break;
880
881     case 'd':
882       if(db_filename) {
883         fprintf(stderr, "mymail: Can not set the db filename twice.\n");
884         exit(EXIT_FAILURE);
885       }
886       db_filename = strdup(optarg);
887       break;
888
889     case 'p':
890       if(db_filename_regexp_string) {
891         fprintf(stderr, "mymail: Can not set the db filename pattern twice.\n");
892         exit(EXIT_FAILURE);
893       }
894       db_filename_regexp_string = strdup(optarg);
895       break;
896
897     case 'm':
898       if(mbox_filename_regexp_string) {
899         fprintf(stderr, "mymail: Can not set the mbox filename pattern twice.\n");
900         exit(EXIT_FAILURE);
901       }
902       mbox_filename_regexp_string = strdup(optarg);
903       break;
904
905     case 'o':
906       strncpy(output_filename, optarg, PATH_MAX);
907       break;
908
909     case 'r':
910       if(db_root_path) {
911         fprintf(stderr, "mymail: Can not set the db root path twice.\n");
912         exit(EXIT_FAILURE);
913       }
914       db_root_path = strdup(optarg);
915       break;
916
917     case 'l':
918       if(db_filename_list) {
919         fprintf(stderr, "mymail: Can not set the db filename list twice.\n");
920         exit(EXIT_FAILURE);
921       }
922       db_filename_list = strdup(optarg);
923       break;
924
925     case 's':
926       if(nb_search_conditions == MAX_NB_SEARCH_CONDITIONS) {
927         fprintf(stderr, "mymail: Too many search patterns.\n");
928         exit(EXIT_FAILURE);
929       }
930       init_condition(&search_conditions[nb_search_conditions], optarg, default_search_field);
931       nb_search_conditions++;
932       break;
933
934     case 'a':
935       default_search_field = optarg;
936       break;
937
938     default:
939       error = 1;
940       break;
941     }
942   }
943
944   /* Set all the values that may defined in the arguments, through
945      environment variables, or hard-coded */
946
947   db_filename = default_value(db_filename,
948                               "MYMAIL_DB_FILE",
949                               "mymail.db");
950
951   db_filename_regexp_string = default_value(db_filename_regexp_string,
952                                             "MYMAIL_DB_FILE",
953                                             "\\.db$");
954
955   db_root_path = default_value(db_root_path,
956                                "MYMAIL_DB_ROOT",
957                                0);
958
959   db_filename_list = default_value(db_filename_list,
960                                    "MYMAIL_DB_LIST",
961                                    0);
962
963   mbox_filename_regexp_string = default_value(mbox_filename_regexp_string,
964                                               "MYMAIL_MBOX_PATTERN",
965                                               0);
966
967   /* Start the processing */
968
969   if(error) {
970     print_usage(stderr);
971     exit(EXIT_FAILURE);
972   }
973
974   if(show_help) {
975     print_usage(stdout);
976     exit(EXIT_SUCCESS);
977   }
978
979   /* mbox indexing */
980
981   if(action_index) {
982     FILE *db_file;
983     regex_t mbox_filename_regexp_static;
984     regex_t *mbox_filename_regexp;
985
986     if(mbox_filename_regexp_string) {
987       if(regcomp(&mbox_filename_regexp_static,
988                  mbox_filename_regexp_string,
989                  0)) {
990         fprintf(stderr,
991                 "mymail: Syntax error in regexp \"%s\".\n",
992                 mbox_filename_regexp_string);
993         exit(EXIT_FAILURE);
994       }
995       mbox_filename_regexp = &mbox_filename_regexp_static;
996     } else {
997       mbox_filename_regexp = 0;
998     }
999
1000     db_file = safe_fopen(db_filename, "w", "index file for indexing");
1001
1002     for(f = 0; f < nb_fields_to_parse; f++) {
1003       if(regcomp(&fields_to_parse[f].regexp,
1004                  fields_to_parse[f].regexp_string,
1005                  fields_to_parse[f].cflags)) {
1006         fprintf(stderr,
1007                 "mymail: Syntax error in regexp \"%s\" for field \"%s\".\n",
1008                 fields_to_parse[f].regexp_string,
1009                 field_names[fields_to_parse[f].id]);
1010         exit(EXIT_FAILURE);
1011       }
1012     }
1013
1014     fprintf(db_file, "%s version_%s raw\n", MYMAIL_DB_MAGIC_TOKEN, VERSION);
1015
1016     while(optind < argc) {
1017       recursive_index_mbox(db_file,
1018                            argv[optind], mbox_filename_regexp,
1019                            nb_fields_to_parse, fields_to_parse);
1020       optind++;
1021     }
1022
1023     fflush(db_file);
1024     fclose(db_file);
1025
1026     if(mbox_filename_regexp) {
1027       regfree(mbox_filename_regexp);
1028     }
1029
1030     for(f = 0; f < nb_fields_to_parse; f++) {
1031       regfree(&fields_to_parse[f].regexp);
1032     }
1033   }
1034
1035   /* Mail search */
1036
1037   else {
1038
1039     FILE *output_file;
1040     int nb_extracted_mails = 0;
1041
1042     if(output_filename[0]) {
1043       output_file = safe_fopen(output_filename, "w", "result mbox");
1044     } else {
1045       output_file = stdout;
1046       quiet = 1;
1047     }
1048
1049     if(nb_search_conditions > 0) {
1050
1051       /* Recursive search if db_root_path is set */
1052
1053       if(db_root_path) {
1054         regex_t db_filename_regexp;
1055         if(regcomp(&db_filename_regexp,
1056                    db_filename_regexp_string,
1057                    0)) {
1058           fprintf(stderr,
1059                   "mymail: Syntax error in regexp \"%s\".\n",
1060                   db_filename_regexp_string);
1061           exit(EXIT_FAILURE);
1062         }
1063
1064         nb_extracted_mails += recursive_search_in_db(db_root_path, &db_filename_regexp,
1065                                                      nb_search_conditions, search_conditions,
1066                                                      output_file);
1067
1068         regfree(&db_filename_regexp);
1069       }
1070
1071       /* Search in all db files listed in db_filename_list */
1072
1073       if(db_filename_list) {
1074         char db_filename[PATH_MAX + 1];
1075         const char *s;
1076
1077         s = db_filename_list;
1078
1079         while(*s) {
1080           s = parse_token(db_filename, PATH_MAX + 1, ';', s);
1081
1082           if(db_filename[0]) {
1083             nb_extracted_mails +=
1084               search_in_db(db_filename, nb_search_conditions, search_conditions, output_file);
1085           }
1086         }
1087       }
1088
1089       /* Search in all db files listed in the command arguments */
1090
1091       while(optind < argc) {
1092         nb_extracted_mails +=
1093           search_in_db(argv[optind], nb_search_conditions, search_conditions, output_file);
1094         optind++;
1095       }
1096     }
1097
1098     if(!quiet) {
1099       if(nb_extracted_mails > 0) {
1100         printf("Found %d matching mails.\n", nb_extracted_mails);
1101       } else {
1102         printf("No matching mail found.\n");
1103       }
1104     }
1105
1106     fflush(output_file);
1107
1108     if(output_file != stdout) {
1109       fclose(output_file);
1110     }
1111   }
1112
1113   for(n = 0; n < nb_search_conditions; n++) {
1114     free_condition(&search_conditions[n]);
1115   }
1116
1117   free(db_filename);
1118   free(db_filename_regexp_string);
1119   free(db_root_path);
1120   free(db_filename_list);
1121   free(mbox_filename_regexp_string);
1122
1123   regfree(&leading_from_line_regexp);
1124
1125   exit(EXIT_SUCCESS);
1126 }