summaryrefslogtreecommitdiff
path: root/src/glibext/seq.h
blob: c00b4e24e745a281f9b952414692f191ef79ac74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

/* Chrysalide - Outil d'analyse de fichiers binaires
 * seq.h - prototypes pour la constitution d'un traitement séquentiel générique
 *
 * Copyright (C) 2018 Cyrille Bagard
 *
 *  This file is part of Chrysalide.
 *
 *  Chrysalide 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 3 of the License, or
 *  (at your option) any later version.
 *
 *  Chrysalide 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.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Chrysalide.  If not, see <http://www.gnu.org/licenses/>.
 */


#ifndef _GLIBEXT_SEQ_H
#define _GLIBEXT_SEQ_H


#include <glib-object.h>
#include <stdbool.h>
#include <sys/types.h>


#include "../gtkext/gtkstatusstack.h"



#define G_TYPE_SEQ_WORK            g_seq_work_get_type()
#define G_SEQ_WORK(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_SEQ_WORK, GSeqWork))
#define G_IS_SEQ_WORK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_SEQ_WORK))
#define G_SEQ_WORK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_SEQ_WORK, GSeqWorkClass))
#define G_IS_SEQ_WORK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_SEQ_WORK))
#define G_SEQ_WORK_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_SEQ_WORK, GSeqWorkClass))


/* Portion de traitement séquentiel à mener (instance) */
typedef struct _GSeqWork GSeqWork;

/* Portion de traitement séquentiel à mener (classe) */
typedef struct _GSeqWorkClass GSeqWorkClass;


/* Traitement simple */
typedef void (* seq_work_cb) (void *, size_t, GtkStatusStack *, activity_id_t);

/* Traitement avec retour booléen */
typedef bool (* seq_work_bool_cb) (void *, size_t, GtkStatusStack *, activity_id_t);

/* Traitement avec mise en place d'un objet */
typedef GObject * (* seq_work_obj_cb) (void *, size_t, GtkStatusStack *, activity_id_t);


/* Indique le type défini pour les tâches de traitement séquentiel et partiel. */
GType g_seq_work_get_type(void);

/* Crée une tâche de traitement séquentiel basique. */
GSeqWork *g_seq_work_new(void *, size_t, size_t, activity_id_t, seq_work_cb);

/* Crée une tâche de traitement séquentiel avec retour booléen. */
GSeqWork *g_seq_work_new_boolean(void *, size_t, size_t, activity_id_t, seq_work_bool_cb, bool *);

/* Crée une tâche de traitement séquentiel avec objects. */
GSeqWork *g_seq_work_new_object(void *, size_t, size_t, activity_id_t, seq_work_obj_cb, bool *);

#define g_gen_work_new(d, i, c) g_seq_work_new(d, 0, 1, i, c)
#define g_gen_work_new_boolean(d, i, c, b) g_seq_work_new_boolean(d, 0, 1, i, c, b)
#define g_gen_work_new_object(d, i, c, b) g_seq_work_new_object(d, 0, 1, i, c, b)



#endif  /* _GLIBEXT_SEQ_H */