?? ogrdodsfielddefn.cpp
字號:
/****************************************************************************** * $Id: ogrdodsfielddefn.cpp 10646 2007-01-18 02:38:10Z warmerdam $ * * Project: OGR/DODS Interface * Purpose: Implements OGRDODSFieldDefn class. This is a small class used * to encapsulate information about a referenced field. * Author: Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 2004, Frank Warmerdam <warmerdam@pobox.com> * * 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 "ogr_dods.h"#include "cpl_conv.h"CPL_CVSID("$Id: ogrdodsfielddefn.cpp 10646 2007-01-18 02:38:10Z warmerdam $");/************************************************************************//* OGRDODSFieldDefn() *//************************************************************************/OGRDODSFieldDefn::OGRDODSFieldDefn(){ pszFieldName = NULL; pszFieldScope = NULL; iFieldIndex = -1; pszFieldValue = NULL; bValid = FALSE; pszPathToSequence = NULL; bRelativeToSuperSequence = FALSE; bRelativeToSequence = FALSE;}/************************************************************************//* ~OGRDODSFieldDefn() *//************************************************************************/OGRDODSFieldDefn::~OGRDODSFieldDefn(){ CPLFree( pszFieldName ); CPLFree( pszFieldScope ); CPLFree( pszFieldValue ); CPLFree( pszPathToSequence );}/************************************************************************//* Initialize() *//* *//* Build field reference from a DAS entry. The AttrTable *//* passed should be the container of the field defn. For *//* instance, the "x_field" node with a name and scope sub *//* entry. *//************************************************************************/int OGRDODSFieldDefn::Initialize( AttrTable *poEntry, BaseType *poTarget, BaseType *poSuperSeq ){ const char *pszFieldScope = poEntry->get_attr("scope").c_str(); if( pszFieldScope == NULL ) pszFieldScope = "dds"; return Initialize( poEntry->get_attr("name").c_str(), pszFieldScope, poTarget, poSuperSeq );}/************************************************************************//* Initialize() *//************************************************************************/int OGRDODSFieldDefn::Initialize( const char *pszFieldNameIn, const char *pszFieldScopeIn, BaseType *poTarget, BaseType *poSuperSeq ){ pszFieldScope = CPLStrdup( pszFieldScopeIn ); pszFieldName = CPLStrdup( pszFieldNameIn ); if( poTarget != NULL && EQUAL(pszFieldScope,"dds") ) { string oTargPath = OGRDODSGetVarPath( poTarget ); int nTargPathLen = strlen(oTargPath.c_str()); if( EQUALN(oTargPath.c_str(),pszFieldNameIn,nTargPathLen) && pszFieldNameIn[nTargPathLen] == '.' ) { CPLFree( pszFieldName ); pszFieldName = CPLStrdup( pszFieldNameIn + nTargPathLen + 1 ); bRelativeToSequence = TRUE; iFieldIndex = OGRDODSGetVarIndex( dynamic_cast<Sequence *>( poTarget ), pszFieldName ); } else if( poSuperSeq != NULL ) { string oTargPath = OGRDODSGetVarPath( poSuperSeq ); int nTargPathLen = strlen(oTargPath.c_str()); if( EQUALN(oTargPath.c_str(),pszFieldNameIn,nTargPathLen) && pszFieldNameIn[nTargPathLen] == '.' ) { CPLFree( pszFieldName ); pszFieldName = CPLStrdup( pszFieldNameIn + nTargPathLen + 1 ); bRelativeToSuperSequence = TRUE; iFieldIndex = OGRDODSGetVarIndex( dynamic_cast<Sequence *>( poSuperSeq ), pszFieldName ); } } } bValid = TRUE; return TRUE;}/************************************************************************//* OGRDODSGetVarPath() *//* *//* Return the full path to a variable. *//************************************************************************/string OGRDODSGetVarPath( BaseType *poTarget ){ string oFullName; oFullName = poTarget->name(); while( (poTarget = poTarget->get_parent()) != NULL ) { oFullName = poTarget->name() + "." + oFullName; } return oFullName;}/************************************************************************//* OGRDODSGetVarIndex() *//************************************************************************/int OGRDODSGetVarIndex( Sequence *poParent, string oVarName ){ Sequence::Vars_iter v_i; int i; for( v_i = poParent->var_begin(), i=0; v_i != poParent->var_end(); v_i++, i++ ) { if( EQUAL((*v_i)->name().c_str(),oVarName.c_str()) ) return i; } return -1;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -