![Marcus Brinkmann](/assets/img/avatar_default.png)
2003-06-06 Marcus Brinkmann <marcus@g10code.de> * gpgme.texi: Change error codes to GPG_ERR_* variants. (Error Handling): Rewritten. gpgme/ 2003-06-05 Marcus Brinkmann <marcus@g10code.de> Everywhere: Use libgpg-error error codes. * Makefile.am (EXTRA_DIST): Remove mkerrors. (BUILT_SOURCES): Remove errors.c. (MOSTLYCLEANFILES): Likewise. (libgpgme_la_SOURCES): Likewise. Add error.c. (errors.c): Remove target. * mkerrors: File removed. * error.c: New file. * gpgme.h (gpgme_error_t): Change to type gpg_error_t. (gpgme_err_code_t, gpgme_err_source_t): New types. (gpgme_err_code, gpgme_err_source, gpgme_error, gpgme_err_make): New static inline functions. (gpgme_strsource, gpgme_err_code_from_errno, gpgme_err_code_to_errno, gpgme_err_make_from_errno, gpgme_error_from_errno): New prototypes. tests/ 2003-06-06 Marcus Brinkmann <marcus@g10code.de> Everywhere: Use libgpg-error error codes. * gpg/Makefile.am (noinst_HEADERS): New variable. * gpg/t-support.h: New file. * gpgsm/Makefile.am (noinst_HEADERS): New variable. * gpgsm/t-support.h: New file.
223 lines
4.8 KiB
C
223 lines
4.8 KiB
C
/* data.c - An abstraction for data objects.
|
||
Copyright (C) 2002, 2003 g10 Code GmbH
|
||
|
||
This file is part of GPGME.
|
||
|
||
GPGME is free software; you can redistribute it and/or modify it
|
||
under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2 of the License, or
|
||
(at your option) any later version.
|
||
|
||
GPGME is distributed in the hope that it will be useful, but
|
||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with GPGME; if not, write to the Free Software Foundation,
|
||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA. */
|
||
|
||
#if HAVE_CONFIG_H
|
||
#include <config.h>
|
||
#endif
|
||
|
||
#include <stdlib.h>
|
||
#include <unistd.h>
|
||
#include <errno.h>
|
||
#include <string.h>
|
||
|
||
#include "gpgme.h"
|
||
#include "data.h"
|
||
#include "util.h"
|
||
#include "ops.h"
|
||
#include "io.h"
|
||
|
||
|
||
gpgme_error_t
|
||
_gpgme_data_new (gpgme_data_t *r_dh, struct _gpgme_data_cbs *cbs)
|
||
{
|
||
gpgme_data_t dh;
|
||
|
||
if (!r_dh)
|
||
return gpg_error (GPG_ERR_INV_VALUE);
|
||
|
||
*r_dh = NULL;
|
||
dh = calloc (1, sizeof (*dh));
|
||
if (!dh)
|
||
return gpg_error_from_errno (errno);
|
||
|
||
dh->cbs = cbs;
|
||
|
||
*r_dh = dh;
|
||
return 0;
|
||
}
|
||
|
||
|
||
void
|
||
_gpgme_data_release (gpgme_data_t dh)
|
||
{
|
||
if (dh)
|
||
free (dh);
|
||
}
|
||
|
||
|
||
/* Read up to SIZE bytes into buffer BUFFER from the data object with
|
||
the handle DH. Return the number of characters read, 0 on EOF and
|
||
-1 on error. If an error occurs, errno is set. */
|
||
ssize_t
|
||
gpgme_data_read (gpgme_data_t dh, void *buffer, size_t size)
|
||
{
|
||
if (!dh)
|
||
{
|
||
errno = EINVAL;
|
||
return -1;
|
||
}
|
||
if (!dh->cbs->read)
|
||
{
|
||
errno = EOPNOTSUPP;
|
||
return -1;
|
||
}
|
||
return (*dh->cbs->read) (dh, buffer, size);
|
||
}
|
||
|
||
|
||
/* Write up to SIZE bytes from buffer BUFFER to the data object with
|
||
the handle DH. Return the number of characters written, or -1 on
|
||
error. If an error occurs, errno is set. */
|
||
ssize_t
|
||
gpgme_data_write (gpgme_data_t dh, const void *buffer, size_t size)
|
||
{
|
||
if (!dh)
|
||
{
|
||
errno = EINVAL;
|
||
return -1;
|
||
}
|
||
if (!dh->cbs->write)
|
||
{
|
||
errno = EOPNOTSUPP;
|
||
return -1;
|
||
}
|
||
return (*dh->cbs->write) (dh, buffer, size);
|
||
}
|
||
|
||
|
||
/* Set the current position from where the next read or write starts
|
||
in the data object with the handle DH to OFFSET, relativ to
|
||
WHENCE. */
|
||
off_t
|
||
gpgme_data_seek (gpgme_data_t dh, off_t offset, int whence)
|
||
{
|
||
if (!dh)
|
||
{
|
||
errno = EINVAL;
|
||
return -1;
|
||
}
|
||
if (!dh->cbs->read)
|
||
{
|
||
errno = EOPNOTSUPP;
|
||
return -1;
|
||
}
|
||
return (*dh->cbs->seek) (dh, offset, whence);
|
||
}
|
||
|
||
|
||
/* Release the data object with the handle DH. */
|
||
void
|
||
gpgme_data_release (gpgme_data_t dh)
|
||
{
|
||
if (!dh)
|
||
return;
|
||
|
||
if (dh->cbs->release)
|
||
(*dh->cbs->release) (dh);
|
||
_gpgme_data_release (dh);
|
||
}
|
||
|
||
|
||
/* Get the current encoding meta information for the data object with
|
||
handle DH. */
|
||
gpgme_data_encoding_t
|
||
gpgme_data_get_encoding (gpgme_data_t dh)
|
||
{
|
||
return dh ? dh->encoding : GPGME_DATA_ENCODING_NONE;
|
||
}
|
||
|
||
|
||
/* Set the encoding meta information for the data object with handle
|
||
DH to ENC. */
|
||
gpgme_error_t
|
||
gpgme_data_set_encoding (gpgme_data_t dh, gpgme_data_encoding_t enc)
|
||
{
|
||
if (!dh)
|
||
return gpg_error (GPG_ERR_INV_VALUE);
|
||
if (enc < 0 || enc > GPGME_DATA_ENCODING_ARMOR)
|
||
return gpg_error (GPG_ERR_INV_VALUE);
|
||
dh->encoding = enc;
|
||
return 0;
|
||
}
|
||
|
||
|
||
/* Functions to support the wait interface. */
|
||
|
||
gpgme_error_t
|
||
_gpgme_data_inbound_handler (void *opaque, int fd)
|
||
{
|
||
gpgme_data_t dh = (gpgme_data_t) opaque;
|
||
char buffer[BUFFER_SIZE];
|
||
char *bufp = buffer;
|
||
ssize_t buflen;
|
||
|
||
buflen = read (fd, buffer, BUFFER_SIZE);
|
||
if (buflen < 0)
|
||
return gpg_error_from_errno (errno);
|
||
if (buflen == 0)
|
||
{
|
||
_gpgme_io_close (fd);
|
||
return 0;
|
||
}
|
||
|
||
do
|
||
{
|
||
ssize_t amt = gpgme_data_write (dh, bufp, buflen);
|
||
if (amt == 0 || (amt < 0 && errno != EINTR))
|
||
return gpg_error_from_errno (errno);
|
||
bufp += amt;
|
||
buflen -= amt;
|
||
}
|
||
while (buflen > 0);
|
||
return 0;
|
||
}
|
||
|
||
|
||
gpgme_error_t
|
||
_gpgme_data_outbound_handler (void *opaque, int fd)
|
||
{
|
||
gpgme_data_t dh = (gpgme_data_t) opaque;
|
||
ssize_t nwritten;
|
||
|
||
if (!dh->pending_len)
|
||
{
|
||
ssize_t amt = gpgme_data_read (dh, dh->pending, BUFFER_SIZE);
|
||
if (amt < 0)
|
||
return gpg_error_from_errno (errno);
|
||
if (amt == 0)
|
||
{
|
||
_gpgme_io_close (fd);
|
||
return 0;
|
||
}
|
||
dh->pending_len = amt;
|
||
}
|
||
|
||
nwritten = _gpgme_io_write (fd, dh->pending, dh->pending_len);
|
||
if (nwritten == -1 && errno == EAGAIN )
|
||
return 0;
|
||
|
||
if (nwritten <= 0)
|
||
return gpg_error_from_errno (errno);
|
||
|
||
if (nwritten < dh->pending_len)
|
||
memmove (dh->pending, dh->pending + nwritten, dh->pending_len - nwritten);
|
||
dh->pending_len -= nwritten;
|
||
return 0;
|
||
}
|