diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2022-02-16 23:12:17 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2022-04-05 08:14:53 +0000 |
commit | 01c8edf68cdd32582e7fbc32a0d83f71811e31d6 (patch) | |
tree | b1df4b2b1140ef3f7132a9d67c93c4abc8f49ec7 /src/mm-dispatcher.h | |
parent | 1fec1cd3c225fd418a2a20f726c93b570a187805 (diff) |
dispatcher: new generic object to handle script dispatchers
Based on the FCC unlock specific one, but without any FCC unlock
specific constraint.
Diffstat (limited to 'src/mm-dispatcher.h')
-rw-r--r-- | src/mm-dispatcher.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/mm-dispatcher.h b/src/mm-dispatcher.h new file mode 100644 index 00000000..16b9a864 --- /dev/null +++ b/src/mm-dispatcher.h @@ -0,0 +1,57 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details: + * + * Copyright (C) 2021-2022 Aleksander Morgado <aleksander@aleksander.es> + */ + +#ifndef MM_DISPATCHER_H +#define MM_DISPATCHER_H + +#include <config.h> +#include <gio/gio.h> + +#define MM_TYPE_DISPATCHER (mm_dispatcher_get_type ()) +#define MM_DISPATCHER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_DISPATCHER, MMDispatcher)) +#define MM_DISPATCHER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM_TYPE_DISPATCHER, MMDispatcherClass)) +#define MM_IS_DISPATCHER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_DISPATCHER)) +#define MM_IS_DISPATCHER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM_TYPE_DISPATCHER)) +#define MM_DISPATCHER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_DISPATCHER, MMDispatcherClass)) + +typedef struct _MMDispatcher MMDispatcher; +typedef struct _MMDispatcherClass MMDispatcherClass; +typedef struct _MMDispatcherPrivate MMDispatcherPrivate; + +#define MM_DISPATCHER_OPERATION_DESCRIPTION "operation-description" + +struct _MMDispatcher { + GObject parent; + MMDispatcherPrivate *priv; +}; + +struct _MMDispatcherClass { + GObjectClass parent; +}; + +GType mm_dispatcher_get_type (void); +G_DEFINE_AUTOPTR_CLEANUP_FUNC (MMDispatcher, g_object_unref) + +void mm_dispatcher_run (MMDispatcher *self, + const GStrv argv, + guint timeout_secs, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean mm_dispatcher_run_finish (MMDispatcher *self, + GAsyncResult *res, + GError **error); + +#endif /* MM_DISPATCHER_H */ |