File: shape_featureset.cpp

package info (click to toggle)
mapnik 2.0.0%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 35,496 kB
  • sloc: cpp: 91,793; python: 6,051; xml: 3,528; sh: 848; makefile: 70; lisp: 10
file content (312 lines) | stat: -rw-r--r-- 10,760 bytes parent folder | download
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312

/*****************************************************************************
 * 
 * This file is part of Mapnik (c++ mapping toolkit)
 *
 * Copyright (C) 2006 Artem Pavlenko
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 *****************************************************************************/

// mapnik
#include <mapnik/feature_factory.hpp>

// boost
#include <boost/algorithm/string.hpp>

// stl
#include <iostream>

#include "shape_featureset.hpp"

using mapnik::geometry_type;
using mapnik::feature_factory;

template <typename filterT>
shape_featureset<filterT>::shape_featureset(const filterT& filter, 
                                            const std::string& shape_name,
                                            const std::set<std::string>& attribute_names,
                                            std::string const& encoding,
                                            long file_length,
                                            int row_limit)
    : filter_(filter),
      //shape_type_(shape_io::shape_null),
      shape_(shape_name, false),
      query_ext_(),
      tr_(new transcoder(encoding)),
      file_length_(file_length),
      count_(0),
      row_limit_(row_limit)
{
    shape_.shp().skip(100);
    //attributes
    typename std::set<std::string>::const_iterator pos=attribute_names.begin();
    while (pos!=attribute_names.end())
    {
        bool found_name = false;
        for (int i=0;i<shape_.dbf().num_fields();++i)
        {
            if (shape_.dbf().descriptor(i).name_ == *pos)
            {
                attr_ids_.push_back(i);
                found_name = true;
                break;
            }
        }
        if (!found_name)
        {
            std::ostringstream s;

            s << "no attribute '" << *pos << "' in '"
              << shape_name << "'. Valid attributes are: ";
            std::vector<std::string> list;
            for (int i=0;i<shape_.dbf().num_fields();++i)
            {
                list.push_back(shape_.dbf().descriptor(i).name_);
            }
            s << boost::algorithm::join(list, ",") << ".";
            
            throw mapnik::datasource_exception( "Shape Plugin: " + s.str() );
        }
        ++pos;
    }
}


template <typename filterT>
feature_ptr shape_featureset<filterT>::next()
{
    if (row_limit_ && count_ > row_limit_)
        return feature_ptr();

    std::streampos pos=shape_.shp().pos();
    // skip null shapes
    while (pos > 0 && pos < std::streampos(file_length_ * 2))
    {
        shape_.move_to(pos);
        if (shape_.type() ==  shape_io::shape_null)
        {
            pos += std::streampos(12);
        }
        else break;        
    }
    
    if (pos < std::streampos(file_length_ * 2))
    {
        int type=shape_.type();
        feature_ptr feature(feature_factory::create(shape_.id_));
        
        if (type == shape_io::shape_point)
        {
            double x=shape_.shp().read_double();
            double y=shape_.shp().read_double();
            geometry_type * point = new geometry_type(mapnik::Point);
            point->move_to(x,y);
            feature->add_geometry(point);
            ++count_;
        }
        else if (type == shape_io::shape_pointm)
        {
            double x=shape_.shp().read_double();
            double y=shape_.shp().read_double();
            shape_.shp().skip(8); //m
            geometry_type * point = new geometry_type(mapnik::Point);
            point->move_to(x,y);
            feature->add_geometry(point);
            ++count_;
        }
        else if (type == shape_io::shape_pointz)
        {
            double x=shape_.shp().read_double();
            double y=shape_.shp().read_double();
            // skip z
            shape_.shp().skip(8);

            //skip m if exists
            if ( shape_.reclength_ == 8 + 36) 
            {
                shape_.shp().skip(8);
            }
            geometry_type * point = new geometry_type(mapnik::Point);
            point->move_to(x,y);
            feature->add_geometry(point);
            ++count_;
        }
        else
        {
            // skip shapes 
            for (;;)
            {
                std::streampos pos = shape_.shp().pos();
                if (shape_.type() == shape_io::shape_null)
                {
                    pos += std::streampos(12);                    
                    std::cerr << "NULL SHAPE len=" << shape_.reclength_ << std::endl;
                }                    
                else if (filter_.pass(shape_.current_extent())) break;
                else pos += std::streampos(2 * shape_.reclength_ - 36);                
                if (pos > 0 && pos < std::streampos(file_length_ * 2))
                {
                    shape_.move_to(pos);
                }
                else
                {
#ifdef MAPNIK_DEBUG
                    std::clog << "Shape Plugin: total shapes read=" << count_ << std::endl;
#endif
                    return feature_ptr();
                }
            }
            
            switch (type)
            {
                case shape_io::shape_multipoint:
                {
                    int num_points = shape_.shp().read_ndr_integer();
                    for (int i=0; i< num_points;++i)
                    { 
                        double x=shape_.shp().read_double();
                        double y=shape_.shp().read_double();
                        geometry_type * point = new geometry_type(mapnik::Point);
                        point->move_to(x,y);
                        feature->add_geometry(point);
                    }
                    ++count_;
                    break;
                }
                case shape_io::shape_multipointm:
                {
                    int num_points = shape_.shp().read_ndr_integer();
                    for (int i=0; i< num_points;++i)
                    { 
                        double x=shape_.shp().read_double();
                        double y=shape_.shp().read_double();
                        geometry_type * point = new geometry_type(mapnik::Point);
                        point->move_to(x,y);
                        feature->add_geometry(point);
                    }
        
                    // skip m 
                    shape_.shp().skip(2*8 + 8*num_points);
                    ++count_;
                    break;
                }
                case shape_io::shape_multipointz:
                {
                    unsigned num_points = shape_.shp().read_ndr_integer();
                    for (unsigned i=0; i< num_points;++i)
                    { 
                        double x=shape_.shp().read_double();
                        double y=shape_.shp().read_double();
                        geometry_type * point = new geometry_type(mapnik::Point);
                        point->move_to(x,y);
                        feature->add_geometry(point);
                    }
        
                    // skip z
                    shape_.shp().skip(2*8 + 8*num_points);
                    
                    // check if we have measure data 
        
                    if ( shape_.reclength_ == num_points * 16 + 36)   
                    {
                        // skip m 
                        shape_.shp().skip(2*8 + 8*num_points);
                    }
                    ++count_;
                    break;
                }
                case shape_io::shape_polyline:
                {
                    geometry_type * line = shape_.read_polyline();
                    feature->add_geometry(line);
                    ++count_;
                    break;
                }
                case shape_io::shape_polylinem:
                {
                    geometry_type * line = shape_.read_polylinem();
                    feature->add_geometry(line);
                    ++count_;
                    break;
                }
                case shape_io::shape_polylinez:
                {
                    geometry_type * line = shape_.read_polylinez();
                    feature->add_geometry(line);
                    ++count_;
                    break;
                }
                case shape_io::shape_polygon:
                {         
                    geometry_type * poly = shape_.read_polygon();
                    feature->add_geometry(poly);
                    ++count_;
                    break;
                }
                case shape_io::shape_polygonm:
                {         
                    geometry_type * poly = shape_.read_polygonm();
                    feature->add_geometry(poly);
                    ++count_;
                    break;
                }
                case shape_io::shape_polygonz:
                {
                    geometry_type * poly = shape_.read_polygonz();
                    feature->add_geometry(poly);
                    ++count_;
                    break;
                }
            }
        }
        
        feature->set_id(shape_.id_);
        if (attr_ids_.size())
        {
            shape_.dbf().move_to(shape_.id_);
            std::vector<int>::const_iterator itr=attr_ids_.begin();
            std::vector<int>::const_iterator end=attr_ids_.end();
            try 
            {
                for (;itr!=end;++itr)
                {                    
                    shape_.dbf().add_attribute(*itr,*tr_,*feature);//TODO optimize!!!
                }
            }
            catch (...)
            {
                std::clog << "Shape Plugin: error processing attributes " << std::endl;
            }
        }
        return feature;
    }
    else
    {
#ifdef MAPNIK_DEBUG
        std::clog << "Shape Plugin: total shapes read=" << count_ << std::endl;
#endif
        return feature_ptr();
    }
}

template <typename filterT>
shape_featureset<filterT>::~shape_featureset() {}

template class shape_featureset<mapnik::filter_in_box>;
template class shape_featureset<mapnik::filter_at_point>;