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.1 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"
25 #include "qom/object.h"
28 struct QIOTaskThreadData
{
31 GDestroyNotify destroy
;
32 GMainContext
*context
;
41 GDestroyNotify destroy
;
44 GDestroyNotify destroyResult
;
45 QemuMutex thread_lock
;
47 struct QIOTaskThreadData
*thread
;
51 QIOTask
*qio_task_new(Object
*source
,
54 GDestroyNotify destroy
)
58 task
= g_new0(QIOTask
, 1);
60 task
->source
= source
;
63 task
->opaque
= opaque
;
64 task
->destroy
= destroy
;
65 qemu_mutex_init(&task
->thread_lock
);
66 qemu_cond_init(&task
->thread_cond
);
68 trace_qio_task_new(task
, source
, func
, opaque
);
73 static void qio_task_free(QIOTask
*task
)
75 qemu_mutex_lock(&task
->thread_lock
);
77 if (task
->thread
->destroy
) {
78 task
->thread
->destroy(task
->thread
->opaque
);
81 if (task
->thread
->context
) {
82 g_main_context_unref(task
->thread
->context
);
89 task
->destroy(task
->opaque
);
91 if (task
->destroyResult
) {
92 task
->destroyResult(task
->result
);
95 error_free(task
->err
);
97 object_unref(task
->source
);
99 qemu_mutex_unlock(&task
->thread_lock
);
100 qemu_mutex_destroy(&task
->thread_lock
);
101 qemu_cond_destroy(&task
->thread_cond
);
107 static gboolean
qio_task_thread_result(gpointer opaque
)
109 QIOTask
*task
= opaque
;
111 trace_qio_task_thread_result(task
);
112 qio_task_complete(task
);
118 static gpointer
qio_task_thread_worker(gpointer opaque
)
120 QIOTask
*task
= opaque
;
122 trace_qio_task_thread_run(task
);
124 task
->thread
->worker(task
, task
->thread
->opaque
);
126 /* We're running in the background thread, and must only
127 * ever report the task results in the main event loop
128 * thread. So we schedule an idle callback to report
131 trace_qio_task_thread_exit(task
);
133 qemu_mutex_lock(&task
->thread_lock
);
135 task
->thread
->completion
= g_idle_source_new();
136 g_source_set_callback(task
->thread
->completion
,
137 qio_task_thread_result
, task
, NULL
);
138 g_source_attach(task
->thread
->completion
,
139 task
->thread
->context
);
140 g_source_unref(task
->thread
->completion
);
141 trace_qio_task_thread_source_attach(task
, task
->thread
->completion
);
143 qemu_cond_signal(&task
->thread_cond
);
144 qemu_mutex_unlock(&task
->thread_lock
);
150 void qio_task_run_in_thread(QIOTask
*task
,
151 QIOTaskWorker worker
,
153 GDestroyNotify destroy
,
154 GMainContext
*context
)
156 struct QIOTaskThreadData
*data
= g_new0(struct QIOTaskThreadData
, 1);
160 g_main_context_ref(context
);
163 data
->worker
= worker
;
164 data
->opaque
= opaque
;
165 data
->destroy
= destroy
;
166 data
->context
= context
;
170 trace_qio_task_thread_start(task
, worker
, opaque
);
171 qemu_thread_create(&thread
,
173 qio_task_thread_worker
,
175 QEMU_THREAD_DETACHED
);
179 void qio_task_wait_thread(QIOTask
*task
)
181 qemu_mutex_lock(&task
->thread_lock
);
182 g_assert(task
->thread
!= NULL
);
183 while (task
->thread
->completion
== NULL
) {
184 qemu_cond_wait(&task
->thread_cond
, &task
->thread_lock
);
187 trace_qio_task_thread_source_cancel(task
, task
->thread
->completion
);
188 g_source_destroy(task
->thread
->completion
);
189 qemu_mutex_unlock(&task
->thread_lock
);
191 qio_task_thread_result(task
);
195 void qio_task_complete(QIOTask
*task
)
197 task
->func(task
, task
->opaque
);
198 trace_qio_task_complete(task
);
203 void qio_task_set_error(QIOTask
*task
,
206 error_propagate(&task
->err
, err
);
210 bool qio_task_propagate_error(QIOTask
*task
,
214 error_propagate(errp
, task
->err
);
223 void qio_task_set_result_pointer(QIOTask
*task
,
225 GDestroyNotify destroy
)
227 task
->result
= result
;
228 task
->destroyResult
= destroy
;
232 gpointer
qio_task_get_result_pointer(QIOTask
*task
)
238 Object
*qio_task_get_source(QIOTask
*task
)