-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tag filter refactoring and added functionality
- Loading branch information
Showing
9 changed files
with
506 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
#ifndef OSMIUM_TAGS_KEY_VALUE_FILTER_HPP | ||
#define OSMIUM_TAGS_KEY_VALUE_FILTER_HPP | ||
|
||
/* | ||
Copyright 2012 Jochen Topf <[email protected]> and others (see README). | ||
This file is part of Osmium (https://github.com/joto/osmium). | ||
Osmium is free software: you can redistribute it and/or modify it under the | ||
terms of the GNU Lesser General Public License or (at your option) the GNU | ||
General Public License as published by the Free Software Foundation, either | ||
version 3 of the Licenses, or (at your option) any later version. | ||
Osmium is distributed in the hope that it will be useful, but WITHOUT ANY | ||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | ||
PARTICULAR PURPOSE. See the GNU Lesser General Public License and the GNU | ||
General Public License for more details. | ||
You should have received a copy of the Licenses along with Osmium. If not, see | ||
<http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <functional> | ||
#include <vector> | ||
#include <boost/foreach.hpp> | ||
#include <boost/iterator/filter_iterator.hpp> | ||
|
||
#include <osmium/osm/tag.hpp> | ||
#include <osmium/osm/tag_list.hpp> | ||
|
||
namespace Osmium { | ||
|
||
namespace Tags { | ||
|
||
class KeyValueFilter : public std::unary_function<const Osmium::OSM::Tag&, bool> { | ||
|
||
struct rule_t { | ||
bool result; | ||
std::string key; | ||
std::string value; | ||
|
||
rule_t(bool r, const char* k, const char* v) : | ||
result(r), | ||
key(k), | ||
value(v ? v : "") { | ||
} | ||
|
||
}; | ||
|
||
std::vector<rule_t> m_rules; | ||
bool m_default_result; | ||
|
||
public: | ||
|
||
typedef boost::filter_iterator<KeyValueFilter, Osmium::OSM::TagList::const_iterator> iterator; | ||
|
||
KeyValueFilter(bool default_result) : | ||
m_rules(), | ||
m_default_result(default_result) { | ||
} | ||
|
||
KeyValueFilter& add(bool result, const char* key, const char* value = NULL) { | ||
m_rules.push_back(rule_t(result, key, value)); | ||
return *this; | ||
} | ||
|
||
bool operator()(const Osmium::OSM::Tag& tag) const { | ||
BOOST_FOREACH(const rule_t &rule, m_rules) { | ||
if (tag.key() == rule.key && (rule.value.empty() || tag.value() == rule.value)) { | ||
return rule.result; | ||
} | ||
} | ||
return m_default_result; | ||
} | ||
|
||
}; | ||
|
||
} // namespace Tags | ||
|
||
} // namespace Osmium | ||
|
||
#endif // OSMIUM_TAGS_KEY_VALUE_FILTER_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
#ifndef OSMIUM_TAGS_REGEX_FILTER_HPP | ||
#define OSMIUM_TAGS_REGEX_FILTER_HPP | ||
|
||
/* | ||
Copyright 2012 Jochen Topf <[email protected]> and others (see README). | ||
This file is part of Osmium (https://github.com/joto/osmium). | ||
Osmium is free software: you can redistribute it and/or modify it under the | ||
terms of the GNU Lesser General Public License or (at your option) the GNU | ||
General Public License as published by the Free Software Foundation, either | ||
version 3 of the Licenses, or (at your option) any later version. | ||
Osmium is distributed in the hope that it will be useful, but WITHOUT ANY | ||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | ||
PARTICULAR PURPOSE. See the GNU Lesser General Public License and the GNU | ||
General Public License for more details. | ||
You should have received a copy of the Licenses along with Osmium. If not, see | ||
<http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#define OSMIUM_LINK_WITH_LIBS_GEOS -lboost_regex | ||
|
||
#include <functional> | ||
#include <vector> | ||
#include <boost/foreach.hpp> | ||
#include <boost/iterator/filter_iterator.hpp> | ||
#include <boost/regex.hpp> | ||
|
||
#include <osmium/osm/tag.hpp> | ||
#include <osmium/osm/tag_list.hpp> | ||
|
||
namespace Osmium { | ||
|
||
namespace Tags { | ||
|
||
class RegexFilter : public std::unary_function<const Osmium::OSM::Tag&, bool> { | ||
|
||
struct rule_t { | ||
bool result; | ||
boost::regex key; | ||
boost::regex value; | ||
|
||
rule_t(bool r, const char* k, const char* v) : | ||
result(r), | ||
key(k), | ||
value() { | ||
if (v) { | ||
value = v; | ||
} | ||
} | ||
|
||
}; | ||
|
||
std::vector<rule_t> m_rules; | ||
bool m_default_result; | ||
|
||
public: | ||
|
||
typedef boost::filter_iterator<RegexFilter, Osmium::OSM::TagList::const_iterator> iterator; | ||
|
||
RegexFilter(bool default_result) : | ||
m_rules(), | ||
m_default_result(default_result) { | ||
} | ||
|
||
RegexFilter& add(bool result, const char* key, const char* value = NULL) { | ||
m_rules.push_back(rule_t(result, key, value)); | ||
return *this; | ||
} | ||
|
||
bool operator()(const Osmium::OSM::Tag& tag) const { | ||
BOOST_FOREACH(const rule_t &rule, m_rules) { | ||
if (boost::regex_match(tag.key(), rule.key) && (rule.value.empty() || boost::regex_match(tag.value(), rule.value))) { | ||
return rule.result; | ||
} | ||
} | ||
return m_default_result; | ||
} | ||
|
||
}; | ||
|
||
} // namespace Tags | ||
|
||
} // namespace Osmium | ||
|
||
#endif // OSMIUM_TAGS_REGEX_FILTER_HPP |
Oops, something went wrong.