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