ij-16.png   inspectorJ -- JavaTM Profiler
sf project site browse source checkout source
SourceForge.net Logo



src/inspectorj/agent/agentpackethandler.h

Go to the documentation of this file.
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 INSPECTORJ_AGENT_AGENTPACKETHANDLER_H
00028 #define INSPECTORJ_AGENT_AGENTPACKETHANDLER_H
00029     
00030 #include "inspectorj/agent/agentsocket.h"  
00031 #include "inspectorj/agent/commandset/virtualmachinecmdset.h"
00032 #include "inspectorj/agent/commandset/referencetypecmdset.h"    
00033 #include "inspectorj/agent/commandset/bytecodecmdset.h"  
00034 #include <QtAlgorithms>
00035 
00036 
00037 using namespace inspectorj::agent::commandset;
00038 using namespace inspectorj::jdwp;        
00039 
00040 namespace inspectorj {
00041 namespace agent {
00042 
00051 class AgentPacketHandler{
00052 public:
00053     AgentPacketHandler(JavaVM *vm, JNIEnv *env, jvmtiEnv *jvmti, AgentSocket *socket = 0);
00054 
00055     ~AgentPacketHandler();
00056     
00057     void setAgentSocket(AgentSocket *&);
00058     JDWPCommandSet* getCommandSet(jbyte cmd);
00059     JDWPReply* getReply();
00060     void createCommandSets();
00061     void attachCurrentThreadToVM();
00062     void processCommand(JDWPCommand *cmd);   
00063     
00064     private:
00065         JavaVM *vm;        
00066         JNIEnv *env;
00067         jvmtiEnv *jvmti;
00068         AgentSocket *socket;
00069         void writeReply(JDWPReply*);
00070       
00071 
00072         /* Command Sets */
00073         VirtualMachineCmdSet *vmCmdSet;
00074         ReferenceTypeCmdSet *refTypeCmdSet;
00075         BytecodeCmdSet *bcCmdSet;
00076         
00077 
00078 };
00079 
00080 }
00081 
00082 }
00083 
00084 #endif

Generated on Sun Aug 19 17:07:52 2007 for inspectorJ by  doxygen 1.5.1