forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtagtransform.cpp
More file actions
33 lines (29 loc) · 1.04 KB
/
Copy pathtagtransform.cpp
File metadata and controls
33 lines (29 loc) · 1.04 KB
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
#include "tagtransform.hpp"
#include "config.h"
#include "format.hpp"
#include "options.hpp"
#include "tagtransform-c.hpp"
#ifdef HAVE_LUA
#include "tagtransform-lua.hpp"
#endif
std::unique_ptr<tagtransform_t>
tagtransform_t::make_tagtransform(options_t const *options,
export_list const &exlist)
{
if (options->tag_transform_script) {
#ifdef HAVE_LUA
fmt::print(stderr,
"Using lua based tag processing pipeline with script {}\n",
options->tag_transform_script.get());
return std::unique_ptr<tagtransform_t>(new lua_tagtransform_t{options});
#else
throw std::runtime_error{"Error: Could not init lua tag transform, as "
"lua support was not compiled into this "
"version"};
#endif
}
fmt::print(stderr, "Using built-in tag processing pipeline\n");
return std::unique_ptr<tagtransform_t>(
new c_tagtransform_t{options, exlist});
}
tagtransform_t::~tagtransform_t() = default;