2 * Totally braindamaged mbox splitter program.
4 * It just splits a mbox into a list of files: "0001" "0002" ..
5 * so you can process them further from there.
10 #include <sys/types.h>
17 static const char git_mailsplit_usage
[] =
18 "git-mailsplit [-d<prec>] [-f<n>] [-b] -o<directory> <mbox>...";
20 static int is_from_line(const char *line
, int len
)
24 if (len
< 20 || memcmp("From ", line
, 5))
27 colon
= line
+ len
- 2;
36 if (!isdigit(colon
[-4]) ||
37 !isdigit(colon
[-2]) ||
38 !isdigit(colon
[-1]) ||
39 !isdigit(colon
[ 1]) ||
44 if (strtol(colon
+3, NULL
, 10) <= 90)
47 /* Ok, close enough */
51 /* Could be as small as 64, enough to hold a Unix "From " line. */
52 static char buf
[4096];
54 /* Called with the first line (potentially partial)
55 * already in buf[] -- normally that should begin with
56 * the Unix "From " line. Write it into the specified
59 static int split_one(FILE *mbox
, const char *name
, int allow_bare
)
62 int len
= strlen(buf
);
65 int is_bare
= !is_from_line(buf
, len
);
67 if (is_bare
&& !allow_bare
)
70 fd
= open(name
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
72 die("cannot open output file %s", name
);
73 output
= fdopen(fd
, "w");
75 /* Copy it out, while searching for a line that begins with
76 * "From " and having something that looks like a date format.
79 int is_partial
= (buf
[len
-1] != '\n');
81 if (fputs(buf
, output
) == EOF
)
82 die("cannot write output");
84 if (fgets(buf
, sizeof(buf
), mbox
) == NULL
) {
89 die("cannot read mbox");
92 if (!is_partial
&& !is_bare
&& is_from_line(buf
, len
))
93 break; /* done with one message */
102 fprintf(stderr
, "corrupt mailbox\n");
106 int split_mbox(const char **mbox
, const char *dir
, int allow_bare
, int nr_prec
, int skip
)
108 char *name
= xmalloc(strlen(dir
) + 2 + 3 * sizeof(skip
));
112 const char *file
= *mbox
++;
113 FILE *f
= !strcmp(file
, "-") ? stdin
: fopen(file
, "r");
117 error("cannot open mbox %s", file
);
121 if (fgets(buf
, sizeof(buf
), f
) == NULL
) {
123 break; /* empty stdin is OK */
124 error("cannot read mbox %s", file
);
129 sprintf(name
, "%s/%0*d", dir
, nr_prec
, ++skip
);
130 file_done
= split_one(f
, name
, allow_bare
);
141 int cmd_mailsplit(int argc
, const char **argv
, char **envp
)
143 int nr
= 0, nr_prec
= 4, ret
;
145 const char *dir
= NULL
;
147 static const char *stdin_only
[] = { "-", NULL
};
149 for (argp
= argv
+1; *argp
; argp
++) {
150 const char *arg
= *argp
;
155 if ( arg
[1] == 'd' ) {
156 nr_prec
= strtol(arg
+2, NULL
, 10);
157 if (nr_prec
< 3 || 10 <= nr_prec
)
158 usage(git_mailsplit_usage
);
160 } else if ( arg
[1] == 'f' ) {
161 nr
= strtol(arg
+2, NULL
, 10);
162 } else if ( arg
[1] == 'b' && !arg
[2] ) {
164 } else if ( arg
[1] == 'o' && arg
[2] ) {
166 } else if ( arg
[1] == '-' && !arg
[2] ) {
167 argp
++; /* -- marks end of options */
170 die("unknown option: %s", arg
);
175 /* Backwards compatibility: if no -o specified, accept
176 <mbox> <dir> or just <dir> */
177 switch (argc
- (argp
-argv
)) {
183 stdin_only
[0] = argp
[0];
188 usage(git_mailsplit_usage
);
191 /* New usage: if no more argument, parse stdin */
196 ret
= split_mbox(argp
, dir
, allow_bare
, nr_prec
, nr
);