2 Unix SMB/CIFS implementation.
3 Infrastructure for async requests
4 Copyright (C) Volker Lendecke 2008
5 Copyright (C) Stefan Metzmacher 2009
7 ** NOTE! The following LGPL license applies to the tevent
8 ** library. This does NOT imply that all of Samba is released
11 This library is free software; you can redistribute it and/or
12 modify it under the terms of the GNU Lesser General Public
13 License as published by the Free Software Foundation; either
14 version 3 of the License, or (at your option) any later version.
16 This library is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
21 You should have received a copy of the GNU Lesser General Public
22 License along with this library; if not, see <http://www.gnu.org/licenses/>.
27 #include "tevent_internal.h"
28 #include "tevent_util.h"
30 char *tevent_req_default_print(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
)
32 return talloc_asprintf(mem_ctx
,
33 "tevent_req[%p/%s]: state[%d] error[%lld (0x%llX)] "
34 " state[%s (%p)] timer[%p]",
35 req
, req
->internal
.create_location
,
37 (unsigned long long)req
->internal
.error
,
38 (unsigned long long)req
->internal
.error
,
39 talloc_get_name(req
->data
),
45 char *tevent_req_print(TALLOC_CTX
*mem_ctx
, struct tevent_req
*req
)
47 if (!req
->private_print
) {
48 return tevent_req_default_print(req
, mem_ctx
);
51 return req
->private_print(req
, mem_ctx
);
54 struct tevent_req
*_tevent_req_create(TALLOC_CTX
*mem_ctx
,
60 struct tevent_req
*req
;
61 void **ppdata
= (void **)pdata
;
64 req
= talloc_pooled_object(
65 mem_ctx
, struct tevent_req
, 2,
66 sizeof(struct tevent_immediate
) + data_size
);
71 req
->internal
.private_type
= type
;
72 req
->internal
.create_location
= location
;
73 req
->internal
.finish_location
= NULL
;
74 req
->internal
.state
= TEVENT_REQ_IN_PROGRESS
;
75 req
->internal
.trigger
= tevent_create_immediate(req
);
76 if (!req
->internal
.trigger
) {
80 req
->internal
.defer_callback_ev
= NULL
;
82 data
= talloc_zero_size(req
, data_size
);
87 talloc_set_name_const(data
, type
);
95 void _tevent_req_notify_callback(struct tevent_req
*req
, const char *location
)
97 req
->internal
.finish_location
= location
;
98 if (req
->internal
.defer_callback_ev
) {
99 (void)tevent_req_post(req
, req
->internal
.defer_callback_ev
);
100 req
->internal
.defer_callback_ev
= NULL
;
103 if (req
->async
.fn
!= NULL
) {
108 static void tevent_req_finish(struct tevent_req
*req
,
109 enum tevent_req_state state
,
110 const char *location
)
112 req
->internal
.state
= state
;
113 _tevent_req_notify_callback(req
, location
);
116 void _tevent_req_done(struct tevent_req
*req
,
117 const char *location
)
119 tevent_req_finish(req
, TEVENT_REQ_DONE
, location
);
122 bool _tevent_req_error(struct tevent_req
*req
,
124 const char *location
)
130 req
->internal
.error
= error
;
131 tevent_req_finish(req
, TEVENT_REQ_USER_ERROR
, location
);
135 void _tevent_req_oom(struct tevent_req
*req
, const char *location
)
137 tevent_req_finish(req
, TEVENT_REQ_NO_MEMORY
, location
);
140 bool _tevent_req_nomem(const void *p
,
141 struct tevent_req
*req
,
142 const char *location
)
147 _tevent_req_oom(req
, location
);
154 * @brief Immediate event callback.
156 * @param[in] ev The event context to use.
158 * @param[in] im The immediate event.
160 * @param[in] priv The async request to be finished.
162 static void tevent_req_trigger(struct tevent_context
*ev
,
163 struct tevent_immediate
*im
,
166 struct tevent_req
*req
= talloc_get_type(private_data
,
169 tevent_req_finish(req
, req
->internal
.state
,
170 req
->internal
.finish_location
);
173 struct tevent_req
*tevent_req_post(struct tevent_req
*req
,
174 struct tevent_context
*ev
)
176 tevent_schedule_immediate(req
->internal
.trigger
,
177 ev
, tevent_req_trigger
, req
);
181 void tevent_req_defer_callback(struct tevent_req
*req
,
182 struct tevent_context
*ev
)
184 req
->internal
.defer_callback_ev
= ev
;
187 bool tevent_req_is_in_progress(struct tevent_req
*req
)
189 if (req
->internal
.state
== TEVENT_REQ_IN_PROGRESS
) {
196 void tevent_req_received(struct tevent_req
*req
)
198 TALLOC_FREE(req
->data
);
199 req
->private_print
= NULL
;
201 TALLOC_FREE(req
->internal
.trigger
);
202 TALLOC_FREE(req
->internal
.timer
);
204 req
->internal
.state
= TEVENT_REQ_RECEIVED
;
207 bool tevent_req_poll(struct tevent_req
*req
,
208 struct tevent_context
*ev
)
210 while (tevent_req_is_in_progress(req
)) {
213 ret
= tevent_loop_once(ev
);
222 bool tevent_req_is_error(struct tevent_req
*req
, enum tevent_req_state
*state
,
225 if (req
->internal
.state
== TEVENT_REQ_DONE
) {
228 if (req
->internal
.state
== TEVENT_REQ_USER_ERROR
) {
229 *error
= req
->internal
.error
;
231 *state
= req
->internal
.state
;
235 static void tevent_req_timedout(struct tevent_context
*ev
,
236 struct tevent_timer
*te
,
240 struct tevent_req
*req
= talloc_get_type(private_data
,
243 TALLOC_FREE(req
->internal
.timer
);
245 tevent_req_finish(req
, TEVENT_REQ_TIMED_OUT
, __FUNCTION__
);
248 bool tevent_req_set_endtime(struct tevent_req
*req
,
249 struct tevent_context
*ev
,
250 struct timeval endtime
)
252 TALLOC_FREE(req
->internal
.timer
);
254 req
->internal
.timer
= tevent_add_timer(ev
, req
, endtime
,
257 if (tevent_req_nomem(req
->internal
.timer
, req
)) {
264 void tevent_req_set_callback(struct tevent_req
*req
, tevent_req_fn fn
, void *pvt
)
267 req
->async
.private_data
= pvt
;
270 void *_tevent_req_callback_data(struct tevent_req
*req
)
272 return req
->async
.private_data
;
275 void *_tevent_req_data(struct tevent_req
*req
)
280 void tevent_req_set_print_fn(struct tevent_req
*req
, tevent_req_print_fn fn
)
282 req
->private_print
= fn
;
285 void tevent_req_set_cancel_fn(struct tevent_req
*req
, tevent_req_cancel_fn fn
)
287 req
->private_cancel
= fn
;
290 bool _tevent_req_cancel(struct tevent_req
*req
, const char *location
)
292 if (req
->private_cancel
== NULL
) {
296 return req
->private_cancel(req
);