2 * wiggle - apply rejected patches
4 * Copyright (C) 2003 Neil Brown <neilb@cse.unsw.edu.au>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Email: <neilb@cse.unsw.edu.au>
24 * School of Computer Science and Engineering
25 * The University of New South Wales
33 * Files are read in whole and stored in a
34 * struct stream {char*, len}
37 * loading the file "-" reads from stdin which might require
38 * reading into several buffers
42 #include <sys/types.h>
48 static void join_streams(struct stream list
[], int cnt
)
50 /* join all the streams in the list (upto body=NULL)
51 * into one by re-allocing list[0].body and copying
57 for (i
=0; i
<cnt
; i
++)
60 c
= realloc(list
[0].body
, len
);
67 for (i
=1; i
<cnt
; i
++) {
68 memcpy(c
, list
[i
].body
, list
[i
].len
);
74 static struct stream
load_regular(int fd
)
81 s
.body
= malloc(s
.len
);
83 if (read(fd
, s
.body
, s
.len
) != s
.len
) {
91 static struct stream
load_other(int fd
)
94 struct stream list
[10];
98 list
[i
].body
= malloc(8192);
101 list
[i
].len
= read(fd
, list
[i
].body
, 8192);
104 if (list
[i
].len
== 0)
108 join_streams(list
, i
);
112 join_streams(list
, i
);
116 struct stream
load_file(char *name
)
124 if (strcmp(name
, "-")==0)
127 fd
= open(name
, O_RDONLY
);
132 if (fstat(fd
, &stb
) == 0) {
134 if (S_ISREG(stb
.st_mode
))
135 s
= load_regular(fd
);