The runtime
module exposes information specific to the D runtime
code.
C interface for Runtime.loadLibrary
C interface for Runtime.unloadLibrary, returns 1/0 instead of bool
C interface for Runtime.initialize, returns 1/0 instead of bool
C interface for Runtime.terminate, returns 1/0 instead of bool
Stores the unprocessed arguments supplied when the process was started.
The argument count.
The arguments as a C array of strings.
This struct encapsulates all functionality related to the underlying runtime module for the calling context.
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. If the runtime was already successfully initialized this returns true
. Each call to initialize
must be paired by a call to terminate
.
true
if initialization succeeded or false
if initialization failed.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. If the runtime was not successfully initialized the function returns false
.
true
if termination succeeded or false
if termination failed.Returns the arguments supplied when the process was started.
Returns the unprocessed C arguments supplied when the process was started. Use this when you need to supply argc and argv to C libraries.
CArgs
struct with the arguments supplied when this process was started. import core.runtime; // A C library function requiring char** arguments extern(C) void initLibFoo(int argc, char** argv); void main() { auto args = Runtime.cArgs; initLibFoo(args.argc, args.argv); }
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.
char[] name
| The name of the dynamic library to load. |
null
on error.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.
void* p
| A reference to the library to unload. |
Overrides the default trace mechanism with a 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.
TraceHandler h
| The new trace handler. Set to null to use the default handler. |
Gets the current trace handler.
null
if none has been set.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.
CollectHandler h
| The new collect handler. Set to null to use the default handler. |
Gets the current collect handler.
null
if none has been set.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.
ModuleUnitTester h
| The new unit tester. Set to null to use the default unit tester. |
version (unittest) shared static this() { import core.runtime; Runtime.moduleUnitTester = &customModuleUnitTester; } bool customModuleUnitTester() { import std.stdio; writeln("Using customModuleUnitTester"); // Do the same thing as the default moduleUnitTester: size_t failed = 0; foreach (m; ModuleInfo) { if (m) { auto fp = m.unitTest; if (fp) { try { fp(); } catch (Throwable e) { writeln(e); failed++; } } } } return failed == 0; }
Gets the current module unit tester.
null
if none has been set.Set source file path
for coverage reports.
string path
| The new path name. |
Set output path
for coverage reports.
string path
| The new path name. |
Enable merging of coverage reports with existing data.
bool flag
| enable/disable coverage merge mode |
Set the output file name
for profile reports (-profile switch). An empty name
will set the output to stdout.
string name
| file name
|
Set the output file name
for the optimized profile linker DEF file (-profile switch). An empty name
will set the output to stdout.
string name
| file name
|
Set the output file name
for memory profile reports (-profile=gc switch). An empty name
will set the output to stdout.
string name
| file name
|
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.
true
if execution should continue after testing is complete and false
if not. Default behavior is to return true
.
© 1999–2017 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/core_runtime.html