1 : /******************************************************************************
2 : * $Id: tigerspatialmetadata.cpp 10645 2007-01-18 02:22:39Z warmerdam $
3 : *
4 : * Project: TIGER/Line Translator
5 : * Purpose: Implements TigerSpatialMetadata, providing access to .RTM files.
6 : * Author: Frank Warmerdam, warmerdam@pobox.com
7 : *
8 : ******************************************************************************
9 : * Copyright (c) 2005, Frank Warmerdam <warmerdam@pobox.com>
10 : *
11 : * Permission is hereby granted, free of charge, to any person obtaining a
12 : * copy of this software and associated documentation files (the "Software"),
13 : * to deal in the Software without restriction, including without limitation
14 : * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 : * and/or sell copies of the Software, and to permit persons to whom the
16 : * Software is furnished to do so, subject to the following conditions:
17 : *
18 : * The above copyright notice and this permission notice shall be included
19 : * in all copies or substantial portions of the Software.
20 : *
21 : * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 : * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 : * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 : * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 : * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 : * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 : * DEALINGS IN THE SOFTWARE.
28 : ****************************************************************************/
29 :
30 : #include "ogr_tiger.h"
31 : #include "cpl_conv.h"
32 :
33 : CPL_CVSID("$Id: tigerspatialmetadata.cpp 10645 2007-01-18 02:22:39Z warmerdam $");
34 :
35 : #define FILE_CODE "M"
36 :
37 : static TigerFieldInfo rtM_fields[] = {
38 : // fieldname fmt type OFTType beg end len bDefine bSet bWrite
39 : { "MODULE", ' ', ' ', OFTString, 0, 0, 8, 1, 0, 0 },
40 : { "TLID", 'R', 'N', OFTInteger, 6, 15, 10, 1, 1, 1 },
41 : { "RTSQ", 'R', 'N', OFTInteger, 16, 18, 3, 1, 1, 1 },
42 : { "SOURCEID", 'L', 'A', OFTString, 19, 28, 10, 1, 1, 1 },
43 : { "ID", 'L', 'A', OFTString, 29, 46, 18, 1, 1, 1 },
44 : { "IDFLAG", 'R', 'A', OFTString, 47, 47, 1, 1, 1, 1 },
45 : { "RS-M1", 'L', 'A', OFTString, 48, 65, 18, 1, 1, 1 },
46 : { "RS-M2", 'L', 'A', OFTString, 66, 67, 2, 1, 1, 1 },
47 : { "RS-M3", 'L', 'A', OFTString, 68, 90, 23, 1, 1, 1 }
48 : };
49 : static TigerRecordInfo rtM_info =
50 : {
51 : rtM_fields,
52 : sizeof(rtM_fields) / sizeof(TigerFieldInfo),
53 : 90
54 : };
55 :
56 : /************************************************************************/
57 : /* TigerSpatialMetadata() */
58 : /************************************************************************/
59 :
60 : TigerSpatialMetadata::TigerSpatialMetadata( OGRTigerDataSource * poDSIn,
61 0 : const char * pszPrototypeModule )
62 :
63 : {
64 0 : OGRFieldDefn oField("",OFTInteger);
65 :
66 0 : poDS = poDSIn;
67 0 : poFeatureDefn = new OGRFeatureDefn( "SpatialMetadata" );
68 0 : poFeatureDefn->Reference();
69 0 : poFeatureDefn->SetGeomType( wkbNone );
70 :
71 0 : psRTMInfo = &rtM_info;
72 :
73 : /* -------------------------------------------------------------------- */
74 : /* Fields from record type H */
75 : /* -------------------------------------------------------------------- */
76 :
77 0 : AddFieldDefns(psRTMInfo, poFeatureDefn);
78 0 : }
79 :
80 : /************************************************************************/
81 : /* ~TigerSpatialMetadata() */
82 : /************************************************************************/
83 :
84 0 : TigerSpatialMetadata::~TigerSpatialMetadata()
85 :
86 : {
87 0 : }
88 :
89 : /************************************************************************/
90 : /* SetModule() */
91 : /************************************************************************/
92 :
93 0 : int TigerSpatialMetadata::SetModule( const char * pszModule )
94 :
95 : {
96 0 : if( !OpenFile( pszModule, FILE_CODE ) )
97 0 : return FALSE;
98 :
99 0 : EstablishFeatureCount();
100 :
101 0 : return TRUE;
102 : }
103 :
104 : /************************************************************************/
105 : /* GetFeature() */
106 : /************************************************************************/
107 :
108 0 : OGRFeature *TigerSpatialMetadata::GetFeature( int nRecordId )
109 :
110 : {
111 : char achRecord[OGR_TIGER_RECBUF_LEN];
112 :
113 0 : if( nRecordId < 0 || nRecordId >= nFeatures )
114 : {
115 : CPLError( CE_Failure, CPLE_FileIO,
116 : "Request for out-of-range feature %d of %sH",
117 0 : nRecordId, pszModule );
118 0 : return NULL;
119 : }
120 :
121 : /* -------------------------------------------------------------------- */
122 : /* Read the raw record data from the file. */
123 : /* -------------------------------------------------------------------- */
124 0 : if( fpPrimary == NULL )
125 0 : return NULL;
126 :
127 0 : if( VSIFSeek( fpPrimary, nRecordId * nRecordLength, SEEK_SET ) != 0 )
128 : {
129 : CPLError( CE_Failure, CPLE_FileIO,
130 : "Failed to seek to %d of %sH",
131 0 : nRecordId * nRecordLength, pszModule );
132 0 : return NULL;
133 : }
134 :
135 0 : if( VSIFRead( achRecord, psRTMInfo->nRecordLength, 1, fpPrimary ) != 1 )
136 : {
137 : CPLError( CE_Failure, CPLE_FileIO,
138 : "Failed to read record %d of %sM",
139 0 : nRecordId, pszModule );
140 0 : return NULL;
141 : }
142 :
143 : /* -------------------------------------------------------------------- */
144 : /* Set fields. */
145 : /* -------------------------------------------------------------------- */
146 0 : OGRFeature *poFeature = new OGRFeature( poFeatureDefn );
147 :
148 0 : SetFields( psRTMInfo, poFeature, achRecord );
149 :
150 0 : return poFeature;
151 : }
152 :
153 : /************************************************************************/
154 : /* CreateFeature() */
155 : /************************************************************************/
156 :
157 0 : OGRErr TigerSpatialMetadata::CreateFeature( OGRFeature *poFeature )
158 :
159 : {
160 : char szRecord[OGR_TIGER_RECBUF_LEN];
161 :
162 0 : if( !SetWriteModule( FILE_CODE, psRTMInfo->nRecordLength+2, poFeature ) )
163 0 : return OGRERR_FAILURE;
164 :
165 0 : memset( szRecord, ' ', psRTMInfo->nRecordLength );
166 :
167 0 : WriteFields( psRTMInfo, poFeature, szRecord );
168 :
169 0 : WriteRecord( szRecord, psRTMInfo->nRecordLength, FILE_CODE );
170 :
171 0 : return OGRERR_NONE;
172 : }
|