-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathload.c
171 lines (155 loc) · 3.61 KB
/
load.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
* wiggle - apply rejected patches
*
* Copyright (C) 2003 Neil Brown <[email protected]>
* Copyright (C) 2013 Neil Brown <[email protected]>
* Copyright (C) 2014-2020 Neil Brown <[email protected]>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.
*
* Author: Neil Brown
* Email: <[email protected]>
*/
/*
* read in files
*
* Files are read in whole and stored in a
* struct stream {char*, len}
*
*
* loading the file "-" reads from stdin which might require
* reading into several buffers
*/
#include "wiggle.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
static void join_streams(struct stream list[], int cnt)
{
/* join all the streams in the list (upto body=NULL)
* into one by re-allocing list[0].body and copying
*/
int len = 0;
int i;
char *c;
for (i = 0; i < cnt ; i++)
len += list[i].len;
c = realloc(list[0].body, len+1);
if (c == NULL)
wiggle_die("memory allocation");
list[0].body = c;
c += list[0].len;
list[0].len = len;
for (i = 1; i < cnt; i++) {
memcpy(c, list[i].body, list[i].len);
c += list[i].len;
list[i].len = 0;
free(list[i].body);
}
c[0] = 0;
}
static struct stream wiggle_load_regular(int fd)
{
struct stat stb;
struct stream s;
fstat(fd, &stb);
s.len = stb.st_size;
s.body = wiggle_xmalloc(s.len+2);
if (read(fd, s.body, s.len) != s.len)
wiggle_die("file read");
if (s.len && s.body[s.len-1] != '\n')
s.body[s.len++] = '\n';
s.body[s.len] = 0;
return s;
}
static struct stream wiggle_load_other(int fd)
{
struct stream list[10];
int i = 0;
while (1) {
list[i].body = wiggle_xmalloc(8192);
list[i].len = read(fd, list[i].body, 8192);
if (list[i].len < 0)
wiggle_die("file read");
if (list[i].len == 0) {
if (i && list[i-1].body[list[i-i].len-1] != '\n') {
list[i].body[0] = '\n';
list[i].len = 1;
i += 1;
}
break;
}
i++;
if (i == 10) {
join_streams(list, i);
i = 1;
}
}
join_streams(list, i);
return list[0];
}
struct stream wiggle_load_segment(FILE *f,
unsigned int start, unsigned int end)
{
struct stream s;
s.len = end - start;
s.body = wiggle_xmalloc(s.len+1);
fseek(f, start, 0);
if (fread(s.body, 1, s.len, f) != (size_t)s.len)
wiggle_die("file read");
/* ensure string is 'nul' terminated - for sscanf */
s.body[s.len] = 0;
return s;
}
struct stream wiggle_load_file(char *name)
{
struct stream s;
struct stat stb;
int fd;
int start, end;
int prefix_len = 0;
s.body = NULL;
s.len = 0;
if (sscanf(name, "_wiggle_:%d:%d:%n", &start, &end,
&prefix_len) >= 2 && prefix_len > 0) {
FILE *f = fopen(name + prefix_len, "r");
if (f) {
s = wiggle_load_segment(f, start, end);
fclose(f);
} else {
s.body = NULL;
s.len = 0;
}
} else {
if (strcmp(name, "-") == 0)
fd = 0;
else {
fd = open(name, O_RDONLY);
if (fd < 0)
return s;
}
wiggle_check_dir(name, fd);
if (fstat(fd, &stb) == 0) {
if (S_ISREG(stb.st_mode))
s = wiggle_load_regular(fd);
else
s = wiggle_load_other(fd);
}
close(fd);
}
return s;
}