PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ ShpLoaderDestroy()

void ShpLoaderDestroy ( SHPLOADERSTATE state)

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

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