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
|
#pragma once
#include <mapbox/geometry/empty.hpp>
#include <mapbox/feature.hpp>
#include <algorithm>
#include <iostream>
#include <string>
namespace mapbox {
namespace geometry {
inline std::ostream& operator<<(std::ostream& os, const empty&)
{
return os << "[]";
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const point<T>& point)
{
return os << '[' << point.x << ',' << point.y << ']';
}
template <typename T, template <class, class...> class C, class... Args>
std::ostream& operator<<(std::ostream& os, const C<T, Args...>& cont)
{
os << '[';
for (auto it = cont.cbegin();;)
{
os << *it;
if (++it == cont.cend())
{
break;
}
os << ',';
}
return os << ']';
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const line_string<T>& geom)
{
return os << static_cast<typename line_string<T>::container_type>(geom);
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const linear_ring<T>& geom)
{
return os << static_cast<typename linear_ring<T>::container_type>(geom);
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const polygon<T>& geom)
{
return os << static_cast<typename polygon<T>::container_type>(geom);
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const multi_point<T>& geom)
{
return os << static_cast<typename multi_point<T>::container_type>(geom);
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const multi_line_string<T>& geom)
{
return os << static_cast<typename multi_line_string<T>::container_type>(geom);
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const multi_polygon<T>& geom)
{
return os << static_cast<typename multi_polygon<T>::container_type>(geom);
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const geometry<T>& geom)
{
geometry<T>::visit(geom, [&](const auto& g) { os << g; });
return os;
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const geometry_collection<T>& geom)
{
return os << static_cast<typename geometry_collection<T>::container_type>(geom);
}
} // namespace geometry
namespace feature {
inline std::ostream& operator<<(std::ostream& os, const null_value_t&)
{
return os << "null";
}
void to_stream(mapbox::feature::property_map const&, std::ostream& dest);
void to_stream(std::vector<mapbox::feature::value> const&, std::ostream& dest);
inline void quote_string(std::string const& in, std::ostream& dest)
{
dest << '\"';
for (char c : in)
{
if (c == '"' || c == '\\')
{
dest << '\\';
}
dest << c;
}
dest << '\"';
}
struct value_to_stream_visitor
{
std::ostream& out;
template <typename T>
void operator()(T val)
{
out << val;
}
void operator()(std::string const& val)
{
quote_string(val, out);
}
void operator()(bool val)
{
out << (val ? "true" : "false");
}
void operator()(std::vector<mapbox::feature::value> const& vec)
{
out << '[';
bool first = true;
for (auto const& item : vec)
{
if (first)
{
first = false;
}
else
{
out << ',';
}
mapbox::util::apply_visitor(*this, item);
}
out << ']';
}
void operator()(std::shared_ptr<std::vector<mapbox::feature::value>> const& vec)
{
(*this)(*vec);
}
void operator()(std::unordered_map<std::string, mapbox::feature::value> const& map)
{
out << '{';
std::vector<std::string> keys;
for (auto const& p : map)
{
keys.push_back(p.first);
}
std::sort(keys.begin(), keys.end());
bool first = true;
for (auto const& k : keys)
{
if (first)
{
first = false;
}
else
{
out << ',';
}
auto const val = map.find(k);
quote_string(k, out);
out << ':';
mapbox::util::apply_visitor(*this, val->second);
}
out << '}';
}
void operator()(std::shared_ptr<std::unordered_map<std::string, mapbox::feature::value>> const& map)
{
(*this)(*map);
}
};
inline std::ostream& operator<<(std::ostream& os, std::unordered_map<std::string, mapbox::feature::value> const& map)
{
value_to_stream_visitor vis{os};
vis(map);
return os;
}
inline std::ostream& operator<<(std::ostream& os, std::vector<mapbox::feature::value> const& vec)
{
value_to_stream_visitor vis{os};
vis(vec);
return os;
}
inline std::ostream& operator<<(std::ostream& os, mapbox::feature::value const& val)
{
mapbox::util::apply_visitor(value_to_stream_visitor{os}, val);
return os;
}
struct identifier_to_stream_visitor
{
std::ostream& out;
template <typename T>
void operator()(T val)
{
out << val;
}
void operator()(std::string const& val)
{
quote_string(val, out);
}
};
inline std::ostream& operator<<(std::ostream& os, mapbox::feature::identifier const& val)
{
mapbox::util::apply_visitor(identifier_to_stream_visitor{os}, val);
return os;
}
} // namespace feature
} // namespace mapbox
|