--- /dev/null
+/*
+ * plgfsraw.c
+ * This file is part of libzakstorage
+ *
+ * Copyright (C) 2020 Andrea Zagli <azagli@libero.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Library 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 Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <string.h>
+
+#include <glib.h>
+#include <glib-object.h>
+#include <gmodule.h>
+
+#include <libpeas/peas.h>
+
+#include "../../src/libzakstorage.h"
+#include "../../src/storagepluggable.h"
+
+#include "plgfsraw.h"
+
+static void zak_storage_pluggable_iface_init (ZakStoragePluggableInterface *iface);
+
+gboolean zak_storage_fsraw_plugin_initialize (ZakStoragePluggable *pluggable, const gchar *cnc_string);
+
+static void zak_storage_fsraw_plugin_node_new (ZakStoragePluggable *pluggable, GInputStream *src_stream, const gchar *dest_filename, const gchar *version);
+
+#define ZAK_STORAGE_FSRAW_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_STORAGE_TYPE_FSRAW_PLUGIN, ZakStorageFsRawPluginPrivate))
+
+typedef struct _ZakStorageFsRawPluginPrivate ZakStorageFsRawPluginPrivate;
+struct _ZakStorageFsRawPluginPrivate
+ {
+ gchar *cnc_string;
+
+ gchar *root;
+ };
+
+G_DEFINE_DYNAMIC_TYPE_EXTENDED (ZakStorageFsRawPlugin,
+ zak_storage_fsraw_plugin,
+ PEAS_TYPE_EXTENSION_BASE,
+ 0,
+ G_IMPLEMENT_INTERFACE_DYNAMIC (ZAK_STORAGE_TYPE_PLUGGABLE,
+ zak_storage_pluggable_iface_init))
+
+enum {
+ PROP_0,
+ PROP_CNC_STRING,
+ PROP_ROOT
+};
+
+static void
+zak_storage_fsraw_plugin_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ ZakStorageFsRawPlugin *plugin = ZAK_STORAGE_FSRAW_PLUGIN (object);
+ ZakStorageFsRawPluginPrivate *priv = ZAK_STORAGE_FSRAW_PLUGIN_GET_PRIVATE (plugin);
+
+ switch (prop_id)
+ {
+ case PROP_CNC_STRING:
+ zak_storage_fsraw_plugin_initialize ((ZakStoragePluggable *)plugin, g_value_get_string (value));
+ break;
+
+ case PROP_ROOT:
+ priv->root = g_value_get_string (value);
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+static void
+zak_storage_fsraw_plugin_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ ZakStorageFsRawPlugin *plugin = ZAK_STORAGE_FSRAW_PLUGIN (object);
+ ZakStorageFsRawPluginPrivate *priv = ZAK_STORAGE_FSRAW_PLUGIN_GET_PRIVATE (plugin);
+
+ switch (prop_id)
+ {
+ case PROP_CNC_STRING:
+ g_value_set_string (value, priv->cnc_string);
+ break;
+
+ case PROP_ROOT:
+ g_value_set_string (value, priv->root);
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+static void
+zak_storage_fsraw_plugin_init (ZakStorageFsRawPlugin *plugin)
+{
+ ZakStorageFsRawPluginPrivate *priv = ZAK_STORAGE_FSRAW_PLUGIN_GET_PRIVATE (plugin);
+
+ priv->cnc_string = NULL;
+ priv->root = NULL;
+}
+
+static void
+zak_storage_fsraw_plugin_finalize (GObject *object)
+{
+ ZakStorageFsRawPlugin *plugin = ZAK_STORAGE_FSRAW_PLUGIN (object);
+
+ G_OBJECT_CLASS (zak_storage_fsraw_plugin_parent_class)->finalize (object);
+}
+
+gboolean
+zak_storage_fsraw_plugin_initialize (ZakStoragePluggable *pluggable, const gchar *cnc_string)
+{
+ gboolean ret;
+ GError *error;
+ gchar *root;
+
+ ZakStorageFsRawPlugin *plugin = ZAK_STORAGE_FSRAW_PLUGIN (pluggable);
+ ZakStorageFsRawPluginPrivate *priv = ZAK_STORAGE_FSRAW_PLUGIN_GET_PRIVATE (plugin);
+
+ priv->cnc_string = g_strdup (cnc_string);
+
+ root = g_strstr_len (priv->cnc_string, -1, ";ROOT=/");
+ if (root != NULL)
+ {
+ priv->root = g_strdup (root + 7);
+ g_free (root);
+ }
+
+ return ret;
+}
+
+static void
+zak_storage_fsraw_plugin_node_new (ZakStoragePluggable *pluggable, GInputStream *src_stream, const gchar *dest_filename, const gchar *version)
+{
+ GError *error;
+
+ ZakStorageFsRawPluginPrivate *priv = ZAK_STORAGE_FSRAW_PLUGIN_GET_PRIVATE (pluggable);
+
+}
+
+static void
+zak_storage_fsraw_plugin_class_init (ZakStorageFsRawPluginClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ g_type_class_add_private (object_class, sizeof (ZakStorageFsRawPluginPrivate));
+
+ object_class->set_property = zak_storage_fsraw_plugin_set_property;
+ object_class->get_property = zak_storage_fsraw_plugin_get_property;
+ object_class->finalize = zak_storage_fsraw_plugin_finalize;
+
+ g_object_class_override_property (object_class, PROP_CNC_STRING, "cnc_string");
+ g_object_class_override_property (object_class, PROP_ROOT, "root");
+}
+
+static void
+zak_storage_pluggable_iface_init (ZakStoragePluggableInterface *iface)
+{
+ iface->initialize = zak_storage_fsraw_plugin_initialize;
+ iface->node_new = zak_storage_fsraw_plugin_node_new;
+}
+
+static void
+zak_storage_fsraw_plugin_class_finalize (ZakStorageFsRawPluginClass *klass)
+{
+}
+
+G_MODULE_EXPORT void
+peas_register_types (PeasObjectModule *module)
+{
+ zak_storage_fsraw_plugin_register_type (G_TYPE_MODULE (module));
+
+ peas_object_module_register_extension_type (module,
+ ZAK_STORAGE_TYPE_PLUGGABLE,
+ ZAK_STORAGE_TYPE_FSRAW_PLUGIN);
+}
--- /dev/null
+/*
+ * plgfsraw.h
+ * This file is part of libzakstorage
+ *
+ * Copyright (C) 2020 Andrea Zagli <azagli@libero.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Library 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 Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef __ZAK_STORAGE_FSRAW_PLUGIN_H__
+#define __ZAK_STORAGE_FSRAW_PLUGIN_H__
+
+#include <libpeas/peas.h>
+
+G_BEGIN_DECLS
+
+#define ZAK_STORAGE_TYPE_FSRAW_PLUGIN (zak_storage_fsraw_plugin_get_type ())
+#define ZAK_STORAGE_FSRAW_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ZAK_STORAGE_TYPE_FSRAW_PLUGIN, ZakStorageFsRawPlugin))
+#define ZAK_STORAGE_FSRAW_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), ZAK_STORAGE_TYPE_FSRAW_PLUGIN, ZakStorageFsRawPlugin))
+#define ZAK_STORAGE_IS_FSRAW_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ZAK_STORAGE_TYPE_FSRAW_PLUGIN))
+#define ZAK_STORAGE_IS_FSRAW_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ZAK_STORAGE_TYPE_FSRAW_PLUGIN))
+#define ZAK_STORAGE_FSRAW_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ZAK_STORAGE_TYPE_FSRAW_PLUGIN, ZakStorageFsRawPluginClass))
+
+typedef struct _ZakStorageFsRawPlugin ZakStorageFsRawPlugin;
+typedef struct _ZakStorageFsRawPluginClass ZakStorageFsRawPluginClass;
+
+struct _ZakStorageFsRawPlugin {
+ PeasExtensionBase parent_instance;
+};
+
+struct _ZakStorageFsRawPluginClass {
+ PeasExtensionBaseClass parent_class;
+};
+
+GType zak_storage_fsraw_plugin_get_type (void) G_GNUC_CONST;
+G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
+
+G_END_DECLS
+
+#endif /* __ZAK_STORAGE_FSRAW_PLUGIN_H__ */