ActiveObjectManager.hpp

Go to the documentation of this file.
00001 /*
00002 Copyright 2007, 2008, 2009, 2010, 2011 Instituto de Sistemas e Robotica, Instituto Superior Tecnico
00003 
00004 This file is part of MeRMaID.
00005 
00006 MeRMaID is free software: you can redistribute it and/or modify
00007 it under the terms of the GNU Lesser General Public License as published by
00008 the Free Software Foundation, either version 3 of the License, or
00009 (at your option) any later version.
00010 
00011 MeRMaID is distributed in the hope that it will be useful,
00012 but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 GNU Lesser General Public License for more details.
00015 
00016 You should have received a copy of the GNU Lesser General Public License
00017 along with MeRMaID.  If not, see <http://www.gnu.org/licenses/>.
00018 */
00019 
00020 
00021 
00022 /**
00023  * @Filename ActiveObjectManager.hpp
00024  * @Description ActiveObjectManager declaration
00025  * @Status Work in Progress
00026  * @Version $Id: ActiveObjectManager.hpp 1 2011-03-04 18:13:18Z jreis $
00027  * @Maintainer
00028  */
00029 
00030 #ifndef __ACTIVEOBJECT_ACTIVEOBJECTMANAGER_H
00031 #define __ACTIVEOBJECT_ACTIVEOBJECTMANAGER_H
00032 
00033 #include "ActiveObjectState.hpp"
00034 
00035 #include <map>
00036 #include <set>
00037 #include <vector>
00038 #include <boost/shared_ptr.hpp>
00039 
00040 namespace mermaid
00041 {
00042   namespace support
00043   {
00044     namespace activeobject
00045     {
00046       using std::map;
00047       using std::set;
00048       using std::vector;
00049       using boost::shared_ptr;
00050       
00051       class ActiveObject;
00052       
00053       /**
00054       * @Class ActiveObjectManager ActiveObjectManager.hpp "ActiveObjectManager.hpp"
00055       * @Description ActiveObject manager
00056       * @Author Marco Barbosa
00057       */
00058       class ActiveObjectManager
00059       {
00060           friend class ActiveObject;
00061           
00062           
00063         public:
00064           virtual shared_ptr<ActiveObject> createActiveObject() = 0;
00065           
00066           virtual ~ActiveObjectManager();
00067           
00068           int getNumberOfActiveObjects();
00069           
00070           virtual void stopAllActiveObjects() = 0;
00071           
00072           
00073         protected:
00074           /**
00075           * @Description Default constructor.
00076           * @Author Marco Barbosa
00077           */
00078           ActiveObjectManager();
00079           
00080           
00081           virtual void addActiveObject (shared_ptr<ActiveObject> ao);
00082           
00083           virtual void notifyActiveObjectStateChange (ActiveObject * ao, ActiveObjectState previousState);
00084           
00085           virtual vector<shared_ptr<ActiveObject> > getActiveObjectVector();
00086           
00087           virtual set<shared_ptr<ActiveObject> > getActiveObjectStateSet (ActiveObjectState s);
00088           
00089           
00090         private:
00091           vector<shared_ptr<ActiveObject> > aoVector_;
00092           map<ActiveObject*, shared_ptr<ActiveObject> > smartPointerMap;
00093           
00094           map<ActiveObjectState, set<shared_ptr<ActiveObject> > > stateMap;
00095       }; // ActiveObjectManager
00096     } // namespace activeobject
00097   } // namespace support
00098 } // namespace mermaid
00099 
00100 #include <ActiveObject.hpp>
00101 
00102 #endif // __ACTIVEOBJECT_ACTIVEOBJECTMANAGER_H
Generated on Fri Mar 4 22:14:58 2011 for MeRMaID::support by  doxygen 1.6.3