/usr/include/osmium/osmfile.hpp is in libosmium-dev 0.0~20111213-g7f3500a-1build2.
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 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 | #ifndef OSMIUM_OSMFILE_HPP
#define OSMIUM_OSMFILE_HPP
/*
Copyright 2011 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 <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <errno.h>
#include <stdexcept>
#include <boost/utility.hpp>
namespace Osmium {
// forward declaration
namespace Output {
class Base;
}
/**
* This class describes an %OSM file in one of several different formats.
* It can be used as factory class for generating input and output OSM files.
*
* If the filename is empty, this means stdin or stdout is used. If you set
* the filename to "-" it will be treated the same.
*/
class OSMFile {
public:
/**
* Low-level system call error.
* This should normally not happen unless your system is out of
* resources like number of processes or filehandles.
*/
class SystemError : public std::runtime_error {
int m_errno;
public:
SystemError(const std::string& whatarg,
int e)
: std::runtime_error(whatarg),
m_errno(e) {
}
/**
* Get the system errno variable from the system call that caused
* this exception.
*/
int system_errno() const throw() {
return m_errno;
}
};
/**
* Low-level I/O Error.
* This exception if thrown if there is an error in an I/O system call.
*/
class IOError : public std::runtime_error {
std::string m_filename;
int m_errno;
public:
IOError(const std::string& whatarg,
const std::string& filename,
int e)
: std::runtime_error(whatarg),
m_filename(filename),
m_errno(e) {
}
~IOError() throw() {
}
/**
* Get the filename that caused this exception.
*/
const std::string& filename() const throw() {
return m_filename;
}
/**
* Get the system errno variable from the system call that caused
* this exception.
*/
int system_errno() const throw() {
return m_errno;
}
};
class ArgumentError : public std::runtime_error {
std::string m_value;
public:
ArgumentError(const std::string& whatarg,
const std::string& value="")
: std::runtime_error(whatarg),
m_value(value) {
}
~ArgumentError() throw() {
}
const std::string& value() const throw() {
return m_value;
}
};
/**
* An exception of a subclass of this class is thrown when the type of
* a file is not what you expected.
*/
struct FileTypeError {
};
/**
* This exception is thrown when you wanted to read a normal OSM file,
* but the file opened had a different type.
*/
struct FileTypeOSMExpected : public FileTypeError {
};
/**
* This exception is thrown when you wanted to read an OSM file with
* historic information, but the file opened had a different type.
*/
struct FileTypeHistoryExpected : public FileTypeError {
};
/**
* Instances of this class describe different file types.
*
* You can not create instances of this class yourself, instead use
* the static methods provided to get the predefined instances.
*/
class FileType : boost::noncopyable {
std::string m_suffix;
bool m_has_multiple_object_versions;
FileType(std::string suffix, bool has_multiple_object_versions) : m_suffix(suffix), m_has_multiple_object_versions(has_multiple_object_versions) {
}
public:
std::string suffix() const {
return m_suffix;
}
bool has_multiple_object_versions() const {
return m_has_multiple_object_versions;
}
/**
* Normal OSM file without history.
*/
static FileType* OSM() {
static FileType instance(".osm", false);
return &instance;
}
/**
* OSM file with history.
*/
static FileType* History() {
static FileType instance(".osh", true);
return &instance;
}
/**
* OSM change file.
*/
static FileType* Change() {
static FileType instance(".osc", true);
return &instance;
}
};
/**
* Instances of this class describe different file encodings (ie PBF,
* XML or different compressed versions of XML).
*
* You can not create instances of this class yourself, instead use
* the static methods provided to get the predefined instances.
*/
class FileEncoding : boost::noncopyable {
std::string m_suffix;
std::string m_compress;
std::string m_decompress;
bool m_pbf;
FileEncoding(std::string suffix, std::string compress, std::string decompress, bool pbf) : m_suffix(suffix), m_compress(compress), m_decompress(decompress), m_pbf(pbf) {
}
public:
std::string suffix() const {
return m_suffix;
}
std::string compress() const {
return m_compress;
}
std::string decompress() const {
return m_decompress;
}
bool is_pbf() const {
return m_pbf;
}
/**
* Encoding in PBF.
*/
static FileEncoding* PBF() {
static FileEncoding instance(".pbf", "", "", true);
return &instance;
}
/**
* XML encoding, uncompressed.
*/
static FileEncoding* XML() {
static FileEncoding instance("", "", "", false);
return &instance;
}
/**
* XML encoding, compressed with gzip.
*/
static FileEncoding* XMLgz() {
static FileEncoding instance(".gz", "gzip", "gzcat", false);
return &instance;
}
/**
* XML encoding, compressed with bzip2.
*/
static FileEncoding* XMLbz2() {
static FileEncoding instance(".bz2", "bzip2", "bzcat", false);
return &instance;
}
};
private:
/// Type of file.
FileType* m_type;
/// Encoding of file.
FileEncoding* m_encoding;
/// File name.
std::string m_filename;
/// File descriptor. -1 before the file is opened.
int m_fd;
/**
* Contains the child process id if a child was
* created to uncompress data or for getting a
* URL.
*/
pid_t m_childpid;
/**
* Fork and execute the given command in the child.
* A pipe is created between the child and the parent.
* The child writes to the pipe, the parent reads from it.
* This function never returns in the child.
*
* @param command Command to execute in the child.
* @param input 0 for reading from child, 1 for writing to child.
* @return File descriptor of pipe in the parent.
* @throws SystemError if a system call fails.
*/
int execute(std::string command, int input) {
int pipefd[2];
if (pipe(pipefd) < 0) {
throw SystemError("Can't create pipe", errno);
}
pid_t pid = fork();
if (pid < 0) {
throw SystemError("Can't fork", errno);
}
if (pid == 0) { // child
// close all file descriptors except one end of the pipe
for (int i=0; i < 32; ++i) {
if (i != pipefd[1-input]) {
::close(i);
}
}
if (dup2(pipefd[1-input], 1-input) < 0) { // put end of pipe as stdout/stdin
exit(1);
}
if (input == 0) {
open("/dev/null", O_RDONLY); // stdin
open("/dev/null", O_WRONLY); // stderr
if (execlp(command.c_str(), command.c_str(), m_filename.c_str(), NULL) < 0) {
exit(1);
}
} else {
if (open(m_filename.c_str(), O_WRONLY | O_TRUNC | O_CREAT, 0666) != 1) {
exit(1);
}
open("/dev/null", O_WRONLY); // stderr
if (execlp(command.c_str(), command.c_str(), 0, NULL) < 0) {
exit(1);
}
}
}
// parent
m_childpid = pid;
::close(pipefd[1-input]);
return pipefd[input];
}
/**
* Open OSMFile for reading.
*
* @return File descriptor of open file.
* @throws IOError if the file can't be opened.
*/
int open_input_file() const {
if (m_filename == "") {
return 0; // stdin
} else {
int fd = open(m_filename.c_str(), O_RDONLY);
if (fd < 0) {
throw IOError("Open failed", m_filename, errno);
}
return fd;
}
}
/**
* Open OSMFile for writing. If the file exists, it is truncated, if
* not it is created.
*
* @return File descriptor of open file.
* @throws IOError if the file can't be opened.
*/
int open_output_file() const {
if (m_filename == "") {
return 1; // stdout
} else {
int fd = open(m_filename.c_str(), O_WRONLY | O_TRUNC | O_CREAT, 0666);
if (fd < 0) {
throw IOError("Open failed", m_filename, errno);
}
return fd;
}
}
/**
* Open OSMFile for reading. Handles URLs or normal files. URLs
* are opened by executing the "curl" program (which must be installed)
* and reading from its output.
*
* @return File descriptor of open file or pipe.
* @throws SystemError if a system call fails.
* @throws IOError if the file can't be opened.
*/
int open_input_file_or_url() {
std::string protocol = m_filename.substr(0, m_filename.find_first_of(':'));
if (protocol == "http" || protocol == "https") {
return execute("curl", 0);
} else {
return open_input_file();
}
}
public:
/**
* Create OSMFile using type and encoding from filename. If you want
* to overwrite these settings you can change them later.
*
* @param filename Filename including suffix. The type and encoding
* of the file will be taken from the suffix.
* An empty filename or "-" means stdin or stdout.
*/
OSMFile(const std::string& filename = "")
: m_type(FileType::OSM()),
m_encoding(FileEncoding::PBF()),
m_filename(filename),
m_fd(-1),
m_childpid(0) {
// stdin/stdout
if (filename == "" || filename == "-") {
m_filename = "";
default_settings_for_stdinout();
return;
}
// filename is actually a URL
std::string protocol = m_filename.substr(0, m_filename.find_first_of(':'));
if (protocol == "http" || protocol == "https") {
default_settings_for_url();
return;
}
// isolate filename suffix
size_t n = filename.find_last_of('/');
if (n == std::string::npos) {
n = 0;
} else {
++n;
}
std::string suffix(filename.substr(filename.find_first_of('.', n)+1));
set_type_and_encoding(suffix);
}
void set_type_and_encoding(const std::string& suffix) {
if (suffix == "pbf" || suffix == "osm.pbf") {
m_type = FileType::OSM();
m_encoding = FileEncoding::PBF();
} else if (suffix == "osm") {
m_type = FileType::OSM();
m_encoding = FileEncoding::XML();
} else if (suffix == "osm.bz2") {
m_type = FileType::OSM();
m_encoding = FileEncoding::XMLbz2();
} else if (suffix == "osm.gz") {
m_type = FileType::OSM();
m_encoding = FileEncoding::XMLgz();
} else if (suffix == "osh.pbf") {
m_type = FileType::History();
m_encoding = FileEncoding::PBF();
} else if (suffix == "osh") {
m_type = FileType::History();
m_encoding = FileEncoding::XML();
} else if (suffix == "osh.bz2") {
m_type = FileType::History();
m_encoding = FileEncoding::XMLbz2();
} else if (suffix == "osh.gz") {
m_type = FileType::History();
m_encoding = FileEncoding::XMLgz();
} else if (suffix == "osc") {
m_type = FileType::Change();
m_encoding = FileEncoding::XML();
} else if (suffix == "osc.bz2") {
m_type = FileType::Change();
m_encoding = FileEncoding::XMLbz2();
} else if (suffix == "osc.gz") {
m_type = FileType::Change();
m_encoding = FileEncoding::XMLgz();
} else {
default_settings_for_file();
}
}
/**
* Copy constructor.
* Only attributes not related to the open file will be
* copied.
*/
OSMFile(const OSMFile& orig) {
m_fd = -1;
m_childpid = 0;
m_type = orig.get_type();
m_encoding = orig.get_encoding();
m_filename = orig.get_filename();
}
/**
* Assignement operator.
* Only attributes not related to the open file will be
* copied.
*/
OSMFile& operator=(const OSMFile& orig) {
m_fd = -1;
m_childpid = 0;
m_type = orig.get_type();
m_encoding = orig.get_encoding();
m_filename = orig.get_filename();
return *this;
}
~OSMFile() {
try {
close();
} catch (...) {
// ignore exceptions
}
}
void close() {
if (m_fd > 0) {
::close(m_fd);
m_fd = -1;
}
if (m_childpid) {
int status;
pid_t pid = waitpid(m_childpid, &status, 0);
if (pid < 0 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
throw IOError("Subprocess returned error", "", errno);
}
m_childpid = 0;
}
}
/**
* Set default settings for type and encoding when the filename is
* empty or "-". If you want to have a different default setting
* override this in a subclass.
*/
void default_settings_for_stdinout() {
m_type = FileType::OSM();
m_encoding = FileEncoding::PBF();
}
/**
* Set default settings for type and encoding when the filename is
* a normal file. If you want to have a different default setting
* override this in a subclass.
*/
void default_settings_for_file() {
m_type = FileType::OSM();
m_encoding = FileEncoding::PBF();
}
/**
* Set default settings for type and encoding when the filename is a URL.
* If you want to have a different default setting override this in a
* subclass.
*/
void default_settings_for_url() {
m_type = FileType::OSM();
m_encoding = FileEncoding::XML();
}
int get_fd() const {
return m_fd;
}
FileType* get_type() const {
return m_type;
}
OSMFile& set_type(FileType* type) {
m_type = type;
return *this;
}
OSMFile& set_type(std::string& type) {
if (type == "osm") {
m_type = FileType::OSM();
} else if (type == "history" || type == "osh") {
m_type = FileType::History();
} else if (type == "change" || type == "osc") {
m_type = FileType::Change();
} else {
throw ArgumentError("Unknown OSM file type", type);
}
return *this;
}
bool has_multiple_object_versions() const {
return m_type->has_multiple_object_versions();
}
FileEncoding* get_encoding() const {
return m_encoding;
}
OSMFile& set_encoding(FileEncoding* encoding) {
m_encoding = encoding;
return *this;
}
OSMFile& set_encoding(std::string& encoding) {
if (encoding == "pbf") {
m_encoding = FileEncoding::PBF();
} else if (encoding == "xml") {
m_encoding = FileEncoding::XML();
} else if (encoding == "xmlgz" || encoding == "gz") {
m_encoding = FileEncoding::XMLgz();
} else if (encoding == "xmlbz2" || encoding == "bz2") {
m_encoding = FileEncoding::XMLbz2();
} else {
throw ArgumentError("Unknown OSM file encoding", encoding);
}
return *this;
}
OSMFile& set_filename(std::string& filename) {
if (filename == "-") {
m_filename = "";
} else {
m_filename = filename;
}
return *this;
}
std::string get_filename() const {
return m_filename;
}
std::string get_filename_without_suffix() const {
return m_filename.substr(m_filename.find_first_of('.')+1);
}
std::string get_filename_with_default_suffix() const {
std::string filename = get_filename_without_suffix();
filename += m_type->suffix() + m_encoding->suffix();
return filename;
}
void open_for_input() {
m_fd = m_encoding->decompress() == "" ? open_input_file_or_url() : execute(m_encoding->decompress(), 0);
}
void open_for_output() {
m_fd = m_encoding->compress() == "" ? open_output_file() : execute(m_encoding->compress(), 1);
}
/**
* Read OSM file and call methods on handler object.
*/
template <class T> void read(T& handler);
/**
* Create output file from OSMFile.
*/
Osmium::Output::Base* create_output_file();
};
} // namespace Osmium
#endif // OSMIUM_OSMFILE_HPP
|