65065e7a8de80aa5fe7e9a7381c1dfcf5308ee65
[gpgme.git] / src / data-user.c
1 /* data-user.c - A user callback based data object.
2    Copyright (C) 2002, 2004 g10 Code GmbH
3  
4    This file is part of GPGME.
5  
6    GPGME is free software; you can redistribute it and/or modify it
7    under the terms of the GNU Lesser General Public License as
8    published by the Free Software Foundation; either version 2.1 of
9    the License, or (at your option) any later version.
10    
11    GPGME is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15    
16    You should have received a copy of the GNU Lesser General Public
17    License along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19    02111-1307, USA.  */
20
21 #if HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24
25 #ifdef HAVE_SYS_TYPES_H
26 # include <sys/types.h>
27 #endif
28 #include <errno.h>
29
30 #include "debug.h"
31 #include "data.h"
32
33 \f
34 static ssize_t
35 user_read (gpgme_data_t dh, void *buffer, size_t size)
36 {
37   if (!dh->data.user.cbs->read)
38     {
39       gpg_err_set_errno (EBADF);
40       return -1;
41     }
42
43   return (*dh->data.user.cbs->read) (dh->data.user.handle, buffer, size);
44 }
45
46
47 static ssize_t
48 user_write (gpgme_data_t dh, const void *buffer, size_t size)
49 {
50   if (!dh->data.user.cbs->write)
51     {
52       gpg_err_set_errno (EBADF);
53       return -1;
54     }
55
56   return (*dh->data.user.cbs->write) (dh->data.user.handle, buffer, size);
57 }
58
59
60 static off_t
61 user_seek (gpgme_data_t dh, off_t offset, int whence)
62 {
63   if (!dh->data.user.cbs->seek)
64     {
65       gpg_err_set_errno (EBADF);
66       return -1;
67     }
68
69   return (*dh->data.user.cbs->seek) (dh->data.user.handle, offset, whence);
70 }
71
72
73 static void
74 user_release (gpgme_data_t dh)
75 {
76   if (dh->data.user.cbs->release)
77     (*dh->data.user.cbs->release) (dh->data.user.handle);
78 }
79
80
81 static struct _gpgme_data_cbs user_cbs =
82   {
83     user_read,
84     user_write,
85     user_seek,
86     user_release,
87     NULL
88   };
89
90 \f
91 gpgme_error_t
92 gpgme_data_new_from_cbs (gpgme_data_t *r_dh, gpgme_data_cbs_t cbs, void *handle)
93 {
94   gpgme_error_t err;
95   TRACE_BEG1 (DEBUG_DATA, "gpgme_data_new_from_cbs", r_dh, "handle=%p", handle);
96
97   err = _gpgme_data_new (r_dh, &user_cbs);
98   if (err)
99     return TRACE_ERR (err);
100
101   (*r_dh)->data.user.cbs = cbs;
102   (*r_dh)->data.user.handle = handle;
103   return TRACE_SUC1 ("dh=%p", *r_dh);
104 }