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/>.
22 #include "qemu/thread.h"
29 GDestroyNotify destroy
;
33 QIOTask
*qio_task_new(Object
*source
,
36 GDestroyNotify destroy
)
40 task
= g_new0(QIOTask
, 1);
42 task
->source
= source
;
45 task
->opaque
= opaque
;
46 task
->destroy
= destroy
;
48 trace_qio_task_new(task
, source
, func
, opaque
);
53 static void qio_task_free(QIOTask
*task
)
56 task
->destroy(task
->opaque
);
58 object_unref(task
->source
);
64 struct QIOTaskThreadData
{
68 GDestroyNotify destroy
;
74 static gboolean
gio_task_thread_result(gpointer opaque
)
76 struct QIOTaskThreadData
*data
= opaque
;
78 trace_qio_task_thread_result(data
->task
);
80 qio_task_complete(data
->task
);
82 qio_task_abort(data
->task
, data
->err
);
85 error_free(data
->err
);
87 data
->destroy(data
->opaque
);
96 static gpointer
qio_task_thread_worker(gpointer opaque
)
98 struct QIOTaskThreadData
*data
= opaque
;
100 trace_qio_task_thread_run(data
->task
);
101 data
->ret
= data
->worker(data
->task
, &data
->err
, data
->opaque
);
102 if (data
->ret
< 0 && data
->err
== NULL
) {
103 error_setg(&data
->err
, "Task worker failed but did not set an error");
106 /* We're running in the background thread, and must only
107 * ever report the task results in the main event loop
108 * thread. So we schedule an idle callback to report
111 trace_qio_task_thread_exit(data
->task
);
112 g_idle_add(gio_task_thread_result
, data
);
117 void qio_task_run_in_thread(QIOTask
*task
,
118 QIOTaskWorker worker
,
120 GDestroyNotify destroy
)
122 struct QIOTaskThreadData
*data
= g_new0(struct QIOTaskThreadData
, 1);
126 data
->worker
= worker
;
127 data
->opaque
= opaque
;
128 data
->destroy
= destroy
;
130 trace_qio_task_thread_start(task
, worker
, opaque
);
131 qemu_thread_create(&thread
,
133 qio_task_thread_worker
,
135 QEMU_THREAD_DETACHED
);
139 void qio_task_complete(QIOTask
*task
)
141 task
->func(task
->source
, NULL
, task
->opaque
);
142 trace_qio_task_complete(task
);
146 void qio_task_abort(QIOTask
*task
,
149 task
->func(task
->source
, err
, task
->opaque
);
150 trace_qio_task_abort(task
);
155 Object
*qio_task_get_source(QIOTask
*task
)
157 object_ref(task
->source
);