Files
osm2pgsql/tagtransform.cpp
Sarah Hoffmann bee043b65a move export_list into c transform
Avoid having to hand in the export list on every filter call.
2019-02-10 21:54:39 +01:00

33 lines
1.0 KiB
C++

#include "tagtransform.hpp"
#include "config.h"
#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
fprintf(stderr,
"Using lua based tag processing pipeline with script %s\n",
options->tag_transform_script->c_str());
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
}
fprintf(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;