1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
|
/******************************************************************************
* $Id: sdtsindexedreader.cpp 10645 2007-01-18 02:22:39Z warmerdam $
*
* Project: SDTS Translator
* Purpose: Implmementation of SDTSIndexedReader class. This base class for
* various reader classes provides indexed caching of features for
* quick fetching when assembling composite features for other
* readers.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
******************************************************************************
* Copyright (c) 1999, Frank Warmerdam
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "sdts_al.h"
CPL_CVSID("$Id: sdtsindexedreader.cpp 10645 2007-01-18 02:22:39Z warmerdam $");
/************************************************************************/
/* SDTSIndexedReader() */
/************************************************************************/
SDTSIndexedReader::SDTSIndexedReader()
{
nIndexSize = 0;
papoFeatures = NULL;
iCurrentFeature = 0;
}
/************************************************************************/
/* ~SDTSIndexedReader() */
/************************************************************************/
SDTSIndexedReader::~SDTSIndexedReader()
{
ClearIndex();
}
/************************************************************************/
/* IsIndexed() */
/************************************************************************/
/**
Returns TRUE if the module is indexed, otherwise it returns FALSE.
If the module is indexed all the feature have already been read into
memory, and searches based on the record number can be performed
efficiently.
*/
int SDTSIndexedReader::IsIndexed()
{
return nIndexSize != 0;
}
/************************************************************************/
/* ClearIndex() */
/************************************************************************/
/**
Free all features in the index (if filled).
After this the reader is considered to not be indexed, and IsIndexed()
will return FALSE untill the index is forcably filled again.
*/
void SDTSIndexedReader::ClearIndex()
{
for( int i = 0; i < nIndexSize; i++ )
{
if( papoFeatures[i] != NULL )
delete papoFeatures[i];
}
CPLFree( papoFeatures );
papoFeatures = NULL;
nIndexSize = 0;
}
/************************************************************************/
/* GetNextFeature() */
/************************************************************************/
/**
Fetch the next available feature from this reader.
The returned SDTSFeature * is to an internal indexed object if the
IsIndexed() method returns TRUE, otherwise the returned feature becomes the
responsibility of the caller to destroy with delete.
Note that the Rewind() method can be used to start over at the beginning of
the modules feature list.
@return next feature, or NULL if no more are left. Please review above
ownership/delete semantics.
*/
SDTSFeature *SDTSIndexedReader::GetNextFeature()
{
if( nIndexSize == 0 )
return GetNextRawFeature();
else
{
while( iCurrentFeature < nIndexSize )
{
if( papoFeatures[iCurrentFeature] != NULL )
return papoFeatures[iCurrentFeature++];
else
iCurrentFeature++;
}
return NULL;
}
}
/************************************************************************/
/* GetIndexedFeatureRef() */
/************************************************************************/
/**
Fetch a feature based on it's record number.
This method will forceably fill the feature cache, reading all the
features in the file into memory, if they haven't already been loaded.
The ClearIndex() method can be used to flush this cache when no longer
needed.
@param iRecordId the record to fetch, normally based on the nRecord
field of an SDTSModId.
@return a pointer to an internal feature (not to be deleted) or NULL
if there is no matching feature.
*/
SDTSFeature *SDTSIndexedReader::GetIndexedFeatureRef( int iRecordId )
{
if( nIndexSize == 0 )
FillIndex();
if( iRecordId < 0 || iRecordId >= nIndexSize )
return NULL;
else
return papoFeatures[iRecordId];
}
/************************************************************************/
/* FillIndex() */
/************************************************************************/
/**
Read all features into a memory indexed cached.
The ClearIndex() method can be used to free all indexed features.
FillIndex() does nothing, if an index has already been built.
*/
void SDTSIndexedReader::FillIndex()
{
SDTSFeature *poFeature;
if( nIndexSize != 0 )
return;
Rewind();
while( (poFeature = GetNextRawFeature()) != NULL )
{
int iRecordId = poFeature->oModId.nRecord;
CPLAssert( iRecordId < 1000000 );
if( iRecordId >= 1000000 )
{
delete poFeature;
continue;
}
if( iRecordId >= nIndexSize )
{
int nNewSize = (int) (iRecordId * 1.25 + 100);
papoFeatures = (SDTSFeature **)
CPLRealloc( papoFeatures, sizeof(void*) * nNewSize);
for( int i = nIndexSize; i < nNewSize; i++ )
papoFeatures[i] = NULL;
nIndexSize = nNewSize;
}
CPLAssert( papoFeatures[iRecordId] == NULL );
papoFeatures[iRecordId] = poFeature;
}
}
/************************************************************************/
/* ScanModuleReferences() */
/************************************************************************/
/**
Scan an entire SDTS module for record references with the given field
name.
The fields are required to have a MODN subfield from which the
module is extracted.
This method is normally used to find all the attribute modules referred
to by a point, line or polygon module to build a unified schema.
This method will have the side effect of rewinding unindexed readers
because the scanning operation requires reading all records in the module
from disk.
@param pszFName the field name to search for. By default "ATID" is
used.
@return a NULL terminated list of module names. Free with CSLDestroy().
*/
char ** SDTSIndexedReader::ScanModuleReferences( const char * pszFName )
{
return SDTSScanModuleReferences( &oDDFModule, pszFName );
}
/************************************************************************/
/* Rewind() */
/************************************************************************/
/**
Rewind so that the next feature returned by GetNextFeature() will be the
first in the module.
*/
void SDTSIndexedReader::Rewind()
{
if( nIndexSize != 0 )
iCurrentFeature = 0;
else
oDDFModule.Rewind();
}
|