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
|
/******************************************************************************
* $Id: ogr_sosi.h 21065 2010-11-05 18:47:30Z rouault $
*
* Project: SOSI Translator
* Purpose: Implements OGRSOSIDriver.
* Author: Thomas Hirsch, <thomas.hirsch statkart no>
*
******************************************************************************
* Copyright (c) 2010, Thomas Hirsch
*
* 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.
****************************************************************************/
#ifndef _OGR_SOSI_H_INCLUDED
#define _OGR_SOSI_H_INCLUDED
#include "ogrsf_frmts.h"
#include "fyba.h"
#include <map>
typedef std::map<CPLString, CPLString> S2S;
typedef std::map<CPLString, unsigned int> S2I;
void RegisterOGRSOSI();
class ORGSOSILayer; /* defined below */
class OGRSOSIDataSource; /* defined below */
/************************************************************************
* OGRSOSIDriver *
* OGRSOSIDriver is the main driver class. It does not much, except *
* reporting on its capabilities and opening a single data source *
* currently *
************************************************************************/
class OGRSOSIDriver : public OGRSFDriver {
public:
OGRSOSIDriver();
~OGRSOSIDriver();
const char *GetName();
OGRDataSource *Open( const char *, int );
int TestCapability( const char * );
OGRDataSource *CreateDataSource( const char *pszName, char **papszOptions = NULL);
};
/************************************************************************
* OGRSOSILayer *
* OGRSOSILayer reports all the OGR Features generated by the data *
* source, in an orderly fashion. *
************************************************************************/
class OGRSOSILayer : public OGRLayer {
FILE *fp;
int nNextFID;
OGRSOSIDataSource *poParent; /* used to call methods from data source */
LC_FILADM *poFileadm; /* ResetReading needs to refer to the file struct */
OGRFeatureDefn *poFeatureDefn; /* the common definition of all features returned by this layer */
S2I *poHeaderDefn;
LC_SNR_ADM oSnradm;
LC_BGR oNextSerial; /* used by FYBA to iterate through features */
LC_BGR *poNextSerial;
public:
OGRSOSILayer( OGRSOSIDataSource *poPar, OGRFeatureDefn *poFeatDefn, LC_FILADM *poFil, S2I *poHeadDefn);
~OGRSOSILayer();
void ResetReading();
OGRFeature * GetNextFeature();
OGRFeatureDefn * GetLayerDefn();
OGRErr CreateField(OGRFieldDefn *poField, int bApproxOK=TRUE);
OGRErr CreateFeature(OGRFeature *poFeature);
int TestCapability( const char * );
OGRSpatialReference *GetSpatialRef();
};
/************************************************************************
* OGRSOSIDataSource *
* OGRSOSIDataSource reads a SOSI file, prebuilds the features, and *
* creates one OGRSOSILayer per geometry type *
************************************************************************/
class OGRSOSIDataSource : public OGRDataSource {
char *pszName;
OGRSOSILayer **papoLayers;
int nLayers;
#define MODE_READING 0
#define MODE_WRITING 1
int nMode;
void buildOGRPoint(long nSerial);
void buildOGRLineString(int nNumCoo, long nSerial);
void buildOGRMultiPoint(int nNumCoo, long nSerial);
public:
OGRSpatialReference *poSRS;
const char *pszEncoding;
unsigned int nNumFeatures;
OGRGeometry **papoBuiltGeometries; /* OGRSOSIDataSource prebuilds some features upon opening, te be used
* by the more complex geometries later. */
//FYBA specific
LC_BASEADM *poBaseadm;
LC_FILADM *poFileadm;
S2I *poPolyHeaders; /* Contain the header definitions of the four feature layers */
S2I *poPointHeaders;
S2I *poCurveHeaders;
S2I *poTextHeaders;
OGRSOSIDataSource();
~OGRSOSIDataSource();
int Open ( const char * pszFilename, int bUpdate);
int Create( const char * pszFilename );
const char *GetName() {
return pszName;
}
int GetLayerCount() {
return nLayers;
}
OGRLayer *GetLayer( int );
OGRLayer *CreateLayer( const char *pszName, OGRSpatialReference *poSpatialRef=NULL, OGRwkbGeometryType eGType=wkbUnknown, char **papszOptions=NULL);
int TestCapability( const char * );
};
#endif /* _OGR_SOSI_H_INCLUDED */
|