2015-03-18 18:25:45 +01:00
|
|
|
/*
|
|
|
|
* QEMU I/O task tests
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-02-08 19:08:51 +01:00
|
|
|
#include "qemu/osdep.h"
|
2015-03-18 18:25:45 +01:00
|
|
|
|
|
|
|
#include "io/task.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2015-03-18 18:25:45 +01:00
|
|
|
|
|
|
|
#define TYPE_DUMMY "qemu:dummy"
|
|
|
|
|
|
|
|
typedef struct DummyObject DummyObject;
|
|
|
|
typedef struct DummyObjectClass DummyObjectClass;
|
|
|
|
|
|
|
|
struct DummyObject {
|
|
|
|
Object parent;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DummyObjectClass {
|
|
|
|
ObjectClass parent;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const TypeInfo dummy_info = {
|
|
|
|
.parent = TYPE_OBJECT,
|
|
|
|
.name = TYPE_DUMMY,
|
|
|
|
.instance_size = sizeof(DummyObject),
|
|
|
|
.class_size = sizeof(DummyObjectClass),
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TestTaskData {
|
|
|
|
Object *source;
|
|
|
|
Error *err;
|
|
|
|
bool freed;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void task_callback(Object *source,
|
|
|
|
Error *err,
|
|
|
|
gpointer opaque)
|
|
|
|
{
|
|
|
|
struct TestTaskData *data = opaque;
|
|
|
|
|
|
|
|
data->source = source;
|
|
|
|
data->err = err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void test_task_complete(void)
|
|
|
|
{
|
|
|
|
QIOTask *task;
|
|
|
|
Object *obj = object_new(TYPE_DUMMY);
|
|
|
|
Object *src;
|
|
|
|
struct TestTaskData data = { NULL, NULL, false };
|
|
|
|
|
|
|
|
task = qio_task_new(obj, task_callback, &data, NULL);
|
|
|
|
src = qio_task_get_source(task);
|
|
|
|
|
|
|
|
qio_task_complete(task);
|
|
|
|
|
|
|
|
g_assert(obj == src);
|
|
|
|
|
|
|
|
object_unref(obj);
|
|
|
|
object_unref(src);
|
|
|
|
|
|
|
|
g_assert(data.source == obj);
|
|
|
|
g_assert(data.err == NULL);
|
|
|
|
g_assert(data.freed == false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void task_data_free(gpointer opaque)
|
|
|
|
{
|
|
|
|
struct TestTaskData *data = opaque;
|
|
|
|
|
|
|
|
data->freed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void test_task_data_free(void)
|
|
|
|
{
|
|
|
|
QIOTask *task;
|
|
|
|
Object *obj = object_new(TYPE_DUMMY);
|
|
|
|
struct TestTaskData data = { NULL, NULL, false };
|
|
|
|
|
|
|
|
task = qio_task_new(obj, task_callback, &data, task_data_free);
|
|
|
|
|
|
|
|
qio_task_complete(task);
|
|
|
|
|
|
|
|
object_unref(obj);
|
|
|
|
|
|
|
|
g_assert(data.source == obj);
|
|
|
|
g_assert(data.err == NULL);
|
|
|
|
g_assert(data.freed == true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-04 12:39:38 +02:00
|
|
|
static void test_task_failure(void)
|
2015-03-18 18:25:45 +01:00
|
|
|
{
|
|
|
|
QIOTask *task;
|
|
|
|
Object *obj = object_new(TYPE_DUMMY);
|
|
|
|
struct TestTaskData data = { NULL, NULL, false };
|
|
|
|
Error *err = NULL;
|
|
|
|
|
|
|
|
task = qio_task_new(obj, task_callback, &data, NULL);
|
|
|
|
|
|
|
|
error_setg(&err, "Some error");
|
|
|
|
|
|
|
|
qio_task_abort(task, err);
|
|
|
|
|
|
|
|
error_free(err);
|
|
|
|
object_unref(obj);
|
|
|
|
|
|
|
|
g_assert(data.source == obj);
|
|
|
|
g_assert(data.err == err);
|
|
|
|
g_assert(data.freed == false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct TestThreadWorkerData {
|
|
|
|
Object *source;
|
|
|
|
Error *err;
|
|
|
|
bool fail;
|
|
|
|
GThread *worker;
|
|
|
|
GThread *complete;
|
|
|
|
GMainLoop *loop;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int test_task_thread_worker(QIOTask *task,
|
|
|
|
Error **errp,
|
|
|
|
gpointer opaque)
|
|
|
|
{
|
|
|
|
struct TestThreadWorkerData *data = opaque;
|
|
|
|
|
|
|
|
data->worker = g_thread_self();
|
|
|
|
|
|
|
|
if (data->fail) {
|
|
|
|
error_setg(errp, "Testing fail");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void test_task_thread_callback(Object *source,
|
|
|
|
Error *err,
|
|
|
|
gpointer opaque)
|
|
|
|
{
|
|
|
|
struct TestThreadWorkerData *data = opaque;
|
|
|
|
|
|
|
|
data->source = source;
|
|
|
|
data->err = err;
|
|
|
|
|
|
|
|
data->complete = g_thread_self();
|
|
|
|
|
|
|
|
g_main_loop_quit(data->loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void test_task_thread_complete(void)
|
|
|
|
{
|
|
|
|
QIOTask *task;
|
|
|
|
Object *obj = object_new(TYPE_DUMMY);
|
|
|
|
struct TestThreadWorkerData data = { 0 };
|
|
|
|
GThread *self;
|
|
|
|
|
|
|
|
data.loop = g_main_loop_new(g_main_context_default(),
|
|
|
|
TRUE);
|
|
|
|
|
|
|
|
task = qio_task_new(obj,
|
|
|
|
test_task_thread_callback,
|
|
|
|
&data,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
qio_task_run_in_thread(task,
|
|
|
|
test_task_thread_worker,
|
|
|
|
&data,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_main_loop_run(data.loop);
|
|
|
|
|
|
|
|
g_main_loop_unref(data.loop);
|
|
|
|
object_unref(obj);
|
|
|
|
|
|
|
|
g_assert(data.source == obj);
|
|
|
|
g_assert(data.err == NULL);
|
|
|
|
|
|
|
|
self = g_thread_self();
|
|
|
|
|
|
|
|
/* Make sure the test_task_thread_worker actually got
|
|
|
|
* run in a different thread */
|
|
|
|
g_assert(data.worker != self);
|
|
|
|
|
|
|
|
/* And that the test_task_thread_callback got rnu in
|
|
|
|
* the main loop thread (ie this one) */
|
|
|
|
g_assert(data.complete == self);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-04 12:39:38 +02:00
|
|
|
static void test_task_thread_failure(void)
|
2015-03-18 18:25:45 +01:00
|
|
|
{
|
|
|
|
QIOTask *task;
|
|
|
|
Object *obj = object_new(TYPE_DUMMY);
|
|
|
|
struct TestThreadWorkerData data = { 0 };
|
|
|
|
GThread *self;
|
|
|
|
|
|
|
|
data.loop = g_main_loop_new(g_main_context_default(),
|
|
|
|
TRUE);
|
|
|
|
data.fail = true;
|
|
|
|
|
|
|
|
task = qio_task_new(obj,
|
|
|
|
test_task_thread_callback,
|
|
|
|
&data,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
qio_task_run_in_thread(task,
|
|
|
|
test_task_thread_worker,
|
|
|
|
&data,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_main_loop_run(data.loop);
|
|
|
|
|
|
|
|
g_main_loop_unref(data.loop);
|
|
|
|
object_unref(obj);
|
|
|
|
|
|
|
|
g_assert(data.source == obj);
|
|
|
|
g_assert(data.err != NULL);
|
|
|
|
|
|
|
|
self = g_thread_self();
|
|
|
|
|
|
|
|
/* Make sure the test_task_thread_worker actually got
|
|
|
|
* run in a different thread */
|
|
|
|
g_assert(data.worker != self);
|
|
|
|
|
|
|
|
/* And that the test_task_thread_callback got rnu in
|
|
|
|
* the main loop thread (ie this one) */
|
|
|
|
g_assert(data.complete == self);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
g_test_init(&argc, &argv, NULL);
|
|
|
|
module_call_init(MODULE_INIT_QOM);
|
|
|
|
type_register_static(&dummy_info);
|
|
|
|
g_test_add_func("/crypto/task/complete", test_task_complete);
|
|
|
|
g_test_add_func("/crypto/task/datafree", test_task_data_free);
|
2016-08-04 12:39:38 +02:00
|
|
|
g_test_add_func("/crypto/task/failure", test_task_failure);
|
2015-03-18 18:25:45 +01:00
|
|
|
g_test_add_func("/crypto/task/thread_complete", test_task_thread_complete);
|
2016-08-04 12:39:38 +02:00
|
|
|
g_test_add_func("/crypto/task/thread_failure", test_task_thread_failure);
|
2015-03-18 18:25:45 +01:00
|
|
|
return g_test_run();
|
|
|
|
}
|