]> saetta.ns0.it Git - libgtkgis/commitdiff
Added GtkGisLayerSourceShp::new_from_xml.
authorAndrea Zagli <azagli@libero.it>
Wed, 15 Jul 2009 17:26:30 +0000 (19:26 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 15 Jul 2009 17:26:30 +0000 (19:26 +0200)
Added GtkGisLayerSourceRaster::new_from_xml.
Added GtkGisLayerSourcePostgis::new_from_xml.

src/gtkgis.c
src/layersourcepostgis.c
src/layersourcepostgis.h
src/layersourceraster.c
src/layersourceraster.h
src/layersourceshp.c
src/layersourceshp.h

index 380640174af4dbcbd2ce04eab7ca35ea514a8b48..54753071854427f52ba3622ace05aefeb9d4b55b 100644 (file)
@@ -233,44 +233,15 @@ GtkWidget
 
                                                                                                                                        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)
index 8c97e23818d4e2c72d59c664282cb2fb76136341..bfa5188fb15e7316436741748cb2208647302424 100644 (file)
@@ -20,8 +20,6 @@
        #include <config.h>
 #endif
 
-#include <libxml/tree.h>
-
 #include "layersourcepostgis.h"
 
 static void gtk_gis_layer_source_postgis_class_init (GtkGisLayerSourcePostgisClass *klass);
@@ -104,6 +102,37 @@ GtkGisLayerSource
        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)
 {
index ccba260ce73f9d0b53543deb2a6fb4427435b6ee..2c03ea10ed7bbf4c8b6e696d73f18dc26362878c 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef __GTK_GIS_LAYER_SOURCE_POSTGIS_H__
 #define __GTK_GIS_LAYER_SOURCE_POSTGIS_H__
 
+#include <libxml/tree.h>
+
 #include "layersource.h"
 
 G_BEGIN_DECLS
@@ -54,6 +56,8 @@ GtkGisLayerSource *gtk_gis_layer_source_postgis_new (gchar *host,
                                                      gchar *username,
                                                      gchar *password);
 
+GtkGisLayerSource *gtk_gis_layer_source_postgis_new_from_xml (xmlNode *xnode);
+
 
 G_END_DECLS
 
index 4a3cc2e9d962423db4c08c5105d77018a9411454..467a95f749902f250d2c99b4a0eee9bd7076651d 100644 (file)
@@ -20,8 +20,6 @@
        #include <config.h>
 #endif
 
-#include <libxml/tree.h>
-
 #include <gdal.h>
 
 #include "layersourceraster.h"
@@ -105,6 +103,37 @@ GtkGisLayerSource
        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:
index 51e14cdf7573f07d9ef64e2ffd0f56061a7ab534..d496572e73a681001b6eb71512b5fafa233677c9 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef __GTK_GIS_LAYER_SOURCE_RASTER_H__
 #define __GTK_GIS_LAYER_SOURCE_RASTER_H__
 
+#include <libxml/tree.h>
+
 #include "layersource.h"
 
 G_BEGIN_DECLS
@@ -51,6 +53,8 @@ GType gtk_gis_layer_source_raster_get_type (void) G_GNUC_CONST;
 
 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);
 
 
index e557251274158904f2b22ca80277297062ef9be1..d4cf214103912388ad707af059c75adafa1d0acd 100644 (file)
@@ -23,8 +23,6 @@
 #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);
@@ -106,6 +104,37 @@ GtkGisLayerSource
        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:
index afb638e222c52e1164e42bc9a8be6921c46db02f..723e7599e5988416e4c3af8e6ce59a71db2cf8f1 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef __GTK_GIS_LAYER_SOURCE_SHP_H__
 #define __GTK_GIS_LAYER_SOURCE_SHP_H__
 
+#include <libxml/tree.h>
+
 #include "layersource.h"
 
 G_BEGIN_DECLS
@@ -51,6 +53,8 @@ GType gtk_gis_layer_source_shp_get_type (void) G_GNUC_CONST;
 
 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);