EVOLUTION-MANAGER
Edit File: ogrs57datasource.cpp
/****************************************************************************** * * Project: S-57 Translator * Purpose: Implements OGRS57DataSource class * Author: Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 1999, Frank Warmerdam * Copyright (c) 2010-2013, Even Rouault <even dot rouault at mines-paris dot org> * * 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 "cpl_conv.h" #include "cpl_string.h" #include "ogr_s57.h" #include <algorithm> #include <set> CPL_CVSID("$Id: ogrs57datasource.cpp 36017 2016-10-29 04:27:08Z goatbar $"); /************************************************************************/ /* OGRS57DataSource() */ /************************************************************************/ OGRS57DataSource::OGRS57DataSource(char** papszOpenOptionsIn) : pszName(NULL), nLayers(0), papoLayers(NULL), poSpatialRef(new OGRSpatialReference()), papszOptions(NULL), nModules(0), papoModules(NULL), poWriter(NULL), poClassContentExplorer(NULL), bExtentsSet(false) { poSpatialRef->SetWellKnownGeogCS( "WGS84" ); /* -------------------------------------------------------------------- */ /* Allow initialization of options from the environment. */ /* -------------------------------------------------------------------- */ const char *pszOptString = CPLGetConfigOption( "OGR_S57_OPTIONS", NULL ); if ( pszOptString != NULL ) { papszOptions = CSLTokenizeStringComplex( pszOptString, ",", FALSE, FALSE ); if ( papszOptions && *papszOptions ) { CPLDebug( "S57", "The following S57 options are being set:" ); char **papszCurOption = papszOptions; while( *papszCurOption ) CPLDebug( "S57", " %s", *papszCurOption++ ); } } /* -------------------------------------------------------------------- */ /* And from open options. */ /* -------------------------------------------------------------------- */ for(char** papszIter = papszOpenOptionsIn; papszIter && *papszIter; ++papszIter ) { char* pszKey = NULL; const char* pszValue = CPLParseNameValue(*papszIter, &pszKey); if( pszKey && pszValue ) { papszOptions = CSLSetNameValue(papszOptions, pszKey, pszValue); } CPLFree(pszKey); } } /************************************************************************/ /* ~OGRS57DataSource() */ /************************************************************************/ OGRS57DataSource::~OGRS57DataSource() { for( int i = 0; i < nLayers; i++ ) delete papoLayers[i]; CPLFree( papoLayers ); for( int i = 0; i < nModules; i++ ) delete papoModules[i]; CPLFree( papoModules ); CPLFree( pszName ); CSLDestroy( papszOptions ); poSpatialRef->Release(); if( poWriter != NULL ) { poWriter->Close(); delete poWriter; } delete poClassContentExplorer; } /************************************************************************/ /* SetOptionList() */ /************************************************************************/ void OGRS57DataSource::SetOptionList( char ** papszNewOptions ) { CSLDestroy( papszOptions ); papszOptions = CSLDuplicate( papszNewOptions ); } /************************************************************************/ /* GetOption() */ /************************************************************************/ const char *OGRS57DataSource::GetOption( const char * pszOption ) { return CSLFetchNameValue( papszOptions, pszOption ); } /************************************************************************/ /* TestCapability() */ /************************************************************************/ int OGRS57DataSource::TestCapability( const char * ) { return FALSE; } /************************************************************************/ /* Open() */ /************************************************************************/ int OGRS57DataSource::Open( const char * pszFilename ) { pszName = CPLStrdup( pszFilename ); /* -------------------------------------------------------------------- */ /* Setup reader options. */ /* -------------------------------------------------------------------- */ char **papszReaderOptions = NULL; if( GetOption(S57O_LNAM_REFS) == NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_LNAM_REFS, "ON" ); else papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_LNAM_REFS, GetOption(S57O_LNAM_REFS) ); if( GetOption(S57O_UPDATES) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_UPDATES, GetOption(S57O_UPDATES)); if( GetOption(S57O_SPLIT_MULTIPOINT) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_SPLIT_MULTIPOINT, GetOption(S57O_SPLIT_MULTIPOINT) ); if( GetOption(S57O_ADD_SOUNDG_DEPTH) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_ADD_SOUNDG_DEPTH, GetOption(S57O_ADD_SOUNDG_DEPTH)); if( GetOption(S57O_PRESERVE_EMPTY_NUMBERS) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_PRESERVE_EMPTY_NUMBERS, GetOption(S57O_PRESERVE_EMPTY_NUMBERS) ); if( GetOption(S57O_RETURN_PRIMITIVES) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_RETURN_PRIMITIVES, GetOption(S57O_RETURN_PRIMITIVES) ); if( GetOption(S57O_RETURN_LINKAGES) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_RETURN_LINKAGES, GetOption(S57O_RETURN_LINKAGES) ); if( GetOption(S57O_RETURN_DSID) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_RETURN_DSID, GetOption(S57O_RETURN_DSID) ); if( GetOption(S57O_RECODE_BY_DSSI) != NULL ) papszReaderOptions = CSLSetNameValue( papszReaderOptions, S57O_RECODE_BY_DSSI, GetOption(S57O_RECODE_BY_DSSI) ); S57Reader *poModule = new S57Reader( pszFilename ); bool bRet = poModule->SetOptions( papszReaderOptions ); CSLDestroy( papszReaderOptions ); if( !bRet ) { delete poModule; return FALSE; } /* -------------------------------------------------------------------- */ /* Try opening. */ /* */ /* Eventually this should check for catalogs, and if found */ /* instantiate a whole series of modules. */ /* -------------------------------------------------------------------- */ if( !poModule->Open( TRUE ) ) { delete poModule; return FALSE; } bool bSuccess = true; nModules = 1; papoModules = static_cast<S57Reader **>( CPLMalloc(sizeof(void*)) ); papoModules[0] = poModule; /* -------------------------------------------------------------------- */ /* Add the header layers if they are called for. */ /* -------------------------------------------------------------------- */ if( GetOption( S57O_RETURN_DSID ) == NULL || CPLTestBool(GetOption( S57O_RETURN_DSID )) ) { OGRFeatureDefn *poDefn = S57GenerateDSIDFeatureDefn(); AddLayer( new OGRS57Layer( this, poDefn ) ); } /* -------------------------------------------------------------------- */ /* Add the primitive layers if they are called for. */ /* -------------------------------------------------------------------- */ if( GetOption( S57O_RETURN_PRIMITIVES ) != NULL ) { OGRFeatureDefn *poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VI, poModule->GetOptionFlags()); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VC, poModule->GetOptionFlags()); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VE, poModule->GetOptionFlags()); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VF, poModule->GetOptionFlags()); AddLayer( new OGRS57Layer( this, poDefn ) ); } /* -------------------------------------------------------------------- */ /* Initialize a layer for each type of geometry. Eventually */ /* we will do this by object class. */ /* -------------------------------------------------------------------- */ if( OGRS57Driver::GetS57Registrar() == NULL ) { OGRFeatureDefn *poDefn = S57GenerateGeomFeatureDefn( wkbPoint, poModule->GetOptionFlags() ); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateGeomFeatureDefn( wkbLineString, poModule->GetOptionFlags() ); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateGeomFeatureDefn( wkbPolygon, poModule->GetOptionFlags() ); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateGeomFeatureDefn( wkbNone, poModule->GetOptionFlags() ); AddLayer( new OGRS57Layer( this, poDefn ) ); } /* -------------------------------------------------------------------- */ /* Initialize a feature definition for each class that actually */ /* occurs in the dataset. */ /* -------------------------------------------------------------------- */ else { poClassContentExplorer = new S57ClassContentExplorer( OGRS57Driver::GetS57Registrar() ); for( int iModule = 0; iModule < nModules; iModule++ ) papoModules[iModule]->SetClassBased( OGRS57Driver::GetS57Registrar(), poClassContentExplorer ); std::vector<int> anClassCount; for( int iModule = 0; iModule < nModules; iModule++ ) { bSuccess &= CPL_TO_BOOL( papoModules[iModule]->CollectClassList(anClassCount) ); } bool bGeneric = false; for( unsigned int iClass = 0; iClass < anClassCount.size(); iClass++ ) { if( anClassCount[iClass] > 0 ) { OGRFeatureDefn *poDefn = S57GenerateObjectClassDefn( OGRS57Driver::GetS57Registrar(), poClassContentExplorer, iClass, poModule->GetOptionFlags() ); if( poDefn != NULL ) AddLayer( new OGRS57Layer( this, poDefn, anClassCount[iClass] ) ); else { bGeneric = true; CPLDebug( "S57", "Unable to find definition for OBJL=%d\n", iClass ); } } } if( bGeneric ) { OGRFeatureDefn *poDefn = S57GenerateGeomFeatureDefn( wkbUnknown, poModule->GetOptionFlags() ); AddLayer( new OGRS57Layer( this, poDefn ) ); } } /* -------------------------------------------------------------------- */ /* Attach the layer definitions to each of the readers. */ /* -------------------------------------------------------------------- */ for( int iModule = 0; iModule < nModules; iModule++ ) { for( int iLayer = 0; iLayer < nLayers; iLayer++ ) { papoModules[iModule]->AddFeatureDefn( papoLayers[iLayer]->GetLayerDefn() ); } } return bSuccess; } /************************************************************************/ /* GetLayer() */ /************************************************************************/ OGRLayer *OGRS57DataSource::GetLayer( int iLayer ) { if( iLayer < 0 || iLayer >= nLayers ) return NULL; return papoLayers[iLayer]; } /************************************************************************/ /* AddLayer() */ /************************************************************************/ void OGRS57DataSource::AddLayer( OGRS57Layer * poNewLayer ) { papoLayers = static_cast<OGRS57Layer **> ( CPLRealloc( papoLayers, sizeof(void*) * ++nLayers ) ); papoLayers[nLayers-1] = poNewLayer; } /************************************************************************/ /* GetModule() */ /************************************************************************/ S57Reader * OGRS57DataSource::GetModule( int i ) { if( i < 0 || i >= nModules ) return NULL; return papoModules[i]; } /************************************************************************/ /* GetDSExtent() */ /************************************************************************/ OGRErr OGRS57DataSource::GetDSExtent( OGREnvelope *psExtent, int bForce ) { /* -------------------------------------------------------------------- */ /* If we have it, return it immediately. */ /* -------------------------------------------------------------------- */ if( bExtentsSet ) { *psExtent = oExtents; return OGRERR_NONE; } if( nModules == 0 ) return OGRERR_FAILURE; /* -------------------------------------------------------------------- */ /* Otherwise try asking each of the readers for it. */ /* -------------------------------------------------------------------- */ for( int iModule=0; iModule < nModules; iModule++ ) { OGREnvelope oModuleEnvelope; OGRErr eErr = papoModules[iModule]->GetExtent( &oModuleEnvelope, bForce ); if( eErr != OGRERR_NONE ) return eErr; if( iModule == 0 ) oExtents = oModuleEnvelope; else { oExtents.MinX = std::min(oExtents.MinX, oModuleEnvelope.MinX); oExtents.MaxX = std::max(oExtents.MaxX, oModuleEnvelope.MaxX); oExtents.MinY = std::min(oExtents.MinY, oModuleEnvelope.MinY); oExtents.MaxX = std::max(oExtents.MaxY, oModuleEnvelope.MaxY); } } *psExtent = oExtents; bExtentsSet = true; return OGRERR_NONE; } /************************************************************************/ /* Create() */ /* */ /* Create a new S57 file, and represent it as a datasource. */ /************************************************************************/ int OGRS57DataSource::Create( const char *pszFilename, char **papszOptionsIn ) { /* -------------------------------------------------------------------- */ /* Instantiate the class registrar if possible. */ /* -------------------------------------------------------------------- */ if( OGRS57Driver::GetS57Registrar() == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Unable to load s57objectclasses.csv. Unable to continue." ); return FALSE; } /* -------------------------------------------------------------------- */ /* Create the S-57 file with definition record. */ /* -------------------------------------------------------------------- */ poWriter = new S57Writer(); if( !poWriter->CreateS57File( pszFilename ) ) return FALSE; poClassContentExplorer = new S57ClassContentExplorer( OGRS57Driver::GetS57Registrar() ); poWriter->SetClassBased( OGRS57Driver::GetS57Registrar(), poClassContentExplorer ); pszName = CPLStrdup( pszFilename ); /* -------------------------------------------------------------------- */ /* Add the primitive layers if they are called for. */ /* -------------------------------------------------------------------- */ int nOptionFlags = S57M_RETURN_LINKAGES | S57M_LNAM_REFS; OGRFeatureDefn *poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VI, nOptionFlags ); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VC, nOptionFlags ); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VE, nOptionFlags ); AddLayer( new OGRS57Layer( this, poDefn ) ); poDefn = S57GenerateVectorPrimitiveFeatureDefn( RCNM_VF, nOptionFlags ); AddLayer( new OGRS57Layer( this, poDefn ) ); /* -------------------------------------------------------------------- */ /* Initialize a feature definition for each object class. */ /* -------------------------------------------------------------------- */ poClassContentExplorer->Rewind(); std::set<int> aoSetOBJL; while( poClassContentExplorer->NextClass() ) { const int nOBJL = poClassContentExplorer->GetOBJL(); // Detect potential duplicates in the classes if( aoSetOBJL.find(nOBJL) != aoSetOBJL.end() ) { CPLDebug("S57", "OBJL %d already registered!", nOBJL); continue; } aoSetOBJL.insert(nOBJL); poDefn = S57GenerateObjectClassDefn( OGRS57Driver::GetS57Registrar(), poClassContentExplorer, nOBJL, nOptionFlags ); AddLayer( new OGRS57Layer( this, poDefn, 0, nOBJL ) ); } /* -------------------------------------------------------------------- */ /* Write out "header" records. */ /* -------------------------------------------------------------------- */ int nEXPP = 1; int nINTU = 4; int nAGEN = 540; int nNOMR = 0; int nNOGR = 0; int nNOLR = 0; int nNOIN = 0; int nNOCN = 0; int nNOED = 0; const char *pszEXPP = CSLFetchNameValue( papszOptionsIn, "S57_EXPP" ); const char *pszINTU = CSLFetchNameValue( papszOptionsIn, "S57_INTU" ); const char *pszEDTN = CSLFetchNameValue( papszOptionsIn, "S57_EDTN" ); const char *pszUPDN = CSLFetchNameValue( papszOptionsIn, "S57_UPDN" ); const char *pszUADT = CSLFetchNameValue( papszOptionsIn, "S57_UADT" ); const char *pszISDT = CSLFetchNameValue( papszOptionsIn, "S57_ISDT" ); const char *pszSTED = CSLFetchNameValue( papszOptionsIn, "S57_STED" ); const char *pszAGEN = CSLFetchNameValue( papszOptionsIn, "S57_AGEN" ); const char *pszCOMT = CSLFetchNameValue( papszOptionsIn, "S57_COMT" ); const char *pszNOMR = CSLFetchNameValue( papszOptionsIn, "S57_NOMR" ); const char *pszNOGR = CSLFetchNameValue( papszOptionsIn, "S57_NOGR" ); const char *pszNOLR = CSLFetchNameValue( papszOptionsIn, "S57_NOLR" ); const char *pszNOIN = CSLFetchNameValue( papszOptionsIn, "S57_NOIN" ); const char *pszNOCN = CSLFetchNameValue( papszOptionsIn, "S57_NOCN" ); const char *pszNOED = CSLFetchNameValue( papszOptionsIn, "S57_NOED" ); if (pszEXPP) nEXPP = atoi(pszEXPP); if (pszINTU) nINTU = atoi(pszINTU); if (pszAGEN) nAGEN = atoi(pszAGEN); if (pszNOMR) nNOMR = atoi(pszNOMR); if (pszNOGR) nNOGR = atoi(pszNOGR); if (pszNOLR) nNOLR = atoi(pszNOLR); if (pszNOIN) nNOIN = atoi(pszNOIN); if (pszNOCN) nNOCN = atoi(pszNOCN); if (pszNOED) nNOED = atoi(pszNOED); poWriter->WriteDSID( nEXPP, nINTU, CPLGetFilename( pszFilename ), pszEDTN, pszUPDN, pszUADT, pszISDT, pszSTED, nAGEN, pszCOMT, nNOMR, nNOGR, nNOLR, nNOIN, nNOCN, nNOED ); int nHDAT = 2; int nVDAT = 17; int nSDAT = 23; int nCSCL = 52000; const char *pszHDAT = CSLFetchNameValue( papszOptionsIn, "S57_HDAT" ); const char *pszVDAT = CSLFetchNameValue( papszOptionsIn, "S57_VDAT" ); const char *pszSDAT = CSLFetchNameValue( papszOptionsIn, "S57_SDAT" ); const char *pszCSCL = CSLFetchNameValue( papszOptionsIn, "S57_CSCL" ); if (pszHDAT) nHDAT = atoi(pszHDAT); if (pszVDAT) nVDAT = atoi(pszVDAT); if (pszSDAT) nSDAT = atoi(pszSDAT); if (pszCSCL) nCSCL = atoi(pszCSCL); poWriter->WriteDSPM(nHDAT, nVDAT, nSDAT, nCSCL); return TRUE; }