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.
11 static const char git_mailsplit_usage
[] =
12 "git-mailsplit [-d<prec>] [-f<n>] [-b] -o<directory> <mbox>|<Maildir>...";
14 static int is_from_line(const char *line
, int len
)
18 if (len
< 20 || memcmp("From ", line
, 5))
21 colon
= line
+ len
- 2;
30 if (!isdigit(colon
[-4]) ||
31 !isdigit(colon
[-2]) ||
32 !isdigit(colon
[-1]) ||
33 !isdigit(colon
[ 1]) ||
38 if (strtol(colon
+3, NULL
, 10) <= 90)
41 /* Ok, close enough */
45 /* Could be as small as 64, enough to hold a Unix "From " line. */
46 static char buf
[4096];
48 /* Called with the first line (potentially partial)
49 * already in buf[] -- normally that should begin with
50 * the Unix "From " line. Write it into the specified
53 static int split_one(FILE *mbox
, const char *name
, int allow_bare
)
56 int len
= strlen(buf
);
59 int is_bare
= !is_from_line(buf
, len
);
61 if (is_bare
&& !allow_bare
)
64 fd
= open(name
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
66 die("cannot open output file %s", name
);
67 output
= fdopen(fd
, "w");
69 /* Copy it out, while searching for a line that begins with
70 * "From " and having something that looks like a date format.
73 int is_partial
= (buf
[len
-1] != '\n');
75 if (fputs(buf
, output
) == EOF
)
76 die("cannot write output");
78 if (fgets(buf
, sizeof(buf
), mbox
) == NULL
) {
83 die("cannot read mbox");
86 if (!is_partial
&& !is_bare
&& is_from_line(buf
, len
))
87 break; /* done with one message */
96 fprintf(stderr
, "corrupt mailbox\n");
100 static int populate_maildir_list(struct path_list
*list
, const char *path
)
105 char *subs
[] = { "cur", "new", NULL
};
108 for (sub
= subs
; *sub
; ++sub
) {
109 snprintf(name
, sizeof(name
), "%s/%s", path
, *sub
);
110 if ((dir
= opendir(name
)) == NULL
) {
113 error("cannot opendir %s (%s)", name
, strerror(errno
));
117 while ((dent
= readdir(dir
)) != NULL
) {
118 if (dent
->d_name
[0] == '.')
120 snprintf(name
, sizeof(name
), "%s/%s", *sub
, dent
->d_name
);
121 path_list_insert(name
, list
);
130 static int split_maildir(const char *maildir
, const char *dir
,
131 int nr_prec
, int skip
)
137 struct path_list list
= {NULL
, 0, 0, 1};
139 if (populate_maildir_list(&list
, maildir
) < 0)
142 for (i
= 0; i
< list
.nr
; i
++) {
144 snprintf(file
, sizeof(file
), "%s/%s", maildir
, list
.items
[i
].path
);
145 f
= fopen(file
, "r");
147 error("cannot open mail %s (%s)", file
, strerror(errno
));
151 if (fgets(buf
, sizeof(buf
), f
) == NULL
) {
152 error("cannot read mail %s (%s)", file
, strerror(errno
));
156 sprintf(name
, "%s/%0*d", dir
, nr_prec
, ++skip
);
157 split_one(f
, name
, 1);
164 path_list_clear(&list
, 1);
168 static int split_mbox(const char *file
, const char *dir
, int allow_bare
,
169 int nr_prec
, int skip
)
175 FILE *f
= !strcmp(file
, "-") ? stdin
: fopen(file
, "r");
179 error("cannot open mbox %s", file
);
185 } while (isspace(peek
));
188 if (fgets(buf
, sizeof(buf
), f
) == NULL
) {
189 /* empty stdin is OK */
191 error("cannot read mbox %s", file
);
198 sprintf(name
, "%s/%0*d", dir
, nr_prec
, ++skip
);
199 file_done
= split_one(f
, name
, allow_bare
);
210 int cmd_mailsplit(int argc
, const char **argv
, const char *prefix
)
212 int nr
= 0, nr_prec
= 4, num
= 0;
214 const char *dir
= NULL
;
216 static const char *stdin_only
[] = { "-", NULL
};
218 for (argp
= argv
+1; *argp
; argp
++) {
219 const char *arg
= *argp
;
224 if ( arg
[1] == 'd' ) {
225 nr_prec
= strtol(arg
+2, NULL
, 10);
226 if (nr_prec
< 3 || 10 <= nr_prec
)
227 usage(git_mailsplit_usage
);
229 } else if ( arg
[1] == 'f' ) {
230 nr
= strtol(arg
+2, NULL
, 10);
231 } else if ( arg
[1] == 'b' && !arg
[2] ) {
233 } else if ( arg
[1] == 'o' && arg
[2] ) {
235 } else if ( arg
[1] == '-' && !arg
[2] ) {
236 argp
++; /* -- marks end of options */
239 die("unknown option: %s", arg
);
244 /* Backwards compatibility: if no -o specified, accept
245 <mbox> <dir> or just <dir> */
246 switch (argc
- (argp
-argv
)) {
252 stdin_only
[0] = argp
[0];
257 usage(git_mailsplit_usage
);
260 /* New usage: if no more argument, parse stdin */
266 const char *arg
= *argp
++;
270 if (arg
[0] == '-' && arg
[1] == 0) {
271 ret
= split_mbox(arg
, dir
, allow_bare
, nr_prec
, nr
);
273 error("cannot split patches from stdin");
281 if (stat(arg
, &argstat
) == -1) {
282 error("cannot stat %s (%s)", arg
, strerror(errno
));
286 if (S_ISDIR(argstat
.st_mode
))
287 ret
= split_maildir(arg
, dir
, nr_prec
, nr
);
289 ret
= split_mbox(arg
, dir
, allow_bare
, nr_prec
, nr
);
292 error("cannot split patches from %s", arg
);