1
2
3
4
5
6
7
8
9
10
11
12#include "libbb.h"
13
14char* FAST_FUNC bb_get_chunk_from_file(FILE *file, int *end)
15{
16 int ch;
17 unsigned idx = 0;
18 char *linebuf = NULL;
19
20 while ((ch = getc(file)) != EOF) {
21
22 if (!(idx & 0xff))
23 linebuf = xrealloc(linebuf, idx + 0x100);
24 linebuf[idx++] = (char) ch;
25 if (ch == '\0')
26 break;
27 if (end && ch == '\n')
28 break;
29 }
30 if (end)
31 *end = idx;
32 if (linebuf) {
33
34
35
36
37
38
39 linebuf = xrealloc(linebuf, idx + 1);
40 linebuf[idx] = '\0';
41 }
42 return linebuf;
43}
44
45
46char* FAST_FUNC xmalloc_fgets(FILE *file)
47{
48 int i;
49
50 return bb_get_chunk_from_file(file, &i);
51}
52
53char* FAST_FUNC xmalloc_fgetline(FILE *file)
54{
55 int i;
56 char *c = bb_get_chunk_from_file(file, &i);
57
58 if (i && c[--i] == '\n')
59 c[i] = '\0';
60
61 return c;
62}
63
64#if 0
65
66
67
68char* FAST_FUNC xmalloc_fgets(FILE *file)
69{
70 char *res_buf = NULL;
71 size_t res_sz;
72
73 if (getline(&res_buf, &res_sz, file) == -1) {
74 free(res_buf);
75 res_buf = NULL;
76 }
77
78 return res_buf;
79}
80
81char* FAST_FUNC xmalloc_fgetline(FILE *file)
82{
83 char *res_buf = NULL;
84 size_t res_sz;
85
86 res_sz = getline(&res_buf, &res_sz, file);
87
88 if ((ssize_t)res_sz != -1) {
89 if (res_buf[res_sz - 1] == '\n')
90 res_buf[--res_sz] = '\0';
91
92 } else {
93 free(res_buf);
94 res_buf = NULL;
95 }
96 return res_buf;
97}
98
99#endif
100
101#if 0
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121static char* xmalloc_fgets_internal(FILE *file, int *sizep)
122{
123 int len;
124 int idx = 0;
125 char *linebuf = NULL;
126
127 while (1) {
128 char *r;
129
130 linebuf = xrealloc(linebuf, idx + 0x100);
131 r = fgets(&linebuf[idx], 0x100, file);
132 if (!r) {
133
134
135 linebuf[idx] = '\0';
136 break;
137 }
138
139 len = strlen(&linebuf[idx]);
140 idx += len;
141 if (len != 0xff || linebuf[idx - 1] == '\n')
142 break;
143 }
144 *sizep = idx;
145 if (idx) {
146
147 return linebuf;
148 }
149 free(linebuf);
150 return NULL;
151}
152
153
154char* FAST_FUNC xmalloc_fgetline_fast(FILE *file)
155{
156 int sz;
157 char *r = xmalloc_fgets_internal(file, &sz);
158 if (r && r[sz - 1] == '\n')
159 r[--sz] = '\0';
160 return r;
161}
162
163char* FAST_FUNC xmalloc_fgets(FILE *file)
164{
165 int sz;
166 return xmalloc_fgets_internal(file, &sz);
167}
168
169
170char* FAST_FUNC xmalloc_fgetline(FILE *file)
171{
172 int sz;
173 char *r = xmalloc_fgets_internal(file, &sz);
174 if (!r)
175 return r;
176 if (r[sz - 1] == '\n')
177 r[--sz] = '\0';
178 return xrealloc(r, sz + 1);
179}
180#endif
181