PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ ShpLoaderDestroy()

void ShpLoaderDestroy ( SHPLOADERSTATE state)

Definition at line 1949 of file shp2pgsql-core.c.

1950 {
1951  /* Destroy a state object created with ShpLoaderOpenShape */
1952  int i;
1953  if (state != NULL)
1954  {
1955  if (state->hSHPHandle)
1956  SHPClose(state->hSHPHandle);
1957  if (state->hDBFHandle)
1958  DBFClose(state->hDBFHandle);
1959  if (state->field_names)
1960  {
1961  for (i = 0; i < state->num_fields; i++)
1962  free(state->field_names[i]);
1963 
1964  free(state->field_names);
1965  }
1966  if (state->pgfieldtypes)
1967  {
1968  for (i = 0; i < state->num_fields; i++)
1969  free(state->pgfieldtypes[i]);
1970 
1971  free(state->pgfieldtypes);
1972  }
1973  if (state->types)
1974  free(state->types);
1975  if (state->widths)
1976  free(state->widths);
1977  if (state->precisions)
1978  free(state->precisions);
1979  if (state->col_names)
1980  free(state->col_names);
1981 
1982  /* Free any column map fieldnames if specified */
1983  colmap_clean(&state->column_map);
1984 
1985  /* Free the state itself */
1986  free(state);
1987  }
1988 }
void SHPAPI_CALL DBFClose(DBFHandle psDBF)
Definition: dbfopen.c:599
void free(void *)
void SHPAPI_CALL SHPClose(SHPHandle hSHP)
Definition: shpopen.c:881
void colmap_clean(colmap *map)
Definition: shpcommon.c:167
DBFFieldType * types
SHPHandle hSHPHandle
DBFHandle hDBFHandle

References shp_loader_state::col_names, colmap_clean(), shp_loader_state::column_map, DBFClose(), shp_loader_state::field_names, free(), shp_loader_state::hDBFHandle, shp_loader_state::hSHPHandle, shp_loader_state::num_fields, shp_loader_state::pgfieldtypes, shp_loader_state::precisions, SHPClose(), shp_loader_state::types, and shp_loader_state::widths.

Referenced by pgui_action_import(), test_ShpLoaderDestroy(), and validate_remote_loader_columns().

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