Added GtkGisLayerSourceRaster::new_from_xml.
Added GtkGisLayerSourcePostgis::new_from_xml.
if (xmlStrcmp (cur->name, "shape") == 0)
{
- gchar *filename;
-
- filename = xmlGetProp (cur, (const xmlChar *)"filename");
- if (filename != NULL)
- {
- if (!g_path_is_absolute (filename))
- {
- filename = g_build_filename (g_get_current_dir (),
- filename,
- NULL);
- }
-
- layer_source = gtk_gis_layer_source_shp_new ((const gchar *)filename);
- }
+ layer_source = gtk_gis_layer_source_shp_new_from_xml (cur);
}
else if (xmlStrcmp (cur->name, "postgis") == 0)
{
- layer_source = gtk_gis_layer_source_postgis_new (xmlGetProp (cur, (const xmlChar *)"host"),
- atol (xmlGetProp (cur, (const xmlChar *)"port")),
- xmlGetProp (cur, (const xmlChar *)"username"),
- xmlGetProp (cur, (const xmlChar *)"password"));
+ layer_source = gtk_gis_layer_source_postgis_new_from_xml (cur);
}
else if (xmlStrcmp (cur->name, "raster") == 0)
{
- gchar *filename;
-
- filename = xmlGetProp (cur, (const xmlChar *)"filename");
- if (filename != NULL)
- {
- if (!g_path_is_absolute (filename))
- {
- filename = g_build_filename (g_get_current_dir (),
- filename,
- NULL);
- }
-
- layer_source = gtk_gis_layer_source_raster_new ((const gchar *)filename);
- }
+ layer_source = gtk_gis_layer_source_raster_new_from_xml (cur);
}
if (layer_source != NULL)
#include <config.h>
#endif
-#include <libxml/tree.h>
-
#include "layersourcepostgis.h"
static void gtk_gis_layer_source_postgis_class_init (GtkGisLayerSourcePostgisClass *klass);
return source;
}
+/**
+ * gtk_gis_layer_source_postgis_new_from_xml:
+ * @xnode:
+ *
+ * Creates a new #GtkGisLayerSourcePostgis object from an #xmlNode.
+ *
+ * Returns: the newly created #GtkGisLayerSourcePostgis object.
+ */
+GtkGisLayerSource
+*gtk_gis_layer_source_postgis_new_from_xml (xmlNode *xnode)
+{
+ GtkGisLayerSource *source = NULL;
+
+ gchar *host;
+ gint port;
+ gchar *username;
+ gchar *password;
+
+ host = xmlGetProp (xnode, (const xmlChar *)"host");
+ port = strtol (xmlGetProp (xnode, (const xmlChar *)"port"), NULL, 10);
+ username = xmlGetProp (xnode, (const xmlChar *)"username");
+ password = xmlGetProp (xnode, (const xmlChar *)"password");
+
+ source = gtk_gis_layer_source_postgis_new (host,
+ port,
+ username,
+ password);
+
+ return source;
+}
+
static xmlNode
*gtk_gis_layer_source_postgis_get_xml (GtkGisLayerSource *source)
{
#ifndef __GTK_GIS_LAYER_SOURCE_POSTGIS_H__
#define __GTK_GIS_LAYER_SOURCE_POSTGIS_H__
+#include <libxml/tree.h>
+
#include "layersource.h"
G_BEGIN_DECLS
gchar *username,
gchar *password);
+GtkGisLayerSource *gtk_gis_layer_source_postgis_new_from_xml (xmlNode *xnode);
+
G_END_DECLS
#include <config.h>
#endif
-#include <libxml/tree.h>
-
#include <gdal.h>
#include "layersourceraster.h"
return source;
}
+/**
+ * gtk_gis_layer_source_raster_new_from_xml:
+ * @xnode:
+ *
+ * Creates a new #GtkGisLayerSourceRaster object from an #xmlNode.
+ *
+ * Returns: the newly created #GtkGisLayerSourceRaster object.
+ */
+GtkGisLayerSource
+*gtk_gis_layer_source_raster_new_from_xml (xmlNode *xnode)
+{
+ GtkGisLayerSource *source = NULL;
+
+ gchar *filename;
+
+ filename = xmlGetProp (xnode, (const xmlChar *)"filename");
+ if (filename != NULL)
+ {
+ if (!g_path_is_absolute (filename))
+ {
+ filename = g_build_filename (g_get_current_dir (),
+ filename,
+ NULL);
+ }
+
+ source = gtk_gis_layer_source_raster_new ((const gchar *)filename);
+ }
+
+ return source;
+}
+
/**
* gtk_gis_layer_source_raster_get_filename:
* @source:
#ifndef __GTK_GIS_LAYER_SOURCE_RASTER_H__
#define __GTK_GIS_LAYER_SOURCE_RASTER_H__
+#include <libxml/tree.h>
+
#include "layersource.h"
G_BEGIN_DECLS
GtkGisLayerSource *gtk_gis_layer_source_raster_new (const gchar *filename);
+GtkGisLayerSource *gtk_gis_layer_source_raster_new_from_xml (xmlNode *xnode);
+
gchar *gtk_gis_layer_source_raster_get_filename (GtkGisLayerSourceRaster *source);
#include <ogr_api.h>
#include <ogr_core.h>
-#include <libxml/tree.h>
-
#include "layersourceshp.h"
static void gtk_gis_layer_source_shp_class_init (GtkGisLayerSourceShpClass *klass);
return source;
}
+/**
+ * gtk_gis_layer_source_shp_new_from_xml:
+ * @xnode:
+ *
+ * Creates a new #GtkGisLayerSourceShp object from an #xmlNode.
+ *
+ * Returns: the newly created #GtkGisLayerSourceShp object.
+ */
+GtkGisLayerSource
+*gtk_gis_layer_source_shp_new_from_xml (xmlNode *xnode)
+{
+ GtkGisLayerSource *source = NULL;
+
+ gchar *filename;
+
+ filename = xmlGetProp (xnode, (const xmlChar *)"filename");
+ if (filename != NULL)
+ {
+ if (!g_path_is_absolute (filename))
+ {
+ filename = g_build_filename (g_get_current_dir (),
+ filename,
+ NULL);
+ }
+
+ source = gtk_gis_layer_source_shp_new ((const gchar *)filename);
+ }
+
+ return source;
+}
+
/**
* gtk_gis_layer_source_shp_get_filename:
* @source:
#ifndef __GTK_GIS_LAYER_SOURCE_SHP_H__
#define __GTK_GIS_LAYER_SOURCE_SHP_H__
+#include <libxml/tree.h>
+
#include "layersource.h"
G_BEGIN_DECLS
GtkGisLayerSource *gtk_gis_layer_source_shp_new (const gchar *filename);
+GtkGisLayerSource *gtk_gis_layer_source_shp_new_from_xml (xmlNode *xnode);
+
gchar *gtk_gis_layer_source_shp_get_filename (GtkGisLayerSourceShp *source);