Difference between revisions of "sysutils"

From Lazarus wiki
Jump to navigationJump to search
m (Improved English grammar)
(→‎Caveats: give program code better title, allegedly insert new external links [spam detection false positive])
 
(4 intermediate revisions by the same user not shown)
Line 7: Line 7:
  
 
== Notable functionality ==
 
== Notable functionality ==
 
 
* [[Format function|<syntaxhighlight lang="pascal" inline>format</syntaxhighlight>]]
 
* [[Format function|<syntaxhighlight lang="pascal" inline>format</syntaxhighlight>]]
 +
* [[Executing External Programs#SysUtils.ExecuteProcess|<syntaxhighlight lang="pascal" inline>executeProcess</syntaxhighlight> for executing external programs]]
 +
* several routines ensuring productive use of [[TDateTime|<syntaxhighlight lang="pascal" inline>tDateTime</syntaxhighlight>]]
 
* {{Doc|package=RTL|unit=sysutils|identifier=typehelpers|text=type helpers for all basic data types}}
 
* {{Doc|package=RTL|unit=sysutils|identifier=typehelpers|text=type helpers for all basic data types}}
 +
* [[FreeAndNil|<syntaxhighlight lang="pascal" inline>freeAndNil</syntaxhighlight>]]
 +
* routines to access [[Command line parameters and environment variables#Environment variables|environment variables]]
  
 
== Caveats ==
 
== Caveats ==
 +
{{Doc|package=RTL|unit=system|identifier=runtimeerrors|text=If the <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> unit is included}}, all [[runtime error|run-time errors]] become [[Exceptions|exceptions]], which virtually forces you to use a [[Compiler Mode|compiler mode]] (or [[modeswitch|mode switch]]) that allows exception treatment.
 +
To catch an exception by its name you will need to include <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight>, even though the module itself does not use any of the included system utilities.
  
{{Doc|package=RTL|unit=system|identifier=runtimeerrors|text=If the <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> unit is included}}, all [[runtime error|run-time errors]] become [[Exceptions|exceptions]], which virtually forces you to use a [[Compiler Mode|compiler mode]] (or [[modeswitch|mode switch]]) that allows exception treatment.
+
Changing run-time errors to exceptions has a ''global'' effect.
You will need to include <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> in every unit that may throw an exception, even though the unit itself does not use any of the included system utilities.
+
The following program will terminate with an uncaught ''exception'', even though it does not list <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> in its <syntaxhighlight lang="delphi" inline>uses</syntaxhighlight>-clause:
 +
The <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> unit is ''implicitly'' included via the {{Doc|package=RTL|unit=strutils|text=<syntaxhighlight lang="pascal" inline>strUtils</syntaxhighlight> unit}}:
 +
<syntaxhighlight lang="pascal">
 +
program implicitSysUtilsCaveat(input, output, stdErr);
 +
uses
 +
strUtils;
 +
var
 +
x: file of char;
 +
c: char;
 +
begin
 +
// deliberately cause an error for demonstration purposes
 +
read(x, c);
 +
end.
 +
</syntaxhighlight>
 +
 
 +
Also, if [[Size Matters|size matters]], using <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> is by design not the smartest choice.
  
 
== See also ==
 
== See also ==
 
 
* {{Doc|package=RTL|unit=sysutils|text=<syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> reference}}
 
* {{Doc|package=RTL|unit=sysutils|text=<syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> reference}}
 
* [http://docwiki.embarcadero.com/Libraries/Sydney/en/System.SysUtils Delphi’s <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> unit]
 
* [http://docwiki.embarcadero.com/Libraries/Sydney/en/System.SysUtils Delphi’s <syntaxhighlight lang="pascal" inline>sysUtils</syntaxhighlight> unit]
* [[libc|<syntaxhighlight lang="pascal" inline>libc</syntaxhighlight>]] <!-- similar in design -->
+
* [[libc library|<syntaxhighlight lang="c" inline>libc</syntaxhighlight> library]] <!-- similar in design -->
 
* [[System unit|<syntaxhighlight lang="pascal" inline>system</syntaxhighlight> unit]]
 
* [[System unit|<syntaxhighlight lang="pascal" inline>system</syntaxhighlight> unit]]

Latest revision as of 18:48, 6 February 2021

English (en) Esperanto (eo) français (fr)

The unit sysUtils shipped with the FPC’s default run-time library provides many system utilities. It attempts to be as compatible to Delphi’s sysUtils unit as possible. However, the FPC version is available on all platforms that the FPC supports. It does not contain any Windows-related routines or other highly platform-specific functionality.

Notable functionality

Caveats

If the sysUtils unit is included, all run-time errors become exceptions, which virtually forces you to use a compiler mode (or mode switch) that allows exception treatment. To catch an exception by its name you will need to include sysUtils, even though the module itself does not use any of the included system utilities.

Changing run-time errors to exceptions has a global effect. The following program will terminate with an uncaught exception, even though it does not list sysUtils in its uses-clause: The sysUtils unit is implicitly included via the strUtils unit:

program implicitSysUtilsCaveat(input, output, stdErr);
uses
	strUtils;
var
	x: file of char;
	c: char;
begin
	// deliberately cause an error for demonstration purposes
	read(x, c); 
end.

Also, if size matters, using sysUtils is by design not the smartest choice.

See also