www.digitalmars.com

D Programming Language 2.0

Last update Tue Jan 1 10:14:39 2013

core.runtime

The runtime module exposes information specific to the D runtime code.

License:
Boost License 1.0

Authors:
Sean Kelly

Source:
core/runtime.d

struct Runtime;
This struct encapsulates all functionality related to the underlying runtime module for the calling context.

static bool initialize(ExceptionHandler dg = null);
Initializes the runtime. This call is to be used in instances where the standard program initialization process is not executed. This is most often in shared libraries or in libraries linked to a C program.

Parameters:
ExceptionHandler dg A delegate which will receive any exception thrown during the initialization process or null if such exceptions should be discarded.

Returns:
true if initialization succeeds and false if initialization fails.

static bool terminate(ExceptionHandler dg = null);
Terminates the runtime. This call is to be used in instances where the standard program termination process will not be not executed. This is most often in shared libraries or in libraries linked to a C program.

Parameters:
ExceptionHandler dg A delegate which will receive any exception thrown during the termination process or null if such exceptions should be discarded.

Returns:
true if termination succeeds and false if termination fails.

static @property string[] args();
Returns the arguments supplied when the process was started.

Returns:
The arguments supplied when this process was started.

static @property CArgs cArgs();
Returns the unprocessed C arguments supplied when the process was started. Use this when you need to supply argc and argv to C libraries.

Returns:
The arguments supplied when this process was started.

static void* loadLibrary(in char[] name);
Locates a dynamic library with the supplied library name and dynamically loads it into the caller's address space. If the library contains a D runtime it will be integrated with the current runtime.

Parameters:
char[] name The name of the dynamic library to load.

Returns:
A reference to the library or null on error.

static bool unloadLibrary(void* p);
Unloads the dynamic library referenced by p. If this library contains a D runtime then any necessary finalization or cleanup of that runtime will be performed.

Parameters:
void* p A reference to the library to unload.

static @property void traceHandler(TraceHandler h);
Overrides the default trace mechanism with s user-supplied version. A trace represents the context from which an exception was thrown, and the trace handler will be called when this occurs. The pointer supplied to this routine indicates the base address from which tracing should occur. If the supplied pointer is null then the trace routine should determine an appropriate calling context from which to begin the trace.

Parameters:
TraceHandler h The new trace handler. Set to null to use the default handler.

static @property TraceHandler traceHandler();
Gets the current trace handler.

Returns:
The current trace handler or null if no trace handler is set.

static @property void collectHandler(CollectHandler h);
Overrides the default collect hander with a user-supplied version. This routine will be called for each resource object that is finalized in a non-deterministic manner--typically during a garbage collection cycle. If the supplied routine returns true then the object's dtor will called as normal, but if the routine returns false than the dtor will not be called. The default behavior is for all object dtors to be called.

Parameters:
CollectHandler h The new collect handler. Set to null to use the default handler.

static @property CollectHandler collectHandler();
Gets the current collect handler.

Returns:
The current collect handler or null if no trace handler is set.

static @property void moduleUnitTester(ModuleUnitTester h);
Overrides the default module unit tester with a user-supplied version. This routine will be called once on program initialization. The return value of this routine indicates to the runtime whether the tests ran without error.

Parameters:
ModuleUnitTester h The new unit tester. Set to null to use the default unit tester.

static @property ModuleUnitTester moduleUnitTester();
Gets the current module unit tester.

Returns:
The current module unit tester handler or null if no trace handler is set.

struct CArgs;
This struct stores the unprocessed arguments supplied when the process was started.

bool runModuleUnitTests();
This routine is called by the runtime to run module unit tests on startup. The user-supplied unit tester will be called if one has been supplied, otherwise all unit tests will be run in sequence.

Returns:
true if execution should continue after testing is complete and false if not. Default behavior is to return true.