s4:service_task: add missing imessaging_cleanup() to task_server_terminate()
[Samba/gebeck_regimport.git] / lib / util / tevent_werror.c
blob47bd809cbc060855655f52a80f11202573712581
1 /*
2 Unix SMB/CIFS implementation.
3 Wrap win32 errors around tevent_req
4 Copyright (C) Kai Blin 2010
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "../replace/replace.h"
21 #include "tevent_werror.h"
22 #include "libcli/util/error.h"
24 bool _tevent_req_werror(struct tevent_req *req,
25 WERROR werror,
26 const char *location)
28 return _tevent_req_error(req, W_ERROR_V(werror),
29 location);
32 bool tevent_req_is_werror(struct tevent_req *req, WERROR *error)
34 enum tevent_req_state state;
35 uint64_t err;
37 if (!tevent_req_is_error(req, &state, &err)) {
38 return false;
40 switch (state) {
41 case TEVENT_REQ_TIMED_OUT:
42 *error = WERR_TIMEOUT;
43 break;
44 case TEVENT_REQ_NO_MEMORY:
45 *error = WERR_NOMEM;
46 break;
47 case TEVENT_REQ_USER_ERROR:
48 *error = W_ERROR(err);
49 break;
50 default:
51 *error = WERR_INTERNAL_ERROR;
52 break;
54 return true;
57 WERROR tevent_req_simple_recv_werror(struct tevent_req *req)
59 WERROR werror;
61 if (tevent_req_is_werror(req, &werror)) {
62 tevent_req_received(req);
63 return werror;
65 tevent_req_received(req);
66 return WERR_OK;
69 void tevent_req_simple_finish_werror(struct tevent_req *subreq,
70 WERROR subreq_error)
72 struct tevent_req *req = tevent_req_callback_data(
73 subreq, struct tevent_req);
75 TALLOC_FREE(subreq);
77 if (!W_ERROR_IS_OK(subreq_error)) {
78 tevent_req_werror(req, subreq_error);
79 return;
81 tevent_req_done(req);
84 bool tevent_req_poll_werror(struct tevent_req *req,
85 struct tevent_context *ev,
86 WERROR *err)
88 bool ret = tevent_req_poll(req, ev);
89 if (!ret) {
90 NTSTATUS status = map_nt_error_from_unix_common(errno);
91 *err = ntstatus_to_werror(status);
93 return ret;