aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-server.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-04 20:25:47 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-04 20:25:47 +0200
commit2837c35ef49a6c07e17f78942e06e4be71d8f9cd (patch)
tree8c5b3a6c2ad0445fb4fa02bd2f41e1a1d030c368 /src/mds-server.c
parentsome work on unmarshalling (diff)
downloadmds-2837c35ef49a6c07e17f78942e06e4be71d8f9cd.tar.gz
mds-2837c35ef49a6c07e17f78942e06e4be71d8f9cd.tar.bz2
mds-2837c35ef49a6c07e17f78942e06e4be71d8f9cd.tar.xz
read the marshalled data from the pipe
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/mds-server.c44
1 files changed, 43 insertions, 1 deletions
diff --git a/src/mds-server.c b/src/mds-server.c
index 4efd840..831ea9f 100644
--- a/src/mds-server.c
+++ b/src/mds-server.c
@@ -831,13 +831,53 @@ int marshal_server(int fd)
*/
void unmarshal_server(int fd)
{
+ char* state_buf;
+ char* state_buf_;
size_t list_size;
size_t map_size;
size_t list_elements;
size_t i;
- /* TODO read the pipe */
+ /* Read the pipe. */
+ {
+ size_t state_buf_size = 8 << 10;
+ size_t state_buf_ptr = 0;
+ ssize_t got;
+
+ state_buf = state_buf_ = malloc(state_buf_size * sizeof(char));
+ if (state_buf == NULL)
+ {
+ perror(*argv);
+ return;
+ }
+
+ for (;;)
+ {
+ if (state_buf_size == state_buf_ptr)
+ {
+ char* old_buf = state_buf;
+ state_buf = realloc(state_buf, (state_buf_size <<= 1) * sizeof(char));
+ if (state_buf == NULL)
+ {
+ perror(*argv);
+ free(old_buf);
+ return;
+ }
+ }
+
+ got = read(fd, state_buf + state_buf_ptr, state_buf_size - state_buf_ptr);
+ if (got < 0)
+ {
+ perror(*argv);
+ free(state_buf);
+ return;
+ }
+ if (got == 0)
+ break;
+ state_buf_ptr += got;
+ }
+ }
/* Get the marshal protocal version. Not needed, there is only the one version right now. */
@@ -863,6 +903,7 @@ void unmarshal_server(int fd)
/* Allocate the client's information. */
if ((value = malloc(sizeof(client_t))) == NULL)
{
+ perror(*argv);
/* TODO */
}
@@ -879,6 +920,7 @@ void unmarshal_server(int fd)
/* Unmarshal the message. */
if (mds_message_unmarshal(&(value->message), state_buf_))
{
+ perror(*argv);
mds_message_destroy(&(value->message));
free(value);
/* TODO */