00001 /* 00002 * Copyright (C) 2006 Helmut Grohne 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 */ 00018 00019 #ifndef LIBMUTH_CALLBACK_DECLS_H 00020 #define LIBMUTH_CALLBACK_DECLS_H 00021 00022 #include <list> 00023 #include "microthread.h" 00024 #include "channel_decls.h" 00025 #include "suspender_decls.h" 00026 00032 class Callback { 00033 public: 00034 virtual ~Callback(); 00039 virtual void run()=0; 00046 virtual bool iscompleted(); 00047 }; 00048 00052 class ScheduleCallback : public Callback { 00053 private: 00054 const WeakReference<Microthread> microthread; 00055 public: 00059 ScheduleCallback(Microthread &m); 00060 void run(); 00061 }; 00062 00063 00067 template<class T> class ChannelCallback : public Callback { 00068 private: 00069 Channel<T> &channel; 00070 T value; 00071 public: 00078 ChannelCallback(Channel<T> &c, const T &v); 00079 void run(); 00080 }; 00081 00087 template<class T> class SuspendCallback : public Callback { 00088 private: 00089 Reference<Suspender<T> > suspender; 00090 T value; 00091 public: 00098 SuspendCallback(Suspender<T> &s, const T &v); 00099 void run(); 00103 bool iscompleted(); 00104 }; 00105 00109 class CallbackChain : public Callback { 00110 private: 00111 std::list<Callback*> callbacks; 00112 public: 00116 CallbackChain(); 00124 CallbackChain(Callback *cb); 00131 void add(Callback *cb); 00132 void run(); 00133 ~CallbackChain(); 00134 }; 00135 00139 template<class T> class ExceptionCallback : public Callback { 00140 private: 00141 T exception; 00142 public: 00147 ExceptionCallback(T ex); 00148 void run(); 00149 }; 00150 00151 #endif