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
|
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2021 by the osm2pgsql developer community.
* For a full list of authors see the git log.
*/
#include <catch.hpp>
#include <set>
#include "expire-tiles.hpp"
#include "reprojection.hpp"
static constexpr double EARTH_CIRCUMFERENCE = 40075016.68;
static std::shared_ptr<reprojection>
defproj(reprojection::create_projection(PROJ_SPHERE_MERC));
class xyz
{
public:
xyz(uint32_t z_, int64_t x_, int64_t y_) : z(z_), x(x_), y(y_) {}
bool operator==(xyz const &other) const noexcept
{
return ((z == other.z) && (x == other.x) && (y == other.y));
}
bool operator<(xyz const &other) const noexcept
{
if (z < other.z) {
return true;
}
if (z > other.z) {
return false;
}
if (x < other.x) {
return true;
}
if (x > other.x) {
return false;
}
if (y < other.y) {
return true;
}
return false;
}
void to_centroid(double &cx, double &cy) const noexcept
{
double const datum = 0.5 * (1U << z);
double const scale = EARTH_CIRCUMFERENCE / (1U << z);
cx = ((x + 0.5) - datum) * scale;
cy = (datum - (y + 0.5)) * scale;
}
private:
uint32_t z;
int64_t x, y;
};
struct tile_output_set
{
bool operator==(tile_output_set const &other) const
{
return tiles == other.tiles;
}
tile_output_set &operator+=(tile_output_set const &other)
{
tiles.insert(other.tiles.cbegin(), other.tiles.cend());
return *this;
}
void output_dirty_tile(int64_t x, int64_t y, uint32_t zoom)
{
tiles.insert(xyz{zoom, x, y});
}
void expire_centroids(expire_tiles &et)
{
for (auto const &t : tiles) {
double x0, y0;
t.to_centroid(x0, y0);
et.from_bbox(x0, y0, x0, y0);
}
}
static tile_output_set generate_random(uint32_t zoom, size_t count)
{
tile_output_set set;
int const cmask = (1 << zoom) - 1;
do {
set.output_dirty_tile(rand() & cmask, rand() & cmask, zoom);
} while (set.tiles.size() < count);
return set;
}
std::set<xyz> tiles;
};
void check_quadkey_to_xy(uint64_t quadkey_expected, uint32_t x, uint32_t y,
uint32_t zoom)
{
CHECK(expire_tiles::xy_to_quadkey(x, y, zoom) == quadkey_expected);
xy_coord_t xy = expire_tiles::quadkey_to_xy(quadkey_expected, zoom);
CHECK(xy.x == x);
CHECK(xy.y == y);
}
TEST_CASE("xy to quadkey", "[NoDB]")
{
check_quadkey_to_xy(0x27, 3, 5, 3);
check_quadkey_to_xy(0xffffffff, 65535, 65535, 16);
// This test prevents problems which occur if 32-bit integers are used
// instead of 64-bit integers.
check_quadkey_to_xy(0xfffffffff, 262143, 262143, 18);
check_quadkey_to_xy(0x3fffffff0, 131068, 131068, 18);
}
TEST_CASE("simple expire z1", "[NoDB]")
{
uint32_t minzoom = 1;
expire_tiles et(minzoom, 20000, defproj);
// as big a bbox as possible at the origin to dirty all four
// quadrants of the world.
et.from_bbox(-10000, -10000, 10000, 10000);
tile_output_set set;
et.output_and_destroy(set, minzoom);
CHECK(set.tiles.size() == 4);
auto itr = set.tiles.begin();
CHECK(*(itr++) == xyz(1, 0, 0));
CHECK(*(itr++) == xyz(1, 0, 1));
CHECK(*(itr++) == xyz(1, 1, 0));
CHECK(*(itr++) == xyz(1, 1, 1));
}
TEST_CASE("simple expire z3", "[NoDB]")
{
uint32_t minzoom = 3;
expire_tiles et(minzoom, 20000, defproj);
// as big a bbox as possible at the origin to dirty all four
// quadrants of the world.
et.from_bbox(-10000, -10000, 10000, 10000);
tile_output_set set;
et.output_and_destroy(set, minzoom);
CHECK(set.tiles.size() == 4);
auto itr = set.tiles.begin();
CHECK(*(itr++) == xyz(3, 3, 3));
CHECK(*(itr++) == xyz(3, 3, 4));
CHECK(*(itr++) == xyz(3, 4, 3));
CHECK(*(itr++) == xyz(3, 4, 4));
}
TEST_CASE("simple expire z18", "[NoDB]")
{
uint32_t minzoom = 18;
expire_tiles et(18, 20000, defproj);
// dirty a smaller bbox this time, as at z18 the scale is
// pretty small.
et.from_bbox(-1, -1, 1, 1);
tile_output_set set;
et.output_and_destroy(set, minzoom);
CHECK(set.tiles.size() == 4);
auto itr = set.tiles.begin();
CHECK(*(itr++) == xyz(18, 131071, 131071));
CHECK(*(itr++) == xyz(18, 131071, 131072));
CHECK(*(itr++) == xyz(18, 131072, 131071));
CHECK(*(itr++) == xyz(18, 131072, 131072));
}
/**
* Test tile expiry on two zoom levels.
*/
TEST_CASE("simple expire z17 and z18", "[NoDB]")
{
uint32_t minzoom = 17;
expire_tiles et(18, 20000, defproj);
// dirty a smaller bbox this time, as at z18 the scale is
// pretty small.
et.from_bbox(-1, -1, 1, 1);
tile_output_set set;
et.output_and_destroy(set, minzoom);
CHECK(set.tiles.size() == 8);
auto itr = set.tiles.begin();
CHECK(*(itr++) == xyz(17, 65535, 65535));
CHECK(*(itr++) == xyz(17, 65535, 65536));
CHECK(*(itr++) == xyz(17, 65536, 65535));
CHECK(*(itr++) == xyz(17, 65536, 65536));
CHECK(*(itr++) == xyz(18, 131071, 131071));
CHECK(*(itr++) == xyz(18, 131071, 131072));
CHECK(*(itr++) == xyz(18, 131072, 131071));
CHECK(*(itr++) == xyz(18, 131072, 131072));
}
/**
* Similar to test_expire_simple_z17_18 but now all z18 tiles are children
* of the same z17 tile.
*/
TEST_CASE("simple expire z17 and z18 in one superior tile", "[NoDB]")
{
uint32_t minzoom = 17;
expire_tiles et(18, 20000, defproj);
et.from_bbox(-163, 140, -140, 164);
tile_output_set set;
et.output_and_destroy(set, minzoom);
CHECK(set.tiles.size() == 5);
auto itr = set.tiles.begin();
CHECK(*(itr++) == xyz(17, 65535, 65535));
CHECK(*(itr++) == xyz(18, 131070, 131070));
CHECK(*(itr++) == xyz(18, 131070, 131071));
CHECK(*(itr++) == xyz(18, 131071, 131070));
CHECK(*(itr++) == xyz(18, 131071, 131071));
}
/**
* Expiring a set of tile centroids means that those tiles get expired.
*/
TEST_CASE("expire centroids", "[NoDB]")
{
uint32_t zoom = 18;
for (int i = 0; i < 100; ++i) {
expire_tiles et(zoom, 20000, defproj);
auto check_set = tile_output_set::generate_random(zoom, 100);
check_set.expire_centroids(et);
tile_output_set set;
et.output_and_destroy(set, zoom);
CHECK(set == check_set);
}
}
/**
* After expiring a random set of tiles in one expire_tiles object
* and a different set in another, when they are merged together they are the
* same as if the union of the sets of tiles had been expired.
*/
TEST_CASE("merge expire sets", "[NoDB]")
{
uint32_t zoom = 18;
for (int i = 0; i < 100; ++i) {
expire_tiles et(zoom, 20000, defproj);
expire_tiles et1(zoom, 20000, defproj);
expire_tiles et2(zoom, 20000, defproj);
auto check_set1 = tile_output_set::generate_random(zoom, 100);
check_set1.expire_centroids(et1);
auto check_set2 = tile_output_set::generate_random(zoom, 100);
check_set2.expire_centroids(et2);
et.merge_and_destroy(et1);
et.merge_and_destroy(et2);
tile_output_set check_set;
check_set += check_set1;
check_set += check_set2;
tile_output_set set;
et.output_and_destroy(set, zoom);
CHECK(set == check_set);
}
}
/**
* Merging two identical sets results in the same set. This guarantees that
* we check some pathways of the merging which possibly could be skipped by
* the random tile set in the previous test.
*/
TEST_CASE("merge identical expire sets", "[NoDB]")
{
uint32_t zoom = 18;
for (int i = 0; i < 100; ++i) {
expire_tiles et(zoom, 20000, defproj);
expire_tiles et1(zoom, 20000, defproj);
expire_tiles et2(zoom, 20000, defproj);
auto check_set = tile_output_set::generate_random(zoom, 100);
check_set.expire_centroids(et1);
check_set.expire_centroids(et2);
et.merge_and_destroy(et1);
et.merge_and_destroy(et2);
tile_output_set set;
et.output_and_destroy(set, zoom);
CHECK(set == check_set);
}
}
/**
* Make sure that we're testing the case where some tiles are in both.
*/
TEST_CASE("merge overlapping expire sets", "[NoDB]")
{
uint32_t zoom = 18;
for (int i = 0; i < 100; ++i) {
expire_tiles et(zoom, 20000, defproj);
expire_tiles et1(zoom, 20000, defproj);
expire_tiles et2(zoom, 20000, defproj);
auto check_set1 = tile_output_set::generate_random(zoom, 100);
check_set1.expire_centroids(et1);
auto check_set2 = tile_output_set::generate_random(zoom, 100);
check_set2.expire_centroids(et2);
auto check_set3 = tile_output_set::generate_random(zoom, 100);
check_set3.expire_centroids(et1);
check_set3.expire_centroids(et2);
et.merge_and_destroy(et1);
et.merge_and_destroy(et2);
tile_output_set check_set;
check_set += check_set1;
check_set += check_set2;
check_set += check_set3;
tile_output_set set;
et.output_and_destroy(set, zoom);
CHECK(set == check_set);
}
}
/**
* The set union still works when we expire large contiguous areas of tiles
* (i.e: ensure that we handle the "complete" flag correctly)
*/
TEST_CASE("merge with complete flag", "[NoDB]")
{
uint32_t zoom = 18;
expire_tiles et(zoom, 20000, defproj);
expire_tiles et0(zoom, 20000, defproj);
expire_tiles et1(zoom, 20000, defproj);
expire_tiles et2(zoom, 20000, defproj);
// et1&2 are two halves of et0's box
et0.from_bbox(-10000, -10000, 10000, 10000);
et1.from_bbox(-10000, -10000, 0, 10000);
et2.from_bbox(0, -10000, 10000, 10000);
et.merge_and_destroy(et1);
et.merge_and_destroy(et2);
tile_output_set set;
et.output_and_destroy(set, zoom);
tile_output_set set0;
et0.output_and_destroy(set0, zoom);
CHECK(set == set0);
}
|