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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
/*
* copyright (c) 1997, 98, 99, 2000 Motoyuki Kasahara
*
* 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, 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.
*/
/*
* This program requires the following Autoconf macros:
* AC_C_CONST
* AC_TYPE_SIZE_T
* AC_CHECK_TYPE(ssize_t, int)
* AC_HEADER_STDC
* AC_CHECK_HEADERS(string.h, memory.h, stdlib.h, unistd.h)
* AC_CHECK_FUNCS(memcpy)
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <sys/types.h>
#include <syslog.h>
#include <errno.h>
#if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
#include <string.h>
#if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
#include <memory.h>
#endif /* not STDC_HEADERS and HAVE_MEMORY_H */
#else /* not STDC_HEADERS and not HAVE_STRING_H */
#include <strings.h>
#endif /* not STDC_HEADERS and not HAVE_STRING_H */
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "linebuf.h"
#ifdef USE_FAKELOG
#include "fakelog.h"
#endif
#ifndef HAVE_MEMCPY
#define memcpy(d, s, n) bcopy((s), (d), (n))
#ifdef __STDC__
void *memchr(const void *, int, size_t);
int memcmp(const void *, const void *, size_t);
void *memmove(void *, const void *, size_t);
void *memset(void *, int, size_t);
#else /* not __STDC__ */
char *memchr();
int memcmp();
char *memmove();
char *memset();
#endif /* not __STDC__ */
#endif /* not HAVE_MEMCPY */
/*
* Initialize `linebuffer'.
*/
void
initialize_line_buffer(line_buffer)
Line_Buffer *line_buffer;
{
line_buffer->buffer[0] = '\0';
line_buffer->file = -1;
line_buffer->line_length = 0;
line_buffer->cache_length = 0;
}
/*
* Finalize `line_buffer'.
*/
void
finalize_line_buffer(line_buffer)
Line_Buffer *line_buffer;
{
line_buffer->buffer[0] = '\0';
line_buffer->file = -1;
line_buffer->line_length = 0;
line_buffer->cache_length = 0;
}
/*
* Bind `file' to `line_buffer'.
*/
void
bind_file_to_line_buffer(line_buffer, file)
Line_Buffer *line_buffer;
int file;
{
if (line_buffer->file < 0)
initialize_line_buffer(line_buffer);
line_buffer->file = file;
}
/*
* Return file descriptor bound to `line_buffer'.
* Return -1 when no file is bound.
*/
int
file_bound_to_line_buffer(line_buffer)
Line_Buffer *line_buffer;
{
return line_buffer->file;
}
/*
* Discard cache data in `line_buffer'.
*/
void
discard_cache_in_line_buffer(line_buffer)
Line_Buffer *line_buffer;
{
line_buffer->cache_length = 0;
}
/*
* Read a line whose from the file bound to `line_buffer', and copy
* the read line to `line'. It reads at most `max_line_length' bytes.
*
* The function recognizes both "\n" and "\r\n" as the end of the line.
* "\n" nor "\r\n" aren't copied to `buffer', but "\0" is added to
* the end of the line, instead.
*
* The function returns the number of characters in the line, upon
* successful. It doesn't count "\n" or "\r\n" in the tail of the line,
* so that 0 is returned for an empty line, and the line length doesn't
* exceed one less than `max_line_length'.
*
* If EOF is received or an error occurs, -1 is returned. If the
* line is too long, `max_line_length' is returned.
*/
ssize_t
read_line_buffer(line_buffer, line, max_line_length)
Line_Buffer *line_buffer;
char *line;
size_t max_line_length;
{
char *line_p;
char *newline;
size_t search_length;
size_t additional_length;
ssize_t n;
/*
* Return -1 if no file is bound, or if `max_line_length' is 0.
*/
if (line_buffer->file < 0)
return -1;
if (max_line_length == 0)
return -1;
/*
* Read a file until newline is appeared.
*/
line_buffer->line_length = 0;
line_p = line;
for (;;) {
if (0 < line_buffer->cache_length) {
/*
* Find a newline in the cache data.
*/
if (max_line_length - line_buffer->line_length
< line_buffer->cache_length)
search_length = max_line_length - line_buffer->line_length;
else
search_length = line_buffer->cache_length;
newline = (char *)memchr(line_buffer->buffer, '\n', search_length);
/*
* Append cache data in front of the newline to `line'.
*/
if (newline != NULL)
additional_length = newline - line_buffer->buffer + 1;
else
additional_length = search_length;
memcpy(line_p, line_buffer->buffer, additional_length);
line_p += additional_length;
line_buffer->line_length += additional_length;
line_buffer->cache_length -= additional_length;
/*
* If cache data not copied to `line' are remained in the
* buffer, we move them to the beginning of the buffer.
*/
memmove(line_buffer->buffer,
line_buffer->buffer + additional_length,
line_buffer->cache_length);
if (newline != NULL)
break;
}
/*
* Check for the length of the current line. Return if the
* line is too long.
*
* Note that the following conditional expression can be
* substituted to (line_buffer->cache_length != 0), because
* remained cache data mean that the line is too long.
*/
if (max_line_length <= line_buffer->line_length)
return line_buffer->line_length;
/*
* Read from a file. (No cache data are remaind.)
*/
n = read(line_buffer->file, line_buffer->buffer, LINEBUF_BUFFER_SIZE);
if (n < 0) {
if (errno == EINTR)
continue;
syslog(LOG_INFO, "read() failed, %s", strerror(errno));
return -1;
} else if (n == 0) {
if (line_buffer->line_length == 0) {
syslog(LOG_INFO, "read() received EOF");
return -1;
}
return line_buffer->line_length;
}
line_buffer->cache_length += n;
}
/*
* Overwrite `\n' with `\0'.
*/
line_p--;
*line_p = '\0';
line_buffer->line_length--;
/*
* If the line is end with `\r\n', remove not only `\n' but `\r'.
*/
if (0 < line_buffer->line_length && *(line_p - 1) == '\r') {
line_p--;
*line_p = '\0';
line_buffer->line_length--;
}
return line_buffer->line_length;
}
/*
* Read just `stream_length' bytes from the file bound to `line_buffer',
* and copy the read bytes to `stream'.
*
* Unlike read_line_buffer(), it doesn't stop reading the file even
* if a newline is met, append `\0' to the read data, nor remove newline
* character in the read data.
*
* If it succeeds, the number of bytes actually read is returned.
* Upon reading EOF, 0 is returned. Otherwise, a -1 is returned and
* `errno' is set.
*/
ssize_t
binary_read_line_buffer(line_buffer, stream, stream_length)
Line_Buffer *line_buffer;
char *stream;
size_t stream_length;
{
char *stream_p;
size_t done_length;
ssize_t n;
/*
* Return -1 if no file is bound.
*/
if (line_buffer->file < 0)
return -1;
/*
* Return 0 if `stream_length' is 0.
*/
if (stream_length == 0)
return 0;
/*
* Test whether cache data are left in `line_buffer->buffer'.
* If they are, copy them to `stream' and, move them to the beginning
* of `line_buffer->buffer'.
*/
stream_p = stream;
done_length = 0;
if (0 < line_buffer->cache_length) {
if (stream_length <= line_buffer->cache_length)
done_length = stream_length;
else
done_length = line_buffer->cache_length;
memcpy(stream_p, line_buffer->buffer, done_length);
stream_p += done_length;
line_buffer->line_length += done_length;
line_buffer->cache_length -= done_length;
memmove(line_buffer->buffer,
line_buffer->buffer + done_length,
line_buffer->cache_length);
}
/*
* Read the file until the number of read bytes (`done_length') is
* reached to `stream_length'.
*/
while (done_length < stream_length) {
n = read(line_buffer->file, stream_p,
stream_length - done_length);
if (n < 0) {
if (errno == EINTR)
continue;
syslog(LOG_ERR, "read() failed, %s", strerror(errno));
return n;
} else if (n == 0) {
if (done_length == 0) {
syslog(LOG_ERR, "read() EOF received");
return -1;
}
return done_length;
}
stream_p += n;
done_length += n;
}
return stream_length;
}
/*
* Skip too long line read by read_line_buffer().
*
* If a line read by read_line_buffer() doesn't contain a newline
* character, the line may be too long to store whole of the line
* into the buffer.
* This function reads and discards the rest of the line.
*
* If EOF is received or an error occurs, -1 is returned.
* Otherwise, 0 is returned.
*/
int
skip_line_buffer(line_buffer)
Line_Buffer *line_buffer;
{
ssize_t line_length;
/*
* Read data until the end of the line is found.
*/
for (;;) {
line_length = read_line_buffer(line_buffer, line_buffer->buffer,
LINEBUF_BUFFER_SIZE);
if (line_length < 0)
return -1;
if (line_length < LINEBUF_BUFFER_SIZE)
break;
}
return 0;
}
|