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
|
#include "taginfo_impl.hpp"
#include "util.hpp"
#include <cassert>
#include <cstring>
#include <map>
#include <stdexcept>
#include <boost/format.hpp>
#include <errno.h>
#ifdef _WIN32
#ifndef strtok_r
#define strtok_r strtok_s
#endif
#endif
static const std::map<std::string, unsigned> tagflags = {
{"polygon", FLAG_POLYGON},
{"linear", FLAG_LINEAR},
{"nocache", FLAG_NOCACHE},
{"delete", FLAG_DELETE},
{"phstore", FLAG_PHSTORE},
{"nocolumn", FLAG_NOCOLUMN}
};
static const std::map<std::string, unsigned> tagtypes = {
{"smallint", FLAG_INT_TYPE},
{"integer", FLAG_INT_TYPE},
{"bigint", FLAG_INT_TYPE},
{"int2", FLAG_INT_TYPE},
{"int4", FLAG_INT_TYPE},
{"int8", FLAG_INT_TYPE},
{"real", FLAG_REAL_TYPE},
{"double precision", FLAG_REAL_TYPE}
};
taginfo::taginfo()
: name(), type(), flags(0) {
}
taginfo::taginfo(const taginfo &other)
: name(other.name), type(other.type),
flags(other.flags) {
}
export_list::export_list()
: num_tables(0), exportList() {
}
void export_list::add(enum OsmType id, const taginfo &info) {
std::vector<taginfo> &infos = get(id);
infos.push_back(info);
}
std::vector<taginfo> &export_list::get(enum OsmType id) {
if (id >= num_tables) {
exportList.resize(id+1);
num_tables = id + 1;
}
return exportList[id];
}
const std::vector<taginfo> &export_list::get(enum OsmType id) const {
// this fakes as if we have infinite taginfo vectors, but
// means we don't actually have anything allocated unless
// the info object has been assigned.
static const std::vector<taginfo> empty;
if (id < num_tables) {
return exportList[id];
} else {
return empty;
}
}
columns_t export_list::normal_columns(OsmType id) const {
columns_t columns;
for (auto const &info : get(id)) {
if (!(info.flags & (FLAG_DELETE | FLAG_NOCOLUMN))) {
columns.emplace_back(info.name, info.type, info.column_type());
}
}
return columns;
}
int parse_tag_flags(const char *flags_, int lineno) {
int temp_flags = 0;
char *str = nullptr, *saveptr = nullptr;
// yuck! but strtok requires a non-const char * pointer, and i'm fairly sure it
// doesn't actually modify the string.
char *flags = const_cast<char *>(flags_);
//split the flags column on commas and keep track of which flags you've seen in a bit mask
for(str = strtok_r(flags, ",\r\n", &saveptr); str != nullptr; str = strtok_r(nullptr, ",\r\n", &saveptr))
{
if (tagflags.count(str)) {
temp_flags |= tagflags.at(str);
} else {
fprintf( stderr, "Unknown flag '%s' line %d, ignored\n", str, lineno );
}
}
return temp_flags;
}
int read_style_file( const std::string &filename, export_list *exlist )
{
FILE *in;
int lineno = 0;
int num_read = 0;
char osmtype[24];
char tag[64];
char datatype[24];
char flags[128];
char *str;
int fields;
struct taginfo temp;
char buffer[1024];
int enable_way_area = 1;
in = fopen( filename.c_str(), "rt" );
if( !in )
{
throw std::runtime_error((boost::format("Couldn't open style file '%1%': %2%")
% filename % strerror(errno)).str());
}
//for each line of the style file
while( fgets( buffer, sizeof(buffer), in) != nullptr )
{
lineno++;
//find where a comment starts and terminate the string there
str = strchr( buffer, '#' );
if( str )
*str = '\0';
//grab the expected fields for this row
fields = sscanf( buffer, "%23s %63s %23s %127s", osmtype, tag, datatype, flags );
if( fields <= 0 ) /* Blank line */
continue;
if( fields < 3 )
{
fprintf( stderr, "Error reading style file line %d (fields=%d)\n", lineno, fields );
util::exit_nicely();
}
//place to keep info about this tag
temp.name.assign(tag);
temp.type.assign(datatype);
temp.flags = parse_tag_flags(flags, lineno);
// check for special data types, by default everything is handled as text
auto const typ = tagtypes.find(temp.type);
if (typ != tagtypes.end()) {
temp.flags |= typ->second;
}
if ((temp.flags != FLAG_DELETE) &&
((temp.name.find('?') != std::string::npos) ||
(temp.name.find('*') != std::string::npos))) {
fprintf( stderr, "wildcard '%s' in non-delete style entry\n",temp.name.c_str());
util::exit_nicely();
}
if ((temp.name == "way_area") && (temp.flags==FLAG_DELETE)) {
enable_way_area=0;
}
/* printf("%s %s %d %d\n", temp.name, temp.type, temp.polygon, offset ); */
bool kept = false;
//keep this tag info if it applies to nodes
if( strstr( osmtype, "node" ) )
{
exlist->add(OSMTYPE_NODE, temp);
kept = true;
}
//keep this tag info if it applies to ways
if( strstr( osmtype, "way" ) )
{
exlist->add(OSMTYPE_WAY, temp);
kept = true;
}
//do we really want to completely quit on an unusable line?
if( !kept )
{
throw std::runtime_error((boost::format("Weird style line %1%:%2%")
% filename % lineno).str());
}
num_read++;
}
if (ferror(in)) {
throw std::runtime_error((boost::format("%1%: %2%")
% filename % strerror(errno)).str());
}
if (num_read == 0) {
throw std::runtime_error("Unable to parse any valid columns from "
"the style file. Aborting.");
}
fclose(in);
return enable_way_area;
}
|