123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- /******************************************************************************
- * MODULE: v.in.db
- *
- * AUTHOR(S): Radim Blazek
- *
- * PURPOSE: Create new vector from db table.
- *
- * COPYRIGHT: (C) 2000-2007, 2009 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- ******************************************************************************/
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <ctype.h>
- #include <grass/gis.h>
- #include <grass/dbmi.h>
- #include <grass/vector.h>
- #include <grass/glocale.h>
- int main(int argc, char *argv[])
- {
- int i, cat, with_z, more, ctype, nrows;
- char buf[DB_SQL_MAX];
- int count;
- double coor[3];
- int ncoor;
- struct Option *driver_opt, *database_opt, *table_opt;
- struct Option *xcol_opt, *ycol_opt, *zcol_opt, *keycol_opt, *where_opt,
- *outvect;
- struct Flag *same_table_flag;
- struct GModule *module;
- struct Map_info Map;
- struct line_pnts *Points;
- struct line_cats *Cats;
- dbString sql;
- dbDriver *driver;
- dbCursor cursor;
- dbTable *table;
- dbColumn *column;
- dbValue *value;
- struct field_info *fi;
- G_gisinit(argv[0]);
- module = G_define_module();
- G_add_keyword(_("vector"));
- G_add_keyword(_("import"));
- G_add_keyword(_("database"));
- G_add_keyword(_("points"));
- module->description =
- _("Creates new vector (points) map from database table containing coordinates.");
- table_opt = G_define_standard_option(G_OPT_DB_TABLE);
- table_opt->required = YES;
- table_opt->description = _("Input table name");
- driver_opt = G_define_standard_option(G_OPT_DB_DRIVER);
- driver_opt->options = db_list_drivers();
- driver_opt->answer = (char *)db_get_default_driver_name();
- driver_opt->guisection = _("Input DB");
- database_opt = G_define_standard_option(G_OPT_DB_DATABASE);
- database_opt->answer = (char *)db_get_default_database_name();
- database_opt->guisection = _("Input DB");
- xcol_opt = G_define_standard_option(G_OPT_DB_COLUMN);
- xcol_opt->key = "x";
- xcol_opt->required = YES;
- xcol_opt->description = _("Name of column containing x coordinate");
- ycol_opt = G_define_standard_option(G_OPT_DB_COLUMN);
- ycol_opt->key = "y";
- ycol_opt->required = YES;
- ycol_opt->description = _("Name of column containing y coordinate");
- zcol_opt = G_define_standard_option(G_OPT_DB_COLUMN);
- zcol_opt->key = "z";
- zcol_opt->description = _("Name of column containing z coordinate");
- zcol_opt->guisection = _("3D output");
- keycol_opt = G_define_standard_option(G_OPT_DB_COLUMN);
- keycol_opt->key = "key";
- keycol_opt->required = NO;
- keycol_opt->label = _("Name of column containing category number");
- keycol_opt->description = _("Must refer to an integer column");
- where_opt = G_define_standard_option(G_OPT_DB_WHERE);
- where_opt->guisection = _("Selection");
- outvect = G_define_standard_option(G_OPT_V_OUTPUT);
- same_table_flag = G_define_flag();
- same_table_flag->key = 't';
- same_table_flag->description =
- _("Use imported table as attribute table for new map");
- if (G_parser(argc, argv))
- exit(EXIT_FAILURE);
- if (zcol_opt->answer) {
- with_z = WITH_Z;
- ncoor = 3;
- }
- else {
- with_z = WITHOUT_Z;
- ncoor = 2;
- }
- Points = Vect_new_line_struct();
- Cats = Vect_new_cats_struct();
- db_init_string(&sql);
- if (G_get_overwrite()) {
- /* We don't want to delete the input table when overwriting the output
- * vector. */
- char name[GNAME_MAX], mapset[GMAPSET_MAX];
- if (!G_name_is_fully_qualified(outvect->answer, name, mapset)) {
- strcpy(name, outvect->answer);
- strcpy(mapset, G_mapset());
- }
- Vect_set_open_level(1); /* no topo needed */
- if (strcmp(mapset, G_mapset()) == 0 && G_find_vector2(name, mapset) &&
- Vect_open_old(&Map, name, mapset) >= 0) {
- int num_dblinks;
- num_dblinks = Vect_get_num_dblinks(&Map);
- for (i = 0; i < num_dblinks; i++) {
- if ((fi = Vect_get_dblink(&Map, i)) != NULL &&
- strcmp(fi->driver, driver_opt->answer) == 0 &&
- strcmp(fi->database, database_opt->answer) == 0 &&
- strcmp(fi->table, table_opt->answer) == 0)
- G_fatal_error(_("Vector map <%s> cannot be overwritten "
- "because input table <%s> is linked to "
- "this map."),
- outvect->answer, table_opt->answer);
- }
- Vect_close(&Map);
- }
- }
- if (Vect_open_new(&Map, outvect->answer, with_z) < 0)
- G_fatal_error(_("Unable to create vector map <%s>"),
- outvect->answer);
- Vect_set_error_handler_io(NULL, &Map);
-
- Vect_hist_command(&Map);
- fi = Vect_default_field_info(&Map, 1, NULL, GV_1TABLE);
- /* Open driver */
- driver = db_start_driver_open_database(driver_opt->answer,
- database_opt->answer);
- if (driver == NULL) {
- G_fatal_error(_("Unable to open database <%s> by driver <%s>"),
- fi->database, fi->driver);
- }
- db_set_error_handler_driver(driver);
-
- /* check if target table already exists */
- G_debug(3, "Output vector table <%s>, driver: <%s>, database: <%s>",
- outvect->answer, db_get_default_driver_name(),
- db_get_default_database_name());
- if (!same_table_flag->answer &&
- db_table_exists(db_get_default_driver_name(),
- db_get_default_database_name(), outvect->answer) == 1)
- G_fatal_error(_("Output vector map, table <%s> (driver: <%s>, database: <%s>) "
- "already exists"), outvect->answer,
- db_get_default_driver_name(),
- db_get_default_database_name());
- if (keycol_opt->answer) {
- int coltype;
- coltype = db_column_Ctype(driver, table_opt->answer, keycol_opt->answer);
- if (coltype == -1)
- G_fatal_error(_("Column <%s> not found in table <%s>"),
- keycol_opt->answer, table_opt->answer);
- if (coltype != DB_C_TYPE_INT)
- G_fatal_error(_("Data type of key column must be integer"));
- }
- else {
- if (same_table_flag->answer) {
- G_fatal_error(_("Option <%s> must be specified when -%c flag is given"),
- keycol_opt->key, same_table_flag->key);
- }
- if (strcmp(db_get_default_driver_name(), "sqlite") != 0)
- G_fatal_error(_("Unable to define key column. This operation is not supported "
- "by <%s> driver. You need to define <%s> option."),
- fi->driver, keycol_opt->key);
- }
- /* Open select cursor */
- sprintf(buf, "SELECT %s, %s", xcol_opt->answer, ycol_opt->answer);
- db_set_string(&sql, buf);
- if (with_z) {
- sprintf(buf, ", %s", zcol_opt->answer);
- db_append_string(&sql, buf);
- }
- if (keycol_opt->answer) {
- sprintf(buf, ", %s", keycol_opt->answer);
- db_append_string(&sql, buf);
- }
- sprintf(buf, " FROM %s", table_opt->answer);
- db_append_string(&sql, buf);
-
- if (where_opt->answer) {
- sprintf(buf, " WHERE %s", where_opt->answer);
- db_append_string(&sql, buf);
- }
- G_debug(2, "SQL: %s", db_get_string(&sql));
- if (db_open_select_cursor(driver, &sql, &cursor, DB_SEQUENTIAL) != DB_OK) {
- G_fatal_error(_("Unable to open select cursor: '%s'"),
- db_get_string(&sql));
- }
- table = db_get_cursor_table(&cursor);
- nrows = db_get_num_rows(&cursor);
- G_debug(2, "%d points selected", nrows);
- count = cat = 0;
- G_message(_("Writing features..."));
- while (db_fetch(&cursor, DB_NEXT, &more) == DB_OK && more) {
- G_percent(count, nrows, 2);
- /* key column */
- if (keycol_opt->answer) {
- column = db_get_table_column(table, with_z ? 3 : 2);
- ctype = db_sqltype_to_Ctype(db_get_column_sqltype(column));
- if (ctype != DB_C_TYPE_INT)
- G_fatal_error(_("Key column must be integer"));
- value = db_get_column_value(column);
- cat = db_get_value_int(value);
- }
- else {
- cat++;
- }
- /* coordinates */
- for (i = 0; i < ncoor; i++) {
- column = db_get_table_column(table, i);
- ctype = db_sqltype_to_Ctype(db_get_column_sqltype(column));
- if (ctype != DB_C_TYPE_INT && ctype != DB_C_TYPE_DOUBLE)
- G_fatal_error(_("x/y/z column must be integer or double"));
- value = db_get_column_value(column);
- if (ctype == DB_C_TYPE_INT)
- coor[i] = (double)db_get_value_int(value);
- else
- coor[i] = db_get_value_double(value);
- }
- Vect_reset_line(Points);
- Vect_reset_cats(Cats);
- Vect_append_point(Points, coor[0], coor[1], coor[2]);
- Vect_cat_set(Cats, 1, cat);
- Vect_write_line(&Map, GV_POINT, Points, Cats);
- count++;
- }
- G_percent(1, 1, 1);
- /* close connection to input DB before copying attributes */
- db_close_database_shutdown_driver(driver);
- /* Copy table */
- if (!same_table_flag->answer) {
- G_message(_("Copying attributes..."));
-
- if (DB_FAILED == db_copy_table_where(driver_opt->answer, database_opt->answer,
- table_opt->answer,
- fi->driver, fi->database, fi->table,
- where_opt->answer)) { /* where can be NULL */
- G_warning(_("Unable to copy table"));
- }
- else {
- Vect_map_add_dblink(&Map, 1, NULL, fi->table,
- keycol_opt->answer ? keycol_opt->answer : GV_KEY_COLUMN,
- fi->database, fi->driver);
- }
- if (!keycol_opt->answer) {
- /* TODO: implement for all DB drivers in generic way if
- * possible */
-
- driver = db_start_driver_open_database(fi->driver, fi->database);
- if (driver == NULL) {
- G_fatal_error(_("Unable to open database <%s> by driver <%s>"),
- fi->database, fi->driver);
- }
- db_set_error_handler_driver(driver);
- /* add key column */
- sprintf(buf, "ALTER TABLE %s ADD COLUMN %s INTEGER",
- fi->table, GV_KEY_COLUMN);
- db_set_string(&sql, buf);
-
- if (db_execute_immediate(driver, &sql) != DB_OK) {
- G_fatal_error(_("Unable to add key column <%s>: "
- "SERIAL type is not supported by <%s>"),
- GV_KEY_COLUMN, fi->driver);
- }
- /* update key column */
- sprintf(buf, "UPDATE %s SET %s = _ROWID_",
- fi->table, GV_KEY_COLUMN);
- db_set_string(&sql, buf);
-
- if (db_execute_immediate(driver, &sql) != DB_OK) {
- G_fatal_error(_("Failed to update key column <%s>"),
- GV_KEY_COLUMN);
- }
- }
- }
- else {
- /* do not copy attributes, link original table */
- Vect_map_add_dblink(&Map, 1, NULL, table_opt->answer,
- keycol_opt->answer ? keycol_opt->answer : GV_KEY_COLUMN,
- database_opt->answer, driver_opt->answer);
- }
- Vect_build(&Map);
- Vect_close(&Map);
- G_done_msg(n_("%d point written to vector map.",
- "%d points written to vector map.",
- count), count);
- return (EXIT_SUCCESS);
- }
|