merge wrt-plugins-tizen_0.2.0-4
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Messaging / MessageFilterValidator.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16 /*
17  * MessageFilterValidator.h
18  *
19  *  Created on: 2011. 10. 31.
20  *      Author: sangtai
21  */
22
23 #ifndef MESSAGEFILTERVALIDATOR_H_
24 #define MESSAGEFILTERVALIDATOR_H_
25
26 #include <API/Filter/FilterValidator.h>
27 #include <vector>
28
29 namespace TizenApis {
30
31         namespace Platform {
32
33                 namespace Messaging {
34
35                 class MessageFilterValidator: public Api::Tizen::FilterValidator {
36                         private:
37                                 bool m_isTypeSetted;
38
39                                 std::vector<std::string>  m_typeMatchFlagVec;
40                                 std::vector<std::string>  m_idMatchFlagVec;
41                                 std::vector<std::string>  m_folderIdMatchFlagVec;
42                                 std::vector<std::string>  m_timestampMatchFlagVec;
43                                 std::vector<std::string>  m_fromMatchFlagVec;
44                                 std::vector<std::string>  m_toMatchFlagVec;
45                                 std::vector<std::string>  m_ccMatchFlagVec;
46                                 std::vector<std::string>  m_bccMatchFlagVec;
47                                 std::vector<std::string>  m_bodyMatchFlagVec;
48                                 std::vector<std::string>  m_isReadMatchFlagVec;
49                                 std::vector<std::string>  m_priorityMatchFlagVec;
50                                 std::vector<std::string>  m_subjectMatchFlagVec;
51                                 std::vector<std::string>  m_attachmentMatchFlagVec;
52
53                                 std::map<std::string, std::vector<std::string> > m_attributeAndMatchFlagsMap;
54
55                         public:
56                         MessageFilterValidator(Api::Tizen::PropertyStructArray properties);
57
58                                 virtual ~MessageFilterValidator();
59
60                                 // validate AttributeRangeFilter
61                                         virtual bool validateAttributeRange(std::string& attrName,
62                                                         Api::Tizen::AnyPtr& initialValue, Api::Tizen::AnyPtr& endValue, int depth=0);
63
64                                         virtual bool validateAttribute(std::string& attrName, Api::Tizen::MatchFlag& matchFlag,
65                                                         Api::Tizen::AnyPtr& matchValue, int depth=0);
66
67                         protected:
68                                         bool validateAttributeEach(std::string& attrName, Api::Tizen::MatchFlag& matchFlag, Api::Tizen::AnyPtr& value, int depth);
69
70                                 private :
71                                         void initMatchFlagVectors();
72                                         void initAttributeAndMatchFlagsMap();
73
74                                         bool vectorContains(std::vector<std::string>& vec, Api::Tizen::MatchFlag& value);
75
76                 };
77
78                 typedef DPL::SharedPtr<MessageFilterValidator> MessageFilterValidatorPtr;
79         }
80  }
81 }
82 #endif /* MESSAGEFILTERVALIDATOR_H_ */