tizen 2.3 release
[framework/web/wearable/wrt-commons.git] / modules / test / include / dpl / test / value_separated_policies.h
1 /*
2  * Copyright (c) 2013 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  * @file        value_separated_policies.h
18  * @author      Tomasz Iwanek (t.iwanek@samsung.com)
19  * @brief       Example policy classes for some value seperated files/data
20  */
21
22 #ifndef VALUE_SEPARATED_POLICIES_H
23 #define VALUE_SEPARATED_POLICIES_H
24
25 #include<string>
26 #include<vector>
27 #include<memory>
28
29 namespace DPL {
30
31 struct CSVTokenizerPolicy
32 {
33     static std::string GetSeperators();      //cells in line are separated by given characters
34     static bool SkipEmpty();                 //if cell is empty, shoudl I skip?
35     static void PrepareValue(std::string &); //transform each value
36     static bool TryAgainAtEnd(int);          //read is nonblocking so dat may not be yet available, should I retry?
37 };
38
39 struct CSVParserPolicy
40 {
41     static bool SkipLine(const std::vector<std::string> & );                                  //should I skip whole readline?
42     static bool Validate(std::shared_ptr<std::vector<std::vector<std::string> > > & result);  //validate and adjust output data
43 };
44
45 }
46
47 #endif