summaryrefslogtreecommitdiff
path: root/src/glibext/singleton-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-12-08 18:33:48 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-12-08 18:33:48 (GMT)
commit2c33301f914d19516f8a107033a5dd7a97d70d07 (patch)
treeb96cce5b44c867e3fce6583d16aafdd93268db12 /src/glibext/singleton-int.h
parent29a47836eb9dd9c21c81da904b7ad5372a538144 (diff)
Restore a reviewed singleton interface.
Diffstat (limited to 'src/glibext/singleton-int.h')
-rw-r--r--src/glibext/singleton-int.h36
1 files changed, 24 insertions, 12 deletions
diff --git a/src/glibext/singleton-int.h b/src/glibext/singleton-int.h
index 3db17f9..9212e2e 100644
--- a/src/glibext/singleton-int.h
+++ b/src/glibext/singleton-int.h
@@ -2,7 +2,7 @@
/* Chrysalide - Outil d'analyse de fichiers binaires
* singleton-int.h - définitions internes propres aux réductions du nombre d'instances d'un même type
*
- * Copyright (C) 2021 Cyrille Bagard
+ * Copyright (C) 2021-2024 Cyrille Bagard
*
* This file is part of Chrysalide.
*
@@ -29,6 +29,9 @@
+/* ------------------ INTERFACE POUR CANDIDAT A UNE CENTRALISATION ------------------ */
+
+
/* Fournit une liste de candidats embarqués par un candidat. */
typedef GSingletonCandidate ** (* list_inner_instances_fc) (const GSingletonCandidate *, size_t *);
@@ -41,15 +44,9 @@ typedef guint (* hash_candidate_fc) (const GSingletonCandidate *);
/* Détermine si deux candidats à l'unicité sont identiques. */
typedef gboolean (* is_candidate_equal_fc) (const GSingletonCandidate *, const GSingletonCandidate *);
-/* Marque un candidat comme figé. */
-typedef void (* set_candidate_ro_fc) (GSingletonCandidate *);
-
-/* Indique si le candidat est figé. */
-typedef bool (* is_candidate_ro_fc) (const GSingletonCandidate *);
-
/* Instance d'objet visant à être unique (interface) */
-struct _GSingletonCandidateIface
+struct _GSingletonCandidateInterface
{
GTypeInterface base_iface; /* A laisser en premier */
@@ -59,14 +56,29 @@ struct _GSingletonCandidateIface
hash_candidate_fc hash; /* Prise d'empreinte */
is_candidate_equal_fc is_equal; /* Comparaison */
- set_candidate_ro_fc set_ro; /* Bascule en mode figé */
- is_candidate_ro_fc is_ro; /* Consultation de l'état */
+};
+
+
+
+/* ------------------------- COLLECTION D'INSTANCES UNIQUES ------------------------- */
+
+
+/* Définition d'un compacteur d'instances de types (instance) */
+struct _GSingletonFactory
+{
+ GObject parent; /* A laisser en premier */
+
+ GHashTable *table; /* Suivi des conservations */
+ GMutex access; /* Verrou pour la concurrence */
};
+/* Définition d'un compacteur d'instances de types (classe) */
+struct _GSingletonFactoryClass
+{
+ GObjectClass parent; /* A laisser en premier */
-/* Redéfinition */
-typedef GSingletonCandidateIface GSingletonCandidateInterface;
+};