|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.JistAPI
public class JistAPI
Represents the JIST application interface to the JIST system. A simulation application should not have any references into the jist.runtime package other than to the JistAPI class.
Nested Class Summary | |
---|---|
static class |
JistAPI.Continuable
Tags a method (explicitly) as continuable. |
static class |
JistAPI.Continuation
Tags a method as call-with-continuation (blocking). |
static interface |
JistAPI.CustomRewriter
Interface for custom rewrite pass. |
static interface |
JistAPI.DoNotRewrite
Do not rewrite tagged class. |
static interface |
JistAPI.Entity
Tags a simulation object as an Entity. |
static interface |
JistAPI.Logger
Interface for custom logger. |
static interface |
JistAPI.Proxiable
Tags an object as a target for a Proxy Entity. |
static interface |
JistAPI.Timeless
Tags a simulation object as an Timeless. |
Field Summary | |
---|---|
static long |
END
Simulation end time constant. |
static int |
RUN_BSH
Beanshell script constant. |
static int |
RUN_CLASS
Java application constant. |
static int |
RUN_JPY
Jython script constant. |
static JistAPI.Entity |
THIS
Entity reference for 'this'. |
Constructor Summary | |
---|---|
JistAPI()
|
Method Summary | |
---|---|
static void |
callStaticAt(java.lang.reflect.Method meth,
java.lang.Object[] params,
long time)
Invoke a static method at given simulation time. |
static Channel |
createChannel()
Create a new Channel entity. |
static void |
end()
End simulation at current time. |
static void |
endAt(long time)
End simulation at given (absolute) time. |
static long |
getTime()
Return the current simulation time. |
static java.lang.String |
getTimeString()
Return time string in simulation time units. |
static void |
installRewrite(JistAPI.CustomRewriter rewrite)
Install a new rewriting step at top of chain. |
static boolean |
isEntity(java.lang.Object o)
Determine whether given reference is an entity reference. |
static void |
log(java.lang.String s)
Emit string to simulation log. |
static java.lang.Object |
proxy(java.lang.Object proxyTarget,
java.lang.Class proxyInterface)
Create proxy entity with given interface. |
static java.lang.Object |
proxyMany(java.lang.Object proxyTarget,
java.lang.Class[] proxyInterface)
Create a entity proxy with multiple given interfaces. |
static JistAPI.Entity |
ref(JistAPI.Entity entity)
Get Entity reference for given Entity. |
static void |
run(int type,
java.lang.String name,
java.lang.String[] args,
java.lang.Object properties)
Bootstrap a new program or script. |
static void |
runAt(java.lang.Runnable r,
long time)
Call a runnable object at given simulation time. |
static void |
setLog(JistAPI.Logger logger)
Set the simulation logger. |
static void |
setSimUnits(long ticks,
java.lang.String name)
Set simulation time units. |
static void |
sleep(long i)
Advance the current simulation time, but do not block the current method. |
static void |
sleepBlock(long i)
Advance the current simulation time, and block current method (using simulation time continuations) until that time. |
static java.lang.String |
toString(java.lang.Object o)
Determine the String representation of an object or entity. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static JistAPI.Entity THIS
public static long END
public static final int RUN_CLASS
public static final int RUN_BSH
public static final int RUN_JPY
Constructor Detail |
---|
public JistAPI()
Method Detail |
---|
public static long getTime()
public static void sleep(long i)
i
- number of time steps to advance simulation timepublic static void sleepBlock(long i) throws JistAPI.Continuable
i
- number of time steps to advance simulation time
JistAPI.Continuable
public static JistAPI.Entity ref(JistAPI.Entity entity)
entity
- entity to convert into entity reference
public static void end()
public static void endAt(long time)
time
- simulation time at which to end simulationpublic static void callStaticAt(java.lang.reflect.Method meth, java.lang.Object[] params, long time)
meth
- method to invokeparams
- parameters of invocationtime
- simulation invocation timepublic static void runAt(java.lang.Runnable r, long time)
r
- runnable objecttime
- invocation timepublic static java.lang.Object proxy(java.lang.Object proxyTarget, java.lang.Class proxyInterface)
proxyTarget
- target object of proxy entityproxyInterface
- public interface of proxy entity
public static java.lang.Object proxyMany(java.lang.Object proxyTarget, java.lang.Class[] proxyInterface)
proxyTarget
- target object of proxy entityproxyInterface
- public interfaces of proxy entity
public static Channel createChannel()
public static void installRewrite(JistAPI.CustomRewriter rewrite)
rewrite
- rewrite traversal objectpublic static void run(int type, java.lang.String name, java.lang.String[] args, java.lang.Object properties)
type
- bootstrap typename
- script or application nameargs
- command-line argumentsproperties
- values passed to the bootstrap agentpublic static void setSimUnits(long ticks, java.lang.String name)
ticks
- number of simulation ticks per unitname
- time unit of measure namepublic static java.lang.String getTimeString()
public static void setLog(JistAPI.Logger logger)
logger
- logger instancepublic static void log(java.lang.String s)
s
- log informationpublic static boolean isEntity(java.lang.Object o)
o
- object reference to test
public static java.lang.String toString(java.lang.Object o)
o
- object to stringify
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |