summaryrefslogtreecommitdiff
path: root/src/analysis/db/cdb.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-03-20 22:52:48 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-03-20 22:52:48 (GMT)
commit18d6b808db6e31e867525d68f92d6f928a7ab5a7 (patch)
treed534c8e374004866696322a4c3f58ae2a7a545d9 /src/analysis/db/cdb.h
parent84790a5b420d0a9ce658013573b180ce059db325 (diff)
Created the first steps for a distributed storage.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@368 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/db/cdb.h')
-rw-r--r--src/analysis/db/cdb.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/analysis/db/cdb.h b/src/analysis/db/cdb.h
new file mode 100644
index 0000000..46d0f11
--- /dev/null
+++ b/src/analysis/db/cdb.h
@@ -0,0 +1,62 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * cdb.h - prototypes pour la manipulation des archives au format CDB
+ *
+ * Copyright (C) 2014 Cyrille Bagard
+ *
+ * This file is part of OpenIDA.
+ *
+ * OpenIDA 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.
+ *
+ * OpenIDA 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _ANALYSIS_DB_CDB_H
+#define _ANALYSIS_DB_CDB_H
+
+
+#include <glib-object.h>
+#include <stdbool.h>
+
+
+#include "client.h"
+#include "core.h"
+
+
+
+#define G_TYPE_CDB_ARCHIVE g_cdb_archive_get_type()
+#define G_CDB_ARCHIVE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_cdb_archive_get_type(), GCdbArchive))
+#define G_IS_CDB_ARCHIVE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_cdb_archive_get_type()))
+#define G_CDB_ARCHIVE_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_cdb_archive_get_type(), GCdbArchiveIface))
+#define G_CDB_ARCHIVE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_CDB_ARCHIVE, GCdbArchiveClass))
+
+
+/* Description d'une archive d'éléments utilisateur (instance) */
+typedef struct _GCdbArchive GCdbArchive;
+
+/* Description d'une archive d'éléments utilisateur (classe) */
+typedef struct _GCdbArchiveClass GCdbArchiveClass;
+
+
+/* Indique le type défini pour une une archive d'éléments utilisateur. */
+GType g_cdb_archive_get_type(void);
+
+/* Prépare un client pour une connexion à une BD. */
+GCdbArchive *g_cdb_archive_new(bool, GDbClient *, const core_db_info *);
+
+/* Enregistre une archive avec tous les éléments à conserver. */
+bool g_cdb_archive_write(const GCdbArchive *);
+
+
+
+#endif /* _ANALYSIS_DB_CDB_H */