EVOLUTION-MANAGER
Edit File: ogrodsdriver.cpp
/****************************************************************************** * $Id: ogrodsdriver.cpp 27044 2014-03-16 23:41:27Z rouault $ * * Project: ODS Translator * Purpose: Implements OGRODSDriver. * Author: Even Rouault, even dot rouault at mines dash paris dot org * ****************************************************************************** * Copyright (c) 2012, 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 "ogr_ods.h" #include "cpl_conv.h" CPL_CVSID("$Id: ogrodsdriver.cpp 27044 2014-03-16 23:41:27Z rouault $"); extern "C" void RegisterOGRODS(); // g++ -DHAVE_EXPAT -g -Wall -fPIC ogr/ogrsf_frmts/ods/*.cpp -shared -o ogr_ODS.so -Iport -Igcore -Iogr -Iogr/ogrsf_frmts -Iogr/ogrsf_frmts/mem -Iogr/ogrsf_frmts/ods -L. -lgdal /************************************************************************/ /* ~OGRODSDriver() */ /************************************************************************/ OGRODSDriver::~OGRODSDriver() { } /************************************************************************/ /* GetName() */ /************************************************************************/ const char *OGRODSDriver::GetName() { return "ODS"; } /************************************************************************/ /* Open() */ /************************************************************************/ OGRDataSource *OGRODSDriver::Open( const char * pszFilename, int bUpdate ) { CPLString osContentFilename; const char* pszContentFilename = pszFilename; VSILFILE* fpContent = NULL; VSILFILE* fpSettings = NULL; if (EQUAL(CPLGetExtension(pszFilename), "ODS")) { VSILFILE* fp = VSIFOpenL(pszFilename, "rb"); if (fp == NULL) return NULL; int bOK = FALSE; char szBuffer[1024]; if (VSIFReadL(szBuffer, sizeof(szBuffer), 1, fp) == 1 && memcmp(szBuffer, "PK", 2) == 0) { bOK = TRUE; } VSIFCloseL(fp); if (!bOK) return NULL; osContentFilename.Printf("/vsizip/%s/content.xml", pszFilename); pszContentFilename = osContentFilename.c_str(); } else if (bUpdate) /* We cannot update the xml file, only the .ods */ { return NULL; } if (EQUALN(pszContentFilename, "ODS:", 4) || EQUAL(CPLGetFilename(pszContentFilename), "content.xml")) { if (EQUALN(pszContentFilename, "ODS:", 4)) pszContentFilename += 4; fpContent = VSIFOpenL(pszContentFilename, "rb"); if (fpContent == NULL) return NULL; char szBuffer[1024]; int nRead = (int)VSIFReadL(szBuffer, 1, sizeof(szBuffer) - 1, fpContent); szBuffer[nRead] = 0; if (strstr(szBuffer, "<office:document-content") == NULL) { VSIFCloseL(fpContent); return NULL; } /* We could also check that there's a <office:spreadsheet>, but it might be further */ /* in the XML due to styles, etc... */ } else { return NULL; } if (EQUAL(CPLGetExtension(pszFilename), "ODS")) { fpSettings = VSIFOpenL(CPLSPrintf("/vsizip/%s/settings.xml", pszFilename), "rb"); } OGRODSDataSource *poDS = new OGRODSDataSource(); if( !poDS->Open( pszFilename, fpContent, fpSettings, bUpdate ) ) { delete poDS; poDS = NULL; } return poDS; } /************************************************************************/ /* CreateDataSource() */ /************************************************************************/ OGRDataSource *OGRODSDriver::CreateDataSource( const char * pszName, char **papszOptions ) { if (!EQUAL(CPLGetExtension(pszName), "ODS")) { CPLError( CE_Failure, CPLE_AppDefined, "File extension should be ODS" ); return NULL; } /* -------------------------------------------------------------------- */ /* First, ensure there isn't any such file yet. */ /* -------------------------------------------------------------------- */ VSIStatBufL sStatBuf; if( VSIStatL( pszName, &sStatBuf ) == 0 ) { CPLError( CE_Failure, CPLE_AppDefined, "It seems a file system object called '%s' already exists.", pszName ); return NULL; } /* -------------------------------------------------------------------- */ /* Try to create datasource. */ /* -------------------------------------------------------------------- */ OGRODSDataSource *poDS; poDS = new OGRODSDataSource(); if( !poDS->Create( pszName, papszOptions ) ) { delete poDS; return NULL; } else return poDS; } /************************************************************************/ /* DeleteDataSource() */ /************************************************************************/ OGRErr OGRODSDriver::DeleteDataSource( const char *pszName ) { if (VSIUnlink( pszName ) == 0) return OGRERR_NONE; else return OGRERR_FAILURE; } /************************************************************************/ /* TestCapability() */ /************************************************************************/ int OGRODSDriver::TestCapability( const char * pszCap ) { if( EQUAL(pszCap,ODrCCreateDataSource) ) return TRUE; else if( EQUAL(pszCap,ODrCDeleteDataSource) ) return TRUE; else return FALSE; } /************************************************************************/ /* RegisterOGRODS() */ /************************************************************************/ void RegisterOGRODS() { OGRSFDriverRegistrar::GetRegistrar()->RegisterDriver( new OGRODSDriver ); }