don't mix int and size_t, it generates warnings!
[platform/upstream/c-ares.git] / ares__read_line.c
1 /* Copyright 1998 by the Massachusetts Institute of Technology.
2  *
3  * Permission to use, copy, modify, and distribute this
4  * software and its documentation for any purpose and without
5  * fee is hereby granted, provided that the above copyright
6  * notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting
8  * documentation, and that the name of M.I.T. not be used in
9  * advertising or publicity pertaining to distribution of the
10  * software without specific, written prior permission.
11  * M.I.T. makes no representations about the suitability of
12  * this software for any purpose.  It is provided "as is"
13  * without express or implied warranty.
14  */
15
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include "ares.h"
20 #include "ares_private.h"
21
22 /* This is an internal function.  Its contract is to read a line from
23  * a file into a dynamically allocated buffer, zeroing the trailing
24  * newline if there is one.  The calling routine may call
25  * ares__read_line multiple times with the same buf and bufsize
26  * pointers; *buf will be reallocated and *bufsize adjusted as
27  * appropriate.  The initial value of *buf should be NULL.  After the
28  * calling routine is done reading lines, it should free *buf.
29  */
30 int ares__read_line(FILE *fp, char **buf, int *bufsize)
31 {
32   char *newbuf;
33   size_t offset = 0;
34   size_t len;
35
36   if (*buf == NULL)
37     {
38       *buf = malloc(128);
39       if (!*buf)
40         return ARES_ENOMEM;
41       *bufsize = 128;
42     }
43
44   while (1)
45     {
46       if (!fgets(*buf + offset, *bufsize - offset, fp))
47         return (offset != 0) ? 0 : (ferror(fp)) ? ARES_EFILE : ARES_EOF;
48       len = offset + strlen(*buf + offset);
49       if ((*buf)[len - 1] == '\n')
50         {
51           (*buf)[len - 1] = 0;
52           return ARES_SUCCESS;
53         }
54       offset = len;
55
56       /* Allocate more space. */
57       newbuf = realloc(*buf, *bufsize * 2);
58       if (!newbuf)
59         return ARES_ENOMEM;
60       *buf = newbuf;
61       *bufsize *= 2;
62     }
63 }