forked from katiya-cw/iso8211lib-1.4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathddfmodule.cpp
759 lines (633 loc) · 26.4 KB
/
ddfmodule.cpp
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
/******************************************************************************
* $Id: ddfmodule.cpp,v 1.16 2005/10/13 22:02:39 fwarmerdam Exp $
*
* Project: ISO 8211 Access
* Purpose: Implements the DDFModule class.
* Author: Frank Warmerdam, [email protected]
*
******************************************************************************
* 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.
******************************************************************************
*
* $Log: ddfmodule.cpp,v $
* Revision 1.16 2005/10/13 22:02:39 fwarmerdam
* dont add fields that fail to initialize
*
* Revision 1.15 2004/02/18 14:09:42 warmerda
* doc fixups
*
* Revision 1.14 2003/07/03 15:38:46 warmerda
* some write capabilities added
*
* Revision 1.13 2001/07/18 04:51:57 warmerda
* added CPL_CVSID
*
* Revision 1.12 2000/09/19 14:08:51 warmerda
* keep and report _extendedCharSet
*
* Revision 1.11 1999/11/18 19:03:04 warmerda
* expanded tabs
*
* Revision 1.10 1999/11/18 19:02:38 warmerda
* added failquietly to open
*
* Revision 1.9 1999/09/03 14:14:39 warmerda
* fix cloning
*
* Revision 1.8 1999/09/02 03:10:01 warmerda
* fixed subtle problem with rewinding modules with reusable headers
*
* Revision 1.7 1999/08/16 15:44:29 warmerda
* Fixed bug in FindFieldDefn().
*
* Revision 1.6 1999/08/13 03:26:14 warmerda
* added Rewind()
*
* Revision 1.5 1999/05/08 20:15:59 warmerda
* added validity checking, and better cleanup on error
*
* Revision 1.4 1999/05/07 14:11:49 warmerda
* added support for tracking record clones
*
* Revision 1.3 1999/05/06 15:39:45 warmerda
* avoid redeclaring variable i
*
* Revision 1.2 1999/05/06 14:23:10 warmerda
* added Close(), and minor optimizations
*
* Revision 1.1 1999/04/27 18:45:05 warmerda
* New
*
*/
#include "iso8211.h"
#include "cpl_conv.h"
CPL_CVSID("$Id: ddfmodule.cpp,v 1.16 2005/10/13 22:02:39 fwarmerdam Exp $");
/************************************************************************/
/* DDFModule() */
/************************************************************************/
/**
* The constructor.
*/
DDFModule::DDFModule()
{
nFieldDefnCount = 0;
papoFieldDefns = NULL;
poRecord = NULL;
papoClones = NULL;
nCloneCount = nMaxCloneCount = 0;
fpDDF = NULL;
bReadOnly = TRUE;
_interchangeLevel = '\0';
_inlineCodeExtensionIndicator = '\0';
_versionNumber = '\0';
_appIndicator = '\0';
_fieldControlLength = '\0';
strcpy( _extendedCharSet, " ! " );
_recLength = 0;
_leaderIden = 'L';
_fieldAreaStart = 0;
_sizeFieldLength = 0;
_sizeFieldPos = 0;
_sizeFieldTag = 0;
}
/************************************************************************/
/* ~DDFModule() */
/************************************************************************/
/**
* The destructor.
*/
DDFModule::~DDFModule()
{
Close();
}
/************************************************************************/
/* Close() */
/* */
/* Note that closing a file also destroys essentially all other */
/* module datastructures. */
/************************************************************************/
/**
* Close an ISO 8211 file.
*/
void DDFModule::Close()
{
/* -------------------------------------------------------------------- */
/* Close the file. */
/* -------------------------------------------------------------------- */
if( fpDDF != NULL )
{
VSIFClose( fpDDF );
fpDDF = NULL;
}
/* -------------------------------------------------------------------- */
/* Cleanup the working record. */
/* -------------------------------------------------------------------- */
if( poRecord != NULL )
{
delete poRecord;
poRecord = NULL;
}
/* -------------------------------------------------------------------- */
/* Cleanup the clones. Deleting them will cause a callback to */
/* remove them from the list. */
/* -------------------------------------------------------------------- */
while( nCloneCount > 0 )
delete papoClones[0];
nMaxCloneCount = 0;
CPLFree( papoClones );
papoClones = NULL;
/* -------------------------------------------------------------------- */
/* Cleanup the field definitions. */
/* -------------------------------------------------------------------- */
int i;
for( i = 0; i < nFieldDefnCount; i++ )
delete papoFieldDefns[i];
CPLFree( papoFieldDefns );
papoFieldDefns = NULL;
nFieldDefnCount = 0;
}
/************************************************************************/
/* Open() */
/* */
/* Open an ISO 8211 file, and read the DDR record to build the */
/* field definitions. */
/************************************************************************/
/**
* Open a ISO 8211 (DDF) file for reading.
*
* If the open succeeds the data descriptive record (DDR) will have been
* read, and all the field and subfield definitions will be available.
*
* @param pszFilename The name of the file to open.
* @param bFailQuietly If FALSE a CPL Error is issued for non-8211 files,
* otherwise quietly return NULL.
*
* @return FALSE if the open fails or TRUE if it succeeds. Errors messages
* are issued internally with CPLError().
*/
int DDFModule::Open( const char * pszFilename, int bFailQuietly )
{
static const size_t nLeaderSize = 24;
/* -------------------------------------------------------------------- */
/* Close the existing file if there is one. */
/* -------------------------------------------------------------------- */
if( fpDDF != NULL )
Close();
/* -------------------------------------------------------------------- */
/* Open the file. */
/* -------------------------------------------------------------------- */
fpDDF = VSIFOpen( pszFilename, "rb" );
if( fpDDF == NULL )
{
if( !bFailQuietly )
CPLError( CE_Failure, CPLE_OpenFailed,
"Unable to open DDF file `%s'.",
pszFilename );
return FALSE;
}
/* -------------------------------------------------------------------- */
/* Read the 24 byte leader. */
/* -------------------------------------------------------------------- */
char achLeader[nLeaderSize];
if( VSIFRead( achLeader, 1, nLeaderSize, fpDDF ) != nLeaderSize )
{
VSIFClose( fpDDF );
fpDDF = NULL;
if( !bFailQuietly )
CPLError( CE_Failure, CPLE_FileIO,
"Leader is short on DDF file `%s'.",
pszFilename );
return FALSE;
}
/* -------------------------------------------------------------------- */
/* Verify that this appears to be a valid DDF file. */
/* -------------------------------------------------------------------- */
int i, bValid = TRUE;
for( i = 0; i < (int)nLeaderSize; i++ )
{
if( achLeader[i] < 32 || achLeader[i] > 126 )
bValid = FALSE;
}
if( achLeader[5] != '1' && achLeader[5] != '2' && achLeader[5] != '3' )
bValid = FALSE;
if( achLeader[6] != 'L' )
bValid = FALSE;
if( achLeader[8] != '1' && achLeader[8] != ' ' )
bValid = FALSE;
/* -------------------------------------------------------------------- */
/* Extract information from leader. */
/* -------------------------------------------------------------------- */
if( bValid )
{
_recLength = DDFScanInt( achLeader+0, 5 );
_interchangeLevel = achLeader[5];
_leaderIden = achLeader[6];
_inlineCodeExtensionIndicator = achLeader[7];
_versionNumber = achLeader[8];
_appIndicator = achLeader[9];
_fieldControlLength = DDFScanInt(achLeader+10,2);
_fieldAreaStart = DDFScanInt(achLeader+12,5);
_extendedCharSet[0] = achLeader[17];
_extendedCharSet[1] = achLeader[18];
_extendedCharSet[2] = achLeader[19];
_extendedCharSet[3] = '\0';
_sizeFieldLength = DDFScanInt(achLeader+20,1);
_sizeFieldPos = DDFScanInt(achLeader+21,1);
_sizeFieldTag = DDFScanInt(achLeader+23,1);
if( _recLength < 12 || _fieldControlLength == 0
|| _fieldAreaStart < 24 || _sizeFieldLength == 0
|| _sizeFieldPos == 0 || _sizeFieldTag == 0 )
{
bValid = FALSE;
}
}
/* -------------------------------------------------------------------- */
/* If the header is invalid, then clean up, report the error */
/* and return. */
/* -------------------------------------------------------------------- */
if( !bValid )
{
VSIFClose( fpDDF );
fpDDF = NULL;
if( !bFailQuietly )
CPLError( CE_Failure, CPLE_AppDefined,
"File `%s' does not appear to have\n"
"a valid ISO 8211 header.\n",
pszFilename );
return FALSE;
}
/* -------------------------------------------------------------------- */
/* Read the whole record info memory. */
/* -------------------------------------------------------------------- */
char *pachRecord;
pachRecord = (char *) CPLMalloc(_recLength);
memcpy( pachRecord, achLeader, nLeaderSize );
if( VSIFRead( pachRecord+nLeaderSize, 1, _recLength-nLeaderSize, fpDDF )
!= _recLength - nLeaderSize )
{
if( !bFailQuietly )
CPLError( CE_Failure, CPLE_FileIO,
"Header record is short on DDF file `%s'.",
pszFilename );
return FALSE;
}
/* -------------------------------------------------------------------- */
/* First make a pass counting the directory entries. */
/* -------------------------------------------------------------------- */
int nFieldEntryWidth, nFDCount = 0;
nFieldEntryWidth = _sizeFieldLength + _sizeFieldPos + _sizeFieldTag;
for( i = nLeaderSize; i < _recLength; i += nFieldEntryWidth )
{
if( pachRecord[i] == DDF_FIELD_TERMINATOR )
break;
nFDCount++;
}
/* -------------------------------------------------------------------- */
/* Allocate, and read field definitions. */
/* -------------------------------------------------------------------- */
for( i = 0; i < nFDCount; i++ )
{
char szTag[128];
int nEntryOffset = nLeaderSize + i*nFieldEntryWidth;
int nFieldLength, nFieldPos;
DDFFieldDefn *poFDefn;
strncpy( szTag, pachRecord+nEntryOffset, _sizeFieldTag );
szTag[_sizeFieldTag] = '\0';
nEntryOffset += _sizeFieldTag;
nFieldLength = DDFScanInt( pachRecord+nEntryOffset, _sizeFieldLength );
nEntryOffset += _sizeFieldLength;
nFieldPos = DDFScanInt( pachRecord+nEntryOffset, _sizeFieldPos );
poFDefn = new DDFFieldDefn();
if( poFDefn->Initialize( this, szTag, nFieldLength,
pachRecord+_fieldAreaStart+nFieldPos ) )
AddField( poFDefn );
else
delete poFDefn;
}
CPLFree( pachRecord );
/* -------------------------------------------------------------------- */
/* Record the current file offset, the beginning of the first */
/* data record. */
/* -------------------------------------------------------------------- */
nFirstRecordOffset = VSIFTell( fpDDF );
return TRUE;
}
/************************************************************************/
/* Initialize() */
/************************************************************************/
int DDFModule::Initialize( char chInterchangeLevel,
char chLeaderIden,
char chCodeExtensionIndicator,
char chVersionNumber,
char chAppIndicator,
const char *pszExtendedCharSet,
int nSizeFieldLength,
int nSizeFieldPos,
int nSizeFieldTag )
{
_interchangeLevel = chInterchangeLevel;
_leaderIden = chLeaderIden;
_inlineCodeExtensionIndicator = chCodeExtensionIndicator;
_versionNumber = chVersionNumber;
_appIndicator = chAppIndicator;
strcpy( _extendedCharSet, pszExtendedCharSet );
_sizeFieldLength = nSizeFieldLength;
_sizeFieldPos = nSizeFieldPos;
_sizeFieldTag = nSizeFieldTag;
return TRUE;
}
/************************************************************************/
/* Create() */
/************************************************************************/
int DDFModule::Create( const char *pszFilename )
{
CPLAssert( fpDDF == NULL );
/* -------------------------------------------------------------------- */
/* Create the file on disk. */
/* -------------------------------------------------------------------- */
fpDDF = VSIFOpen( pszFilename, "wb+" );
if( fpDDF == NULL )
{
CPLError( CE_Failure, CPLE_OpenFailed,
"Failed to create file %s, check path and permissions.",
pszFilename );
return FALSE;
}
bReadOnly = FALSE;
/* -------------------------------------------------------------------- */
/* Prepare all the field definition information. */
/* -------------------------------------------------------------------- */
int iField;
_fieldControlLength = 9;
_recLength = 24
+ nFieldDefnCount * (_sizeFieldLength+_sizeFieldPos+_sizeFieldTag)
+ 1;
_fieldAreaStart = _recLength;
for( iField=0; iField < nFieldDefnCount; iField++ )
{
int nLength;
papoFieldDefns[iField]->GenerateDDREntry( NULL, &nLength );
_recLength += nLength;
}
/* -------------------------------------------------------------------- */
/* Setup 24 byte leader. */
/* -------------------------------------------------------------------- */
char achLeader[25];
sprintf( achLeader+0, "%05d", (int) _recLength );
achLeader[5] = _interchangeLevel;
achLeader[6] = _leaderIden;
achLeader[7] = _inlineCodeExtensionIndicator;
achLeader[8] = _versionNumber;
achLeader[9] = _appIndicator;
sprintf( achLeader+10, "%02d", (int) _fieldControlLength );
sprintf( achLeader+12, "%05d", (int) _fieldAreaStart );
strncpy( achLeader+17, _extendedCharSet, 3 );
sprintf( achLeader+20, "%1d", (int) _sizeFieldLength );
sprintf( achLeader+21, "%1d", (int) _sizeFieldPos );
achLeader[22] = '0';
sprintf( achLeader+23, "%1d", (int) _sizeFieldTag );
VSIFWrite( achLeader, 24, 1, fpDDF );
/* -------------------------------------------------------------------- */
/* Write out directory entries. */
/* -------------------------------------------------------------------- */
int nOffset = 0;
for( iField=0; iField < nFieldDefnCount; iField++ )
{
char achDirEntry[12];
int nLength;
papoFieldDefns[iField]->GenerateDDREntry( NULL, &nLength );
strcpy( achDirEntry, papoFieldDefns[iField]->GetName() );
sprintf( achDirEntry + _sizeFieldTag, "%03d", nLength );
sprintf( achDirEntry + _sizeFieldTag + _sizeFieldLength,
"%04d", nOffset );
nOffset += nLength;
VSIFWrite( achDirEntry, 11, 1, fpDDF );
}
char chUT = DDF_FIELD_TERMINATOR;
VSIFWrite( &chUT, 1, 1, fpDDF );
/* -------------------------------------------------------------------- */
/* Write out the field descriptions themselves. */
/* -------------------------------------------------------------------- */
for( iField=0; iField < nFieldDefnCount; iField++ )
{
char *pachData;
int nLength;
papoFieldDefns[iField]->GenerateDDREntry( &pachData, &nLength );
VSIFWrite( pachData, nLength, 1, fpDDF );
CPLFree( pachData );
}
return TRUE;
}
/************************************************************************/
/* Dump() */
/************************************************************************/
/**
* Write out module info to debugging file.
*
* A variety of information about the module is written to the debugging
* file. This includes all the field and subfield definitions read from
* the header.
*
* @param fp The standard io file handle to write to. ie. stderr.
*/
void DDFModule::Dump( FILE * fp )
{
fprintf( fp, "DDFModule:\n" );
fprintf( fp, " _recLength = %ld\n", _recLength );
fprintf( fp, " _interchangeLevel = %c\n", _interchangeLevel );
fprintf( fp, " _leaderIden = %c\n", _leaderIden );
fprintf( fp, " _inlineCodeExtensionIndicator = %c\n",
_inlineCodeExtensionIndicator );
fprintf( fp, " _versionNumber = %c\n", _versionNumber );
fprintf( fp, " _appIndicator = %c\n", _appIndicator );
fprintf( fp, " _extendedCharSet = `%s'\n", _extendedCharSet );
fprintf( fp, " _fieldControlLength = %d\n", _fieldControlLength );
fprintf( fp, " _fieldAreaStart = %ld\n", _fieldAreaStart );
fprintf( fp, " _sizeFieldLength = %ld\n", _sizeFieldLength );
fprintf( fp, " _sizeFieldPos = %ld\n", _sizeFieldPos );
fprintf( fp, " _sizeFieldTag = %ld\n", _sizeFieldTag );
for( int i = 0; i < nFieldDefnCount; i++ )
{
papoFieldDefns[i]->Dump( fp );
}
}
/************************************************************************/
/* FindFieldDefn() */
/************************************************************************/
/**
* Fetch the definition of the named field.
*
* This function will scan the DDFFieldDefn's on this module, to find
* one with the indicated field name.
*
* @param pszFieldName The name of the field to search for. The comparison is
* case insensitive.
*
* @return A pointer to the request DDFFieldDefn object is returned, or NULL
* if none matching the name are found. The return object remains owned by
* the DDFModule, and should not be deleted by application code.
*/
DDFFieldDefn *DDFModule::FindFieldDefn( const char *pszFieldName )
{
int i;
/* -------------------------------------------------------------------- */
/* This pass tries to reduce the cost of comparing strings by */
/* first checking the first character, and by using strcmp() */
/* -------------------------------------------------------------------- */
for( i = 0; i < nFieldDefnCount; i++ )
{
const char *pszThisName = papoFieldDefns[i]->GetName();
if( *pszThisName == *pszFieldName
&& strcmp( pszFieldName+1, pszThisName+1) == 0 )
return papoFieldDefns[i];
}
/* -------------------------------------------------------------------- */
/* Now do a more general check. Application code may not */
/* always use the correct name case. */
/* -------------------------------------------------------------------- */
for( i = 0; i < nFieldDefnCount; i++ )
{
if( EQUAL(pszFieldName, papoFieldDefns[i]->GetName()) )
return papoFieldDefns[i];
}
return NULL;
}
/************************************************************************/
/* ReadRecord() */
/* */
/* Read one record from the file, and return to the */
/* application. The returned record is owned by the module, */
/* and is reused from call to call in order to preserve headers */
/* when they aren't being re-read from record to record. */
/************************************************************************/
/**
* Read one record from the file.
*
* @return A pointer to a DDFRecord object is returned, or NULL if a read
* error, or end of file occurs. The returned record is owned by the
* module, and should not be deleted by the application. The record is
* only valid untill the next ReadRecord() at which point it is overwritten.
*/
DDFRecord *DDFModule::ReadRecord()
{
if( poRecord == NULL )
poRecord = new DDFRecord( this );
if( poRecord->Read() )
return poRecord;
else
return NULL;
}
/************************************************************************/
/* AddField() */
/************************************************************************/
/**
* Add new field definition.
*
* Field definitions may only be added to DDFModules being used for
* writing, not those being used for reading. Ownership of the
* DDFFieldDefn object is taken by the DDFModule.
*
* @param poNewFDefn definition to be added to the module.
*/
void DDFModule::AddField( DDFFieldDefn *poNewFDefn )
{
nFieldDefnCount++;
papoFieldDefns = (DDFFieldDefn **)
CPLRealloc(papoFieldDefns, sizeof(void*)*nFieldDefnCount);
papoFieldDefns[nFieldDefnCount-1] = poNewFDefn;
}
/************************************************************************/
/* GetField() */
/************************************************************************/
/**
* Fetch a field definition by index.
*
* @param i (from 0 to GetFieldCount() - 1.
* @return the returned field pointer or NULL if the index is out of range.
*/
DDFFieldDefn *DDFModule::GetField(int i)
{
if( i < 0 || i >= nFieldDefnCount )
return NULL;
else
return papoFieldDefns[i];
}
/************************************************************************/
/* AddCloneRecord() */
/* */
/* We want to keep track of cloned records, so we can clean */
/* them up when the module is destroyed. */
/************************************************************************/
void DDFModule::AddCloneRecord( DDFRecord * poRecord )
{
/* -------------------------------------------------------------------- */
/* Do we need to grow the container array? */
/* -------------------------------------------------------------------- */
if( nCloneCount == nMaxCloneCount )
{
nMaxCloneCount = nCloneCount*2 + 20;
papoClones = (DDFRecord **) CPLRealloc(papoClones,
nMaxCloneCount * sizeof(void*));
}
/* -------------------------------------------------------------------- */
/* Add to the list. */
/* -------------------------------------------------------------------- */
papoClones[nCloneCount++] = poRecord;
}
/************************************************************************/
/* RemoveCloneRecord() */
/************************************************************************/
void DDFModule::RemoveCloneRecord( DDFRecord * poRecord )
{
int i;
for( i = 0; i < nCloneCount; i++ )
{
if( papoClones[i] == poRecord )
{
papoClones[i] = papoClones[nCloneCount-1];
nCloneCount--;
return;
}
}
CPLAssert( FALSE );
}
/************************************************************************/
/* Rewind() */
/************************************************************************/
/**
* Return to first record.
*
* The next call to ReadRecord() will read the first data record in the file.
*
* @param nOffset the offset in the file to return to. By default this is
* -1, a special value indicating that reading should return to the first
* data record. Otherwise it is an absolute byte offset in the file.
*/
void DDFModule::Rewind( long nOffset )
{
if( nOffset == -1 )
nOffset = nFirstRecordOffset;
if( fpDDF == NULL )
return;
VSIFSeek( fpDDF, nOffset, SEEK_SET );
if( nOffset == nFirstRecordOffset && poRecord != NULL )
poRecord->Clear();
}