2003-04-25 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Fri, 25 Apr 2003 13:23:27 +0000 (13:23 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Fri, 25 Apr 2003 13:23:27 +0000 (13:23 +0000)
* data.c: Do not include <assert.h>, but "gpgme.h".
(_gpgme_data_inbound_handler): Expand _gpgme_data_append, because
it will go.  Do not assert DH.
(_gpgme_data_outbound_handler): Do not assert DH.

gpgme/ChangeLog
gpgme/data.c

index ba6e2966396fba0ab4e1cc2cc325cded39df48b1..4fed18e47672a1cf38504019e5d280506ef910da 100644 (file)
@@ -1,5 +1,10 @@
 2003-04-25  Marcus Brinkmann  <marcus@g10code.de>
 
+       * data.c: Do not include <assert.h>, but "gpgme.h".
+       (_gpgme_data_inbound_handler): Expand _gpgme_data_append, because
+       it will go.  Do not assert DH.
+       (_gpgme_data_outbound_handler): Do not assert DH.
+       
        * export.c: Do not include <stdlib.h>, "debug.h" and "util.h", but
        "gpgme.h".
        (export_status_handler): Change type of first argument to void *.
index 038307e9ed93f970fab60ba0ba66711efb889ca8..cd606aa129e6df5198fc876e51b1c79190115cbc 100644 (file)
 #endif
 
 #include <stdlib.h>
-#include <assert.h>
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
 
+#include "gpgme.h"
 #include "data.h"
 #include "util.h"
 #include "ops.h"
@@ -164,10 +164,9 @@ _gpgme_data_inbound_handler (void *opaque, int fd)
 {
   GpgmeData dh = (GpgmeData) opaque;
   char buffer[BUFFER_SIZE];
+  char *bufp = buffer;
   ssize_t buflen;
 
-  assert (dh);
-
   buflen = read (fd, buffer, BUFFER_SIZE);
   if (buflen < 0)
     return GPGME_File_Error;
@@ -177,7 +176,16 @@ _gpgme_data_inbound_handler (void *opaque, int fd)
       return 0;
     }
 
-  return _gpgme_data_append (dh, buffer, buflen);
+  do
+    {
+      ssize_t amt = gpgme_data_write (dh, bufp, buflen);
+      if (amt == 0 || (amt < 0 && errno != EINTR))
+       return GPGME_File_Error;
+      bufp += amt;
+      buflen -= amt;
+    }
+  while (buflen > 0);
+  return 0;
 }
 
 
@@ -187,8 +195,6 @@ _gpgme_data_outbound_handler (void *opaque, int fd)
   GpgmeData dh = (GpgmeData) opaque;
   ssize_t nwritten;
 
-  assert (dh);
-
   if (!dh->pending_len)
     {
       ssize_t amt = gpgme_data_read (dh, dh->pending, BUFFER_SIZE);