Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Filter / FilterValidator.cpp
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 /**
18  * @file       IFilterTracer.cpp
19  * @author     Kisub Song (kisubs.song@samsung.com)
20  * @version    0.1
21  * @brief
22  */
23
24 #include <algorithm>
25 #include "FilterValidator.h"
26
27 namespace TizenApis {
28 namespace Api {
29 namespace Tizen {
30
31 using namespace std;
32
33 FilterValidator::FilterValidator(PropertyStructArray properties)
34 {
35         int i;
36         for(i=0; properties[i].attributeName != 0 ; i++)
37                 m_properties[properties[i].attributeName] =
38                                 PropertyPtr(new Property(properties[i].type));
39 }
40
41 FilterValidator::~FilterValidator()
42 {
43 }
44
45 bool FilterValidator::validateAttribute(std::string& attrName,
46                 MatchFlag& matchFlag, AnyArrayPtr& values, int depth)
47 {
48         if(m_properties[attrName] == NULL)
49                 return false;
50
51         PropertyPtr prop = m_properties[attrName];
52
53         if(values != NULL)
54         {
55                 AnyArray::iterator arrayIter;
56                 for(arrayIter = values->begin(); arrayIter != values->end(); arrayIter++)
57                         if(!(prop->type & (*arrayIter)->getType()))
58                                 return false;
59         }
60
61         return true;
62 }
63
64 bool FilterValidator::validateAttributeRange(std::string& attrName,
65                 AnyPtr& initialValue, AnyPtr& endValue, int depth)
66 {
67         if(m_properties[attrName] == NULL)
68                 return false;
69
70         PropertyPtr prop = m_properties[attrName];
71
72         if(initialValue == NULL && endValue == NULL)
73                 return false;
74
75         if(prop->type != initialValue->getType())
76                 return false;
77
78         if(prop->type != endValue->getType())
79                 return false;
80
81         return true;
82 }
83
84 bool FilterValidator::validateComposite(int depth)
85 {
86         return true;
87 }
88
89 } // Tizen
90 } // Api
91 } // TizenApis