- java.lang.Object
-
- jdk.jshell.execution.DirectExecutionControl
-
- jdk.jshell.execution.RemoteExecutionControl
-
- All Implemented Interfaces:
AutoCloseable
,ExecutionControl
public class RemoteExecutionControl extends DirectExecutionControl implements ExecutionControl
The remote agent runs in the execution process (separate from the main JShell process). This agent loads code over a socket from the main JShell process, executes the code, and other misc, Specialization ofDirectExecutionControl
which adds stop support controlled by an external process. Designed to work withJdiDefaultExecutionControl
.- Since:
- 9
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jdk.jshell.spi.ExecutionControl
ExecutionControl.ClassBytecodes, ExecutionControl.ClassInstallException, ExecutionControl.EngineTerminationException, ExecutionControl.ExecutionControlException, ExecutionControl.InternalException, ExecutionControl.NotImplementedException, ExecutionControl.ResolutionException, ExecutionControl.RunException, ExecutionControl.StoppedException, ExecutionControl.UserException
-
-
Constructor Summary
Constructors Constructor Description RemoteExecutionControl()
Create an instance using the default class loading.RemoteExecutionControl(LoaderDelegate loaderDelegate)
Creates an instance, delegating loader operations to the specified delegate.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
clientCodeEnter()
Marks entry into user code.protected void
clientCodeLeave()
Marks departure from user code.protected String
invoke(Method doitMethod)
Invoke the specified "doit-method", a static method with no parameters.static void
main(String[] args)
Launch the agent, connecting to the JShell-core over the socket specified in the command-line argument.void
redefine(ExecutionControl.ClassBytecodes[] cbcs)
Redefine processing on the remote end is only to register the redefined classesvoid
stop()
Interrupts a running invoke.protected String
throwConvertedInvocationException(Throwable cause)
Converts incoming exceptions in user code into instances of subtypes ofExecutionControl.ExecutionControlException
and throws the converted exception.protected String
throwConvertedOtherException(Throwable ex)
Converts incoming exceptions in agent code into instances of subtypes ofExecutionControl.ExecutionControlException
and throws the converted exception.String
varValue(String className, String varName)
Returns the value of a variable.-
Methods inherited from class jdk.jshell.execution.DirectExecutionControl
addToClasspath, classesRedefined, close, extensionCommand, findClass, invoke, load, valueString
-
Methods inherited from interface jdk.jshell.spi.ExecutionControl
addToClasspath, close, extensionCommand, generate, generate, invoke, load
-
-
-
-
Constructor Detail
-
RemoteExecutionControl
public RemoteExecutionControl(LoaderDelegate loaderDelegate)
Creates an instance, delegating loader operations to the specified delegate.- Parameters:
loaderDelegate
- the delegate to handle loading classes
-
RemoteExecutionControl
public RemoteExecutionControl()
Create an instance using the default class loading.
-
-
Method Detail
-
main
public static void main(String[] args) throws Exception
Launch the agent, connecting to the JShell-core over the socket specified in the command-line argument.- Parameters:
args
- standard command-line arguments, expectation is the socket number is the only argument- Throws:
Exception
- any unexpected exception
-
redefine
public void redefine(ExecutionControl.ClassBytecodes[] cbcs) throws ExecutionControl.ClassInstallException, ExecutionControl.NotImplementedException, ExecutionControl.EngineTerminationException
Redefine processing on the remote end is only to register the redefined classes- Specified by:
redefine
in interfaceExecutionControl
- Overrides:
redefine
in classDirectExecutionControl
- Parameters:
cbcs
- the class name and bytecodes to redefine- Throws:
ExecutionControl.ClassInstallException
- exception occurred redefining the classes, some or all were not redefinedExecutionControl.NotImplementedException
- if not implementedExecutionControl.EngineTerminationException
- the execution engine has terminated
-
stop
public void stop() throws ExecutionControl.EngineTerminationException, ExecutionControl.InternalException
Description copied from class:DirectExecutionControl
Interrupts a running invoke.Not supported.
- Specified by:
stop
in interfaceExecutionControl
- Overrides:
stop
in classDirectExecutionControl
- Throws:
ExecutionControl.EngineTerminationException
- the execution engine has terminatedExecutionControl.InternalException
- an internal problem occurred
-
invoke
protected String invoke(Method doitMethod) throws Exception
Description copied from class:DirectExecutionControl
Invoke the specified "doit-method", a static method with no parameters. TheDirectExecutionControl.invoke(java.lang.String, java.lang.String)
in this class will call this to invoke.- Overrides:
invoke
in classDirectExecutionControl
- Parameters:
doitMethod
- the Method to invoke- Returns:
- the value or null
- Throws:
Exception
- any exceptions thrown byMethod.invoke(Object, Object...)
or anyExecutionControl.ExecutionControlException
to pass-through.
-
varValue
public String varValue(String className, String varName) throws ExecutionControl.RunException, ExecutionControl.EngineTerminationException, ExecutionControl.InternalException
Description copied from interface:ExecutionControl
Returns the value of a variable.- Specified by:
varValue
in interfaceExecutionControl
- Overrides:
varValue
in classDirectExecutionControl
- Parameters:
className
- the name of the wrapper class of the variablevarName
- the name of the variable- Returns:
- the value of the variable
- Throws:
ExecutionControl.UserException
- formatting the value raised a user exceptionExecutionControl.ResolutionException
- formatting the value attempted to directly or indirectly invoke an unresolved snippetExecutionControl.StoppedException
- if the formatting the value was canceled byExecutionControl.stop()
ExecutionControl.EngineTerminationException
- the execution engine has terminatedExecutionControl.InternalException
- an internal problem occurredExecutionControl.RunException
-
throwConvertedInvocationException
protected String throwConvertedInvocationException(Throwable cause) throws ExecutionControl.RunException, ExecutionControl.InternalException
Description copied from class:DirectExecutionControl
Converts incoming exceptions in user code into instances of subtypes ofExecutionControl.ExecutionControlException
and throws the converted exception.- Overrides:
throwConvertedInvocationException
in classDirectExecutionControl
- Parameters:
cause
- the exception to convert- Returns:
- never returns as it always throws
- Throws:
ExecutionControl.RunException
- for normal exception occurrencesExecutionControl.InternalException
- for internal problems
-
throwConvertedOtherException
protected String throwConvertedOtherException(Throwable ex) throws ExecutionControl.RunException, ExecutionControl.InternalException
Description copied from class:DirectExecutionControl
Converts incoming exceptions in agent code into instances of subtypes ofExecutionControl.ExecutionControlException
and throws the converted exception.- Overrides:
throwConvertedOtherException
in classDirectExecutionControl
- Parameters:
ex
- the exception to convert- Returns:
- never returns as it always throws
- Throws:
ExecutionControl.RunException
- for normal exception occurrencesExecutionControl.InternalException
- for internal problems
-
clientCodeEnter
protected void clientCodeEnter()
Description copied from class:DirectExecutionControl
Marks entry into user code.- Overrides:
clientCodeEnter
in classDirectExecutionControl
-
clientCodeLeave
protected void clientCodeLeave() throws ExecutionControl.InternalException
Description copied from class:DirectExecutionControl
Marks departure from user code.- Overrides:
clientCodeLeave
in classDirectExecutionControl
- Throws:
ExecutionControl.InternalException
- in unexpected failure cases
-
-