![]() |
|
|
00001 /*************************************************************************** 00002 * inspectorJ - java profiler * 00003 * Copyright (C) 2007 by James May 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program 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 General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 00027 #ifndef INVOKER_THREAD_H 00028 #define INVOKER_THREAD_H 00029 00030 #include <QThread> 00031 #include "inspectorj/jdwp/jdwppacket.h" 00032 00033 using inspectorj::jdwp::JDWPPacket; 00034 00035 namespace inspectorj { 00036 namespace client { 00037 00047 template <typename TClass> 00048 class InvokerThread : public QThread 00049 { 00050 private: 00052 TClass* clsObject; 00053 00055 void (TClass::*callbackFpt)(JDWPPacket&); 00056 00058 JDWPPacket *packet; 00059 00060 protected: 00064 void run() 00065 { 00066 (*clsObject.*callbackFpt)(*packet); 00067 } 00068 00069 public: 00073 InvokerThread (TClass* cls, void (TClass::*fpt)(JDWPPacket&), JDWPPacket &pckt) 00074 : clsObject(cls), callbackFpt(fpt), packet(pckt.copy()) 00075 { 00076 00077 }; 00078 00082 ~InvokerThread() 00083 { 00084 delete packet; 00085 packet = 0; 00086 } 00087 }; 00088 00089 } // end namespace client 00090 } // end namespace inspectorj 00091 00092 #endif //INVOKER_THREAD_H