]> arthur.barton.de Git - netatalk.git/blob - libatalk/dsi/dsi_read.c
1) try a better workaround for deadlocks when both the server and the client are...
[netatalk.git] / libatalk / dsi / dsi_read.c
1 /*
2  * $Id: dsi_read.c,v 1.7 2009-10-25 06:13:11 didg Exp $
3  *
4  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
5  * All rights reserved. See COPYRIGHT.
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif /* HAVE_CONFIG_H */
11
12 #include <stdio.h>
13 #include <string.h>
14 #ifdef HAVE_UNISTD_H
15 #include <unistd.h>
16 #endif /* HAVE_UNISTD_H */
17 #include <signal.h>
18 #include <sys/types.h>
19 #include <sys/time.h>
20 #ifdef HAVE_SYS_FILIO_H
21 #include <sys/filio.h>
22 #endif
23
24 #include <atalk/dsi.h>
25
26 #ifndef min
27 #define min(a,b)   ((a) < (b) ? (a) : (b))
28 #endif /* ! min */
29
30 /* streaming i/o for afp_read. this is all from the perspective of the
31  * client. it basically does the reverse of dsi_write. on first entry,
32  * it will send off the header plus whatever is in its command
33  * buffer. it returns the amount of stuff still to be read
34  * (constrained by the buffer size). */
35 ssize_t dsi_readinit(DSI *dsi, void *buf, const size_t buflen,
36                     const size_t size, const int err)
37 {
38
39   dsi->noreply = 1; /* we will handle our own replies */
40   dsi->header.dsi_flags = DSIFL_REPLY;
41   /*dsi->header.dsi_command = DSIFUNC_CMD;*/
42   dsi->header.dsi_len = htonl(size);
43   dsi->header.dsi_code = htonl(err);
44
45   dsi->in_write++;
46   if (dsi_stream_send(dsi, buf, buflen)) {
47     dsi->datasize = size - buflen;
48     return min(dsi->datasize, buflen);
49   }
50
51   return -1; /* error */
52 }
53
54 void dsi_readdone(DSI *dsi)
55 {
56   dsi->in_write--;
57 }
58
59 /* send off the data */
60 ssize_t dsi_read(DSI *dsi, void *buf, const size_t buflen)
61 {
62   size_t len;
63   
64   len  = dsi_stream_write(dsi, buf, buflen, 0);
65
66   if (len == buflen) {
67     dsi->datasize -= len;
68     return min(dsi->datasize, buflen);
69   }
70
71   return -1;
72 }