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_MICROTHREAD_H 00020 #define LIBMUTH_MICROTHREAD_H 00021 00022 #include "blockingqueue.h" 00023 #include "channel_decls.h" 00024 #include "coroutine_decls.h" 00025 00026 class Runner; 00027 class Callback; 00028 00032 class Microthread : public NewCoroutine { 00033 private: 00034 Runner *current_runner; 00035 friend class Runner; 00036 00037 Callback *callback; 00038 bool runcallback(); 00039 protected: 00045 BlockingQueue<Microthread*> &queue; 00050 Microthread(BlockingQueue<Microthread*> *q=NULL); 00054 void start(); 00055 public: 00060 ChannelManager channelmanager; 00065 virtual void run()=0; 00066 virtual ~Microthread() {} 00072 void scheduleme(); 00078 void delayme(); 00079 using Coroutine::swapto; 00090 void swapto(Microthread &o, bool acquired=false); 00091 /* TODO: a better name is needed */ 00099 void setcallback(Callback *cb); 00100 }; 00101 00102 inline void Microthread::scheduleme() { 00103 this->queue.put(this); 00104 } 00105 00106 #endif