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;
35 QIOTask *qio_task_new(Object *source,
38 GDestroyNotify destroy)
42 task = g_new0(QIOTask, 1);
44 task->source = source;
47 task->opaque = opaque;
48 task->destroy = destroy;
50 trace_qio_task_new(task, source, func, opaque);
55 static void qio_task_free(QIOTask *task)
58 task->destroy(task->opaque);
60 object_unref(task->source);
66 struct QIOTaskThreadData {
70 GDestroyNotify destroy;
76 static gboolean gio_task_thread_result(gpointer opaque)
78 struct QIOTaskThreadData *data = opaque;
80 trace_qio_task_thread_result(data->task);
82 qio_task_complete(data->task);
84 qio_task_abort(data->task, data->err);
87 error_free(data->err);
89 data->destroy(data->opaque);
98 static gpointer qio_task_thread_worker(gpointer opaque)
100 struct QIOTaskThreadData *data = opaque;
102 trace_qio_task_thread_run(data->task);
103 data->ret = data->worker(data->task, &data->err, data->opaque);
104 if (data->ret < 0 && data->err == NULL) {
105 error_setg(&data->err, "Task worker failed but did not set an error");
108 /* We're running in the background thread, and must only
109 * ever report the task results in the main event loop
110 * thread. So we schedule an idle callback to report
113 trace_qio_task_thread_exit(data->task);
114 g_idle_add(gio_task_thread_result, data);
119 void qio_task_run_in_thread(QIOTask *task,
120 QIOTaskWorker worker,
122 GDestroyNotify destroy)
124 struct QIOTaskThreadData *data = g_new0(struct QIOTaskThreadData, 1);
128 data->worker = worker;
129 data->opaque = opaque;
130 data->destroy = destroy;
132 trace_qio_task_thread_start(task, worker, opaque);
133 qemu_thread_create(&thread,
135 qio_task_thread_worker,
137 QEMU_THREAD_DETACHED);
141 void qio_task_complete(QIOTask *task)
143 task->func(task->source, NULL, task->opaque);
144 trace_qio_task_complete(task);
148 void qio_task_abort(QIOTask *task,
151 task->func(task->source, err, task->opaque);
152 trace_qio_task_abort(task);
157 Object *qio_task_get_source(QIOTask *task)
159 object_ref(task->source);