00001 /********************************************************************* 00002 * 00003 * Software License Agreement (BSD License) 00004 * 00005 * Copyright (c) 2018, University of Luxembourg 00006 * All rights reserved. 00007 * 00008 * Redistribution and use in source and binary forms, with or without 00009 * modification, are permitted provided that the following conditions 00010 * are met: 00011 * 00012 * * Redistributions of source code must retain the above copyright 00013 * notice, this list of conditions and the following disclaimer. 00014 * * Redistributions in binary form must reproduce the above 00015 * copyright notice, this list of conditions and the following 00016 * disclaimer in the documentation and/or other materials provided 00017 * with the distribution. 00018 * * Neither the name of University of Luxembourg nor the names of its 00019 * contributors may be used to endorse or promote products derived 00020 * from this software without specific prior written permission. 00021 * 00022 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00023 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00024 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00025 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00026 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00027 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00028 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00029 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00030 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00031 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00032 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00033 * POSSIBILITY OF SUCH DAMAGE. 00034 * 00035 * Author: Maciej Zurad 00036 *********************************************************************/ 00044 #ifndef ROBOT_ACTIVITY_RESOURCE_RESOURCE_MANAGER_H 00045 #define ROBOT_ACTIVITY_RESOURCE_RESOURCE_MANAGER_H 00046 00047 #include <ros/ros.h> 00048 #include <ros/console.h> 00049 00050 #include <robot_activity/resource/managed_subscriber.h> 00051 #include <robot_activity/resource/managed_serviceserver.h> 00052 00053 #include <vector> 00054 00055 namespace robot_activity 00056 { 00057 namespace resource 00058 { 00059 00069 template <class Resource> 00070 class ResourceManager 00071 { 00072 public: 00076 ResourceManager() : resources_() {} 00077 00081 ~ResourceManager() {} 00082 00094 template<typename... Args> 00095 typename Resource::SharedPtr add(Args&& ...args) 00096 { 00097 auto resource = std::make_shared<Resource>(std::forward<Args>(args)...); 00098 resources_.push_back(resource); 00099 return resource; 00100 } 00101 00107 void acquireAll(const ros::NodeHandlePtr& node_handle); 00108 00112 void releaseAll(); 00113 00117 void pauseAll(); 00118 00122 void resumeAll(); 00123 00124 private: 00125 std::vector<typename Resource::SharedPtr> resources_; 00126 }; 00127 00133 template <class T> 00134 class RMWrapper : public ResourceManager<T> {}; 00135 00140 template<> 00141 class RMWrapper<ManagedSubscriber> : public ResourceManager<ManagedSubscriber> 00142 { 00143 public: 00144 using ResourceManager<ManagedSubscriber>::add; 00145 00158 template<typename... Args> 00159 ManagedSubscriber::SharedPtr subscribe(Args&& ...args) 00160 { 00161 return add(std::forward<Args>(args)...); 00162 } 00163 }; 00164 00169 template<> 00170 class RMWrapper<ManagedServiceServer> : public ResourceManager<ManagedServiceServer> 00171 { 00172 public: 00173 using ResourceManager<ManagedServiceServer>::add; 00174 00187 template<typename... Args> 00188 ManagedServiceServer::SharedPtr advertiseService(Args&& ...args) 00189 { 00190 return add(std::forward<Args>(args)...); 00191 } 00192 }; 00193 00194 typedef RMWrapper<ManagedSubscriber> SubscriberManager; 00195 typedef RMWrapper<ManagedServiceServer> ServiceServerManager; 00196 00197 } // namespace resource 00198 } // namespace robot_activity 00199 00200 #endif // ROBOT_ACTIVITY_RESOURCE_RESOURCE_MANAGER_H