4 * Copyright (c) 2015 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
23 #include "qapi/error.h"
24 #include "qemu/thread.h"
31 GDestroyNotify destroy;
34 GDestroyNotify destroyResult;
38 QIOTask *qio_task_new(Object *source,
41 GDestroyNotify destroy)
45 task = g_new0(QIOTask, 1);
47 task->source = source;
50 task->opaque = opaque;
51 task->destroy = destroy;
53 trace_qio_task_new(task, source, func, opaque);
58 static void qio_task_free(QIOTask *task)
61 task->destroy(task->opaque);
63 if (task->destroyResult) {
64 task->destroyResult(task->result);
67 error_free(task->err);
69 object_unref(task->source);
75 struct QIOTaskThreadData {
79 GDestroyNotify destroy;
80 GMainContext *context;
84 static gboolean qio_task_thread_result(gpointer opaque)
86 struct QIOTaskThreadData *data = opaque;
88 trace_qio_task_thread_result(data->task);
89 qio_task_complete(data->task);
92 data->destroy(data->opaque);
96 g_main_context_unref(data->context);
105 static gpointer qio_task_thread_worker(gpointer opaque)
107 struct QIOTaskThreadData *data = opaque;
110 trace_qio_task_thread_run(data->task);
111 data->worker(data->task, data->opaque);
113 /* We're running in the background thread, and must only
114 * ever report the task results in the main event loop
115 * thread. So we schedule an idle callback to report
118 trace_qio_task_thread_exit(data->task);
120 idle = g_idle_source_new();
121 g_source_set_callback(idle, qio_task_thread_result, data, NULL);
122 g_source_attach(idle, data->context);
128 void qio_task_run_in_thread(QIOTask *task,
129 QIOTaskWorker worker,
131 GDestroyNotify destroy,
132 GMainContext *context)
134 struct QIOTaskThreadData *data = g_new0(struct QIOTaskThreadData, 1);
138 g_main_context_ref(context);
142 data->worker = worker;
143 data->opaque = opaque;
144 data->destroy = destroy;
145 data->context = context;
147 trace_qio_task_thread_start(task, worker, opaque);
148 qemu_thread_create(&thread,
150 qio_task_thread_worker,
152 QEMU_THREAD_DETACHED);
156 void qio_task_complete(QIOTask *task)
158 task->func(task, task->opaque);
159 trace_qio_task_complete(task);
164 void qio_task_set_error(QIOTask *task,
167 error_propagate(&task->err, err);
171 bool qio_task_propagate_error(QIOTask *task,
175 error_propagate(errp, task->err);
184 void qio_task_set_result_pointer(QIOTask *task,
186 GDestroyNotify destroy)
188 task->result = result;
189 task->destroyResult = destroy;
193 gpointer qio_task_get_result_pointer(QIOTask *task)
199 Object *qio_task_get_source(QIOTask *task)