| title | system |
|---|
The stdlib_system module provides interface for interacting with external processes, enabling the execution
and monitoring of system commands or applications directly from Fortran.
[TOC]
Experimental
The run interface allows execution of external processes using a single command string or a list of arguments.
Processes run synchronously, meaning execution is blocked until the process finishes.
Optional arguments enable the collection of standard output and error streams, as well as sending input via standard input.
Additionally, a callback function can be specified to execute upon process completion, optionally receiving a user-defined payload.
process = [[stdlib_system(module):run(interface)]] (args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload])
args: Shall be a character(*) string (for command-line execution) or a character(*), dimension(:) array (for argument-based execution). It specifies the command and arguments to execute. This is an intent(in) argument.
stdin (optional): Shall be a character(*) value containing input to send to the process via standard input (pipe). This is an intent(in) argument.
want_stdout (optional): Shall be a logical flag. If .true., the standard output of the process will be captured; if .false. (default), it will be lost. This is an intent(in) argument.
want_stderr (optional): Shall be a logical flag. If .true., the standard error output of the process will be captured. If .false. (default), it will be lost. This is an intent(in) argument.
callback (optional): Shall be a procedure conforming to the process_callback interface. If present, this function will be called upon process completion with the process ID, exit state, and optionally collected standard input, output, and error streams. This is an intent(in) argument.
payload (optional): Shall be a generic (class(*)) scalar that will be passed to the callback function upon process completion. It allows users to associate custom data with the process execution. This is an intent(inout), target argument.
Returns an object of type process_type that contains information about the state of the created process.
! Example usage with command line or list of arguments
type(process_type) :: p
! Run a simple command line synchronously
p = run("echo 'Hello, world!'", want_stdout=.true.)Experimental
The runasync interface allows execution of external processes using a single command string or a list of arguments.
Processes are run asynchronously (non-blocking), meaning execution does not wait for the process to finish.
Optional arguments enable the collection of standard output and error streams, as well as sending input via standard input.
Additionally, a callback function can be specified to execute upon process completion, optionally receiving a user-defined payload.
process = [[stdlib_system(module):runasync(interface)]] (args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload])
args: Shall be a character(*) string (for command-line execution) or a character(*), dimension(:) array (for argument-based execution). It specifies the command and arguments to execute. This is an intent(in) argument.
stdin (optional): Shall be a character(*) value containing input to send to the process via standard input (pipe). This is an intent(in) argument.
want_stdout (optional): Shall be a logical flag. If .true., the standard output of the process will be captured; if .false. (default), it will be lost. This is an intent(in) argument.
want_stderr (optional): Shall be a logical flag. If .true., the standard error output of the process will be captured. Default: .false.. This is an intent(in) argument.
callback (optional): Shall be a procedure conforming to the process_callback interface. If present, this function will be called upon process completion with the process ID, exit state, and optionally collected standard input, output, and error streams. This is an intent(in) argument.
payload (optional): Shall be a generic (class(*)) scalar that will be passed to the callback function upon process completion. It allows users to associate custom data with the process execution. This is an intent(inout), target argument.
Returns an object of type process_type that contains information about the state of the created process.
{!example/system/example_process_1.f90!}Experimental
The is_running interface provides a method to check if an external process is still running.
This is useful for monitoring the status of asynchronous processes created with the run interface.
status = [[stdlib_system(module):is_running(interface)]] (process)
process: Shall be a type(process_type) object representing the external process to check. This is an intent(inout) argument.
Returns a logical value: .true. if the process is still running, or .false. if the process has terminated.
After a call to is_running, the type(process_type) structure is also updated to the latest process state.
{!example/system/example_process_2.f90!}Experimental
The is_completed interface provides a method to check if an external process has finished execution.
This is useful for determining whether asynchronous processes created with the run interface have terminated.
status = [[stdlib_system(module):is_completed(interface)]] (process)
process: Shall be a type(process_type) object representing the external process to check. This is an intent(inout) argument.
Returns a logical value:
.true.if the process has completed..false.if the process is still running.
After a call to is_completed, the type(process_type) structure is updated to reflect the latest process state.
{!example/system/example_process_1.f90!}Experimental
The elapsed interface provides a method to calculate the total time that has elapsed since a process was started.
This is useful for tracking the duration of an external process or for performance monitoring purposes.
The result is a real value representing the elapsed time in seconds, measured from the time the process was created.
delta_t = [[stdlib_system(module):elapsed(interface)]] (process)
process: Shall be a type(process_type) object representing the external process. It is an intent(in) argument.
Returns a real(real64) value that represents the elapsed time (in seconds) since the process was started.
If the process is still running, the value returned is the time elapsed until the call to this function.
Otherwise, the total process duration from creation until completion is returned.
{!example/system/example_process_3.f90!}Experimental
The wait interface provides a method to block the calling program until the specified process completes.
If the process is running asynchronously, this subroutine will pause the workflow until the given process finishes.
Additionally, an optional maximum wait time can be provided. If the process does not finish within the specified time,
the subroutine will return without waiting further.
On return from this routine, the process state is accordingly updated. This is useful when you want to wait for a background task to complete, but want to avoid indefinite blocking in case of process hang or delay.
call [[stdlib_system(module):wait(interface)]] (process [, max_wait_time])
process: Shall be a type(process_type) object representing the external process to monitor.
This is an intent(inout) argument, and its state is updated upon completion.
max_wait_time (optional): Shall be a real value specifying the maximum wait time in seconds.
If not provided, the subroutine will wait indefinitely until the process completes.
{!example/system/example_process_2.f90!}Experimental
The update interface allows the internal state of a process object to be updated by querying the system.
After the process completes, the standard output and standard error are retrieved, if they were requested, and loaded into the process%stdout and process%stderr string variables, respectively.
This is especially useful for monitoring asynchronous processes and retrieving their output after they have finished.
call [[stdlib_system(module):update(interface)]] (process)
process: Shall be a type(process_type) object representing the external process whose state needs to be updated.
This is an intent(inout) argument, and its internal state is updated on completion.
{!example/system/example_process_5.f90!}Experimental
The kill interface is used to terminate a running external process. It attempts to stop the process and returns a boolean flag indicating whether the operation was successful.
This interface is useful when a process needs to be forcefully stopped, for example, if it becomes unresponsive or if its execution is no longer required.
call [[stdlib_system(module):kill(interface)]] (process, success)
process: Shall be a type(process_type) object representing the external process to be terminated.
This is an intent(inout) argument, and on return is updated with the terminated process state.
success: Shall be a logical variable. It is set to .true. if the process was successfully killed, or .false. otherwise.
{!example/system/example_process_4.f90!}Experimental
The sleep interface pauses the execution of a program for a specified duration, given in milliseconds.
This routine acts as a cross-platform wrapper, abstracting the underlying platform-specific sleep implementations.
It ensures that the requested sleep duration is honored on both Windows and Unix-like systems.
call [[stdlib_system(module):sleep(interface)]] (millisec)
millisec: Shall be an integer representing the number of milliseconds to sleep. This is an intent(in) argument.
{!example/system/example_sleep.f90!}Experimental
The is_windows interface provides a quick, compile-time check to determine if the current system is Windows.
It leverages a C function that checks for the presence of the _WIN32 macro, which is defined in C compilers when targeting Windows.
This function is highly efficient and works during the compilation phase, avoiding the need for runtime checks.
result = [[stdlib_system(module):is_windows(interface)]] ()
Returns a logical flag: .true. if the system is Windows, or .false. otherwise.
{!example/system/example_process_1.f90!}Experimental
get_runtime_os inspects the runtime environment to identify the current OS type. It evaluates environment variables (OSTYPE, OS) and checks for specific files associated with known operating systems.
The supported OS types are integer, parameter variables stored in the stdlib_system module:
- Linux (
OS_LINUX) - macOS (
OS_MACOS) - Windows (
OS_WINDOWS) - Cygwin (
OS_CYGWIN) - Solaris (
OS_SOLARIS) - FreeBSD (
OS_FREEBSD) - OpenBSD (
OS_OPENBSD)
If the OS cannot be identified, the function returns OS_UNKNOWN.
os = [[stdlib_system(module):get_runtime_os(function)]] ()
Function
None.
Returns one of the integer OS_* parameters representing the OS type, from the stdlib_system module, or OS_UNKNOWN if undetermined.
{!example/system/example_get_runtime_os.f90!}Experimental
OS_TYPE provides a cached result of the get_runtime_os function. The OS type is determined during the first invocation and stored in a static variable.
Subsequent calls reuse the cached value, making this function highly efficient.
This caching mechanism ensures negligible overhead for repeated calls, unlike get_runtime_os, which performs a full runtime inspection.
os = [[stdlib_system(module):OS_TYPE(function)]]()
Function
None.
Returns one of the integer OS_* parameters representing the OS type, from the stdlib_system module, or OS_UNKNOWN if undetermined.
{!example/system/example_os_type.f90!}Experimental
A helper function for returning the type(state_type) with the flag STDLIB_FS_ERROR set.
err = FS_ERROR([a1,a2,a3,a4...... a20])
Pure Function
a1,a2,a3.....a20(optional): They are of type class(*), dimension(..), optional, intent(in).
An arbitrary list of integer, real, complex, character or string_type variables. Numeric variables may be provided as either scalars or rank-1 (array) inputs.
Formats all the arguments into a nice error message, utilizing the constructor of [[stdlib_system(module):state_type(type)]]
type(state_type)
{!example/system/example_fs_error.f90!}Experimental
A helper function for returning the type(state_type) with the flag STDLIB_FS_ERROR set.
It also formats and prefixes the code passed to it as the first argument.
err = FS_ERROR_CODE(code [, a1,a2,a3,a4...... a19])
Pure Function
code: An integer code.
a1,a2,a3.....a19(optional): They are of type class(*), dimension(..), optional, intent(in).
An arbitrary list of integer, real, complex, character or string_type variables. Numeric variables may be provided as either scalars or rank-1 (array) inputs.
Formats all the arguments into a nice error message, utilizing the constructor of [[stdlib_system(module):state_type(type)]]
type(state_type)
{!example/system/example_fs_error.f90!}Experimental
This function checks if a specified file system path is a directory.
It is designed to work across multiple platforms. On Windows, paths with both forward / and backward \ slashes are accepted.
result = [[stdlib_system(module):is_directory(function)]](path)
Function
path: Shall be a character string containing the file system path to evaluate. It is an intent(in) argument.
The function returns a logical value:
.true.if the path matches an existing directory..false.otherwise, or if the operating system is unsupported.
{!example/system/example_is_directory.f90!}Experimental
It creates an empty directory with default permissions.
It is designed to work across multiple platforms. On Windows, paths with both forward / and backward \ slashes are accepted.
call [[stdlib_system(module):make_directory(subroutine)]] (path [,err])
Subroutine
path: Shall be a character string containing the path of the directory to create. It is an intent(in) argument.
err(optional): Shall be of type state_type, and is used for error handling. It is an optional, intent(out) argument.
err is an optional state return flag. If not requested and an error occurs, an FS_ERROR will trigger an error stop.
{!example/system/example_make_directory.f90!}Experimental
It creates an empty directory with default permissions. It also creates all the necessary parent directories in the path if they do not exist already.
call [[stdlib_system(module):make_directory_all(subroutine)]] (path [,err])
Subroutine
path: Shall be a character string containing the path of the directory to create. It is an intent(in) argument.
err(optional): Shall be of type state_type, and is used for error handling. It is an optional, intent(out) argument.
err is an optional state return flag. If not requested and an error occurs, an FS_ERROR will trigger an error stop.
{!example/system/example_make_directory.f90!}Experimental
It deletes an empty directory.
It is designed to work across multiple platforms. On Windows, paths with both forward / and backward \ slashes are accepted.
call [[stdlib_system(module):remove_directory(subroutine)]] (path, err)
Subroutine
path: Shall be a character string containing the path of the directory to create. It is an intent(in) argument.
err(optional): Shall be of type state_type, and is used for error handling. It is an optional, intent(out) argument.
err is an optional state return flag. On error if not requested, an FS_ERROR will trigger an error stop.
{!example/system/example_remove_directory.f90!}Experimental
This subroutine retrieves the current working directory the running process is executing from.
It is designed to work across multiple platforms. On Windows, paths with both forward / and backward \ slashes are accepted.
call [[stdlib_system(module):get_cwd(subroutine)]] (cwd [, err])
Subroutine
cwd: Shall be a character string for receiving the path of the current working directory (cwd). It is an intent(out) argument.
err(optional): Shall be of type state_type, and is used for error handling. It is an intent(out) argument.
err is an optional state return flag. On error if not requested, an FS_ERROR will trigger an error stop.
{!example/system/example_cwd.f90!}Experimental
This subrotine sets the current working directory the process is executing from.
It is designed to work across multiple platforms. On Windows, paths with both forward / and backward \ slashes are accepted.
call [[stdlib_system(module):set_cwd(subroutine)]] (path [, err])
Subroutine
path: Shall be a character string containing the path of the directory. It is an intent(in) argument.
err(optional): Shall be of type state_type, and is used for error handling. It is an intent(out) argument.
err is an optional state return flag. On error if not requested, an FS_ERROR will trigger an error stop.
{!example/system/example_cwd.f90!}Experimental
This function gets the size (in bytes) of a file in the filesystem.
It follows symbolic links, returns an error if the symbolic link or the path points to a directory instead.
It is designed to work across multiple platforms. On Windows, paths with both forward / and backward \ slashes are accepted.
res = [[stdlib_system(module):get_file_size(function)]] (path [, err])
Function
path: Shall be a character string containing the path of the file. It is an intent(in) argument.
err(optional): Shall be of type state_type, and is used for error handling. It is an intent(out) argument.
res: it is the size (in bytes). It is of type integer(kind=int64).
err: it is an optional state return flag. On error if not requested, an FS_ERROR will trigger an error stop.
{!example/system/example_get_file_size.f90!}Experimental
This function returns the file path of the null device, which is a special file used to discard any data written to it. It reads as an empty file. The null device's path varies by operating system:
- On Windows, the null device is represented as
NUL. - On UNIX-like systems (Linux, macOS), the null device is represented as
/dev/null.
path = [[stdlib_system(module):null_device(function)]]()
Function
None.
- Type:
character(:), allocatable - Returns the null device file path as a character string, appropriate for the operating system.
{!example/system/example_null_device.f90!}Experimental
This subroutine deletes a specified file from the filesystem. It ensures that the file exists and is not a directory before attempting deletion.
If the file cannot be deleted due to permissions, being a directory, or other issues, an error is raised.
The function provides an optional error-handling mechanism via the state_type class. If the err argument is not provided, exceptions will trigger an error stop.
call [[stdlib_system(module):delete_file(subroutine)]] (path [, err])
Subroutine
path: Shall be a character string containing the path to the file to be deleted. It is an intent(in) argument.
err (optional): Shall be a type(state_type) variable for error handling. If provided, errors are returned as a state object. If not provided, the program stops execution on error.
- Checks if the file exists. If not, an error is raised.
- Ensures the path is not a directory before deletion.
- Attempts to delete the file, raising an error if unsuccessful.
The file is removed from the filesystem if the operation is successful. If the operation fails, an error is raised.
{!example/system/example_delete_file.f90!}Experimental
This interface joins the paths provided to it according to the platform specific path-separator.
i.e \ for windows and / for others
res = [[stdlib_system(module):join_path(interface)]] (p1, p2)
res = [[stdlib_system(module):join_path(interface)]] (p)
Pure function
p1, p2: Shall be a character string or type(string_type). It is an intent(in) argument.
or
p: Shall be a list of character strings or list of type(string_type). It is an intent(in) argument.
The resultant path, either a character string or type(string_type).
Alternative syntax tojoin_path using an overloaded operator. Join two paths according to the platform specific path-separator.
Experimental
p = lval / rval
Pure function.
lval: A character string or type(string_type). It is an intent(in) argument.
rval: A character string or type(string_type). It is an intent(in) argument.
The result is an allocatable character string or type(string_type)
{!example/system/example_path_join.f90!}Experimental
This subroutine splits a path immediately following the last separator after removing the trailing separators splitting it into most of the times a directory and a file name.
call [[stdlib_system(module):split_path(interface)]](p, head, tail)
Subroutine
p: A character string or type(string_type) containing the path to be split. It is an intent(in) argument.
head: The first part of the path. Either a character string or type(string_type). It is an intent(out) argument.
tail: The rest part of the path. Either a character string or type(string_type). It is an intent(out) argument.
- If
pis empty,headis set to.andtailis left empty. - If
pconsists entirely of path-separators,headis set to the path-separator andtailis left empty. headends with a path-separator if and only ifpappears to be a root directory or child of one.
The splitted path. head and tail.
{!example/system/example_path_split_path.f90!}Experimental
This function returns the last part of a path after removing trailing path separators.
res = [[stdlib_system(module):base_name(interface)]](p)
Function
p: the path, a character string or type(string_type). It is an intent(in) argument.
- The
tailof[[stdlib_system(module):split_path(interface)]]is exactly what is returned. Same Behavior.
A character string or type(string_type).
{!example/system/example_path_base_name.f90!}Experimental
This function returns everything except the last part of a path.
res = [[stdlib_system(module):dir_name(interface)]](p)
Function
p: the path, a character string or type(string_type). It is an intent(in) argument.
- The
headof[[stdlib_system(module):split_path(interface)]]is exactly what is returned. Same Behavior.
A character string or type(string_type).
{!example/system/example_path_dir_name.f90!}