📄 ddfmodule.cpp
字号:
/****************************************************************************** * $Id: ddfmodule.cpp,v 1.1.1.1 2004/12/29 07:54:53 jay-be-em Exp $ * * Project: ISO 8211 Access * Purpose: Implements the DDFModule class. * 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. ****************************************************************************** * * $Log: ddfmodule.cpp,v $ * Revision 1.1.1.1 2004/12/29 07:54:53 jay-be-em * Initial import * * 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.1.1.1 2004/12/29 07:54:53 jay-be-em 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(); poFDefn->Initialize( this, szTag, nFieldLength, pachRecord+_fieldAreaStart+nFieldPos ); AddField( poFDefn ); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -