 |
SAGA API
v9.8
|
Go to the documentation of this file.
116 if( pTable->
Create(File, Format, Encoding) )
121 delete(pTable);
return( NULL );
131 if( pTable->
Create(File, Format, Separator, Encoding) )
136 delete(pTable);
return( NULL );
211 CSG_String Connection(DBase +
" [" + Host +
":" + Port +
"]");
256 return(
Load(File, (
int)Format, Separator, Encoding) );
327 _Destroy_Selection();
467 if( Position < 0 || Position >
m_nFields )
506 if( del_Field < 0 || del_Field >=
m_nFields )
553 if( iField < 0 || iField >=
m_nFields || iField == Position )
559 if( Position > iField )
569 if( Position < iField )
574 #pragma omp parallel for
597 if( iField >= 0 && iField <
m_nFields && Name && *Name )
622 #pragma omp parallel for
627 bool bNoData = pRecord->
is_NoData(Field);
649 *(pRecord->
m_Values[Field]) = *pValue;
704 if( Length < nBytes )
713 return( (
int)Length );
768 #define GET_GROW_SIZE(n) (n < 256 ? 1 : (n < 8192 ? 128 : 1024))
771 bool CSG_Table::_Inc_Array(
void)
780 if( pRecords == NULL )
785 m_Records = pRecords;
792 bool CSG_Table::_Dec_Array(
void)
801 if( pRecords == NULL )
806 m_Records = pRecords;
847 if( Selection[i] > iRecord )
856 m_Records[i] = m_Records[i - 1]; m_Records[i]->
m_Index = i;
862 m_Records[iRecord] = pRecord;
884 if( iRecord >= 0 && iRecord <
m_nRecords && pCopy )
886 return( m_Records[iRecord]->
Assign(pCopy) );
902 delete(m_Records[iRecord]);
908 m_Records[i] = m_Records[i + 1]; m_Records[i]->
m_Index = i;
938 delete(m_Records[iRecord]);
956 else if( nRecords >= 0 &&
m_nRecords > nRecords )
979 return( Value.
Cmp(m_Records[iRecord = 0]->
asString(iField)) == 0 );
992 if( Value.
Cmp(m_Records[iRecord]->
asString(iField)) == 0 )
1002 #define GET_RECORD(i) Get_Record_byIndex(bAscending ? (iRecord = i) : m_nRecords - 1 - (iRecord = i))
1006 if( (d = Value.
Cmp(
GET_RECORD(0 )->asString(iField))) < 0 ) {
return(
false ); }
else if( d == 0 ) {
return(
true ); }
1007 if( (d = Value.
Cmp(
GET_RECORD(
m_nRecords - 1)->asString(iField))) > 0 ) {
return(
false ); }
else if( d == 0 ) {
return(
true ); }
1011 d = Value.
Cmp(
GET_RECORD(a + (b - a) / 2)->asString(iField));
1041 if(
Find_Record(iRecord, iField, Value, bCreateIndex) )
1059 return( Value == m_Records[iRecord = 0]->asDouble(iField) );
1070 for(iRecord=0; iRecord<
m_nRecords; iRecord++)
1072 if( Value == m_Records[iRecord]->asDouble(iField) )
1082 #define GET_RECORD(i) Get_Record_byIndex(bAscending ? (iRecord = i) : m_nRecords - 1 - (iRecord = i))
1086 if( (d = Value -
GET_RECORD(0 )->asDouble(iField)) < 0. ) {
return(
false ); }
else if( d == 0. ) {
return(
true ); }
1087 if( (d = Value -
GET_RECORD(
m_nRecords - 1)->asDouble(iField)) > 0. ) {
return(
false ); }
else if( d == 0. ) {
return(
true ); }
1091 d = Value -
GET_RECORD(a + (b - a) / 2)->asDouble(iField);
1121 if(
Find_Record(iRecord, iField, Value, bCreateIndex) )
1143 if( bModified ==
false )
1145 #pragma omp parallel for
1161 return( pRecord && pRecord->
Set_Value(iField, Value) );
1174 return( pRecord && pRecord->
Set_Value(iField, Value) );
1226 for(
int iField=0; iField<
m_nFields; iField++)
1266 for(
double i=0; i<(double)
Get_Count(); i+=d)
1272 Statistics += pRecord->
asDouble(iField);
1288 Statistics += pRecord->
asDouble(iField);
1349 m_Records[i] = Records[Index[i]];
1438 CSG_Table_Record_Compare_Field(
const CSG_Table *pTable,
int Field,
bool Ascending)
1442 m_Ascending = Ascending;
1444 if( !m_pTable || m_Field < 0 || m_Field >= m_pTable->Get_Field_Count() )
1450 bool is_Okay (
void)
const {
return( m_pTable != NULL ); }
1454 sLong a = m_Ascending ? _a : _b;
1455 sLong b = m_Ascending ? _b : _a;
1457 switch( m_pTable->Get_Field_Type(m_Field) )
1461 m_pTable->Get_Record(a)->asDouble(m_Field) -
1462 m_pTable->Get_Record(b)->asDouble(m_Field);
1464 return( d < 0. ? -1 : d > 0. ? 1 : 0 );
1470 m_pTable->Get_Record(a)->asString(m_Field),
1471 m_pTable->Get_Record(b)->asString(m_Field))
1490 CSG_Table_Record_Compare_Field Compare(
this, Field, bAscending);
1504 CSG_Table_Record_Compare_Fields(
const CSG_Table *pTable,
int Fields[],
int nFields,
bool Ascending)
1505 : m_Fields(Fields), m_nFields(nFields), m_pTable(pTable)
1507 m_Ascending.Create(nFields);
1509 for(
int i=0; m_pTable && i<m_nFields; i++)
1511 if( m_Fields[i] >= m_pTable->Get_Field_Count() )
1516 m_Ascending[i] = Ascending ? 1 : 0;
1520 CSG_Table_Record_Compare_Fields(
const CSG_Table *pTable,
int Fields[],
int nFields,
int Ascending[])
1521 : m_Fields(Fields), m_nFields(nFields), m_pTable(pTable)
1523 m_Ascending.Create(nFields);
1525 for(
int i=0; m_pTable && i<m_nFields; i++)
1527 if( m_Fields[i] >= m_pTable->Get_Field_Count() )
1532 m_Ascending[i] = Ascending[i] > 0 ? 1 : 0;
1536 bool is_Okay (
void)
const {
return( m_pTable != NULL ); }
1542 for(
int i=0; !Difference && i<m_nFields; i++)
1544 int Field = m_Fields[i];
1546 sLong a = m_Ascending[i] ? _a : _b;
1547 sLong b = m_Ascending[i] ? _b : _a;
1549 switch( m_pTable->Get_Field_Type(Field) )
1552 double d = m_pTable->Get_Record(a)->asDouble(Field);
1553 d -= m_pTable->Get_Record(b)->asDouble(Field);
1554 Difference = d < 0. ? -1 : d > 0. ? 1 : 0;
1559 CSG_String s (m_pTable->Get_Record(a)->asString(Field));
1560 Difference = s.Cmp(m_pTable->Get_Record(b)->asString(Field));
1565 return( Difference );
1571 int *m_Fields, m_nFields;
1582 CSG_Table_Record_Compare_Fields Compare(
this, Fields, nFields, bAscending);
1594 void CSG_Table::_Index_Update(
void)
1596 if( m_Index_Fields.
Get_Size() < 1 )
1605 Fields += abs(m_Index_Fields[i]) - 1;
1606 Ascending += m_Index_Fields[i] > 0 ? 1 : 0;
friend class CSG_Table_Record
virtual bool Assign(CSG_Data_Object *pObject, bool bProgress=false)
CSG_String BeforeFirst(char Character) const
double asDouble(int Field) const
sLong Get_Max_Samples(void) const
#define SG_FREE_SAFE(PTR)
CSG_Table * SG_Create_Table(void)
TSG_Data_Type Get_Field_Type(int Field) const
virtual bool Set_Count(sLong nRecords)
@ SG_TABLE_VALUE_TYPE_String
virtual bool Del_Records(void)
sLong Get_Size(void) const
void Set_File_Name(const CSG_String &FileName)
size_t Length(void) const
virtual bool Get_Value(sLong Index, int Field, CSG_String &Value) const
const SG_Char * Get_Description(void) const
double Get_NoData_Value(bool bUpper=false) const
virtual TSG_Data_Object_Type Get_ObjectType(void) const
Returns the object type as defined by TSG_Data_Object_Type. Used for run time type checking.
@ SG_UI_MSG_STYLE_SUCCESS
virtual bool Set_Field_Type(int Field, TSG_Data_Type Type)
virtual bool is_Selected(sLong Index) const
virtual CSG_Table_Record * Get_Record(sLong Index) const
SAGA_API_DLL_EXPORT void * SG_Malloc(size_t size)
sLong Get_Size(void) const
CSG_String ** m_Field_Name
virtual bool _Stats_Update(int Field) const
size_t SG_Data_Type_Get_Size(TSG_Data_Type Type)
CSG_Table & operator=(const CSG_Table &Table)
virtual bool Assign(CSG_Table_Record *pRecord)
virtual int Compare(const sLong a, const sLong b)=0
virtual bool Destroy(void)
const SG_Char * Get_Name(void) const
@ SG_FILE_ENCODING_UTF32BE
TSG_Table_Index_Order Get_Index_Order(int i) const
bool Set_Field_Name(int Field, const SG_Char *Name)
int Get_Field_Count(void) const
int * Get_Array(void) const
SAGA_API_DLL_EXPORT void SG_Free(void *memblock)
#define SG_STR_CMP(s1, s2)
class CSG_Table_Value ** m_Values
virtual bool Set_Record(sLong Index, CSG_Table_Record *pCopy)
virtual bool Find_Record(sLong &Index, int Field, const CSG_String &Value, bool bCreateIndex=false)
void Set_Update_Flag(bool bOn=true)
bool is_NoData(int Field) const
virtual void Set_Modified(bool bModified=true)
int Cmp(const CSG_String &String) const
bool _Stats_Invalidate(void) const
TSG_Data_Type * m_Field_Type
int Find_Field(const CSG_String &Name) const
@ SG_UI_MSG_STYLE_FAILURE
bool is_Compatible(const CSG_Table &Table, bool bExactMatch=false) const
SAGA_API_DLL_EXPORT bool SG_File_Exists(const CSG_String &FileName)
CSG_Simple_Statistics ** m_Field_Stats
virtual TSG_Table_Value_Type Get_Type(void) const =0
const SG_Char * asString(int Field, int Decimals=-99) const
virtual bool On_NoData_Changed(void)
sLong Get_Count(void) const
sLong Get_Selection_Count(void) const
bool Create(sLong nValues, CSG_Index_Compare &Compare)
#define SG_TABLE_REC_FLAG_Modified
const SG_Char * Get_Field_Name(int Field) const
virtual int Get_Field_Length(int Field, int Encoding=SG_FILE_ENCODING_UNDEFINED) const
bool SG_Data_Type_is_Numeric(TSG_Data_Type Type)
virtual bool On_Update(void)
bool is_Indexed(void) const
virtual bool On_NoData_Changed(void)
@ SG_FILE_ENCODING_UTF32LE
sLong Get_Count(void) const
static CSG_Table_Value * _Create_Value(TSG_Data_Type Type)
virtual bool On_Update(void)
virtual bool is_Modified(void) const
bool Assign_Values(const CSG_Table &Table)
int is_Evaluated(void) const
int Get_Index_Field(int i) const
virtual void Set_Modified(bool bOn=true)
void * Create(const CSG_Array &Array)
bool Toggle_Index(int Field)
void * Get_Array(void) const
CSG_Table_Record * Get_Record_byIndex(sLong Index) const
class CSG_Table * asTable(bool bPolymorph=false) const
bool _Add_Field(int add_Field)
void Set_Name(const CSG_String &Name)
void Set_Modified(bool bOn=true)
bool Add_Entry(sLong Position=-1)
bool Set_Count(sLong Count)
static CSG_String Format(const char *Format,...)
bool _Del_Selection(sLong Index)
@ SG_FILE_ENCODING_UTF16LE
virtual bool Assign(CSG_Data_Object *pTable, bool bProgress=false)
virtual bool Add_Field(const CSG_String &Name, TSG_Data_Type Type, int Position=-1)
size_t to_UTF8(char **pString) const
@ SG_DATAOBJECT_TYPE_Shapes
CSG_String AfterFirst(char Character) const
virtual bool Del_Record(sLong Index)
bool Load(const CSG_String &File, int Format, SG_Char Separator, int Encoding=SG_FILE_ENCODING_UNDEFINED)
@ SG_DATAOBJECT_TYPE_Table
void Set_Description(const CSG_String &Description)
bool is_Empty(void) const
bool SG_UI_Process_Set_Progress(int Position, int Range)
@ SG_FILE_ENCODING_UTF16BE
virtual bool Set_Value(const CSG_Bytes &Value)=0
bool Set_Value(int Field, const CSG_String &Value)
virtual bool Del_Field(int Field)
virtual CSG_Table_Record * Ins_Record(sLong Index, CSG_Table_Record *pCopy=NULL)
sLong Get_Index(void) const
virtual bool Set_Value(sLong Index, int Field, const SG_Char *Value)
void SG_UI_ProgressAndMsg_Lock(bool bOn)
const SG_Char * c_str(void) const
CSG_Table_Value * Get_Value(int Field)
virtual const SG_Char * asString(int Decimals=-99) const =0
SAGA_API_DLL_EXPORT void * SG_Realloc(void *memblock, size_t size)
bool Set_Index(CSG_Index &Index, int Field, bool bAscending=true) const
sLong Get_Count(void) const
virtual CSG_Table_Record * Add_Record(CSG_Table_Record *pCopy=NULL)
bool Sort(const char *Field, bool bAscending=true)
bool Del_Entry(sLong Position=-1)
int Get_Field(const CSG_String &Name) const
virtual bool Set_NoData_Value_Range(double Lower, double Upper)
virtual bool Destroy(void)
virtual CSG_Table_Record * _Get_New_Record(sLong Index)
@ SG_DATAOBJECT_TYPE_PointCloud
void SG_UI_Msg_Add(const char *Message, bool bNewLine, TSG_UI_MSG_STYLE Style)
bool _Del_Field(int del_Field)
virtual void _On_Construction(void)
CSG_Shapes * SG_Create_Shapes(void)
virtual bool Mov_Field(int Field, int Position)