/usr/include/osmium/export/shapefile.hpp is in libosmium-dev 0.0~20160124-b30afd3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | #ifndef OSMIUM_EXPORT_SHAPEFILE_HPP
#define OSMIUM_EXPORT_SHAPEFILE_HPP
/*
Copyright 2012 Jochen Topf <jochen@topf.org> and others (see README).
This file is part of Osmium (https://github.com/joto/osmium).
Osmium is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License or (at your option) the GNU
General Public License as published by the Free Software Foundation, either
version 3 of the Licenses, or (at your option) any later version.
Osmium 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 and the GNU
General Public License for more details.
You should have received a copy of the Licenses along with Osmium. If not, see
<http://www.gnu.org/licenses/>.
*/
#include <fstream>
#include <sstream>
#include <cerrno>
#include <stdint.h>
#include <shapefil.h>
#include <boost/utility.hpp>
#include <osmium/geometry/shplib.hpp>
namespace Osmium {
namespace Export {
class Shapefile : boost::noncopyable {
public:
// the following limits are defined by the shapefile spec
static const unsigned int max_dbf_field_name_length = 11;
static const int max_dbf_field_length = 255;
// this limit has been arrived at experimentally
static const unsigned int max_dbf_fields = 2047;
// shape files with more than 2 GB don't work
static const unsigned int max_file_size = 2147483647;
// size of a shape file header
static const size_t size_shapefile_header = 100;
// size of a DBF file header
static const size_t size_dbf_header = 33;
// size of a DBF field descriptor
static const size_t size_dbf_field_header = 32;
private:
class Field {
public:
Field(const std::string& name, DBFFieldType type, int width=1, int decimals=0) :
m_name(name),
m_type(type),
m_width(width),
m_decimals(decimals) {
if (name == "" || name.size() > max_dbf_field_name_length) {
throw std::invalid_argument("field name must be between 1 and 11 characters long");
} else if (width > max_dbf_field_length) {
throw std::invalid_argument("field width must not exceed 255 characters");
}
}
const std::string& name() const {
return m_name;
}
DBFFieldType type() const {
return m_type;
}
int width() const {
return m_width;
}
int decimals() const {
return m_decimals;
}
private:
std::string m_name;
DBFFieldType m_type;
int m_width;
int m_decimals;
};
public:
virtual ~Shapefile() {
close();
}
void close() {
if (m_dbf_handle) {
DBFClose(m_dbf_handle);
m_dbf_handle = 0;
}
if (m_shp_handle) {
SHPClose(m_shp_handle);
m_shp_handle = 0;
}
}
/**
* Add a field to a shapefile.
*/
void add_field(Field& field) {
if (m_fields.size() < max_dbf_fields) {
int field_num = DBFAddField(m_dbf_handle, field.name().c_str(), field.type(), field.width(), field.decimals());
if (field_num != static_cast<int>(m_fields.size())) {
throw std::runtime_error("Failed to add field:" + field.name());
}
m_fields.push_back(field);
m_dbf_bytes += size_dbf_field_header;
m_record_length += field.width();
} else {
throw std::out_of_range("Too many fields in the shapefile.");
}
}
/**
* Add a field to a shapefile.
*/
void add_field(const std::string& name, ///< The name of the field (1 to 11 characters long)
DBFFieldType type, ///< The type of the field (FT_STRING, FT_INTEGER, FT_DOUBLE, or FT_BOOL)
int width=1, ///< The width of the field (number of digits for ints and doubles)
int decimals=0 ///< The precision of double fields (otherwise ignored)
) {
Field field(name, type, width, decimals);
add_field(field);
}
/**
* Add a field to a shapefile.
*/
void add_field(const std::string& name, ///< The name of the field (1 to 11 characters long)
const std::string& type, ///< The type of the field ("string", "integer", "double", or "bool")
int width=1, ///< The width of the field (number of digits for ints and doubles)
int decimals=0 ///< The precision of double fields (otherwise ignored)
) {
DBFFieldType ftype;
if (type == "string") {
ftype = FTString;
decimals = 0;
} else if (type == "integer") {
ftype = FTInteger;
decimals = 0;
} else if (type == "double") {
ftype = FTDouble;
} else if (type == "bool") {
ftype = FTLogical;
width = 1;
decimals = 0;
} else {
throw std::runtime_error("Unknown field type:" + type);
}
add_field(name, ftype, width, decimals);
}
const std::vector<Field>& fields() const {
return m_fields;
}
const Field& field(int n) const {
return m_fields[n];
}
/**
* Add a new geometry (shape object) to the Shapefile. You have to call
* this first for every new shape. After that you call add_attribute()
* for all the attributes.
*
* @param shp_object A pointer to the shape object to be added. The object
* will be freed for you by calling SHPDestroyObject()!
* @exception Osmium::Geometry::IllegalGeometry If shp_object is NULL or
* the type of geometry does not fit the type of the
* shapefile.
*/
void add_geometry(SHPObject* shp_object) {
if (!shp_object || shp_object->nSHPType != m_shp_handle->nShapeType) {
throw Osmium::Geometry::IllegalGeometry();
}
m_dbf_bytes += m_record_length;
m_shp_bytes += length_on_disk(shp_object);
if (m_dbf_bytes > max_file_size || m_shp_bytes > max_file_size) {
close();
m_sequence_number++;
open();
m_dbf_bytes += m_record_length;
m_shp_bytes += length_on_disk(shp_object);
}
m_current_shape = SHPWriteObject(m_shp_handle, -1, shp_object);
if (m_current_shape == -1) {
throw std::runtime_error("error writing to shapefile");
}
SHPDestroyObject(shp_object);
}
void add_attribute(const int field, const bool value) const {
int ok = DBFWriteLogicalAttribute(m_dbf_handle, m_current_shape, field, value ? 'T' : 'F');
if (!ok) {
throw std::runtime_error("Can't add bool to field");
}
}
void add_attribute(const int field, const int value) const {
int ok = DBFWriteIntegerAttribute(m_dbf_handle, m_current_shape, field, value);
if (!ok) {
throw std::runtime_error("Can't add integer to field");
}
}
void add_attribute(const int field, const double value) const {
int ok = DBFWriteDoubleAttribute(m_dbf_handle, m_current_shape, field, value);
if (!ok) {
throw std::runtime_error("Can't add double to field");
}
}
void add_attribute(const int field, const std::string& value) const {
int ok = DBFWriteStringAttribute(m_dbf_handle, m_current_shape, field, value.c_str());
if (!ok) {
throw std::runtime_error("Can't add string to field");
}
}
void add_attribute(const int field, const char* value) const {
int ok = DBFWriteStringAttribute(m_dbf_handle, m_current_shape, field, value);
if (!ok) {
throw std::runtime_error("Can't add char* to field");
}
}
void add_attribute(const int field) const {
int ok = DBFWriteNULLAttribute(m_dbf_handle, m_current_shape, field);
if (!ok) {
throw std::runtime_error("Can't add null to field");
}
}
// truncates UTF8 string to fit in shape field
void add_attribute_with_truncate(const int field, const char* value) const {
char dest[max_dbf_field_length+1];
size_t length = m_fields[field].width();
dest[length] = '\0';
strncpy(dest, value, length);
size_t i = length-1;
if (dest[i] & 128) {
if (dest[i] & 64) {
dest[i] = '\0';
} else if ((dest[i-1] & 224) == 224) {
dest[i-1] = '\0';
} else if ((dest[i-2] & 240) == 240) {
dest[i-2] = '\0';
}
}
add_attribute(field, dest);
}
void add_attribute_with_truncate(const int field, const std::string& value) const {
add_attribute_with_truncate(field, value.c_str());
}
protected:
/**
* The constructor for Shapefile is protected. Use one of
* PointShapefile, LineShapefile, or PolygonShapefile.
*/
Shapefile(const std::string& filename, int type) :
m_filename_base(filename),
m_fields(),
m_shp_handle(NULL),
m_dbf_handle(NULL),
m_current_shape(0),
m_type(type),
m_sequence_number(0),
m_record_length(1),
m_shp_bytes(0),
m_dbf_bytes(0) {
open();
}
private:
/// base filename
const std::string m_filename_base;
/// fields in DBF
std::vector<Field> m_fields;
// handles to the shapelib objects
SHPHandle m_shp_handle;
DBFHandle m_dbf_handle;
/// entity number of the shape we are currently writing
int m_current_shape;
/// shapefile type
int m_type;
/// shapefile sequence number for auto-overflow (0=first)
unsigned int m_sequence_number;
/// number of bytes per DBF record
unsigned int m_record_length;
/// number of bytes written to SHP file
unsigned int m_shp_bytes;
/// number of bytes written to DBF file
unsigned int m_dbf_bytes;
/**
* Open and initialize all files belonging to shapefile (.shp/shx/dbf/prj/cpg).
* Uses m_filename_base and m_sequence_number plus suffix to build filename.
*/
void open() {
std::ostringstream filename;
filename << m_filename_base;
if (m_sequence_number) {
filename << "_" << m_sequence_number;
}
m_shp_handle = SHPCreate(filename.str().c_str(), m_type);
if (m_shp_handle == 0) {
throw std::runtime_error("Can't open shapefile: " + filename.str() + ".shp/shx");
}
m_dbf_handle = DBFCreate(filename.str().c_str());
if (m_dbf_handle == 0) {
throw std::runtime_error("Can't open shapefile: " + filename.str() + ".dbf");
}
std::ofstream file;
file.open((filename.str() + ".prj").c_str());
if (file.fail()) {
throw std::runtime_error("Can't open shapefile: " + filename.str() + ".prj");
}
file << "GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137,298.257223563]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.017453292519943295]]" << std::endl;
file.close();
file.open((filename.str() + ".cpg").c_str());
if (file.fail()) {
throw std::runtime_error("Can't open shapefile: " + filename.str() + ".cpg");
}
file << "UTF-8" << std::endl;
file.close();
// If any fields are defined already, add them here. This will do nothing if
// called from the constructor.
for (std::vector<Field>::const_iterator it = m_fields.begin(); it != m_fields.end(); ++it) {
DBFAddField(m_dbf_handle, it->name().c_str(), it->type(), it->width(), it->decimals());
}
m_shp_bytes = size_shapefile_header;
m_dbf_bytes = size_dbf_header + size_dbf_field_header * (m_fields.size());
}
/**
* Computes the number of bytes a shape will take up when saved to the .shp file.
*
* @param shp_object A pointer to the shape object we want to size up.
*/
size_t length_on_disk(SHPObject* shp_object) const {
// sizes of various elements making up a shape record
const size_t size_record_header = 8; // record header
const size_t size_type_field = 4; // shape type identifier
const size_t size_num_points = 4; // number of points
const size_t size_num_parts = 4; // number of parts
const size_t size_box = 32; // bounding box
const size_t size_range = 16; // measurement or Z range
const size_t size_coordinate = 8; // one coordinate
const size_t size_part_index = 4; // pointer to shape part
switch(shp_object->nSHPType) {
case SHPT_NULL: return size_record_header + size_type_field;
// standard shapes have 2-dimensional coordinates
case SHPT_POINT: return size_record_header + size_type_field + 2 * size_coordinate;
case SHPT_MULTIPOINT: return size_record_header + size_type_field + size_box + size_num_points +
shp_object->nVertices * 2 * size_coordinate;
case SHPT_ARC: // like polygon
case SHPT_POLYGON: return size_record_header + size_type_field + size_box + size_num_parts +
shp_object->nParts * size_part_index + size_num_points + shp_object->nVertices * 2 * size_coordinate;
// "M" shapes have 3-dimensional coordinates (x/y/measurement)
case SHPT_POINTM: return size_record_header + size_type_field + 3 * size_coordinate;
case SHPT_MULTIPOINTM: return size_record_header + size_type_field + size_box + size_range +
size_num_points + shp_object->nVertices * 3 * size_coordinate;
case SHPT_ARCM: // like polygon
case SHPT_POLYGONM: return size_record_header + size_type_field + size_box + size_range +
size_num_parts + shp_object->nParts * size_part_index + size_num_points + shp_object->nVertices * 3 * size_coordinate;
// "Z" shapes have 4-dimensional coordinates (x/y/z/measurement)
case SHPT_POINTZ: return size_record_header + size_type_field + 4 * size_coordinate;
case SHPT_MULTIPOINTZ: return size_record_header + size_type_field + size_box + 2 * size_range +
size_num_points + shp_object->nVertices * 4 * size_coordinate;
case SHPT_ARCZ: // like polygon
case SHPT_POLYGONZ: return size_record_header + size_type_field + size_box + 2 * size_range + size_num_parts +
shp_object->nParts * size_part_index + size_num_points + shp_object->nVertices * 4 * size_coordinate;
case SHPT_MULTIPATCH: return size_record_header + size_type_field + size_box + 2 * size_range + size_num_parts +
shp_object->nParts * 2 * size_part_index + size_num_points + shp_object->nVertices * 4 * size_coordinate;
default:
throw std::runtime_error("unrecognized shape type");
}
}
}; // class Shapefile
/**
* Shapefile containing point geometries.
*/
class PointShapefile : public Shapefile {
public:
/**
* Create shapefile.
*
* @param filename Filename (optionally including path) without any suffix.
*/
PointShapefile(const std::string& filename) :
Shapefile(filename, SHPT_POINT) {
}
};
/**
* Shapefile containing line geometries.
*/
class LineStringShapefile : public Shapefile {
public:
/**
* Create shapefile.
*
* @param filename Filename (optionally including path) without any suffix.
*/
LineStringShapefile(const std::string& filename) :
Shapefile(filename, SHPT_ARC) {
}
};
/**
* Shapefile containing polygon geometries.
*/
class PolygonShapefile : public Shapefile {
public:
/**
* Create shapefile.
*
* @param filename Filename (optionally including path) without any suffix.
*/
PolygonShapefile(const std::string& filename) :
Shapefile(filename, SHPT_POLYGON) {
}
};
} // namespace Export
} // namespace Osmium
#endif // OSMIUM_EXPORT_SHAPEFILE_HPP
|