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
|
#ifndef VTZERO_LAYER_HPP
#define VTZERO_LAYER_HPP
/*****************************************************************************
vtzero - Tiny and fast vector tile decoder and encoder in C++.
This file is from https://github.com/mapbox/vtzero where you can find more
documentation.
*****************************************************************************/
/**
* @file layer.hpp
*
* @brief Contains the layer class.
*/
#include "exception.hpp"
#include "feature.hpp"
#include "geometry.hpp"
#include "property_value.hpp"
#include "types.hpp"
#include <protozero/pbf_message.hpp>
#include <cstdint>
#include <iterator>
#include <vector>
namespace vtzero {
/**
* A layer according to spec 4.1. It contains a version, the extent,
* and a name. For the most efficient way to access the features in this
* layer call next_feature() until it returns an invalid feature:
*
* @code
* std::string data = ...;
* vector_tile tile{data};
* layer = tile.next_layer();
* while (auto feature = layer.next_feature()) {
* ...
* }
* @endcode
*
* If you know the ID of a feature, you can get it directly with
* @code
* layer.get_feature_by_id(7);
* @endcode
*
* Note that the layer class uses mutable members inside to cache the
* key and value tables. It can not be used safely in several threads
* at once!
*/
class layer {
data_view m_data{};
uint32_t m_version = 1; // defaults to 1, see https://github.com/mapbox/vector-tile-spec/blob/master/2.1/vector_tile.proto#L55
uint32_t m_extent = 4096; // defaults to 4096, see https://github.com/mapbox/vector-tile-spec/blob/master/2.1/vector_tile.proto#L70
std::size_t m_num_features = 0;
data_view m_name{};
protozero::pbf_message<detail::pbf_layer> m_layer_reader{m_data};
mutable std::vector<data_view> m_key_table;
mutable std::vector<property_value> m_value_table;
mutable std::size_t m_key_table_size = 0;
mutable std::size_t m_value_table_size = 0;
void initialize_tables() const {
m_key_table.reserve(m_key_table_size);
m_key_table_size = 0;
m_value_table.reserve(m_value_table_size);
m_value_table_size = 0;
protozero::pbf_message<detail::pbf_layer> reader{m_data};
while (reader.next()) {
switch (reader.tag_and_type()) {
case protozero::tag_and_type(detail::pbf_layer::keys, protozero::pbf_wire_type::length_delimited):
m_key_table.push_back(reader.get_view());
break;
case protozero::tag_and_type(detail::pbf_layer::values, protozero::pbf_wire_type::length_delimited):
m_value_table.emplace_back(reader.get_view());
break;
default:
reader.skip(); // ignore unknown fields
}
}
}
public:
/**
* Construct an invalid layer object.
*/
layer() = default;
/**
* Construct a layer object. This is usually not something done in
* user code, because layers are created by the tile_iterator.
*
* @throws format_exception if the layer data is ill-formed.
* @throws version_exception if the layer contains an unsupported version
* number (only version 1 and 2 are supported)
* @throws any protozero exception if the protobuf encoding is invalid.
*/
explicit layer(const data_view data) :
m_data(data) {
protozero::pbf_message<detail::pbf_layer> reader{data};
while (reader.next()) {
switch (reader.tag_and_type()) {
case protozero::tag_and_type(detail::pbf_layer::version, protozero::pbf_wire_type::varint):
m_version = reader.get_uint32();
break;
case protozero::tag_and_type(detail::pbf_layer::name, protozero::pbf_wire_type::length_delimited):
m_name = reader.get_view();
break;
case protozero::tag_and_type(detail::pbf_layer::features, protozero::pbf_wire_type::length_delimited):
reader.skip(); // ignore features for now
++m_num_features;
break;
case protozero::tag_and_type(detail::pbf_layer::keys, protozero::pbf_wire_type::length_delimited):
reader.skip();
++m_key_table_size;
break;
case protozero::tag_and_type(detail::pbf_layer::values, protozero::pbf_wire_type::length_delimited):
reader.skip();
++m_value_table_size;
break;
case protozero::tag_and_type(detail::pbf_layer::extent, protozero::pbf_wire_type::varint):
m_extent = reader.get_uint32();
break;
default:
throw format_exception{"unknown field in layer (tag=" +
std::to_string(static_cast<uint32_t>(reader.tag())) +
", type=" +
std::to_string(static_cast<uint32_t>(reader.wire_type())) +
")"};
}
}
// This library can only handle version 1 and 2.
if (m_version < 1 || m_version > 2) {
throw version_exception{m_version};
}
// 4.1 "A layer MUST contain a name field."
if (m_name.data() == nullptr) {
throw format_exception{"missing name field in layer (spec 4.1)"};
}
}
/**
* Is this a valid layer? Valid layers are those not created from the
* default constructor.
*/
bool valid() const noexcept {
return m_data.data() != nullptr;
}
/**
* Is this a valid layer? Valid layers are those not created from the
* default constructor.
*/
explicit operator bool() const noexcept {
return valid();
}
/**
* Get a reference to the raw data this layer is created from.
*/
data_view data() const noexcept {
return m_data;
}
/**
* Return the name of the layer.
*
* @pre @code valid() @endcode
*/
data_view name() const noexcept {
vtzero_assert_in_noexcept_function(valid());
return m_name;
}
/**
* Return the version of this layer.
*
* @pre @code valid() @endcode
*/
std::uint32_t version() const noexcept {
vtzero_assert_in_noexcept_function(valid());
return m_version;
}
/**
* Return the extent of this layer.
*
* @pre @code valid() @endcode
*/
std::uint32_t extent() const noexcept {
vtzero_assert_in_noexcept_function(valid());
return m_extent;
}
/**
* Does this layer contain any features?
*
* Complexity: Constant.
*/
bool empty() const noexcept {
return m_num_features == 0;
}
/**
* The number of features in this layer.
*
* Complexity: Constant.
*/
std::size_t num_features() const noexcept {
return m_num_features;
}
/**
* Return a reference to the key table.
*
* Complexity: Amortized constant. First time the table is needed
* it needs to be created.
*
* @pre @code valid() @endcode
*/
const std::vector<data_view>& key_table() const {
vtzero_assert(valid());
if (m_key_table_size > 0) {
initialize_tables();
}
return m_key_table;
}
/**
* Return a reference to the value table.
*
* Complexity: Amortized constant. First time the table is needed
* it needs to be created.
*
* @pre @code valid() @endcode
*/
const std::vector<property_value>& value_table() const {
vtzero_assert(valid());
if (m_value_table_size > 0) {
initialize_tables();
}
return m_value_table;
}
/**
* Return the size of the key table. This returns the correct value
* whether the key table was already built or not.
*
* Complexity: Constant.
*
* @returns Size of the key table.
*/
std::size_t key_table_size() const noexcept {
return m_key_table_size > 0 ? m_key_table_size : m_key_table.size();
}
/**
* Return the size of the value table. This returns the correct value
* whether the value table was already built or not.
*
* Complexity: Constant.
*
* @returns Size of the value table.
*/
std::size_t value_table_size() const noexcept {
return m_value_table_size > 0 ? m_value_table_size : m_value_table.size();
}
/**
* Get the property key with the given index.
*
* Complexity: Amortized constant. First time the table is needed
* it needs to be created.
*
* @throws out_of_range_exception if the index is out of range.
* @pre @code valid() @endcode
*/
data_view key(index_value index) const {
vtzero_assert(valid());
const auto& table = key_table();
if (index.value() >= table.size()) {
throw out_of_range_exception{index.value()};
}
return table[index.value()];
}
/**
* Get the property value with the given index.
*
* Complexity: Amortized constant. First time the table is needed
* it needs to be created.
*
* @throws out_of_range_exception if the index is out of range.
* @pre @code valid() @endcode
*/
property_value value(index_value index) const {
vtzero_assert(valid());
const auto& table = value_table();
if (index.value() >= table.size()) {
throw out_of_range_exception{index.value()};
}
return table[index.value()];
}
/**
* Get the next feature in this layer.
*
* Note that the feature returned will internally contain a pointer to
* the layer it came from. The layer has to stay valid as long as the
* feature is used.
*
* Complexity: Constant.
*
* @returns The next feature or the invalid feature if there are no
* more features.
* @throws format_exception if the layer data is ill-formed.
* @throws any protozero exception if the protobuf encoding is invalid.
* @pre @code valid() @endcode
*/
feature next_feature() {
vtzero_assert(valid());
const bool has_next = m_layer_reader.next(detail::pbf_layer::features,
protozero::pbf_wire_type::length_delimited);
return has_next ? feature{this, m_layer_reader.get_view()} : feature{};
}
/**
* Reset the feature iterator. The next time next_feature() is called,
* it will begin from the first feature again.
*
* Complexity: Constant.
*
* @pre @code valid() @endcode
*/
void reset_feature() noexcept {
vtzero_assert_in_noexcept_function(valid());
m_layer_reader = protozero::pbf_message<detail::pbf_layer>{m_data};
}
/**
* Call a function for each feature in this layer.
*
* @tparam The type of the function. It must take a single argument
* of type feature&& and return a bool. If the function returns
* false, the iteration will be stopped.
* @param func The function to call.
* @returns true if the iteration was completed and false otherwise.
* @pre @code valid() @endcode
*/
template <typename TFunc>
bool for_each_feature(TFunc&& func) const {
vtzero_assert(valid());
protozero::pbf_message<detail::pbf_layer> layer_reader{m_data};
while (layer_reader.next(detail::pbf_layer::features,
protozero::pbf_wire_type::length_delimited)) {
if (!std::forward<TFunc>(func)(feature{this, layer_reader.get_view()})) {
return false;
}
}
return true;
}
/**
* Get the feature with the specified ID. If there are several features
* with the same ID, it is undefined which one you'll get.
*
* Note that the feature returned will internally contain a pointer to
* the layer it came from. The layer has to stay valid as long as the
* feature is used.
*
* Complexity: Linear in the number of features.
*
* @param id The ID to look for.
* @returns Feature with the specified ID or the invalid feature if
* there is no feature with this ID.
* @throws format_exception if the layer data is ill-formed.
* @throws any protozero exception if the protobuf encoding is invalid.
* @pre @code valid() @endcode
*/
feature get_feature_by_id(uint64_t id) const {
vtzero_assert(valid());
protozero::pbf_message<detail::pbf_layer> layer_reader{m_data};
while (layer_reader.next(detail::pbf_layer::features, protozero::pbf_wire_type::length_delimited)) {
const auto feature_data = layer_reader.get_view();
protozero::pbf_message<detail::pbf_feature> feature_reader{feature_data};
if (feature_reader.next(detail::pbf_feature::id, protozero::pbf_wire_type::varint)) {
if (feature_reader.get_uint64() == id) {
return feature{this, feature_data};
}
}
}
return feature{};
}
}; // class layer
inline property feature::next_property() {
const auto idxs = next_property_indexes();
property p{};
if (idxs.valid()) {
p = {m_layer->key(idxs.key()),
m_layer->value(idxs.value())};
}
return p;
}
inline index_value_pair feature::next_property_indexes() {
vtzero_assert(valid());
if (m_property_iterator == m_properties.end()) {
return {};
}
const auto ki = *m_property_iterator++;
if (!index_value{ki}.valid()) {
throw out_of_range_exception{ki};
}
assert(m_property_iterator != m_properties.end());
const auto vi = *m_property_iterator++;
if (!index_value{vi}.valid()) {
throw out_of_range_exception{vi};
}
if (ki >= m_layer->key_table_size()) {
throw out_of_range_exception{ki};
}
if (vi >= m_layer->value_table_size()) {
throw out_of_range_exception{vi};
}
return {ki, vi};
}
template <typename TFunc>
bool feature::for_each_property(TFunc&& func) const {
vtzero_assert(valid());
for (auto it = m_properties.begin(); it != m_properties.end();) {
const uint32_t ki = *it++;
if (!index_value{ki}.valid()) {
throw out_of_range_exception{ki};
}
assert(it != m_properties.end());
const uint32_t vi = *it++;
if (!index_value{vi}.valid()) {
throw out_of_range_exception{vi};
}
if (!std::forward<TFunc>(func)(property{m_layer->key(ki), m_layer->value(vi)})) {
return false;
}
}
return true;
}
template <typename TFunc>
bool feature::for_each_property_indexes(TFunc&& func) const {
vtzero_assert(valid());
for (auto it = m_properties.begin(); it != m_properties.end();) {
const uint32_t ki = *it++;
if (!index_value{ki}.valid()) {
throw out_of_range_exception{ki};
}
assert(it != m_properties.end());
const uint32_t vi = *it++;
if (!index_value{vi}.valid()) {
throw out_of_range_exception{vi};
}
if (!std::forward<TFunc>(func)(index_value_pair{ki, vi})) {
return false;
}
}
return true;
}
} // namespace vtzero
#endif // VTZERO_LAYER_HPP
|