-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubjectStrategy.h
More file actions
76 lines (65 loc) · 2.17 KB
/
Copy pathSubjectStrategy.h
File metadata and controls
76 lines (65 loc) · 2.17 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
#pragma once
#include"RxObserver/IncludeExtLibs.h"
#include "RxObserver/ObserverEvent.h"
#include"RxObserver/EventFilterCriterion.h"
#include"RxObserver/Export.h"
namespace BaseLib { namespace Strategy
{
/**
* @brief The FilterEventOnContent class
*/
template <typename EventArg, typename EventFilterArg>
class FilterEventOnContent
: public Templates::StrategyConst2<bool, Concurrent::Event::Ptr, Concurrent::FilterList>
, public StaticSingleton<FilterEventOnContent<EventArg, EventFilterArg>>
{
public:
virtual bool Perform(
const Concurrent::Event::Ptr &event,
const Concurrent::FilterList &filters) const
{
typename EventArg::Ptr eventArg = std::dynamic_pointer_cast< EventArg > (event->Data());
if(!eventArg)
{
IWARNING() << "Could not cast event data! Filtering out";
return true;
}
bool isFiltered = false;
for(Concurrent::FilterCriterion::Ptr filter : filters)
{
typename EventFilterArg::Ptr filterType = std::dynamic_pointer_cast< EventFilterArg >(filter);
if(!filterType)
{
IWARNING() << "Could not cast event filter. Ignoring filter.";
continue;
}
isFiltered = filterType->Filter(event, eventArg);
if(isFiltered) {
IDEBUG() << "Filtered out!";
break;
}
}
return isFiltered;
}
};
/**
* @brief The FilterEventOnTime class
*/
class DLL_STATE FilterEventsOnTime
: public Templates::Strategy2<Concurrent::Events, Concurrent::Events &, Policy::TimeBasedFilter>
, public StaticSingleton<FilterEventsOnTime>
{
public:
virtual Concurrent::Events Perform(Concurrent::Events &, Policy::TimeBasedFilter);
};
/**
* @brief The FilterEventOnTime class
*/
class DLL_STATE FilterObserverEventsOnTime
: public Templates::Strategy2<Concurrent::ObserverEvents, Concurrent::ObserverEvents &, Policy::TimeBasedFilter>
, public StaticSingleton<FilterObserverEventsOnTime>
{
public:
virtual Concurrent::ObserverEvents Perform(Concurrent::ObserverEvents &, Policy::TimeBasedFilter);
};
}}