Elixir v1.3.3 System View Source

The System module provides functions that interact directly with the VM or the host system.

Time

The System module also provides functions that work with time, returning different times kept by the system with support for different time units.

One of the complexities in relying on system times is that they may be adjusted. For example, when you enter and leave daylight saving time, the system clock will be adjusted, often adding or removing one hour. We call such changes “time warps”. In order to understand how such changes may be harmful, imagine the following code:

## DO NOT DO THIS
prev = System.os_time()
# ... execute some code ...
next = System.os_time()
diff = next - prev

If, while the code is executing, the system clock changes, some code that executed in 1 second may be reported as taking over 1 hour! To address such concerns, the VM provides a monotonic time via System.monotonic_time/0 which never decreases and does not leap:

## DO THIS
prev = System.monotonic_time()
# ... execute some code ...
next = System.monotonic_time()
diff = next - prev

Generally speaking, the VM provides three time measurements:

  • os_time/0 - the time reported by the OS. This time may be adjusted forwards or backwards in time with no limitation;

  • system_time/0 - the VM view of the os_time/0. The system time and OS time may not match in case of time warps although the VM works towards aligning them. This time is not monotonic (i.e., it may decrease) as its behaviour is configured by the VM time warp mode;

  • monotonic_time/0 - a monotonically increasing time provided by the Erlang VM.

The time functions in this module work in the :native unit (unless specified otherwise), which is OS dependent. Most of the time, all calculations are done in the :native unit, to avoid loss of precision, with convert_time_unit/3 being invoked at the end to convert to a specific time unit like milliseconds or microseconds. See the time_unit/0 type for more information.

For a more complete rundown on the VM support for different times, see the chapter on time and time correction in the Erlang docs.

Link to this section Summary

Types

The time unit to be passed to functions like monotonic_time/1 and others

Functions

Lists command line arguments

Modifies command line arguments

Registers a program exit handler function

Elixir build information

Executes the given command with args

Returns the endianness the system was compiled with

Converts time from time unit from_unit to time unit to_unit

Current working directory

Current working directory, exception on error

Deletes an environment variable

Returns the endianness

Locates an executable on the system

System environment variables

Environment variable value

Erlang VM process identifier

Halts the Erlang runtime system

Returns the current monotonic time in the :native time unit

Returns the current monotonic time in the given time unit

Returns the current OS time

Returns the current OS time in the given time unit

Returns the OTP release number

Sets multiple environment variables

Sets an environment variable value

Returns the number of schedulers in the VM

Returns the number of schedulers online in the VM

Last exception stacktrace

Returns the current system time in the :native time unit

Returns the current system time in the given time unit

Returns the current time offset between the Erlang VM monotonic time and the Erlang VM system time

Returns the current time offset between the Erlang VM monotonic time and the Erlang VM system time

Writable temporary directory

Writable temporary directory, exception on error

Generates and returns an integer that is unique in the current runtime instance

User home directory

User home directory, exception on error

Elixir version information

Link to this section Types

Link to this type time_unit() View Source
time_unit ::
  :seconds |
  :milliseconds |
  :microseconds |
  :nanoseconds |
  pos_integer

The time unit to be passed to functions like monotonic_time/1 and others.

The :seconds, :milliseconds, :microseconds and :nanoseconds time units controls the return value of the functions that accept a time unit.

A time unit can also be a strictly positive integer. In this case, it represents the “parts per second”: the time will be returned in 1 / parts_per_second seconds. For example, using the :milliseconds time unit is equivalent to using 1000 as the time unit (as the time will be returned in 1/1000 seconds - milliseconds).

Keep in mind the Erlang API will use :milli_seconds, :micro_seconds and :nano_seconds as time units although Elixir normalizes their spelling to match the SI convention.

Link to this section Functions

Lists command line arguments.

Returns the list of command line arguments passed to the program.

Modifies command line arguments.

Changes the list of command line arguments. Use it with caution, as it destroys any previous argv information.

Registers a program exit handler function.

Registers a function that will be invoked at the end of program execution. Useful for invoking a hook in “script” mode.

The handler always executes in a different process from the one it was registered in. As a consequence, any resources managed by the calling process (ETS tables, open files, etc.) won’t be available by the time the handler function is invoked.

The function must receive the exit status code as an argument.

Link to this function build_info() View Source
build_info() :: map

Elixir build information.

Returns a keyword list with Elixir version, Git short revision hash and compilation date.

Link to this function cmd(command, args, opts \\ []) View Source
cmd(binary, [binary], Keyword.t) :: {Collectable.t, exit_status :: non_neg_integer}

Executes the given command with args.

command is expected to be an executable available in PATH unless an absolute path is given.

args must be a list of binaries which the executable will receive as its arguments as is. This means that:

  • environment variables will not be interpolated
  • wildcard expansion will not happen (unless Path.wildcard/2 is used explicitly)
  • arguments do not need to be escaped or quoted for shell safety

This function returns a tuple containing the collected result and the command exit status.

Examples

iex> System.cmd "echo", ["hello"]
{"hello\n", 0}

iex> System.cmd "echo", ["hello"], env: [{"MIX_ENV", "test"}]
{"hello\n", 0}

iex> System.cmd "echo", ["hello"], into: IO.stream(:stdio, :line)
hello
{%IO.Stream{}, 0}

Options

  • :into - injects the result into the given collectable, defaults to ""
  • :cd - the directory to run the command in
  • :env - an enumerable of tuples containing environment key-value as binary
  • :arg0 - set the command arg0
  • :stderr_to_stdout - redirects stderr to stdout when true
  • :parallelism - when true, the VM will schedule port tasks to improve parallelism in the system. If set to false, the VM will try to perform commands immediately, improving latency at the expense of parallelism. The default can be set on system startup by passing the “+spp” argument to --erl.

Error reasons

If invalid arguments are given, ArgumentError is raised by System.cmd/3. System.cmd/3 also expects a strict set of options and will raise if unknown or invalid options are given.

Furthermore, System.cmd/3 may fail with one of the POSIX reasons detailed below:

  • :system_limit - all available ports in the Erlang emulator are in use

  • :enomem - there was not enough memory to create the port

  • :eagain - there are no more available operating system processes

  • :enametoolong - the external command given was too long

  • :emfile - there are no more available file descriptors (for the operating system process that the Erlang emulator runs in)

  • :enfile - the file table is full (for the entire operating system)

  • :eacces - the command does not point to an executable file

  • :enoent - the command does not point to an existing file

Shell commands

If you desire to execute a trusted command inside a shell, with pipes, redirecting and so on, please check :os.cmd/1.

Returns the endianness the system was compiled with.

Link to this function convert_time_unit(time, from_unit, to_unit) View Source
convert_time_unit(integer, time_unit | :native, time_unit | :native) :: integer

Converts time from time unit from_unit to time unit to_unit.

The result is rounded via the floor function.

convert_time_unit/3 accepts an additional time unit (other than the ones in the time_unit type) called :native. :native is the time unit used by the Erlang runtime system. It’s determined when the runtime starts and stays the same until the runtime is stopped. To determine what the :native unit amounts to in a system, you can call this function to convert 1 second to the :native time unit (i.e., System.convert_time_unit(1, :seconds, :native)).

Current working directory.

Returns the current working directory or nil if one is not available.

Current working directory, exception on error.

Returns the current working directory or raises RuntimeError.

Link to this function delete_env(varname) View Source
delete_env(String.t) :: :ok

Deletes an environment variable.

Removes the variable varname from the environment.

Returns the endianness.

Link to this function find_executable(program) View Source
find_executable(binary) :: binary | nil

Locates an executable on the system.

This function looks up an executable program given its name using the environment variable PATH on Unix and Windows. It also considers the proper executable extension for each OS, so for Windows it will try to lookup files with .com, .cmd or similar extensions.

Link to this function get_env() View Source
get_env() :: %{optional(String.t) => String.t}

System environment variables.

Returns a list of all environment variables. Each variable is given as a {name, value} tuple where both name and value are strings.

Link to this function get_env(varname) View Source
get_env(binary) :: binary | nil

Environment variable value.

Returns the value of the environment variable varname as a binary, or nil if the environment variable is undefined.

Link to this function get_pid() View Source
get_pid() :: binary

Erlang VM process identifier.

Returns the process identifier of the current Erlang emulator in the format most commonly used by the operating system environment.

For more information, see :os.getpid/0.

Link to this function halt(status \\ 0) View Source
halt(non_neg_integer | binary | :abort) :: no_return

Halts the Erlang runtime system.

Halts the Erlang runtime system where the argument status must be a non-negative integer, the atom :abort or a binary.

  • If an integer, the runtime system exits with the integer value which is returned to the operating system.

  • If :abort, the runtime system aborts producing a core dump, if that is enabled in the operating system.

  • If a string, an Erlang crash dump is produced with status as slogan, and then the runtime system exits with status code 1.

Note that on many platforms, only the status codes 0-255 are supported by the operating system.

For more information, see :erlang.halt/1.

Examples

System.halt(0)
System.halt(1)
System.halt(:abort)
Link to this function monotonic_time() View Source
monotonic_time() :: integer

Returns the current monotonic time in the :native time unit.

This time is monotonically increasing and starts in an unspecified point in time.

Inlined by the compiler into :erlang.monotonic_time/0.

Link to this function monotonic_time(unit) View Source
monotonic_time(time_unit) :: integer

Returns the current monotonic time in the given time unit.

This time is monotonically increasing and starts in an unspecified point in time.

Link to this function os_time() View Source
os_time() :: integer

Returns the current OS time.

The result is returned in the :native time unit.

This time may be adjusted forwards or backwards in time with no limitation and is not monotonic.

Inlined by the compiler into :os.system_time/0.

Link to this function os_time(unit) View Source
os_time(time_unit) :: integer

Returns the current OS time in the given time unit.

This time may be adjusted forwards or backwards in time with no limitation and is not monotonic.

Link to this function otp_release() View Source
otp_release() :: String.t

Returns the OTP release number.

Sets multiple environment variables.

Sets a new value for each environment variable corresponding to each key in dict.

Link to this function put_env(varname, value) View Source
put_env(binary, binary) :: :ok

Sets an environment variable value.

Sets a new value for the environment variable varname.

Link to this function schedulers() View Source
schedulers() :: pos_integer

Returns the number of schedulers in the VM.

Link to this function schedulers_online() View Source
schedulers_online() :: pos_integer

Returns the number of schedulers online in the VM.

Last exception stacktrace.

Note that the Erlang VM (and therefore this function) does not return the current stacktrace but rather the stacktrace of the latest exception.

Inlined by the compiler into :erlang.get_stacktrace/0.

Link to this function system_time() View Source
system_time() :: integer

Returns the current system time in the :native time unit.

It is the VM view of the os_time/0. They may not match in case of time warps although the VM works towards aligning them. This time is not monotonic.

Inlined by the compiler into :erlang.system_time/0.

Link to this function system_time(unit) View Source
system_time(time_unit) :: integer

Returns the current system time in the given time unit.

It is the VM view of the os_time/0. They may not match in case of time warps although the VM works towards aligning them. This time is not monotonic.

Link to this function time_offset() View Source
time_offset() :: integer

Returns the current time offset between the Erlang VM monotonic time and the Erlang VM system time.

The result is returned in the :native time unit.

See time_offset/1 for more information.

Inlined by the compiler into :erlang.time_offset/0.

Link to this function time_offset(unit) View Source
time_offset(time_unit) :: integer

Returns the current time offset between the Erlang VM monotonic time and the Erlang VM system time.

The result is returned in the given time unit unit. The returned offset, added to an Erlang monotonic time (e.g., obtained with monotonic_time/1), gives the Erlang system time that corresponds to that monotonic time.

Writable temporary directory.

Returns a writable temporary directory. Searches for directories in the following order:

  1. the directory named by the TMPDIR environment variable
  2. the directory named by the TEMP environment variable
  3. the directory named by the TMP environment variable
  4. C:\TMP on Windows or /tmp on Unix
  5. as a last resort, the current working directory

Returns nil if none of the above are writable.

Writable temporary directory, exception on error.

Same as tmp_dir/0 but raises RuntimeError instead of returning nil if no temp dir is set.

Link to this function unique_integer(modifiers \\ []) View Source
unique_integer([:positive | :monotonic]) :: integer

Generates and returns an integer that is unique in the current runtime instance.

“Unique” means that this function, called with the same list of modifiers, will never return the same integer more than once on the current runtime instance.

If modifiers is [], then a unique integer (that can be positive or negative) is returned. Other modifiers can be passed to change the properties of the returned integer:

  • :positive - the returned integer is guaranteed to be positive.
  • :monotonic - the returned integer is monotonically increasing. This means that, on the same runtime instance (but even on different processes), integers returned using the :monotonic modifier will always be strictly less than integers returned by successive calls with the :monotonic modifier.

All modifiers listed above can be combined; repeated modifiers in modifiers will be ignored.

Inlined by the compiler into :erlang.unique_integer/1.

User home directory.

Returns the user home directory (platform independent).

User home directory, exception on error.

Same as user_home/0 but raises RuntimeError instead of returning nil if no user home is set.

Elixir version information.

Returns Elixir’s version as binary.