008-11-03 Marcus Brinkmann <marcus@g10code.com>
[gpgme.git] / src / data-fd.c
1 /* data-fd.c - A file descripor 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 #include <unistd.h>
26 #include <sys/types.h>
27
28 #include "data.h"
29
30 \f
31 static ssize_t
32 fd_read (gpgme_data_t dh, void *buffer, size_t size)
33 {
34   return read (dh->data.fd, buffer, size);
35 }
36
37
38 static ssize_t
39 fd_write (gpgme_data_t dh, const void *buffer, size_t size)
40 {
41   return write (dh->data.fd, buffer, size);
42 }
43
44
45 static off_t
46 fd_seek (gpgme_data_t dh, off_t offset, int whence)
47 {
48   return lseek (dh->data.fd, offset, whence);
49 }
50
51
52 static int
53 fd_get_fd (gpgme_data_t dh)
54 {
55   return (dh->data.fd);
56 }
57
58
59 static struct _gpgme_data_cbs fd_cbs =
60   {
61     fd_read,
62     fd_write,
63     fd_seek,
64     NULL,
65     fd_get_fd
66   };
67
68 \f
69 gpgme_error_t
70 gpgme_data_new_from_fd (gpgme_data_t *dh, int fd)
71 {
72   gpgme_error_t err = _gpgme_data_new (dh, &fd_cbs);
73   if (err)
74     return err;
75
76   (*dh)->data.fd = fd;
77   return 0;
78 }