2009-10-26 Marcus Brinkmann <marcus@g10code.de>
[gpgme.git] / src / wait-private.c
1 /* wait-private.c 
2    Copyright (C) 2000 Werner Koch (dd9jn)
3    Copyright (C) 2001, 2002, 2003, 2004, 2005 g10 Code GmbH
4  
5    This file is part of GPGME.
6  
7    GPGME is free software; you can redistribute it and/or modify it
8    under the terms of the GNU Lesser General Public License as
9    published by the Free Software Foundation; either version 2.1 of
10    the License, or (at your option) any later version.
11    
12    GPGME is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16    
17    You should have received a copy of the GNU Lesser General Public
18    License along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20    02111-1307, USA.  */
21
22 #if HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25 #include <assert.h>
26 #include <errno.h>
27
28 #include "gpgme.h"
29 #include "context.h"
30 #include "wait.h"
31 #include "ops.h"
32 #include "priv-io.h"
33 #include "util.h"
34
35 \f
36 /* The private event loops are used for all blocking operations, and
37    for the key and trust item listing operations.  They are completely
38    separated from each other.  */
39
40 \f
41 /* Internal I/O callback functions.  */
42
43 /* The add_io_cb and remove_io_cb handlers are shared with the global
44    event loops.  */
45
46 void
47 _gpgme_wait_private_event_cb (void *data, gpgme_event_io_t type,
48                               void *type_data)
49 {
50   switch (type)
51     {
52     case GPGME_EVENT_START:
53       /* Nothing to do here, as the wait routine is called after the
54          initialization is finished.  */
55       break;
56
57     case GPGME_EVENT_DONE:
58       break;
59
60     case GPGME_EVENT_NEXT_KEY:
61       _gpgme_op_keylist_event_cb (data, type, type_data);
62       break;
63
64     case GPGME_EVENT_NEXT_TRUSTITEM:
65       _gpgme_op_trustlist_event_cb (data, type, type_data);
66       break;
67     }
68 }
69
70 \f
71 /* If COND is a null pointer, wait until the blocking operation in CTX
72    finished and return its error value.  Otherwise, wait until COND is
73    satisfied or the operation finished.  */
74 gpgme_error_t
75 _gpgme_wait_on_condition (gpgme_ctx_t ctx, volatile int *cond,
76                           gpgme_error_t *op_err_p)
77 {
78   gpgme_error_t err = 0;
79   int hang = 1;
80
81   do
82     {
83       int nr = _gpgme_io_select (ctx->fdt.fds, ctx->fdt.size, 0);
84       unsigned int i;
85
86       if (nr < 0)
87         {
88           /* An error occured.  Close all fds in this context, and
89              signal it.  */
90           err = gpg_error_from_errno (errno);
91           _gpgme_cancel_with_err (ctx, err, 0);
92
93           if (op_err_p)
94             *op_err_p = 0;
95           return err;
96         }
97       
98       for (i = 0; i < ctx->fdt.size && nr; i++)
99         {
100           if (ctx->fdt.fds[i].fd != -1 && ctx->fdt.fds[i].signaled)
101             {
102               gpgme_error_t op_err = 0;
103
104               ctx->fdt.fds[i].signaled = 0;
105               assert (nr);
106               nr--;
107
108               LOCK (ctx->lock);
109               if (ctx->canceled)
110                 err = gpg_error (GPG_ERR_CANCELED);
111               UNLOCK (ctx->lock);
112               
113               if (!err)
114                 err = _gpgme_run_io_cb (&ctx->fdt.fds[i], 0, &op_err);  
115               if (err)
116                 {
117                   /* An error occured.  Close all fds in this context,
118                      and signal it.  */
119                   _gpgme_cancel_with_err (ctx, err, 0);
120
121                   if (op_err_p)
122                     *op_err_p = 0;
123                   return err;
124                 }
125               else if (op_err)
126                 {
127                   /* An operational error occured.  Cancel the current
128                      operation but not the session, and signal it.  */
129                   _gpgme_cancel_with_err (ctx, 0, op_err);
130
131                   /* NOTE: This relies on the operational error being
132                      generated after the operation really has
133                      completed, for example after no further status
134                      line output is generated.  Otherwise the
135                      following I/O will spill over into the next
136                      operation.  */
137                   if (op_err_p)
138                     *op_err_p = op_err;
139                   return 0;
140                 }
141             }
142         }
143
144       for (i = 0; i < ctx->fdt.size; i++)
145         if (ctx->fdt.fds[i].fd != -1)
146           break;
147       if (i == ctx->fdt.size)
148         {
149           struct gpgme_io_event_done_data data;
150           data.err = 0;
151           data.op_err = 0;
152           _gpgme_engine_io_event (ctx->engine, GPGME_EVENT_DONE, &data);
153           hang = 0;
154         }
155       if (cond && *cond)
156         hang = 0;
157     }
158   while (hang);
159
160   if (op_err_p)
161     *op_err_p = 0;
162   return 0;
163 }
164
165
166 /* Wait until the blocking operation in context CTX has finished and
167    return the error value.  This variant can not be used for
168    session-based protocols.  */
169 gpgme_error_t
170 _gpgme_wait_one (gpgme_ctx_t ctx)
171 {
172   return _gpgme_wait_on_condition (ctx, NULL, NULL);
173 }
174
175 /* Wait until the blocking operation in context CTX has finished and
176    return the error value.  This is the right variant to use for
177    sesion-based protocols.  */
178 gpgme_error_t
179 _gpgme_wait_one_ext (gpgme_ctx_t ctx, gpgme_error_t *op_err)
180 {
181   return _gpgme_wait_on_condition (ctx, NULL, op_err);
182 }