-
public interface VirtualMachineManager
A manager of connections to target virtual machines. The VirtualMachineManager allows one application to debug multiple target VMs. (Note that the converse is not supported; a target VM can be debugged by only one debugger application.) This interface contains methods to manage connections to remote target VMs and to obtain theVirtualMachine
mirror for available target VMs.Connections can be made using one of several different
Connector
objects. Each connector encapsulates a different way of connecting the debugger with a target VM.The VirtualMachineManager supports many different scenarios for connecting a debugger to a virtual machine. Four examples are presented in the table below. The examples use the command line syntax in Sun's implementation. Some
Connector
implementations may require slightly different handling than presented below.Scenario Description Debugger launches target VM (simplest, most-common scenario) Debugger calls the LaunchingConnector.launch(java.util.Map)
method of the default connector, obtained withdefaultConnector()
. The target VM is launched, and a connection between that VM and the debugger is established. AVirtualMachine
mirror is returned.Or, for more control
-
Debugger selects a connector from the list returned by
launchingConnectors()
with desired characteristics (for example, transport type, etc.). -
Debugger calls the
LaunchingConnector.launch(java.util.Map)
method of the selected connector. The target VM is launched, and a connection between that VM and the debugger is established. AVirtualMachine
mirror is returned.
Debugger attaches to previously-running VM -
Target VM is launched using the options
-agentlib:jdwp=transport=xxx,server=y
- Target VM generates and outputs the tranport-specific address at which it will listen for a connection.
-
Debugger is launched. Debugger selects a connector in the list
returned by
attachingConnectors()
matching the transport with the name "xxx". -
Debugger presents the default connector parameters (obtained through
Connector.defaultArguments()
) to the end user, allowing the user to fill in the transport-specific address generated by the target VM. -
Debugger calls the
AttachingConnector.attach(java.util.Map)
method of the selected to attach to the target VM. AVirtualMachine
mirror is returned.
Target VM attaches to previously-running debugger -
At startup, debugger selects one or more connectors from
the list returned by
listeningConnectors()
for one or more transports. -
Debugger calls the
ListeningConnector.startListening(java.util.Map)
method for each selected connector. For each call, a transport-specific address string is generated and returned. The debugger makes the transport names and corresponding address strings available to the end user. -
Debugger calls
ListeningConnector.accept(java.util.Map)
for each selected connector to wait for a target VM to connect. -
Later, target VM is launched by end user with the options
-agentlib:jdwp=transport=xxx,address=yyy
where "xxx" the transport for one of the connectors selected by the the debugger and "yyy" is the address generated byListeningConnector.accept(java.util.Map)
for that transport. -
Debugger's call to
ListeningConnector.accept(java.util.Map)
returns aVirtualMachine
mirror.
Target VM launches debugger (sometimes called "Just-In-Time" debugging) -
Target VM is launched with the options
-agentlib:jdwp=launch=cmdline,onuncaught=y,transport=xxx,server=y
- Later, an uncaught exception is thrown in the target VM. The target VM generates the tranport-specific address at which it will listen for a connection.
- Target VM launches the debugger with the following items concatenated
together (separated by spaces) to form the command line:
- The launch= value
- The transport= value
- The generated transport-specific address at which VM is listening for debugger connection.
-
Upon launch, debugger selects a connector in the list
returned by
attachingConnectors()
matching the transport with the name "xxx". -
Debugger changes the default connector parameters (obtained through
Connector.defaultArguments()
) to specify the transport specific address at which the VM is listenig. Optionally, other connector arguments can be presented to the user. -
Debugger calls the
AttachingConnector.attach(java.util.Map)
method of the selected to attach to the target VM. AVirtualMachine
mirror is returned.
Connectors are created at start-up time. That is, they are created the first time that
Bootstrap.virtualMachineManager()
is invoked. The list of all Connectors created at start-up time can be obtained from the VirtualMachineManager by invoking theallConnectors
method.Connectors are created at start-up time if they are installed on the platform. In addition, Connectors are created automatically by the VirtualMachineManager to encapsulate any
TransportService
implementations that are installed on the platform. These two mechanisms for creating Connectors are described here.A Connector is installed on the platform if it is installed in a jar file that is visible to the defining class loader of the
Connector
type, and that jar file contains a provider configuration file namedConnector
in the resource directoryMETA-INF/services
, and the provider configuration file lists the full-qualified class name of the Connector implementation. A Connector is a class that implements theConnector
interface. More appropriately the class implements one of the specific Connector types, namelyAttachingConnector
,ListeningConnector
, orLaunchingConnector
. The format of the provider configuration file is one fully-qualified class name per line. Space and tab characters surrounding each class, as well as blank lines are ignored. The comment character is'#'
(0x23
), and on each line all characters following the first comment character are ignored. The file must be encoded in UTF-8.At start-up time the VirtualMachineManager attempts to load and instantiate (using the no-arg constructor) each class listed in the provider configuration file. Exceptions thrown when loading or creating the Connector are caught and ignored. In other words, the start-up process continues despite of errors.
In addition to Connectors installed on the platform the VirtualMachineManager will also create Connectors to encapsulate any
TransportService
implementations that are installed on the platform. A TransportService is installed on the platform if it installed in a jar file that is visible to the defining class loader for theTransportService
type, and that jar file contains a provider configuration file namedTransportService
in the resource directoryMETA-INF/services
, and the provider configuration file lists the full-qualified class name of the TransportService implementation. A TransportService is a concrete sub-class ofTransportService
. The format of the provider configuration file is the same as the provider configuration file for Connectors except that each class listed must be the fully-qualified class name of a class that implements the TransportService interface.For each TransportService installed on the platform, the VirtualMachineManager creates a corresponding
AttachingConnector
andListeningConnector
. These Connectors are created to encapsulate aTransport
that in turn encapsulates the TransportService. The AttachingConnector will be named based on the name of the transport service concatenated with the stringAttach
. For example, if the transport servicename()
method returnstelepathic
then the AttachingConnector will be namedtelepathicAttach
. Similiarly the ListeningConnector will be named with the stringListen
tagged onto the name of the transport service. Thedescription()
method of both the AttachingConnector, and the ListeningConnector, will delegate to thedescription()
method of the underlying transport service. Both the AttachingConnector and the ListeningConnector will have two ConnectorArguments
. AStringArgument
namedaddress
is the connector argument to specify the address to attach too, or to listen on. AIntegerArgument
namedtimeout
is the connector argument to specify the timeout when attaching, or accepting. The timeout connector may be ignored depending on if the transport service supports an attach timeout or accept timeout.Initialization of the virtual machine manager will fail, that is
Bootstrap.virtualMachineManager()
will throw an error if the virtual machine manager is unable to create any connectors.- Since:
- 1.3
-
Debugger selects a connector from the list returned by
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Connector>
allConnectors()
Returns the list of all knownConnector
objects.List<AttachingConnector>
attachingConnectors()
Returns the list of knownAttachingConnector
objects.List<VirtualMachine>
connectedVirtualMachines()
Lists all target VMs which are connected to the debugger.VirtualMachine
createVirtualMachine(Connection connection)
Creates a new virtual machine.VirtualMachine
createVirtualMachine(Connection connection, Process process)
Create a virtual machine mirror for a target VM.LaunchingConnector
defaultConnector()
Identifies the default connector.List<LaunchingConnector>
launchingConnectors()
Returns the list of knownLaunchingConnector
objects.List<ListeningConnector>
listeningConnectors()
Returns the list of knownListeningConnector
objects.int
majorInterfaceVersion()
Returns the major version number of the JDI interface.int
minorInterfaceVersion()
Returns the minor version number of the JDI interface.
-
-
-
Method Detail
-
defaultConnector
LaunchingConnector defaultConnector()
Identifies the default connector. This connector should be used as the launching connector when selection of a connector with specific characteristics is unnecessary.- Returns:
- the default
LaunchingConnector
-
launchingConnectors
List<LaunchingConnector> launchingConnectors()
Returns the list of knownLaunchingConnector
objects. Any of the returned objects can be used to launch a new target VM and immediately create aVirtualMachine
mirror for it. Note that a target VM launched by a launching connector is not guaranteed to be stable until after theVMStartEvent
has been received.- Returns:
- a list of
LaunchingConnector
objects.
-
attachingConnectors
List<AttachingConnector> attachingConnectors()
Returns the list of knownAttachingConnector
objects. Any of the returned objects can be used to attach to an existing target VM and create aVirtualMachine
mirror for it.- Returns:
- a list of
AttachingConnector
objects.
-
listeningConnectors
List<ListeningConnector> listeningConnectors()
Returns the list of knownListeningConnector
objects. Any of the returned objects can be used to listen for a connection initiated by a target VM and create aVirtualMachine
mirror for it.- Returns:
- a list of
ListeningConnector
objects.
-
allConnectors
List<Connector> allConnectors()
Returns the list of all knownConnector
objects.- Returns:
- a list of
Connector
objects.
-
connectedVirtualMachines
List<VirtualMachine> connectedVirtualMachines()
Lists all target VMs which are connected to the debugger. The list includesVirtualMachine
instances for any target VMs which initiated a connection and any target VMs to which this manager has initiated a connection. A target VM will remain in this list until the VM is disconnected.VMDisconnectEvent
is placed in the event queue after the VM is removed from the list.- Returns:
- a list of
VirtualMachine
objects, each mirroring a target VM.
-
majorInterfaceVersion
int majorInterfaceVersion()
Returns the major version number of the JDI interface. SeeVirtualMachine.version()
target VM version and information andVirtualMachine.description()
more version information.- Returns:
- the integer major version number.
-
minorInterfaceVersion
int minorInterfaceVersion()
Returns the minor version number of the JDI interface. SeeVirtualMachine.version()
target VM version and information andVirtualMachine.description()
more version information.- Returns:
- the integer minor version number
-
createVirtualMachine
VirtualMachine createVirtualMachine(Connection connection, Process process) throws IOException
Create a virtual machine mirror for a target VM.Creates a virtual machine mirror for a target VM for which a
Connection
already exists. A Connection is created when aConnector
establishes a connection and successfully handshakes with a target VM. A Connector can then use this method to create a virtual machine mirror to represent the composite state of the target VM.The
process
argument specifies theProcess
object for the taget VM. It may be specified asnull
. If the target VM is launched by aLaunchingConnector
theprocess
argument should be specified, otherwise callingVirtualMachine.process()
on the created virtual machine will returnnull
.This method exists so that Connectors may create a virtual machine mirror when a connection is established to a target VM. Only developers creating new Connector implementations should need to make direct use of this method.
- Parameters:
connection
- The open connection to the target VM.process
- If launched, theProcess
object for the target VM.null
if not launched.- Returns:
- new virtual machine representing the target VM.
- Throws:
IOException
- if an I/O error occursIllegalStateException
- if the connection is not open- Since:
- 1.5
- See Also:
Connection.isOpen()
,VirtualMachine.process()
-
createVirtualMachine
VirtualMachine createVirtualMachine(Connection connection) throws IOException
Creates a new virtual machine.This convenience method works as if by invoking
createVirtualMachine(Connection, Process)
method and specifyingnull
as theprocess
argument.This method exists so that Connectors may create a virtual machine mirror when a connection is established to a target VM. Only developers creating new Connector implementations should need to make direct use of this method.
- Returns:
- the new virtual machine
- Throws:
IOException
- if an I/O error occursIllegalStateException
- if the connection is not open- Since:
- 1.5
-
-