Imported Upstream version 1.0.1
[platform/upstream/iotivity.git] / service / simulator / src / client / query_param_generator.h
1 /******************************************************************
2  *
3  * Copyright 2015 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 #ifndef QUERY_PARAM_GENERATOR_H_
22 #define QUERY_PARAM_GENERATOR_H_
23
24 #include <string>
25 #include <map>
26 #include <vector>
27
28 class QPGenerator
29 {
30     public:
31         typedef struct
32         {
33             std::string key;
34             std::vector<std::string> values;
35             std::size_t index;
36         } QPDetail;
37
38         QPGenerator() = default;
39         QPGenerator(const std::map<std::string, std::vector<std::string>> &queryParams);
40         bool hasNext();
41         std::map<std::string, std::string> next();
42
43     private:
44         std::vector<QPDetail> m_qpDetails;
45 };
46
47 #endif