1 | /* Copyright 1988, 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 | static const char rcsid[] = "$Id: read_to_memory.c,v 1.2 2004-12-26 17:33:39 zacheiss Exp $"; |
---|
17 | |
---|
18 | #include "globalmessage.h" |
---|
19 | |
---|
20 | Code_t read_to_memory(char **ret_block, int *ret_size, int filedesc) |
---|
21 | { |
---|
22 | char buf[GMS_MAX_MESSAGE_LEN], *message_data = NULL; |
---|
23 | int message_size = 0; |
---|
24 | int stat; |
---|
25 | |
---|
26 | do { |
---|
27 | /* read the block */ |
---|
28 | stat = read(filedesc, buf, GMS_MAX_MESSAGE_LEN); |
---|
29 | if(stat == -1) { |
---|
30 | /* handle read failed error */ |
---|
31 | free(message_data); |
---|
32 | return(errno); |
---|
33 | } |
---|
34 | |
---|
35 | /* allocate a memory area for copying */ |
---|
36 | /* the +1 are for trailing NULs */ |
---|
37 | message_data = realloc(message_data, message_size + stat + 1); |
---|
38 | if(!message_data) { |
---|
39 | return(GMS_MALLOC_ERR); |
---|
40 | } |
---|
41 | |
---|
42 | /* copy it into the right place */ |
---|
43 | memcpy(&message_data[message_size], buf, stat); |
---|
44 | |
---|
45 | message_size += stat; |
---|
46 | } while(stat); |
---|
47 | /* but only until we stop getting blocks. */ |
---|
48 | |
---|
49 | /* Just to make it consistent, for lazy calling routines... */ |
---|
50 | message_data[message_size] = '\0'; |
---|
51 | |
---|
52 | *ret_block = message_data; |
---|
53 | *ret_size = message_size; |
---|
54 | return(0); |
---|
55 | } |
---|
56 | |
---|