-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilter.cc
More file actions
80 lines (68 loc) · 1.3 KB
/
Filter.cc
File metadata and controls
80 lines (68 loc) · 1.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Copyright ©2017 NagraFrance
*/
#include "Filter.h"
using namespace std;
using namespace cpad;
cpad::Filter::Filter(enum FilterType type)
{
m_type = type;
m_filter_expr = "";
m_filter_regexp = regex("");
m_applyon = "";
}
cpad::Filter::Filter(enum FilterType type, char const *expr)
: cpad::Filter(type)
{
switch (m_type)
{
case cpad::EXPR:
m_filter_expr = string(expr);
break;
case cpad::REGEXP:
m_filter_expr = string(expr);
m_filter_regexp = regex(expr, regex::extended);
break;
case cpad::WILDCARD:
m_filter_expr = string(expr);
m_filter_regexp = regex(expr, regex::basic);
break;
}
}
cpad::Filter::~Filter()
{
}
cpad::Filter::Filter(cpad::Filter const& a_copy)
{
m_type = a_copy.m_type;
m_filter_expr = a_copy.m_filter_expr;
m_applyon = a_copy.m_applyon;
}
cpad::Filter&
cpad::Filter::operator = (cpad::Filter const &a_copy)
{
m_type = a_copy.m_type;
m_filter_expr = a_copy.m_filter_expr;
m_applyon = a_copy.m_applyon;
return *this;
}
enum cpad::FilterType
cpad::Filter::get_type()
{
return m_type;
}
const char *
cpad::Filter::get_expr()
{
return m_filter_expr.c_str();
}
string
cpad::Filter::get_applyon()
{
return (m_applyon);
}
void
cpad::Filter::set_applyon(string applyon)
{
m_applyon = applyon;
}