Report a bug
		
				If you spot a problem with this page, click here to create a Bugzilla issue.
		
			Improve this page
		
			Quickly fork, edit online, and submit a pull request for this page.
			Requires a signed-in GitHub account. This works well for small changes.
			If you'd like to make larger changes you may want to consider using
			a local clone.
		
	core.runtime
The runtime module exposes information specific to the D runtime code.
License: 
Authors: 
Sean Kelly
Source core/runtime.d
Documentation https://dlang.org/phobos/core_runtime.html
- void*rt_loadLibrary(const char*name);
- C interface for Runtime.loadLibrary
- intrt_unloadLibrary(void*ptr);
- C interface for Runtime.unloadLibrary, returns 1/0 instead of bool
- intrt_init();
- C interface for Runtime.initialize, returns 1/0 instead of bool
- intrt_term();
- C interface for Runtime.terminate, returns 1/0 instead of bool
- structUnitTestResult;
- This type is returned by the module unit test handler to indicate testing results.- size_texecuted;
- Number of modules which were tested
- size_tpassed;
- Number of modules passed the unittests
- boolrunMain;
- Should the main function be run or not? This is ignored if any tests failed.
- boolsummarize;
- Should we print a summary of the results?
- boolopCast(T : bool)() const;
- Simple check for whether execution should continue after unit tests have been run. Works with legacy code that expected a bool return.Returns:true if execution should continue after testing is complete, false if not.
- enum UnitTestResultpass;
- Simple return code that says unit tests pass, and main should be run
- enum UnitTestResultfail;
- Simple return code that says unit tests failed.
 
- aliasModuleUnitTester= bool function();
- Legacy module unit test handler
- aliasExtendedModuleUnitTester= UnitTestResult function();
- Module unit test handler
- structCArgs;
- Stores the unprocessed arguments supplied when the process was started.- intargc;
- The argument count.
- char**argv;
- The arguments as a C array of strings.
 
- structRuntime;
- This struct encapsulates all functionality related to the underlying runtime module for the calling context.- static boolinitialize();
- 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.Returns:true if initialization succeeded or false if initialization failed.
- static boolterminate();
- 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.Returns:true if termination succeeded or false if termination failed.
- static @property string[]args();
- Returns the arguments supplied when the process was started.Returns:The arguments supplied when this process was started.
- static @nogc @property CArgscArgs();
- 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:A CArgs struct with the arguments supplied when this process was started.Example 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); } 
- void*loadLibrary()(scope const 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[] nameThe name of the dynamic library to load. Returns:A reference to the library or null on error.
- boolunloadLibrary()(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* pA reference to the library to unload. 
- static @property voidtraceHandler(TraceHandlerh, Throwable.TraceDeallocatord= null);
- 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.If the deallocator is set, then it is called with the traceinfo when the exception is finalized. The deallocator is only set in the exception if the default handler is used to generate the trace info.Parameters:TraceHandler hThe new trace handler. Set to null to disable exception backtracing. Throwable.TraceDeallocator dThe new trace deallocator. If non-null, this will be called on exception destruction with the trace info, only when the trace handler is used to generate TraceInfo. 
- static @property TraceHandlertraceHandler();
- Gets the current trace handler.Returns:The current trace handler or null if none has been set.
- static @property Throwable.TraceDeallocatortraceDeallocator();
- Gets the current trace deallocator.Returns:The current trace deallocator or null if none has been set.
- static @property voidcollectHandler(CollectHandlerh);
- 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 hThe new collect handler. Set to null to use the default handler. 
- static @property CollectHandlercollectHandler();
- Gets the current collect handler.Returns:The current collect handler or null if none has been set.
- static @property voidextendedModuleUnitTester(ExtendedModuleUnitTesterh);
 static @property voidmoduleUnitTester(ModuleUnitTesterh);
- 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.There are two options for handlers. The bool version is deprecated but will be kept for legacy support. Returning true from the handler is equivalent to returning UnitTestResult.pass from the extended version. Returning false from the handler is equivalent to returning UnitTestResult.fail from the extended version. See the documentation for UnitTestResult to see how you should set up the return structure. See the documentation for runModuleUnitTests for how the default algorithm works, or read the example below.Parameters:ExtendedModuleUnitTester hThe new unit tester. Set both to null to use the default unit tester. Example shared static this() { import core.runtime; Runtime.extendedModuleUnitTester = &customModuleUnitTester; } UnitTestResult customModuleUnitTester() { import std.stdio; writeln("Using customModuleUnitTester"); // Do the same thing as the default moduleUnitTester: UnitTestResult result; foreach (m; ModuleInfo) { if (m) { auto fp = m.unitTest; if (fp) { ++result.executed; try { fp(); ++result.passed; } catch (Throwable e) { writeln(e); } } } } if (result.executed != result.passed) { result.runMain = false; // don't run main result.summarize = true; // print failure } else { result.runMain = true; // all UT passed result.summarize = false; // be quiet about it. } return result; } 
- static @property ModuleUnitTestermoduleUnitTester();
- Gets the current legacy module unit tester.This property should not be used, but is supported for legacy purposes. Note that if the extended unit test handler is set, this handler will be ignored.Returns:The current legacy module unit tester handler or null if none has been set.
- static @property ExtendedModuleUnitTesterextendedModuleUnitTester();
- Gets the current module unit tester.This handler overrides any legacy module unit tester set by the moduleUnitTester property.Returns:The current module unit tester handler or null if none has been set.
 
- voiddmd_coverSourcePath(stringpath);
- Set source file path for coverage reports.Parameters:string pathThe new path name. Note This is a dmd specific setting. 
- voiddmd_coverDestPath(stringpath);
- Set output path for coverage reports.Parameters:string pathThe new path name. Note This is a dmd specific setting. 
- voiddmd_coverSetMerge(boolflag);
- Enable merging of coverage reports with existing data.Parameters:bool flagenable/disable coverage merge mode Note This is a dmd specific setting. 
- voidtrace_setlogfilename(stringname);
- Set the output file name for profile reports (-profile switch). An empty name will set the output to stdout.Parameters:string namefile name Note This is a dmd specific setting. 
- voidtrace_setdeffilename(stringname);
- Set the output file name for the optimized profile linker DEF file (-profile switch). An empty name will set the output to stdout.Parameters:string namefile name Note This is a dmd specific setting. 
- voidprofilegc_setlogfilename(stringname);
- Set the output file name for memory profile reports (-profile=gc switch). An empty name will set the output to stdout.Parameters:string namefile name Note This is a dmd specific setting. 
- UnitTestResultrunModuleUnitTests();
- 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 set, otherwise all unit tests will be run in sequence.If the extended unittest handler is registered, this function returns the result from that handler directly. If a legacy boolean returning custom handler is used, false maps to UnitTestResult.fail, and true maps to UnitTestResult.pass. This was the original behavior of the unit testing system. If no unittest custom handlers are registered, the following algorithm is executed (the behavior can be affected by the --DRT-testmode switch below):- Execute any unittests present. For each that fails, print the stack trace and continue.
- If no unittests were present, set summarize to false, and runMain to true.
- Otherwise, set summarize to true, and runMain to false.
 - "run-main": even if unit tests are run (and all pass), runMain is set to true.
- "test-or-main": any unit tests present will cause the program to summarize the results and exit regardless of the result. This is the default.
- "test-only", runMain is set to false, even with no tests present.
 Returns:A UnitTestResult struct indicating the result of running unit tests.
- Throwable.TraceInfodefaultTraceHandler(void*ptr= null);
- Get the default Throwable.TraceInfo implementation for the platformThis functions returns a trace handler, allowing to inspect the current stack trace. IMPORTANT NOTE! the returned trace is potentially not GC allocated, and so you must call defaultTraceDeallocator when you are finished with the TraceInfoParameters:void* ptr(Windows only) The context to get the stack trace from. When null (the default), start from the current frame. Returns:A Throwable.TraceInfo implementation suitable to iterate over the stack, or null. If called from a finalizer (destructor), always returns null as trace handlers allocate.Examples:Example of a simple program printing its stack traceimport core.runtime; import core.stdc.stdio : printf; void main() { auto trace = defaultTraceHandler(null); foreach (line; trace) { printf("%.*s\n", cast(int)line.length, line.ptr); } defaultTraceDeallocator(trace); } 
- nothrow voiddefaultTraceDeallocator(Throwable.TraceInfoinfo);
- Deallocate a traceinfo generated by deaultTraceHander.Call this function on a TraceInfo generated via defaultTraceHandler when you are done with it. If necessary, this cleans up any manually managed resources from the TraceInfo, and invalidates it. After this, the object is no longer valid.Parameters:Throwable.TraceInfo infoThe TraceInfo to deallocate. This should only be a value that was returned by defaultTraceHandler. 
Copyright © 1999-2025 by the D Language Foundation | Page generated by
Ddoc on Mon Mar 31 10:27:33 2025