00001 // $Id: EventManager.cc 1773 2011-03-21 16:14:24Z tho $ 00002 // 00003 // Copyright (C) 2007 00004 // Fraunhofer (FOKUS) 00005 // Competence Center NETwork research (NET), St. Augustin, GERMANY 00006 // Stefan Bund <g0dil@berlios.de> 00007 // 00008 // This program is free software; you can redistribute it and/or modify 00009 // it under the terms of the GNU General Public License as published by 00010 // the Free Software Foundation; either version 2 of the License, or 00011 // (at your option) any later version. 00012 // 00013 // This program is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 // GNU General Public License for more details. 00017 // 00018 // You should have received a copy of the GNU General Public License 00019 // along with this program; if not, write to the 00020 // Free Software Foundation, Inc., 00021 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 00026 #include "EventManager.hh" 00027 //#include "EventManager.ih" 00028 00029 // Custom includes 00030 #include <boost/lambda/lambda.hpp> 00031 #include <boost/lambda/bind.hpp> 00032 00033 //#include "EventManager.mpp" 00034 #define prefix_ 00035 //-///////////////////////////////////////////////////////////////////////////////////////////////// 00036 00037 //-///////////////////////////////////////////////////////////////////////////////////////////////// 00038 // senf::ppi::EventManager 00039 00040 //-///////////////////////////////////////////////////////////////////////////////////////////////// 00041 // private members 00042 00043 prefix_ void senf::ppi::EventManager::destroyModule(module::Module & module) 00044 { 00045 using boost::lambda::_1; 00046 namespace l = boost::lambda; 00047 00048 registrations_.erase_if(l::bind(&detail::EventBindingBase::module_,_1) == &module); 00049 } 00050 00051 prefix_ void senf::ppi::EventManager::destroyEvent(EventDescriptor & event) 00052 { 00053 using boost::lambda::_1; 00054 namespace l = boost::lambda; 00055 00056 SENF_ASSERT( 00057 std::find_if(registrations_.begin(), registrations_.end(), 00058 l::bind(&detail::EventBindingBase::descriptor_,_1) == &event) 00059 == registrations_.end(), 00060 "Internal failure: registrations still active while destroying event." 00061 "Maybe you've put the SENF_PPI_MODULE macro in a superclass instead of" 00062 "in the subclass?"); 00063 } 00064 00065 //-///////////////////////////////////////////////////////////////////////////////////////////////// 00066 #undef prefix_ 00067 //#include "EventManager.mpp" 00068 00069 00070 // Local Variables: 00071 // mode: c++ 00072 // fill-column: 100 00073 // comment-column: 40 00074 // c-file-style: "senf" 00075 // indent-tabs-mode: nil 00076 // ispell-local-dictionary: "american" 00077 // compile-command: "scons -u test" 00078 // End: