2017-07-14 23:56:23 +00:00
|
|
|
#ifndef MVT_HPP
|
|
|
|
#define MVT_HPP
|
|
|
|
|
|
|
|
#include <sqlite3.h>
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-04-25 21:19:38 +00:00
|
|
|
struct mvt_value;
|
|
|
|
struct mvt_layer;
|
|
|
|
|
2016-04-25 19:13:52 +00:00
|
|
|
enum mvt_operation {
|
|
|
|
mvt_moveto = 1,
|
|
|
|
mvt_lineto = 2,
|
|
|
|
mvt_closepath = 7
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mvt_geometry {
|
2017-11-07 20:58:27 +00:00
|
|
|
long long x = 0;
|
|
|
|
long long y = 0;
|
|
|
|
int /* mvt_operation */ op = 0;
|
2016-04-25 19:13:52 +00:00
|
|
|
|
|
|
|
mvt_geometry(int op, long long x, long long y);
|
2017-03-16 22:06:26 +00:00
|
|
|
|
|
|
|
bool operator<(mvt_geometry const &s) const {
|
|
|
|
if (y < s.y || (y == s.y && x < s.x)) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(mvt_geometry const &s) const {
|
|
|
|
return y == s.y && x == s.x;
|
|
|
|
}
|
2016-04-25 19:13:52 +00:00
|
|
|
};
|
2016-04-22 22:10:16 +00:00
|
|
|
|
|
|
|
enum mvt_geometry_type {
|
2016-04-23 00:10:33 +00:00
|
|
|
mvt_point = 1,
|
|
|
|
mvt_linestring = 2,
|
|
|
|
mvt_polygon = 3
|
2016-04-22 22:10:16 +00:00
|
|
|
};
|
|
|
|
|
2016-04-25 19:13:52 +00:00
|
|
|
struct mvt_feature {
|
2017-11-07 23:25:54 +00:00
|
|
|
std::vector<unsigned> tags{};
|
|
|
|
std::vector<mvt_geometry> geometry{};
|
2017-11-07 20:58:27 +00:00
|
|
|
int /* mvt_geometry_type */ type = 0;
|
|
|
|
unsigned long long id = 0;
|
|
|
|
bool has_id = false;
|
2016-07-15 20:58:15 +00:00
|
|
|
|
|
|
|
mvt_feature() {
|
|
|
|
has_id = false;
|
|
|
|
id = 0;
|
|
|
|
}
|
2016-04-22 22:10:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum mvt_value_type {
|
2016-04-23 00:10:33 +00:00
|
|
|
mvt_string,
|
|
|
|
mvt_float,
|
|
|
|
mvt_double,
|
|
|
|
mvt_int,
|
|
|
|
mvt_uint,
|
|
|
|
mvt_sint,
|
2017-08-25 00:27:30 +00:00
|
|
|
mvt_bool,
|
|
|
|
mvt_null,
|
2016-04-22 22:10:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mvt_value {
|
|
|
|
mvt_value_type type;
|
|
|
|
std::string string_value;
|
|
|
|
union {
|
|
|
|
float float_value;
|
|
|
|
double double_value;
|
|
|
|
long long int_value;
|
|
|
|
unsigned long long uint_value;
|
|
|
|
long long sint_value;
|
|
|
|
bool bool_value;
|
|
|
|
} numeric_value;
|
2016-04-25 21:19:38 +00:00
|
|
|
|
|
|
|
bool operator<(const mvt_value &o) const;
|
2017-08-30 18:44:57 +00:00
|
|
|
std::string toString();
|
2017-11-07 20:58:27 +00:00
|
|
|
|
|
|
|
mvt_value() {
|
|
|
|
this->type = mvt_double;
|
|
|
|
this->string_value = "";
|
|
|
|
this->numeric_value.double_value = 0;
|
|
|
|
}
|
2016-04-22 22:10:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mvt_layer {
|
2017-11-07 20:58:27 +00:00
|
|
|
int version = 0;
|
|
|
|
std::string name = "";
|
2017-11-07 23:25:54 +00:00
|
|
|
std::vector<mvt_feature> features{};
|
|
|
|
std::vector<std::string> keys{};
|
|
|
|
std::vector<mvt_value> values{};
|
2017-11-07 20:58:27 +00:00
|
|
|
long long extent = 0;
|
2016-04-25 21:19:38 +00:00
|
|
|
|
|
|
|
// Add a key-value pair to a feature, using this layer's constant pool
|
|
|
|
void tag(mvt_feature &feature, std::string key, mvt_value value);
|
|
|
|
|
|
|
|
// For tracking the key-value constants already used in this layer
|
2017-11-07 23:20:17 +00:00
|
|
|
std::map<std::string, size_t> key_map = std::map<std::string, size_t>();
|
|
|
|
std::map<mvt_value, size_t> value_map = std::map<mvt_value, size_t>();
|
2016-04-22 22:10:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mvt_tile {
|
2017-11-07 23:25:54 +00:00
|
|
|
std::vector<mvt_layer> layers{};
|
2016-04-25 19:13:52 +00:00
|
|
|
|
|
|
|
std::string encode();
|
2017-05-11 19:08:47 +00:00
|
|
|
bool decode(std::string &message, bool &was_compressed);
|
2016-04-22 22:10:16 +00:00
|
|
|
};
|
|
|
|
|
2016-04-25 19:13:52 +00:00
|
|
|
bool is_compressed(std::string const &data);
|
|
|
|
int decompress(std::string const &input, std::string &output);
|
|
|
|
int compress(std::string const &input, std::string &output);
|
|
|
|
int dezig(unsigned n);
|
2016-12-07 23:54:58 +00:00
|
|
|
|
|
|
|
mvt_value stringified_to_mvt_value(int type, const char *s);
|
2017-07-14 23:56:23 +00:00
|
|
|
#endif
|