00001 //------------------------------------------------------------------------------ 00002 // Copyright (c) 2012 by European Organization for Nuclear Research (CERN) 00003 // Author: Lukasz Janyst <ljanyst@cern.ch> 00004 //------------------------------------------------------------------------------ 00005 // XRootD is free software: you can redistribute it and/or modify 00006 // it under the terms of the GNU Lesser General Public License as published by 00007 // the Free Software Foundation, either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // XRootD is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public License 00016 // along with XRootD. If not, see <http://www.gnu.org/licenses/>. 00017 //------------------------------------------------------------------------------ 00018 00019 #ifndef __XRD_CL_CHANNEL_HANDLER_LIST_HH__ 00020 #define __XRD_CL_CHANNEL_HANDLER_LIST_HH__ 00021 00022 #include <list> 00023 #include <utility> 00024 #include "XrdCl/XrdClPostMasterInterfaces.hh" 00025 #include "XrdCl/XrdClStatus.hh" 00026 #include <XrdSys/XrdSysPthread.hh> 00027 00028 namespace XrdCl 00029 { 00030 //---------------------------------------------------------------------------- 00032 //---------------------------------------------------------------------------- 00033 class ChannelHandlerList 00034 { 00035 public: 00036 //------------------------------------------------------------------------ 00038 //------------------------------------------------------------------------ 00039 void AddHandler( ChannelEventHandler *handler ); 00040 00041 //------------------------------------------------------------------------ 00043 //------------------------------------------------------------------------ 00044 void RemoveHandler( ChannelEventHandler *handler ); 00045 00046 //------------------------------------------------------------------------ 00048 //------------------------------------------------------------------------ 00049 void ReportEvent( ChannelEventHandler::ChannelEvent event, 00050 Status status ); 00051 00052 private: 00053 std::list<ChannelEventHandler*> pHandlers; 00054 XrdSysMutex pMutex; 00055 }; 00056 } 00057 00058 #endif // __XRD_CL_CHANNEL_HANDLER_LIST_HH__