Add DRAFT stubs for Vehicle plugin
[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_serviceIdMatchFlagVec;                              
42                                 std::vector<std::string>  m_folderIdMatchFlagVec;
43                                 std::vector<std::string>  m_timestampMatchFlagVec;
44                                 std::vector<std::string>  m_fromMatchFlagVec;
45                                 std::vector<std::string>  m_toMatchFlagVec;
46                                 std::vector<std::string>  m_ccMatchFlagVec;
47                                 std::vector<std::string>  m_bccMatchFlagVec;
48                                 std::vector<std::string>  m_bodyMatchFlagVec;
49                                 std::vector<std::string>  m_isReadMatchFlagVec;
50                                 std::vector<std::string>  m_priorityMatchFlagVec;
51                                 std::vector<std::string>  m_subjectMatchFlagVec;
52                                 std::vector<std::string>  m_attachmentMatchFlagVec;
53
54                                 std::map<std::string, std::vector<std::string> > m_attributeAndMatchFlagsMap;
55
56                         public:
57                         MessageFilterValidator(Api::Tizen::PropertyStructArray properties);
58
59                                 virtual ~MessageFilterValidator();
60
61                                 // validate AttributeRangeFilter
62                                         virtual bool validateAttributeRange(std::string& attrName,
63                                                         Api::Tizen::AnyPtr& initialValue, Api::Tizen::AnyPtr& endValue, int depth=0);
64
65                                         virtual bool validateAttribute(std::string& attrName, Api::Tizen::MatchFlag& matchFlag,
66                                                         Api::Tizen::AnyPtr& matchValue, int depth=0);
67
68                         protected:
69                                         bool validateAttributeEach(std::string& attrName, Api::Tizen::MatchFlag& matchFlag, Api::Tizen::AnyPtr& value, int depth);
70
71                                 private :
72                                         void initMatchFlagVectors();
73                                         void initAttributeAndMatchFlagsMap();
74
75                                         bool vectorContains(std::vector<std::string>& vec, Api::Tizen::MatchFlag& value);
76
77                 };
78
79                 typedef DPL::SharedPtr<MessageFilterValidator> MessageFilterValidatorPtr;
80         }
81  }
82 }
83 #endif /* MESSAGEFILTERVALIDATOR_H_ */