User Manual, Developers Guide and API Documentation

MultiTypeFactory.hpp

Go to the documentation of this file.
00001 /*******************************************************************************
00002  * This file is part of openWNS (open Wireless Network Simulator)
00003  * _____________________________________________________________________________
00004  *
00005  * Copyright (C) 2004-2007
00006  * Chair of Communication Networks (ComNets)
00007  * Kopernikusstr. 16, D-52074 Aachen, Germany
00008  * phone: ++49-241-80-27910,
00009  * fax: ++49-241-80-22242
00010  * email: info@openwns.org
00011  * www: http://www.openwns.org
00012  * _____________________________________________________________________________
00013  *
00014  * openWNS is free software; you can redistribute it and/or modify it under the
00015  * terms of the GNU Lesser General Public License version 2 as published by the
00016  * Free Software Foundation;
00017  *
00018  * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY
00019  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
00020  * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
00021  * details.
00022  *
00023  * You should have received a copy of the GNU Lesser General Public License
00024  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00025  *
00026  ******************************************************************************/
00027 
00028 #ifndef WNS_MODULE_MULTITYPEFACTORY_HPP
00029 #define WNS_MODULE_MULTITYPEFACTORY_HPP
00030 
00031 #include <WNS/Chamaeleon.hpp>
00032 
00033 namespace wns { namespace module {
00038     template<typename I>
00039     class MultiTypeFactory
00040     {
00041     public:
00042         typedef wns::ChamaeleonBase::BadCast BadCast;
00043         MultiTypeFactory()
00044         {}
00045 
00046         virtual
00047         ~MultiTypeFactory()
00048         {}
00049 
00050         template <typename T>
00051         T
00052         get(const I& i)
00053         {
00054             ChamaeleonBase* v = create(i);
00055             if(!v) {
00056                 return NULL;
00057             }
00058 
00059             Chamaeleon<T>* ct = 0;
00060             T t = 0;
00061             try {
00062                 ct = v->template downCast<T>();
00063                 t = ct->unHide();
00064                 delete ct;
00065             } catch(...) {
00066                 if(ct)
00067                     delete ct;
00068                     // FIXME(msg): we can free the chamaeleon, but not the
00069                     // obj hidden within the chamaeleon.
00070                 delete v;
00071 
00072                 throw;
00073             }
00074 
00075             return t;
00076         }
00077     protected:
00078         virtual ChamaeleonBase*
00079         create(const I& i) =0;
00080     };
00081 }
00082 }
00083 #endif // NOT defined WNS_MODULE_MULTITYPEFACTORY_HPP

Generated on Fri May 25 03:31:48 2012 for openWNS by  doxygen 1.5.5