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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2004 Imendio AB
* Copyright (C) 2002 CodeFactory AB
* Copyright (C) 2002 Richard Hult <richard@imendio.com>
* Copyright (C) 2002 Mikael Hallendal <micke@imendio.com>
*
* This library 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 library 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 this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include <string.h>
#include <glib/gi18n.h>
#include "libplanner/mrp-paths.h"
#include "mrp-file-module.h"
static MrpFileModule *
file_module_load (const gchar *file)
{
MrpFileModule *module;
module = mrp_file_module_new ();
module->handle = g_module_open (file, G_MODULE_BIND_LAZY);
if (module->handle == NULL) {
g_warning ("Could not open file module '%s'\n",
g_module_error ());
return NULL;
}
g_module_symbol (module->handle, "init", (gpointer)&module->init);
return module;
}
GList *
mrp_file_module_load_all (MrpApplication *app)
{
GDir* dir;
const gchar *name;
MrpFileModule *module;
gchar *path;
GList *modules = NULL;
path = mrp_paths_get_file_modules_dir (NULL);
dir = g_dir_open (path, 0, NULL);
if (dir == NULL) {
g_free (path);
return NULL;
}
while ((name = g_dir_read_name (dir)) != NULL) {
if (g_str_has_suffix (name, G_MODULE_SUFFIX)) {
gchar *plugin;
plugin = g_build_filename (path,
name,
NULL);
module = file_module_load (plugin);
if (module) {
mrp_file_module_init (module, app);
modules = g_list_prepend (modules, module);
}
g_free (plugin);
}
}
g_free (path);
g_dir_close (dir);
return modules;
}
MrpFileModule *
mrp_file_module_new (void)
{
return g_new0 (MrpFileModule, 1);
}
void
mrp_file_module_init (MrpFileModule *plugin, MrpApplication *app)
{
g_return_if_fail (plugin != NULL);
g_return_if_fail (MRP_IS_APPLICATION (app));
plugin->app = app;
if (plugin->init) {
plugin->init (plugin, app);
}
}
gboolean
mrp_file_reader_read_string (MrpFileReader *reader,
const gchar *str,
MrpProject *project,
GError **error)
{
if (reader->read_string) {
return reader->read_string (reader, str, project, error);
}
g_set_error (error,
MRP_ERROR,
MRP_ERROR_FAILED,
_("This format does not support reading"));
return FALSE;
}
const gchar *
mrp_file_writer_get_string (MrpFileWriter *writer)
{
g_return_val_if_fail (writer != NULL, NULL);
if (writer->get_mime_type) {
return writer->get_mime_type (writer);
}
return NULL;
}
const gchar *
mrp_file_writer_get_mime_type (MrpFileWriter *writer)
{
g_return_val_if_fail (writer != NULL, NULL);
if (writer->get_string) {
return writer->get_string (writer);
}
return NULL;
}
gboolean
mrp_file_writer_write (MrpFileWriter *writer,
MrpProject *project,
const gchar *uri,
gboolean force,
GError **error)
{
g_return_val_if_fail (writer != NULL, FALSE);
if (writer->write) {
return writer->write (writer, project, uri, force, error);
}
return FALSE;
}
|