Update change log and spec for wrt-plugins-tizen_0.4.46
[platform/framework/web/wrt-plugins-tizen.git] / src / Callhistory / CallHistoryFilter.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef TIZENAPIS_PLATFORM_CALLHISTORY_FILTER_H_
19 #define TIZENAPIS_PLATFORM_CALLHISTORY_FILTER_H_
20
21 #include <string>
22 #include <stack>
23 #include <dpl/shared_ptr.h>
24 #include "time.h"
25
26 #include "IFilterVisitor.h"
27 #include "CallHistoryEntryProperties.h"
28 #include "CallHistoryDefine.h"
29 #include <contacts.h>
30
31 namespace DeviceAPI {
32 namespace CallHistory {
33
34 class CallHistoryFilter: public DeviceAPI::Tizen::IFilterVisitor
35 {
36 private:
37         std::stack<contacts_filter_h> m_filterStack;
38
39 public:
40         CallHistoryFilter(contacts_filter_h filter);
41         ~CallHistoryFilter();
42
43         void visitPreComposite(DeviceAPI::Tizen::FilterType& type, int depth);
44
45         void visitInComposite(DeviceAPI::Tizen::FilterType& type, int depth);
46
47         void visitPostComposite(DeviceAPI::Tizen::FilterType& type, int depth);
48
49         void visitAttribute(std::string& attrName,
50                         DeviceAPI::Tizen::MatchFlag& matchFlag,
51                         DeviceAPI::Tizen::AnyPtr& matchValue,
52                         int depth);
53
54         void visitAttributeRange(std::string& attrName,
55                         DeviceAPI::Tizen::AnyPtr& initialValue,
56                         DeviceAPI::Tizen::AnyPtr& endValue,
57                         int depth);
58
59         contacts_filter_h getResult() const;
60 };
61
62 typedef DPL::SharedPtr<CallHistoryFilter> CallHistoryFilterPtr;
63
64 }
65 }
66 #endif