PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ ShpDumperDestroy()

void ShpDumperDestroy ( SHPDUMPERSTATE state)

Definition at line 2204 of file pgsql2shp-core.c.

2205 {
2206  /* Destroy a state object created with ShpDumperConnect */
2207  int i;
2208 
2209  if (state != NULL)
2210  {
2211  /* Disconnect from the database */
2212  if (state->conn)
2213  PQfinish(state->conn);
2214 
2215  /* Free the query strings */
2216  if (state->fetch_query)
2217  free(state->fetch_query);
2218  if (state->main_scan_query)
2219  free(state->main_scan_query);
2220 
2221  /* Free the DBF information fields */
2222  if (state->dbffieldnames)
2223  {
2224  for (i = 0; i < state->fieldcount; i++)
2225  free(state->dbffieldnames[i]);
2226  free(state->dbffieldnames);
2227  }
2228 
2229  if (state->dbffieldtypes)
2230  free(state->dbffieldtypes);
2231 
2232  if (state->pgfieldnames)
2233  free(state->pgfieldnames);
2234 
2235  /* Free any column map fieldnames if specified */
2236  colmap_clean(&state->column_map);
2237 
2238  /* Free other names */
2239  if (state->table)
2240  free(state->table);
2241  if (state->schema)
2242  free(state->schema);
2243  if (state->geo_col_name)
2244  free(state->geo_col_name);
2245 
2246  /* Free the state itself */
2247  free(state);
2248  }
2249 }
void free(void *)
void colmap_clean(colmap *map)
Definition: shpcommon.c:167

References colmap_clean(), shp_dumper_state::column_map, shp_dumper_state::conn, shp_dumper_state::dbffieldnames, shp_dumper_state::dbffieldtypes, shp_dumper_state::fetch_query, shp_dumper_state::fieldcount, free(), shp_dumper_state::geo_col_name, shp_dumper_state::main_scan_query, shp_dumper_state::pgfieldnames, shp_dumper_state::schema, and shp_dumper_state::table.

Referenced by main(), pgui_action_export(), and test_ShpDumperDestroy().

Here is the call graph for this function:
Here is the caller graph for this function: