forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtagtransform-lua.hpp
More file actions
55 lines (42 loc) · 1.46 KB
/
Copy pathtagtransform-lua.hpp
File metadata and controls
55 lines (42 loc) · 1.46 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef OSM2PGSQL_TAGTRANSFORM_LUA_HPP
#define OSM2PGSQL_TAGTRANSFORM_LUA_HPP
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2021 by the osm2pgsql developer community.
* For a full list of authors see the git log.
*/
#include <string>
#include "tagtransform.hpp"
extern "C"
{
#include <lua.h>
}
class lua_tagtransform_t : public tagtransform_t
{
lua_tagtransform_t(lua_tagtransform_t const &other) = default;
public:
explicit lua_tagtransform_t(options_t const *options);
~lua_tagtransform_t() override;
std::unique_ptr<tagtransform_t> clone() const override;
bool filter_tags(osmium::OSMObject const &o, bool *polygon, bool *roads,
taglist_t &out_tags) override;
bool filter_rel_member_tags(taglist_t const &rel_tags,
osmium::memory::Buffer const &members,
rolelist_t const &member_roles,
bool *make_boundary, bool *make_polygon,
bool *roads, taglist_t &out_tags) override;
private:
void open_style();
void check_lua_function_exists(std::string const &func_name);
lua_State *L = nullptr;
std::string m_node_func;
std::string m_way_func;
std::string m_rel_func;
std::string m_rel_mem_func;
std::string m_lua_file;
bool m_extra_attributes;
};
#endif // OSM2PGSQL_TAGTRANSFORM_LUA_HPP