Imported Upstream version 1.0.1
[platform/upstream/iotivity.git] / service / simulator / src / client-controller / auto_request_gen_mngr.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 /**
22  * @file auto_request_gen_mngr.h
23  *
24  * @brief This file provides class for managing auto request generation sessions.
25  *
26  */
27
28 #ifndef AUTO_REQUEST_GEN_MNGR_H_
29 #define AUTO_REQUEST_GEN_MNGR_H_
30
31 #include "auto_request_gen.h"
32
33 class AutoRequestGenMngr
34 {
35     public:
36         AutoRequestGenMngr() : m_id(0) {};
37
38         int startOnGET(RequestSenderSP requestSender,
39                        const std::map<std::string, std::vector<std::string>> &queryParams,
40                        AutoRequestGeneration::ProgressStateCallback callback);
41
42         int startOnPUT(RequestSenderSP requestSender,
43                        const std::map<std::string, std::vector<std::string>> &queryParams,
44                        SimulatorResourceModelSP resModel,
45                        AutoRequestGeneration::ProgressStateCallback callback);
46
47         int startOnPOST(RequestSenderSP requestSender,
48                         const std::map<std::string, std::vector<std::string>> &queryParams,
49                         SimulatorResourceModelSP resModel,
50                         AutoRequestGeneration::ProgressStateCallback callback);
51
52         void stop(int id);
53
54     private:
55         void onProgressChange(int sessionId, OperationState state,
56                               AutoRequestGeneration::ProgressStateCallback clientCallback);
57         bool isValid(int id);
58         bool isInProgress(RequestType type);
59         void remove(int id);
60
61         std::mutex m_lock;
62         std::map<int, std::shared_ptr<AutoRequestGeneration>> m_requestGenList;
63         int m_id;
64 };
65
66 typedef std::shared_ptr<AutoRequestGenMngr> AutoRequestGenMngrSP;
67
68 #endif