Merge "[Power] Replaced usleep() with nanosleep()." into tizen_2.4
[platform/core/api/webapi-plugins.git] / src / content / content_filter.cc
1 /*
2  * Copyright (c) 2015 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 #include "content/content_filter.h"
18
19 #include <vector>
20
21 #include "common/converter.h"
22 #include "common/logger.h"
23
24 using common::AttributeMatchFlag;
25 using common::CompositeFilterType;
26 using common::ErrorCode;
27 using common::JsonCast;
28 using common::PlatformResult;
29
30 namespace extension {
31 namespace content {
32
33 namespace {
34
35 std::map<std::string, std::string> const attributeNameMap = {
36     {"id", "MEDIA_ID"},
37     {"type", "MEDIA_TYPE"},
38     {"mimeType", "MEDIA_MIME_TYPE"},
39     {"name", "MEDIA_DISPLAY_NAME"},
40     {"title", "MEDIA_TITLE"},
41     {"contentURI", "MEDIA_PATH"},
42     {"thumbnailURIs", "MEDIA_THUMBNAIL_PATH"},
43     {"description", "MEDIA_DESCRIPTION"},
44     {"rating", "MEDIA_RATING"},
45     {"createdDate", "MEDIA_ADDED_TIME"},
46     {"releaseDate", "MEDIA_DATETAKEN"},
47     {"modifiedDate", "MEDIA_MODIFIED_TIME"},
48     {"geolocation.latitude", "MEDIA_LATITUDE"},
49     {"geolocation.longitude", "MEDIA_LONGITUDE"},
50     {"duration", "MEDIA_DURATION"},
51     {"album", "MEDIA_ALBUM"},
52     {"artists", "MEDIA_ARTIST"},
53     {"width", "MEDIA_WIDTH"},
54     {"height", "MEDIA_HEIGHT"},
55     {"genres", "MEDIA_GENRE"},
56     {"size", "MEDIA_SIZE"},
57 };
58
59 std::string escapeValueString(const std::string& data) {
60   LoggerD("Enter");
61   std::string out;
62   // If string won't be resized, then it will be faster
63   out.reserve(data.size());
64   for (auto c : data) {
65     if (c == '\\')
66       out += "\\\\";
67     else if (c == '\"')
68       out += "\\\"";
69     else if (c == '\'')
70       out += "\\\'";
71     else if (c == '\n')
72       out += "\\\n";
73     else if (c == '\r')
74       out += "\\\r";
75     else
76       out += c;
77   }
78   return out;
79 }
80
81 }  // namespace
82
83 PlatformResult ContentFilter::MapField(const std::string& name,
84                                        std::string* result) {
85   LoggerD("Enter");
86   auto it = attributeNameMap.find(name);
87   if (it != attributeNameMap.end())
88     *result = it->second;
89   else
90   {
91     LoggerE("INVALID_VALUES_ERR");
92     return PlatformResult(ErrorCode::INVALID_VALUES_ERR);
93   }
94   return PlatformResult(ErrorCode::NO_ERROR);
95 }
96
97 PlatformResult ContentFilter::BuildQuery(const picojson::object& jsFilter,
98                                          std::string* queryToCall) {
99   LoggerD("Enter");
100   std::vector<std::vector<std::string> > partialqueries;
101   partialqueries.push_back(std::vector<std::string>());
102
103   visitor.SetOnAttributeFilter([&](const std::string& name,
104                                    AttributeMatchFlag match_flag,
105                                    const picojson::value& match_value) {
106     LoggerD("entered OnAttributeFilter");
107
108     PlatformResult result = PlatformResult(ErrorCode::NO_ERROR);
109
110     std::string query;
111     std::string matchValue;
112
113     result = MapField(name, &query);
114     if (!result)
115       return result;
116
117     if (AttributeMatchFlag::kExactly == match_flag ||
118         AttributeMatchFlag::kFullString == match_flag) {
119       query += " = ";
120     } else if (AttributeMatchFlag::kContains == match_flag ||
121                AttributeMatchFlag::kStartsWith == match_flag ||
122                AttributeMatchFlag::kEndsWith == match_flag) {
123       query += " LIKE ";
124     } else if (AttributeMatchFlag::kExists == match_flag) {
125       query += " IS NOT NULL ";
126     } else {
127       LoggerE("INVALID_VALUES_ERR");
128       return PlatformResult(ErrorCode::INVALID_VALUES_ERR);
129     }
130
131     if (AttributeMatchFlag::kExists != match_flag) {
132       query.append("\"");
133       matchValue = escapeValueString(JsonCast<std::string>(match_value));
134       if (name == "type") {
135         if (matchValue == "IMAGE") {
136           matchValue = "0";
137         } else if (matchValue == "VIDEO") {
138           matchValue = "1";
139         } else if (matchValue == "AUDIO") {
140           matchValue = "3";
141         } else {  // OTHER
142           matchValue = "4";
143         }
144       }
145       switch (match_flag) {
146         case AttributeMatchFlag::kStartsWith :
147           query += matchValue + "%";
148           break;
149         case AttributeMatchFlag::kEndsWith :
150           query += "%" + matchValue;
151           break;
152         case AttributeMatchFlag::kContains :
153           query += "%" + matchValue + "%";
154           break;
155         default :
156           query += matchValue;
157       }
158       query.append("\"");
159     }
160
161     partialqueries.back().push_back(query);
162
163     return result;
164   });
165
166   visitor.SetOnCompositeFilterBegin([&](CompositeFilterType type) {
167     LoggerD("entered OnCompositeFilterBegin");
168     partialqueries.push_back(std::vector<std::string>());
169     return PlatformResult(ErrorCode::NO_ERROR);
170   });
171
172   visitor.SetOnCompositeFilterEnd([&](CompositeFilterType calType) {
173     LoggerD("entered OnCompositeFilterEnd");
174     std::string finalQuery;
175     std::string separator;
176
177     if (CompositeFilterType::kUnion == calType)
178       separator = " OR ";
179     else
180       separator = " AND ";
181
182     if (partialqueries.back().empty()) {
183       partialqueries.pop_back();
184       return PlatformResult(ErrorCode::NO_ERROR);
185     }
186     if (partialqueries.back().size() != 1)
187       finalQuery.append("(");
188
189     for (unsigned long i = 0; i < partialqueries.back().size(); i++) {
190       finalQuery += partialqueries.back().at(i);
191       if (i != partialqueries.back().size() - 1) {
192         finalQuery += separator;
193       }
194     }
195
196     if (partialqueries.back().size() != 1)
197       finalQuery.append(")");
198     partialqueries.pop_back();
199     partialqueries.back().push_back(finalQuery);
200
201     return PlatformResult(ErrorCode::NO_ERROR);
202   });
203
204   visitor.SetOnAttributeRangeFilter([&](const std::string& name,
205                                         const picojson::value& initial_value,
206                                         const picojson::value& end_value) {
207     LoggerD("entered OnAttributeFilter");
208
209     PlatformResult result = PlatformResult(ErrorCode::NO_ERROR);
210     std::string query = "";
211     std::string paramName;
212     result = MapField(name, &paramName);
213     if (!result)
214       return result;
215
216     std::string initialValue = escapeValueString(JsonCast<std::string>(initial_value));
217     std::string endValue = escapeValueString(JsonCast<std::string>(end_value));
218     query += paramName;
219     query += " >= \"";
220     query += initialValue;
221     query += "\" AND ";
222     query += paramName;
223     query += " <= \"";
224     query += endValue;
225     query += "\"";
226     partialqueries.back().push_back(query);
227
228     return result;
229   });
230
231   if (!visitor.Visit(jsFilter)) {
232     LoggerE("INVALID_VALUES_ERR");
233     return PlatformResult(ErrorCode::INVALID_VALUES_ERR);
234   }
235
236   if (partialqueries.empty()) {
237     LoggerE("Filter parsing error!");
238     return PlatformResult(ErrorCode::SYNTAX_ERR);
239   }
240   if (partialqueries.back().empty()) {
241     LoggerD("Resolved to empty string!");
242     *queryToCall = "";
243     return PlatformResult(ErrorCode::NO_ERROR);
244   }
245
246   *queryToCall = partialqueries.back().front();
247   return PlatformResult(ErrorCode::NO_ERROR);
248 }
249
250 }  // namespace content
251 }  // namespace extension