Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_wearable / Commons / Regex.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 #include <pcrecpp.h>
17 #include "Regex.h"
18
19 namespace WrtDeviceApis {
20 namespace Commons {
21 bool validate(const std::string &pattern,
22               const std::string &value,
23               unsigned int options)
24 {
25     pcrecpp::RE_Options pcreOpt;
26     if (options & VALIDATE_MATCH_CASELESS) {
27         pcreOpt.set_caseless(true);
28     }
29     pcrecpp::RE re(pattern, pcreOpt);
30     if (options & VALIDATE_MATCH_FULL) {
31         return re.FullMatch(value);
32     }
33     return re.PartialMatch(value);
34 }
35
36 std::string filter(const std::string &pattern,
37                    const std::string &value)
38 {
39     pcrecpp::RE re(pattern);
40     std::string ret = static_cast<std::string>(value);
41     re.GlobalReplace("", &ret);
42     return ret;
43 }
44
45 std::string toUpper(const std::string &value)
46 {
47     pcrecpp::RE re(LOWER_P);
48     std::string ret = static_cast<std::string>(value);
49     re.GlobalReplace(UPPER_P, &ret);
50     return ret;
51 }
52 }
53 } // WrtDeviceApisCommon