git-subtree-dir: third_party/libosmium git-subtree-split: ce865381fb752323ff1e66181f5a49b7f500ffa3
117 lines
2.3 KiB
C++
117 lines
2.3 KiB
C++
#include "catch.hpp"
|
|
|
|
#include <osmium/dynamic_handler.hpp>
|
|
#include <osmium/builder/attr.hpp>
|
|
#include <osmium/visitor.hpp>
|
|
|
|
struct Handler1 : public osmium::handler::Handler {
|
|
|
|
int& count;
|
|
|
|
explicit Handler1(int& c) :
|
|
count(c) {
|
|
}
|
|
|
|
void node(const osmium::Node&) noexcept {
|
|
++count;
|
|
}
|
|
|
|
void way(const osmium::Way&) noexcept {
|
|
++count;
|
|
}
|
|
|
|
void relation(const osmium::Relation&) noexcept {
|
|
++count;
|
|
}
|
|
|
|
void area(const osmium::Area&) noexcept {
|
|
++count;
|
|
}
|
|
|
|
void changeset(const osmium::Changeset&) noexcept {
|
|
++count;
|
|
}
|
|
|
|
void flush() noexcept {
|
|
++count;
|
|
}
|
|
|
|
};
|
|
|
|
struct Handler2 : public osmium::handler::Handler {
|
|
|
|
int& count;
|
|
|
|
explicit Handler2(int& c) :
|
|
count(c) {
|
|
}
|
|
|
|
void node(const osmium::Node&) noexcept {
|
|
count += 2;
|
|
}
|
|
|
|
void way(const osmium::Way&) noexcept {
|
|
count += 2;
|
|
}
|
|
|
|
void relation(const osmium::Relation&) noexcept {
|
|
count += 2;
|
|
}
|
|
|
|
void area(const osmium::Area&) noexcept {
|
|
count += 2;
|
|
}
|
|
|
|
void changeset(const osmium::Changeset&) noexcept {
|
|
count += 2;
|
|
}
|
|
|
|
};
|
|
|
|
osmium::memory::Buffer fill_buffer() {
|
|
using namespace osmium::builder::attr;
|
|
osmium::memory::Buffer buffer{1024 * 1024, osmium::memory::Buffer::auto_grow::yes};
|
|
|
|
osmium::builder::add_node(buffer, _id(1));
|
|
osmium::builder::add_way(buffer, _id(2));
|
|
osmium::builder::add_relation(buffer, _id(3));
|
|
osmium::builder::add_area(buffer, _id(4));
|
|
osmium::builder::add_changeset(buffer, _cid(5));
|
|
|
|
return buffer;
|
|
}
|
|
|
|
TEST_CASE("Base test: static handler") {
|
|
const auto buffer = fill_buffer();
|
|
|
|
int count = 0;
|
|
Handler1 h1{count};
|
|
osmium::apply(buffer, h1);
|
|
REQUIRE(count == 6);
|
|
|
|
count = 0;
|
|
Handler2 h2{count};
|
|
osmium::apply(buffer, h2);
|
|
REQUIRE(count == 10);
|
|
}
|
|
|
|
TEST_CASE("Dynamic handler") {
|
|
const auto buffer = fill_buffer();
|
|
|
|
osmium::handler::DynamicHandler handler;
|
|
int count = 0;
|
|
|
|
osmium::apply(buffer, handler);
|
|
REQUIRE(count == 0);
|
|
|
|
handler.set<Handler1>(count);
|
|
osmium::apply(buffer, handler);
|
|
REQUIRE(count == 6);
|
|
|
|
count = 0;
|
|
handler.set<Handler2>(count);
|
|
osmium::apply(buffer, handler);
|
|
REQUIRE(count == 10);
|
|
}
|
|
|