Class RemoteExecutionControl
java.lang.Object
jdk.jshell.execution.DirectExecutionControl
jdk.jshell.execution.RemoteExecutionControl
- All Implemented Interfaces:
AutoCloseable, 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 of
DirectExecutionControl which adds stop support controlled by
an external process. Designed to work with JdiDefaultExecutionControl.- Since:
- 9
-
Nested Class Summary
Nested classes/interfaces declared in interface ExecutionControl
ExecutionControl.ClassBytecodes, ExecutionControl.ClassInstallException, ExecutionControl.EngineTerminationException, ExecutionControl.ExecutionControlException, ExecutionControl.InternalException, ExecutionControl.NotImplementedException, ExecutionControl.ResolutionException, ExecutionControl.RunException, ExecutionControl.StoppedException, ExecutionControl.UserExceptionModifier and TypeInterfaceDescriptionstatic final classBundles class name with class bytecodes.static classA class install (load or redefine) encountered a problem.static classUnbidden execution engine termination has occurred.static classThe abstract base of allExecutionControlexceptions.static classAn internal problem has occurred.static classThe command is not implemented.static classAn exception indicating that aDeclarationSnippetwith unresolved references has been encountered.static classThe abstract base of of exceptions specific to running user code.static classAn exception indicating that anExecutionControl.invoke(java.lang.String, java.lang.String)(or theoretically aExecutionControl.varValue(java.lang.String, java.lang.String)) has been interrupted by aExecutionControl.stop().static classA 'normal' user exception occurred. -
Constructor Summary
ConstructorsConstructorDescriptionCreate an instance using the default class loading.RemoteExecutionControl(LoaderDelegate loaderDelegate) Creates an instance, delegating loader operations to the specified delegate. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidMarks entry into user code.static voidLaunch the agent, connecting to the JShell-core over the socket specified in the command-line argument.voidRedefine processing on the remote end is only to register the redefined classesReturns the value of a variable.Methods declared in class DirectExecutionControl
addToClasspath, classesRedefined, clientCodeLeave, close, extensionCommand, findClass, invoke, invoke, load, stop, throwConvertedInvocationException, throwConvertedOtherException, valueStringModifier and TypeMethodDescriptionvoidaddToClasspath(String cp) Adds the path to the execution class path.protected voidNotify that classes have been redefined.protected voidMarks departure from user code.voidclose()Shuts down this execution engine.extensionCommand(String command, Object arg) Run a non-standard command (or a standard command from a newer version).protected Class<?> Finds the class with the specified binary name.protected StringInvoke the specified "doit-method", a static method with no parameters.Invokes an executable Snippet by calling a method on the specified wrapper class.voidload(ExecutionControl.ClassBytecodes[] cbcs) Attempts to load new classes.voidstop()Interrupts a running invoke.protected StringConverts incoming exceptions in user code into instances of subtypes ofExecutionControl.ExecutionControlExceptionand throws the converted exception.protected StringConverts incoming exceptions in agent code into instances of subtypes ofExecutionControl.ExecutionControlExceptionand throws the converted exception.protected static StringvalueString(Object value) Converts theObjectvalue fromExecutionControl.invoke(String, String)orExecutionControl.varValue(String, String)toString.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
RemoteExecutionControl
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 Details
-
main
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:
redefinein interfaceExecutionControl- 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
-
varValue
public String varValue(String className, String varName) throws ExecutionControl.RunException, ExecutionControl.EngineTerminationException, ExecutionControl.InternalException Description copied from interface:ExecutionControlReturns the value of a variable.- Specified by:
varValuein interfaceExecutionControl- Overrides:
varValuein 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
-
clientCodeEnter
protected void clientCodeEnter()Description copied from class:DirectExecutionControlMarks entry into user code.- Overrides:
clientCodeEnterin classDirectExecutionControl
-