Top Description Fields Constructors Methods
org.jruby.embed

public Class ScriptingContainer

extends Object
implements EmbedRubyInstanceConfigAdapter
Class Inheritance
All Implemented Interfaces
org.jruby.embed.EmbedRubyInstanceConfigAdapter
Known Direct Subclasses
org.jruby.embed.osgi.OSGiScriptingContainer, org.jruby.embed.IsolatedScriptingContainer
Imports
java.io.InputStream, .PrintStream, .Reader, .Writer, java.net.URL, java.util.HashMap, .List, .Map, org.jruby.Profile, .Ruby, .RubyGlobal.InputGlobalVariable, .RubyGlobal.OutputGlobalVariable, .RubyIO, .RubyInstanceConfig.CompileMode, .RubyInstanceConfig.LoadServiceCreator, .RubyInstanceConfig.ProfilingMode, org.jruby.embed.internal.BiVariableMap, .ConcurrentLocalContextProvider, .EmbedRubyInterfaceAdapterImpl, .EmbedRubyObjectAdapterImpl, .EmbedRubyRuntimeAdapterImpl, .LocalContextProvider, .SingleThreadLocalContextProvider, .SingletonLocalContextProvider, .ThreadSafeLocalContextProvider, org.jruby.embed.io.ReaderInputStream, .WriterOutputStream, org.jruby.exceptions.RaiseException, org.jruby.internal.runtime.GlobalVariable, org.jruby.javasupport.JavaEmbedUtils, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.profile.builtin.ProfileOutput, org.jruby.util.KCode, .SafePropertyAccessor, org.jruby.util.cli.OutputStrings, .Options

ScriptingContainer provides various methods and resources that are useful for embedding Ruby in Java. Using this class, users can run Ruby scripts from Java programs easily. Also, users can use methods defined or implemented by Ruby. ScriptingContainer allows users to set various configuration parameters. Some of them are per-container properties, while others are per-evaluation attributes. For example, a local context scope, local variable behavior, load paths are per-container properties. Please see PropertyName and AttributeName for more details. Be aware that the per-container properties should be set prior to get Ruby runtime being instantiated; otherwise, default values are applied to. ScriptingContainer delays Ruby runtime initialization as much as possible to improve startup time. When values are put into the ScriptingContainer, or runScriptlet method gets run the runtime is created internally. However, the default, singleton local context scope behave slightly different. If a Ruby runtime has been already instantiated by another ScriptingContainer, application, etc, the same runtime will be re-used. Below are examples. The first Example is a very simple Hello World. After initializing a ScriptingContainer, a Ruby script, puts "Hello World!", runs and produces "Hello World!."
Example 1:
ScriptingContainer container = new ScriptingContainer();
    container.runScriptlet("puts \"Hello World!\"");

Produces:
Hello World!
The second example shows how to share variables between Java and Ruby. In this example, a local variable "x" is shared. To make this happen, a local variable behavior should be transient or persistent. As for JSR223 JRuby engine, set these types using a System property, org.jruby.embed.localvariable.behavior. If the local variable behavior is one of transient or persistent, Ruby's local, instance, global variables and constants are available to share between Java and Ruby. (A class variable sharing does not work on current version) Thus, "x" in Java is also "x" in Ruby.
Example 2:
ScriptingContainer container = new ScriptingContainer();
    container.put("x", 12345);
    container.runScriptlet("puts x.to_s(2)");

Produces:
11000000111001
The third examples shows how to keep local variables across multiple evaluations. This feature simulates BSF engine for JRuby. In terms of Ruby semantics, local variables should not survive after the evaluation has completed. Thus, this behavior is optional, and users need to specify LocalVariableBehavior.PERSISTENT when the container is instantiated.
Example 3:
ScriptingContainer container = new ScriptingContainer(LocalVariableBehavior.PERSISTENT);
    container.runScriptlet("p=9.0");
    container.runScriptlet("q = Math.sqrt p");
    container.runScriptlet("puts \"square root of #{p} is #{q}\"");
    System.out.println("Ruby used values: p = " + container.get("p") + ", q = " + container.get("q"));

Produces:
square root of 9.0 is 3.0
Ruby used values: p = 9.0, q = 3.0
Also, ScriptingContainer provides better i18n support. For example, Unicode Escape Sequence can be included in Ruby scripts.

In addition, ScriptingContainer supports a parse-once-eval-many-times feature, invoking methods defined by Ruby, and getting an instance of a specified interface that has been implemented by Ruby.

Example 4:
ScriptingContainer container = new ScriptingContainer();
    String script =
      "def message\n" +
        "\"message: #{@message}\"\n" +
      "end\n" +
      "message";
    container.put("@message", "What's up?");
    JavaEmbedUtils.EvalUnit unit = container.parse(script);
    IRubyObject msg = unit.run(); // a RubyString instance
    System.out.println(JavaEmbedUtils.rubyToJava(msg));
    container.put("@message", "Fabulous!");
    msg = unit.run();
    System.out.println(JavaEmbedUtils.rubyToJava(msg));
    container.put("@message", "That's the way you are.");
    msg = unit.run();
    System.out.println(JavaEmbedUtils.rubyToJava(msg));

Produces:
    message: What's up?
    message: Fabulous!
    message: That's the way you are.
See more details at project's
Author
Yoko Harada <yokolet@gmail.com>
See Also
Wiki

Field Summary

Modifier and TypeField and Description
private final Map<String, String[]>
private final EmbedRubyInterfaceAdapter
private final EmbedRubyObjectAdapter
private final LocalContextProvider
private final EmbedRubyRuntimeAdapter
private final LocalContextScope

Constructor Summary

AccessConstructor and Description
public
ScriptingContainer()

Constructs a ScriptingContainer with a default values.

public
ScriptingContainer(LocalContextScope
a local context type.
scope
)

Constructs a ScriptingContainer with a specified local context type.

public
ScriptingContainer(LocalVariableBehavior
a local variable behavior
behavior
)

Constructs a ScriptingContainer with a specified local variable behavior.

public
ScriptingContainer(LocalContextScope
a local context type
scope
,
LocalVariableBehavior
a local variable behavior
behavior
)

Constructs a ScriptingContainer with a specified local context type and variable behavior.

public
ScriptingContainer(LocalContextScope
is one of a local context scope defined by LocalContextScope
scope
,
LocalVariableBehavior
is one of a local variable behavior defined by LocalVariableBehavior
behavior
,
boolean
is a switch to do lazy retrieval of variables/constants from Ruby runtime. Default is true. When this value is true, ScriptingContainer tries to get as many variables/constants as possible from Ruby runtime.
lazy
)

Constructs a ScriptingContainer with a specified local context scope, local variable behavior and laziness.

public
ScriptingContainer(LocalContextScope scope, LocalVariableBehavior behavior, boolean lazy, boolean wrapExceptions)

Method Summary

Modifier and TypeMethod and Description
public void
addClassLoader(ClassLoader classLoader)

add the given classLoader to the LOAD_PATH and GEM_PATH

public void
addGemPath(ClassLoader classloader)
Deprecated

add the given classloader to the GEM_PATH

protected void
public void
addLoadPath(ClassLoader classloader)
Deprecated

add the given classloader to the LOAD_PATH

protected void
addLoadPath(String uri)
Deprecated

public Object

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Object...
is an array of method arguments
args
)

Executes a method defined in Ruby script.

public Object

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Block
is a block to be executed in this method
block
,
Object...
is an array of method arguments
args
)

Executes a method defined in Ruby script.

public <T> T

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Class<T>
is the type we want it to convert to
returnType
)

Executes a method defined in Ruby script.

public <T> T

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Object
is an method argument
singleArg
,
Class<T>
returnType is the type we want it to convert to
returnType
)

Executes a method defined in Ruby script.

public <T> T

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Object[]
is an array of method arguments
args
,
Class<T>
is the type we want it to convert to
returnType
)

Executes a method defined in Ruby script.

public <T> T

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Object[]
is an array of method arguments except a block
args
,
Block
is a block to be executed in this method
block
,
Class<T>
is the type we want it to convert to
returnType
)

Executes a method defined in Ruby script.

public <T> T

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Class<T>
is the type we want it to convert to
returnType
,
EmbedEvalUnit
is parsed unit
unit
)

Executes a method defined in Ruby script.

public <T> T

Returns:

an instance of requested Java type
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Object[]
is an array of method arguments
args
,
Class<T>
is the type we want it to convert to
returnType
,
EmbedEvalUnit
is parsed unit
unit
)

Executes a method defined in Ruby script.

public <T> T

Returns:

is the type we want it to convert to
callMethod
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
String
is a method name to be called
methodName
,
Object[]
is an array of method arguments except a block
args
,
Block
is a block to be executed in this method
block
,
Class<T>
is the type we want it to convert to
returnType
,
EmbedEvalUnit
is parsed unit
unit
)

Executes a method defined in Ruby script.

public <T> T

Returns:

is the type we want it to convert to
callSuper
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
Object[]
is an array of method arguments
args
,
Class<T>
is the type we want it to convert to
returnType
)

public <T> T

Returns:

is the type we want it to convert to
callSuper
(Object
is an instance that will receive this method call. Ruby's self object will be used if no appropriate receiver is given.
receiver
,
Object[]
is an array of method arguments except a block
args
,
Block
is a block to be executed in this method
block
,
Class<T>
is the type we want it to convert to
returnType
)

public void
clear()

Removes all of the mappings from this map.

private String
public void
finalize()

Overrides java.lang.Object.finalize.

Ensure this ScriptingContainer instance is terminated when nobody holds any references to it (and GC wants to reclaim it).

public Object

Returns:

a value to which the specified key is mapped, or null if this map contains no mapping for the key
get
(String
is a key whose associated value is to be returned
key
)

Returns a value of the specified key in a top level of runtime or null if this map doesn't have a mapping for the key.

public Object

Returns:

a value to which the specified key is mapped, or null if this map contains no mapping for the key
get
(Object
a receiver to get the value from
receiver
,
String
is a key whose associated value is to be returned
key
)

Returns a value of a specified key in a specified receiver or null if a variable map doesn't have a mapping for the key in a given receiver.

public String[]

Returns:

an arguments' list.
getArgv
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getArgv.

Returns a list of argument.

public Object

Returns:

value is a value associated to the specified key
getAttribute
(Object
is the attribute key
key
)

Returns an attribute value associated with the specified key in a attribute map.

public Map<K, V>

Returns:

an attribute map specific to the current thread
getAttributeMap
()

Returns a attribute map in one of LocalContextScope.

private static Map<String, String[]>
public ClassLoader

Returns:

a class loader object that is currently used.
getClassLoader
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getClassLoader.

Returns a class loader object that is currently used.

public boolean
getClassloaderDelegate()

Retrieve the self-first classloader setting.

public CompatVersion
public RubyInstanceConfig.CompileMode

Returns:

a compile mode.
getCompileMode
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getCompileMode.

Returns a compile mode currently chosen, which is one of CompileMode.JIT, CompileMode.FORCE, CompileMode.OFF.

public String

Returns:

a current directory.
getCurrentDirectory
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getCurrentDirectory.

Returns a current directory.

public Map<K, V>

Returns:

a map that has environment variables' key-value pairs.
getEnvironment
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getEnvironment.

Returns a map of environment variables.

public PrintStream

Returns:

an error output stream that Ruby runtime has
getErr
()
Deprecated As of JRuby 1.5.0, Replaced by getError()

Returns an error output stream that Ruby runtime has.

public PrintStream

Returns:

output stream for error stream
getError
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getError.

Returns an error stream assigned to STDERR and $stderr.

public Writer

Returns:

an error writer in a attribute map
getErrorWriter
()

Returns an error writer set in an attribute map.

public String

Returns:

a JRuby home directory.
getHomeDirectory
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getHomeDirectory.

Returns a JRuby home directory.

public InputStream

Returns:

an input stream that Ruby runtime has.
getIn
()
Deprecated As of JRuby 1.5.0, replaced by getInput().

Returns an input stream that Ruby runtime has.

public InputStream

Returns:

input stream of STDIN and $stdin
getInput
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getInput.

Returns an input stream assigned to STDIN and $stdin.

public <T> T

Returns:

an instance of a requested interface type
getInstance
(Object
is an instance that implements the interface
receiver
,
Class<T>
is a requested interface
clazz
)

Returns an instance of a requested interface type.

public int

Returns:

a value that determines how often jitted methods are logged.
getJitLogEvery
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getJitLogEvery.

Returns the value of n, which means that jitted methods are logged in every n methods.

public int

Returns:

a value of a max class cache size.
getJitMax
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getJitMax.

Returns a value of a max class cache size.

public int

Returns:

a value of a max size of the bytecode.
getJitMaxSize
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getJitMaxSize.

Returns a value of a max size of the bytecode generated by compiler.

public int

Returns:

a value of the threshold.
getJitThreshold
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getJitThreshold.

Returns a value of the threshold that determines whether jitted methods' call reached to the limit or not.

public KCode

Returns:

a KCode value.
getKCode
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getKCode.

Returns a value of KCode currently used.

public List<String>

Returns:

a list of load paths.
getLoadPaths
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getLoadPaths.

Returns a list of load paths for Ruby scripts/libraries.

public RubyInstanceConfig.LoadServiceCreator

Returns:

a current LoadServiceCreator.
getLoadServiceCreator
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getLoadServiceCreator.

Returns a LoadServiceCreator currently used.

public PrintStream

Returns:

an output stream that Ruby runtime has
getOut
()
Deprecated As of JRuby 1.5.0, replaced by getOutput().

Returns an output stream that Ruby runtime has.

public PrintStream

Returns:

an output stream of STDOUT and $stdout
getOutput
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getOutput.

Returns an output stream assigned to STDOUT and $stdout.

public Profile

Returns:

a current profiler.
getProfile
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getProfile.

Returns a Profile currently used.

public ProfileOutput

Returns:

current profiling output location.
getProfileOutput
()

Returns currently configured ProfileOutput object, which determines where the output of profiling operations will be sent.

public RubyInstanceConfig.ProfilingMode

Returns:

a current profiling mode.
getProfilingMode
()

Returns a ProfilingMode currently used.

public String[]

Returns:

values associated to the key
getProperty
(String
is a key in a property file
key
)

Returns an array of values associated to a key.

public LocalContextProvider

Returns:

a provider of LocalContextProvider
getProvider
()

Returns a provider instance of LocalContextProvider.

pack-priv static LocalContextProvider
public Reader

Returns:

a reader in an attribute map
getReader
()

Returns a reader set in an attribute map.

public String

Returns:

a record separator.
getRecordSeparator
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getRecordSeparator.

Returns a record separator.

public Ruby

Returns:

Ruby runtime of a specified local context
getRuntime
()
Deprecated As of JRuby 1.5.0. Use getProvider().getRuntime() method instead.

Returns a Ruby runtime in one of LocalContextScope.

public String

Returns:

a script filename.
getScriptFilename
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getScriptFilename.

Returns a script filename to run.

public String

Returns:

version information.
getSupportedRubyVersion
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.getSupportedRubyVersion.

Returns version information about JRuby and Ruby supported by this platform.

public BiVariableMap

Returns:

a variable map specific to the current thread
getVarMap
()

Returns a variable map in one of LocalContextScope.

public Writer

Returns:

a writer in a attribute map
getWriter
()

Returns a writer set in an attribute map.

private void
public boolean

Returns:

true if native code is enabled; false otherwise.
isNativeEnabled
()

Get whether native code is enabled for this config.

public boolean

Returns:

true if the Object Space is able to use, otherwise, false.
isObjectSpaceEnabled
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.isObjectSpaceEnabled.

Tests whether the Object Space is enabled or not.

public boolean

Returns:

true if Ruby is configured to run in a process, otherwise, false.
isRunRubyInProcess
()

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.isRunRubyInProcess.

Tests whether Ruby runs in a process or not.

public EmbedRubyObjectAdapter

Returns:

an instance of EmbedRubyObjectAdapter
newObjectAdapter
()

Returns an instance of EmbedRubyObjectAdapter for embedders to invoke methods defined by Ruby.

public EmbedRubyRuntimeAdapter

Returns:

an instance of EmbedRubyRuntimeAdapter.
newRuntimeAdapter
()

Returns an instance of EmbedRubyRuntimeAdapter for embedders to parse scripts.

public EmbedEvalUnit

Returns:

an object which can be run
parse
(String
is a Ruby script to be parsed
script
,
int...
are linenumbers to display for parse errors and backtraces. This field is optional. Only the first argument is used for parsing. When no line number is specified, 0 is applied to.
lines
)

Parses a script and return an object which can be run().

public EmbedEvalUnit

Returns:

an object which can be run
parse
(Reader
is used to read a script from
reader
,
String
is used as in information, for example, appears in a stack trace of an exception
filename
,
int...
are linenumbers to display for parse errors and backtraces. This field is optional. Only the first argument is used for parsing. When no line number is specified, 0 is applied to.
lines
)

Parses a script given by a reader and return an object which can be run().

public EmbedEvalUnit

Returns:

an object which can be run
parse
(PathType
is one of the types PathType defines
type
,
String
is used as in information, for example, appears in a stack trace of an exception
filename
,
int...
are linenumbers to display for parse errors and backtraces. This field is optional. Only the first argument is used for parsing. When no line number is specified, 0 is applied to.
lines
)

Parses a script read from a specified path and return an object which can be run().

public EmbedEvalUnit

Returns:

an object which can be run
parse
(InputStream
is an input stream to get a script from
istream
,
String
filename is used as in information, for example, appears in a stack trace of an exception
filename
,
int...
are linenumbers to display for parse errors and backtraces. This field is optional. Only the first argument is used for parsing. When no line number is specified, 0 is applied to.
lines
)

Parses a script given by a input stream and return an object which can be run().

public Object

Returns:

a previous value associated with a key, or null if there was no mapping for this key.
put
(String
is a key that the specified value is to be associated with
key
,
Object
is a value to be associated with the specified key
value
)

Associates the specified value with the specified key in a variable map.

public Object

Returns:

a previous value associated with a key, or null if there was no mapping for this key.
put
(Object
a receiver to put the value in
receiver
,
String
is a key that the specified value is to be associated with
key
,
Object
is a value to be associated with the specified key
value
)

Associates the specified value with the specified key in a variable map.

public Object

Returns:

a previous value associated with a key, or null if there was no mapping for this key.
remove
(String
is a key that the specified value is to be associated with
key
)

Removes the specified Ruby variable with the specified variable name from a variable map and runtime top level.

public Object

Returns:

a previous value associated with a key, or null if there was no mapping for this key.
remove
(Object
a receiver to remove the value from
receiver
,
String
is a key that the specified value is to be associated with
key
)

Removes the specified Ruby variable with the specified variable name in a variable map and given receiver.

public Object

Returns:

the previous value associated with key, or null if there was no mapping for key.
removeAttribute
(Object
is a key that the specified value is to be removed from
key
)

Removes the specified value with the specified key in a attribute map.

public void
public void
public <T> T

Returns:

an instance of requested Java type
runRubyMethod
(Class<T>
is the type we want it to convert to
returnType
,
Object
is an instance that will receive this method call. The receiver can be null or other Java objects as well as RubyObject. The null will be converted to RubyNil. Java objects will be wrapped in RubyObject.
receiver
,
String
is a method name to be called
methodName
,
Object...
is an array of method arguments
args
)

Executes a method defined in Ruby script.

public <T> T

Returns:

an instance of requested Java type
runRubyMethod
(Class<T>
is the type we want it to convert to
returnType
,
Object
is an instance that will receive this method call. The receiver can be null or other Java objects as well as RubyObject. The null will be converted to RubyNil. Java objects will be wrapped in RubyObject.
receiver
,
String
is a method name to be called
methodName
,
Block
is an optional Block object. Send null for no block.
block
,
Object...
is an array of method arguments
args
)

Executes a method defined in Ruby script.

public Object

Returns:

an evaluated result converted to a Java object
runScriptlet
(String
is a Ruby script to get run
script
)

Evaluates a script under the current scope (perhaps the top-level scope) and returns a result only if a script returns a value.

public Object

Returns:

an evaluated result converted to a Java object
runScriptlet
(Reader
is used to read a script from
reader
,
String
is used as in information, for example, appears in a stack trace of an exception
filename
)

Evaluates a script read from a reader under the current scope (perhaps the top-level scope) and returns a result only if a script returns a value.

public Object

Returns:

an evaluated result converted to a Java object
runScriptlet
(InputStream
is used to input a script from
istream
,
String
is used as in information, for example, appears in a stack trace of an exception
filename
)

Evaluates a script read from a input stream under the current scope (perhaps the top-level scope) and returns a result only if a script returns a value.

public Object

Returns:

an evaluated result converted to a Java object
runScriptlet
(PathType
is one of the types PathType defines
type
,
String
is used to read the script from and an information
filename
)

Reads a script file from specified path and evaluates it under the current scope (perhaps the top-level scope) and returns a result only if a script returns a value.

private Object
public void
setArgv(String[]
a new arguments' list.
argv
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setArgv.

Changes values of the arguments' list.

public Object

Returns:

the previous value associated with key, or null if there was no mapping for key.
setAttribute
(Object
is a key that the specified value is to be associated with
key
,
Object
is a value to be associated with the specified key
value
)

Associates the specified value with the specified key in a attribute map.

public void
setClassLoader(ClassLoader
a new class loader to be set.
loader
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setClassLoader.

Changes a class loader to a given loader.

public void
setClassloaderDelegate(boolean
set whether prefer the JRuby classloader to delegate first to the parent classloader when dynamically loading classes
classloaderDelegate
)

Force dynamically-loaded Java classes to load first from the classloader provided by JRuby before searching parent classloaders.

public void
public void
setCompileMode(RubyInstanceConfig.CompileMode
compile mode
mode
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setCompileMode.

Changes a compile mode to a given mode, which should be one of CompileMode.JIT, CompileMode.FORCE, CompileMode.OFF.

public void
setCurrentDirectory(String
a new directory to be set.
directory
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setCurrentDirectory.

Changes a current directory to a given directory.

public void
setEnvironment(Map<K, V>
a new map of environment variables.
environment
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setEnvironment.

Changes an environment variables' map.

public void
setError(PrintStream
a print stream to be set
pstream
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setError.

Changes STDERR and $stderr to a given print stream.

public void
setError(Writer
a writer to be set
writer
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setError.

Changes STDERR and $stderr to a given writer.

private void
public void
setErrorWriter(Writer
is a writer to be set
errorWriter
)

Replaces a standard error by a specified writer.

public void
setHomeDirectory(String
a name of new JRuby home directory.
home
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setHomeDirectory.

Changes a JRuby home directory to a directory of a given name.

public void
setInput(InputStream
an input stream to be set
istream
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setInput.

Changes STDIN and $stdin to a given input stream.

public void
setInput(Reader
a reader to be set
reader
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setInput.

Changes STDIN and $stdin to a given reader.

public void
setJitLogEvery(int
a new number of methods.
logEvery
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setJitLogEvery.

Changes a value of n, so that jitted methods are logged in every n methods.

public void
setJitMax(int
a new value of a max class cache size.
max
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setJitMax.

Changes a value of a max class cache size.

public void
setJitMaxSize(int
a new value of a max size of the bytecode.
maxSize
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setJitMaxSize.

Changes a value of a max size of the bytecode generated by compiler.

public void
setJitThreshold(int
a new value of the threshold.
threshold
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setJitThreshold.

Changes a value of the threshold that determines whether jitted methods' call reached to the limit or not.

public void
setKCode(KCode
a new KCode value.
kcode
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setKCode.

Changes a value of KCode to a given value.

public void
setLoadPaths(List<String>
a new list of load paths.
paths
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setLoadPaths.

Changes a list of load paths Ruby scripts/libraries.

public void
setLoadServiceCreator(RubyInstanceConfig.LoadServiceCreator
a new LoadServiceCreator
creator
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setLoadServiceCreator.

Changes a LoadServiceCreator to a given one.

public void
setNativeEnabled(boolean
new value indicating whether native code is enabled
b
)

Set whether native code is enabled for this config.

public void
setObjectSpaceEnabled(boolean
true to enable the Object Space, or false to disable.
enable
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setObjectSpaceEnabled.

Changes the value to determine whether the Object Space is enabled or not.

public void
setOutput(PrintStream
an output stream to be set
pstream
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setOutput.

Changes STDOUT and $stdout to a given output stream.

public void
setOutput(Writer
a writer to be set
writer
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setOutput.

Changes STDOUT and $stdout to a given writer.

private void
public void
setProfile(Profile
a new profiler to be set.
profile
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setProfile.

Changes a Profile to a given one.

public void
setProfile(RubyInstanceConfig.ProfilingMode
a new profiling mode to be set.
mode
)
Deprecated Use setProfilingMode instead

Changes a ProfilingMode to a given one.

public void
setProfileOutput(ProfileOutput
a new ProfileOutput object, to which profiling data should be written
out
)

Changes ProfileOutput to given one.

public void
setProfilingMode(RubyInstanceConfig.ProfilingMode
a new profiling mode to be set.
mode
)

Changes a ProfilingMode to a given one.

public void
setReader(Reader
is a reader to be set
reader
)

Replaces a standard input by a specified reader

public void
setRecordSeparator(String
a new record separator value, "0" or "777"
separator
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setRecordSeparator.

Changes a record separator to a given value.

public void
setRunRubyInProcess(boolean
true when Ruby is set to run in the process, or false not to run in the process.
inprocess
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setRunRubyInProcess.

Changes the value to determine whether Ruby runs in a process or not.

public void
setScriptFilename(String
a new script filename.
filename
)

Implements org.jruby.embed.EmbedRubyInstanceConfigAdapter.setScriptFilename.

Changes a script filename to run.

public void
setWriter(Writer
is a writer to be set
writer
)

Replaces a standard output by a specified writer.

public void
terminate()

Cleanly shut down this ScriptingContainer and any JRuby resources it holds.

Inherited from java.lang.Object:
cloneequalsgetClasshashCodenotifynotifyAlltoStringwaitwaitwait