GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-bea8435a9e
|
#include "shapefil_private.h"
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <strings.h>
Go to the source code of this file.
Macros | |
#define | STRCASECMP(a, b) (strcasecmp(a, b)) |
#define | CPLsprintf sprintf |
#define | CPLsnprintf snprintf |
#define | FALSE 0 |
#define | TRUE 1 |
#define | XBASE_FILEHDR_SZ 32 |
#define | HEADER_RECORD_TERMINATOR 0x0D |
#define | END_OF_FILE_CHARACTER 0x1A |
#define | CPL_IGNORE_RET_VAL_INT(x) x |
Functions | |
void SHPAPI_CALL | DBFUpdateHeader (DBFHandle psDBF) |
void SHPAPI_CALL | DBFSetLastModifiedDate (DBFHandle psDBF, int nYYSince1900, int nMM, int nDD) |
DBFHandle SHPAPI_CALL | DBFOpen (const char *pszFilename, const char *pszAccess) |
DBFHandle SHPAPI_CALL | DBFOpenLL (const char *pszFilename, const char *pszAccess, const SAHooks *psHooks) |
void SHPAPI_CALL | DBFClose (DBFHandle psDBF) |
DBFHandle SHPAPI_CALL | DBFCreate (const char *pszFilename) |
DBFHandle SHPAPI_CALL | DBFCreateEx (const char *pszFilename, const char *pszCodePage) |
DBFHandle SHPAPI_CALL | DBFCreateLL (const char *pszFilename, const char *pszCodePage, const SAHooks *psHooks) |
int SHPAPI_CALL | DBFAddField (DBFHandle psDBF, const char *pszFieldName, DBFFieldType eType, int nWidth, int nDecimals) |
int SHPAPI_CALL | DBFAddNativeFieldType (DBFHandle psDBF, const char *pszFieldName, char chType, int nWidth, int nDecimals) |
int SHPAPI_CALL | DBFReadIntegerAttribute (DBFHandle psDBF, int iRecord, int iField) |
double SHPAPI_CALL | DBFReadDoubleAttribute (DBFHandle psDBF, int iRecord, int iField) |
const char SHPAPI_CALL1 * | DBFReadStringAttribute (DBFHandle psDBF, int iRecord, int iField){ return STATIC_CAST(const char *, DBFReadAttribute(psDBF, iRecord, iField, 'C') |
const char SHPAPI_CALL1 * | DBFReadLogicalAttribute (DBFHandle psDBF, int iRecord, int iField){ return STATIC_CAST(const char *, DBFReadAttribute(psDBF, iRecord, iField, 'L') |
SHPDate SHPAPI_CALL | DBFReadDateAttribute (DBFHandle psDBF, int iRecord, int iField) |
int SHPAPI_CALL | DBFIsAttributeNULL (const DBFHandle psDBF, int iRecord, int iField) |
int SHPAPI_CALL | DBFGetFieldCount (const DBFHandle psDBF) |
int SHPAPI_CALL | DBFGetRecordCount (const DBFHandle psDBF) |
DBFFieldType SHPAPI_CALL | DBFGetFieldInfo (const DBFHandle psDBF, int iField, char *pszFieldName, int *pnWidth, int *pnDecimals) |
int SHPAPI_CALL | DBFWriteAttributeDirectly (DBFHandle psDBF, int hEntity, int iField, const void *pValue) |
int SHPAPI_CALL | DBFWriteDoubleAttribute (DBFHandle psDBF, int iRecord, int iField, double dValue) |
int SHPAPI_CALL | DBFWriteIntegerAttribute (DBFHandle psDBF, int iRecord, int iField, int nValue) |
int SHPAPI_CALL | DBFWriteStringAttribute (DBFHandle psDBF, int iRecord, int iField, const char *pszValue) |
int SHPAPI_CALL | DBFWriteNULLAttribute (DBFHandle psDBF, int iRecord, int iField) |
int SHPAPI_CALL | DBFWriteLogicalAttribute (DBFHandle psDBF, int iRecord, int iField, const char lValue) |
int SHPAPI_CALL | DBFWriteDateAttribute (DBFHandle psDBF, int iRecord, int iField, const SHPDate *lValue) |
int SHPAPI_CALL | DBFWriteTuple (DBFHandle psDBF, int hEntity, const void *pRawTuple) |
const char SHPAPI_CALL1 * | DBFReadTuple (DBFHandle psDBF, int hEntity){ if(hEntity< 0||hEntity >=psDBF->nRecords) return SHPLIB_NULLPTR;if(!DBFLoadRecord(psDBF, hEntity)) return SHPLIB_NULLPTR;return STATIC_CAST(const char *, psDBF->pszCurrentRecord |
DBFHandle SHPAPI_CALL | DBFCloneEmpty (const DBFHandle psDBF, const char *pszFilename) |
char SHPAPI_CALL | DBFGetNativeFieldType (const DBFHandle psDBF, int iField) |
int SHPAPI_CALL | DBFGetFieldIndex (const DBFHandle psDBF, const char *pszFieldName) |
int SHPAPI_CALL | DBFIsRecordDeleted (const DBFHandle psDBF, int iShape) |
int SHPAPI_CALL | DBFMarkRecordDeleted (DBFHandle psDBF, int iShape, int bIsDeleted) |
const char SHPAPI_CALL1 * | DBFGetCodePage (const DBFHandle psDBF){ if(psDBF==SHPLIB_NULLPTR) return SHPLIB_NULLPTR;return psDBF->pszCodePage;}int SHPAPI_CALL DBFDeleteField(DBFHandle psDBF, int iField |
int SHPAPI_CALL | DBFReorderFields (DBFHandle psDBF, const int *panMap) |
int SHPAPI_CALL | DBFAlterFieldDefn (DBFHandle psDBF, int iField, const char *pszFieldName, char chType, int nWidth, int nDecimals) |
void SHPAPI_CALL | DBFSetWriteEndOfFileChar (DBFHandle psDBF, int bWriteFlag) |
int SHPAPI_CALL DBFAddField | ( | DBFHandle | psDBF, |
const char * | pszFieldName, | ||
DBFFieldType | eType, | ||
int | nWidth, | ||
int | nDecimals | ||
) |
int SHPAPI_CALL DBFAddNativeFieldType | ( | DBFHandle | psDBF, |
const char * | pszFieldName, | ||
char | chType, | ||
int | nWidth, | ||
int | nDecimals | ||
) |
Definition at line 734 of file dbfopen.c.
Referenced by DBFAddField().
int SHPAPI_CALL DBFAlterFieldDefn | ( | DBFHandle | psDBF, |
int | iField, | ||
const char * | pszFieldName, | ||
char | chType, | ||
int | nWidth, | ||
int | nDecimals | ||
) |
Definition at line 1995 of file dbfopen.c.
References FALSE, and DBFInfo::nFields.
DBFHandle SHPAPI_CALL DBFCloneEmpty | ( | const DBFHandle | psDBF, |
const char * | pszFilename | ||
) |
Definition at line 1579 of file dbfopen.c.
References DBFInfo::bNoHeader, DBFInfo::bUpdated, DBFInfo::bWriteEndOfFileChar, DBFCreateLL(), malloc(), DBFInfo::nFields, DBFInfo::nHeaderLength, DBFInfo::nRecordLength, DBFInfo::pachFieldType, DBFInfo::panFieldDecimals, DBFInfo::panFieldOffset, DBFInfo::panFieldSize, DBFInfo::pszCodePage, DBFInfo::pszHeader, DBFInfo::sHooks, SHPLIB_NULLPTR, STATIC_CAST, TRUE, and XBASE_FLDHDR_SZ.
void SHPAPI_CALL DBFClose | ( | DBFHandle | psDBF | ) |
Definition at line 522 of file dbfopen.c.
References DBFInfo::bNoHeader, and SHPLIB_NULLPTR.
DBFHandle SHPAPI_CALL DBFCreate | ( | const char * | pszFilename | ) |
Definition at line 570 of file dbfopen.c.
References DBFCreateEx().
DBFHandle SHPAPI_CALL DBFCreateEx | ( | const char * | pszFilename, |
const char * | pszCodePage | ||
) |
Definition at line 581 of file dbfopen.c.
References DBFCreateLL(), and SASetupDefaultHooks().
Referenced by DBFCreate().
DBFHandle SHPAPI_CALL DBFCreateLL | ( | const char * | pszFilename, |
const char * | pszCodePage, | ||
const SAHooks * | psHooks | ||
) |
Definition at line 597 of file dbfopen.c.
Referenced by DBFCloneEmpty(), and DBFCreateEx().
const char SHPAPI_CALL1* DBFGetCodePage | ( | const DBFHandle | psDBF | ) |
Definition at line 1737 of file dbfopen.c.
References SHPLIB_NULLPTR.
int SHPAPI_CALL DBFGetFieldCount | ( | const DBFHandle | psDBF | ) |
Definition at line 1152 of file dbfopen.c.
References DBFInfo::nFields.
Referenced by DBFGetFieldIndex().
int SHPAPI_CALL DBFGetFieldIndex | ( | const DBFHandle | psDBF, |
const char * | pszFieldName | ||
) |
Definition at line 1655 of file dbfopen.c.
References DBFGetFieldCount(), DBFGetFieldInfo(), name, SHPLIB_NULLPTR, STRCASECMP, and XBASE_FLDNAME_LEN_READ.
DBFFieldType SHPAPI_CALL DBFGetFieldInfo | ( | const DBFHandle | psDBF, |
int | iField, | ||
char * | pszFieldName, | ||
int * | pnWidth, | ||
int * | pnDecimals | ||
) |
Definition at line 1176 of file dbfopen.c.
References FTDate, FTDouble, FTInteger, FTInvalid, FTLogical, FTString, DBFInfo::nFields, DBFInfo::pachFieldType, DBFInfo::panFieldDecimals, DBFInfo::panFieldSize, DBFInfo::pszHeader, SHPLIB_NULLPTR, STATIC_CAST, XBASE_FLDHDR_SZ, and XBASE_FLDNAME_LEN_READ.
Referenced by DBFGetFieldIndex().
char SHPAPI_CALL DBFGetNativeFieldType | ( | const DBFHandle | psDBF, |
int | iField | ||
) |
Definition at line 1639 of file dbfopen.c.
References DBFInfo::pachFieldType.
int SHPAPI_CALL DBFGetRecordCount | ( | const DBFHandle | psDBF | ) |
Definition at line 1163 of file dbfopen.c.
References DBFInfo::nRecords.
int SHPAPI_CALL DBFIsAttributeNULL | ( | const DBFHandle | psDBF, |
int | iRecord, | ||
int | iField | ||
) |
Definition at line 1135 of file dbfopen.c.
References DBFReadStringAttribute(), SHPLIB_NULLPTR, and TRUE.
int SHPAPI_CALL DBFIsRecordDeleted | ( | const DBFHandle | psDBF, |
int | iShape | ||
) |
Definition at line 1675 of file dbfopen.c.
References DBFInfo::nRecords, and TRUE.
int SHPAPI_CALL DBFMarkRecordDeleted | ( | DBFHandle | psDBF, |
int | iShape, | ||
int | bIsDeleted | ||
) |
Definition at line 1699 of file dbfopen.c.
References FALSE, and DBFInfo::nRecords.
DBFHandle SHPAPI_CALL DBFOpen | ( | const char * | pszFilename, |
const char * | pszAccess | ||
) |
Definition at line 296 of file dbfopen.c.
References DBFOpenLL(), and SASetupDefaultHooks().
DBFHandle SHPAPI_CALL DBFOpenLL | ( | const char * | pszFilename, |
const char * | pszAccess, | ||
const SAHooks * | psHooks | ||
) |
SHPDate SHPAPI_CALL DBFReadDateAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField | ||
) |
Definition at line 1053 of file dbfopen.c.
References STATIC_CAST.
double SHPAPI_CALL DBFReadDoubleAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField | ||
) |
Definition at line 1009 of file dbfopen.c.
References STATIC_CAST.
int SHPAPI_CALL DBFReadIntegerAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField | ||
) |
Definition at line 991 of file dbfopen.c.
References STATIC_CAST.
const char SHPAPI_CALL1* DBFReadLogicalAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField | ||
) | const |
References STATIC_CAST.
const char SHPAPI_CALL1* DBFReadStringAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField | ||
) | const |
References STATIC_CAST.
Referenced by DBFIsAttributeNULL().
const char SHPAPI_CALL1* DBFReadTuple | ( | DBFHandle | psDBF, |
int | hEntity | ||
) | -> nRecords) return SHPLIB_NULLPTR;if(!DBFLoadRecord(psDBF, hEntity)) return SHPLIB_NULLPTR;return STATIC_CAST(const char *, psDBF->pszCurrentRecord |
References SHPLIB_NULLPTR.
int SHPAPI_CALL DBFReorderFields | ( | DBFHandle | psDBF, |
const int * | panMap | ||
) |
Definition at line 1875 of file dbfopen.c.
References DBFInfo::nFields, and TRUE.
void SHPAPI_CALL DBFSetLastModifiedDate | ( | DBFHandle | psDBF, |
int | nYYSince1900, | ||
int | nMM, | ||
int | nDD | ||
) |
Definition at line 282 of file dbfopen.c.
References DBFInfo::nUpdateDay, DBFInfo::nUpdateMonth, and DBFInfo::nUpdateYearSince1900.
void SHPAPI_CALL DBFSetWriteEndOfFileChar | ( | DBFHandle | psDBF, |
int | bWriteFlag | ||
) |
Definition at line 2232 of file dbfopen.c.
References DBFInfo::bWriteEndOfFileChar.
void SHPAPI_CALL DBFUpdateHeader | ( | DBFHandle | psDBF | ) |
Definition at line 248 of file dbfopen.c.
References DBFInfo::bNoHeader.
int SHPAPI_CALL DBFWriteAttributeDirectly | ( | DBFHandle | psDBF, |
int | hEntity, | ||
int | iField, | ||
const void * | pValue | ||
) |
Definition at line 1350 of file dbfopen.c.
References DBFInfo::bNoHeader, FALSE, and DBFInfo::nRecords.
Referenced by DBFWriteDateAttribute().
int SHPAPI_CALL DBFWriteDateAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField, | ||
const SHPDate * | lValue | ||
) |
Definition at line 1486 of file dbfopen.c.
References SHPDate::day, DBFWriteAttributeDirectly(), SHPDate::month, SHPLIB_NULLPTR, and SHPDate::year.
int SHPAPI_CALL DBFWriteDoubleAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField, | ||
double | dValue | ||
) |
int SHPAPI_CALL DBFWriteIntegerAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField, | ||
int | nValue | ||
) |
int SHPAPI_CALL DBFWriteLogicalAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField, | ||
const char | lValue | ||
) |
int SHPAPI_CALL DBFWriteNULLAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField | ||
) |
int SHPAPI_CALL DBFWriteStringAttribute | ( | DBFHandle | psDBF, |
int | iRecord, | ||
int | iField, | ||
const char * | pszValue | ||
) |
int SHPAPI_CALL DBFWriteTuple | ( | DBFHandle | psDBF, |
int | hEntity, | ||
const void * | pRawTuple | ||
) |
Definition at line 1510 of file dbfopen.c.
References DBFInfo::bNoHeader, FALSE, and DBFInfo::nRecords.