summaryrefslogtreecommitdiff
path: root/src/regex_filter.h
diff options
context:
space:
mode:
authorAndrzej Rybczak <electricityispower@gmail.com>2013-04-06 16:47:03 +0200
committerAndrzej Rybczak <electricityispower@gmail.com>2013-04-06 16:47:03 +0200
commit2b5f1b9fd438776f95c880c97b3d08a339139c79 (patch)
tree870b1cb5c06911f820d96d49f71cf8002814d336 /src/regex_filter.h
parent66bd3e978221e00786f170615d48189189f68070 (diff)
replace gnu regex wrapper with boost::regex
Diffstat (limited to 'src/regex_filter.h')
-rw-r--r--src/regex_filter.h30
1 files changed, 11 insertions, 19 deletions
diff --git a/src/regex_filter.h b/src/regex_filter.h
index b3b9a490..a1deb076 100644
--- a/src/regex_filter.h
+++ b/src/regex_filter.h
@@ -21,23 +21,19 @@
#ifndef NCMPCPP_REGEX_FILTER_H
#define NCMPCPP_REGEX_FILTER_H
+#include <boost/regex.hpp>
#include "menu.h"
-#include "regexes.h"
template <typename T> struct RegexFilter
{
typedef NC::Menu<T> MenuT;
typedef typename NC::Menu<T>::Item Item;
- typedef std::function<bool(const Regex &, const T &)> FilterFunction;
+ typedef std::function<bool(const boost::regex &, const T &)> FilterFunction;
- RegexFilter(const std::string &regex_, int cflags, FilterFunction filter)
- : m_rx(regex_, cflags), m_filter(filter) { }
+ RegexFilter(boost::regex rx, FilterFunction filter)
+ : m_rx(rx), m_filter(filter) { }
bool operator()(const Item &item) {
- if (m_rx.regex().empty())
- return true;
- if (!m_rx.compiled() || !m_rx.error().empty())
- return false;
return m_filter(m_rx, item.value());
}
@@ -46,12 +42,12 @@ template <typename T> struct RegexFilter
std::string filter;
auto rf = menu.getFilter().template target< RegexFilter<T> >();
if (rf)
- filter = rf->m_rx.regex();
+ filter = rf->m_rx.str();
return filter;
}
private:
- Regex m_rx;
+ boost::regex m_rx;
FilterFunction m_filter;
};
@@ -59,16 +55,12 @@ template <typename T> struct RegexItemFilter
{
typedef NC::Menu<T> MenuT;
typedef typename NC::Menu<T>::Item Item;
- typedef std::function<bool(const Regex &, const Item &)> FilterFunction;
+ typedef std::function<bool(const boost::regex &, const Item &)> FilterFunction;
- RegexItemFilter(const std::string &regex_, int cflags, FilterFunction filter)
- : m_rx(regex_, cflags), m_filter(filter) { }
+ RegexItemFilter(boost::regex rx, FilterFunction filter)
+ : m_rx(rx), m_filter(filter) { }
bool operator()(const Item &item) {
- if (m_rx.regex().empty())
- return true;
- if (!m_rx.compiled() || !m_rx.error().empty())
- return false;
return m_filter(m_rx, item);
}
@@ -77,12 +69,12 @@ template <typename T> struct RegexItemFilter
std::string filter;
auto rf = menu.getFilter().template target< RegexItemFilter<T> >();
if (rf)
- filter = rf->m_rx.regex();
+ filter = rf->m_rx.str();
return filter;
}
private:
- Regex m_rx;
+ boost::regex m_rx;
FilterFunction m_filter;
};