Merge branch 'upstream' into tizen
[platform/upstream/iotivity.git] / service / simulator / src / server / resource_update_automation_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 #ifndef SIMULATOR_RESOURCE_UPDATE_AUTOMATION_MNGR_H_
22 #define SIMULATOR_RESOURCE_UPDATE_AUTOMATION_MNGR_H_
23
24 #include "resource_update_automation.h"
25 #include <unordered_map>
26
27 class SimulatorSingleResourceImpl;
28 class UpdateAutomationMngr
29 {
30     public:
31         UpdateAutomationMngr() : m_id(0) {}
32
33         int startResourceAutomation(std::shared_ptr<SimulatorSingleResourceImpl> resource,
34                                     AutoUpdateType type, int interval,
35                                     const SimulatorSingleResource::AutoUpdateCompleteCallback &callback);
36
37         int startAttributeAutomation(std::shared_ptr<SimulatorSingleResourceImpl> resource,
38                                      const std::string &attrName, AutoUpdateType type, int interval,
39                                      const SimulatorSingleResource::AutoUpdateCompleteCallback &callback);
40
41         std::vector<int> getResourceAutomationIds();
42
43         std::vector<int> getAttributeAutomationIds();
44
45         void stop(int updationID);
46
47         void stopAll();
48
49     private:
50         void automationCompleted(int id);
51
52         int m_id;
53         std::mutex m_lock;
54         std::unordered_map<int, ResourceUpdateAutomationSP> m_resourceUpdationList;
55         std::unordered_map<int, AttributeUpdateAutomationSP> m_attrUpdationList;
56 };
57
58 #endif