Manual: Difference between revisions

From NEOSYS Dev Wiki
Jump to navigationJump to search
(Added doc for os file system i/o)
Line 283: Line 283:




Generated by cli/gendoc from var.h at 29JAN2025 8:13PM


===== Math/Boolean =====
===== Math/Boolean =====
Line 289: Line 290:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.abs()||Absolute value
|var=||num.<em>abs</em>()||Absolute value
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(-12.34).abs(); // 12.34</syntaxhighlight>
var(-12.34).abs(); // 12.34</syntaxhighlight>
|-
|-
|var=||var.pwr(exponent)||Power
|var=||num.<em>pwr</em>(exponent)||Power
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(2).pwr(8); // 256</syntaxhighlight>
var(2).pwr(8); // 256</syntaxhighlight>
|-
|-
|var=||var.rnd()||Random number generator
|var=||num.<em>rnd</em>()||Pseudo random number generator
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(100).rnd(); // 0 to 99 pseudo random</syntaxhighlight>
var(100).rnd(); // 0 to 99 pseudo random</syntaxhighlight>
|-
|-
|cmd||var.initrnd()||Initialise Random seed
|cmd||num.<em>initrnd</em>()||Initialise the seed for rnd()
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(123).initrnd(); // Set pseudo random seed to 123</syntaxhighlight>
var(123).initrnd(); // Set seed to 123</syntaxhighlight>
|-
|-
|var=||var.exp()||Power of e
|var=||num.<em>exp</em>()||Power of e
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(1).exp(); // 2.718281828459045</syntaxhighlight>
var(1).exp(); // 2.718281828459045</syntaxhighlight>
|-
|-
|var=||var.sqrt()||Square root
|var=||num.<em>sqrt</em>()||Square root
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(100).sqrt(); // 10</syntaxhighlight>
var(100).sqrt(); // 10</syntaxhighlight>
|-
|-
|var=||var.sin()||Sine of degrees
|var=||num.<em>sin</em>()||Sine of degrees
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(30).sin(); // 0.5</syntaxhighlight>
var(30).sin(); // 0.5</syntaxhighlight>
|-
|-
|var=||var.cos()||Cosine of degrees
|var=||num.<em>cos</em>()||Cosine of degrees
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(60).cos(); // 0.5</syntaxhighlight>
var(60).cos(); // 0.5</syntaxhighlight>
|-
|-
|var=||var.tan()||Tangent of degrees
|var=||num.<em>tan</em>()||Tangent of degrees
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(45).tan(); // 1</syntaxhighlight>
var(45).tan(); // 1</syntaxhighlight>
|-
|-
|var=||var.atan()||Arctangent of degrees
|var=||num.<em>atan</em>()||Arctangent of degrees
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(1).atan(); // 45</syntaxhighlight>
var(1).atan(); // 45</syntaxhighlight>
|-
|-
|var=||var.loge()||Natural logarithm
|var=||num.<em>loge</em>()||Natural logarithm
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(2.718281828459045).loge(); // 1</syntaxhighlight>
var(2.718281828459045).loge(); // 1</syntaxhighlight>
|-
|-
|var=||var.integer()||Truncate decimal numbers towards zero.
|var=||num.<em>integer</em>()||Truncate decimal numbers towards zero.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(2.9).integer(); // 2
var(2.9).integer(); // 2
var(-2.9).integer(); // -2</syntaxhighlight>
var(-2.9).integer(); // -2</syntaxhighlight>
|-
|-
|var=||var.floor()||Truncate decimal numbers towards negative
|var=||num.<em>floor</em>()||Truncate decimal numbers towards negative
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(2.9).floor(); // 2
var(2.9).floor(); // 2
var(-2.9).floor(); // -3</syntaxhighlight>
var(-2.9).floor(); // -3</syntaxhighlight>
|-
|-
|var=||var.round(ndecimals = 0)||Round decimal numbers to a desired number of decimal places<br>
|var=||num.<em>round</em>(ndecimals = 0)||Round decimal numbers to a desired number of decimal places<br>
.5 rounds away from zero.
.5 always rounds away from zero.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(23.455).round(2); // "23.46"
var(0.455).round(2); // "0.46"
var(-23.455).round(2); // "-23.46"</syntaxhighlight>
var(-0.455).round(2); // "-0.46"
var(1.455).round(2); // "1.46"
var(-1.455).round(2); // "-1.46"</syntaxhighlight>
|-
|-
|var=||var.mod(divisor)||Remainder function<br>
|var=||num.<em>mod</em>(divisor)||
Result is between [0 , limit) if limit is positive<br>
Result is between (limit, 0] if limit is negative
<syntaxhighlight lang="c++">
var(7).mod(5); // 2
mod(7, 5); // ditto</syntaxhighlight>
|}
|}


===== Locale =====
===== Locale =====
Line 362: Line 361:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|expr||var.getxlocale()||Gets the current thread's default locale codepage code
|expr||var.<em>getxlocale</em>()||Gets the current thread's default locale codepage code
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var().getxlocale(); // e.g. "en_US.utf8"
var().getxlocale(); // e.g. "en_US.utf8"
getxlocale(); // ditto</syntaxhighlight>
getxlocale(); // ditto</syntaxhighlight>
|-
|-
|if||var.setxlocale()||Sets the current thread's default locale codepage code
|if||str.<em>setxlocale</em>()||Sets the current thread's default locale codepage code<br>
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"de_DE.utf8"_var.setxlocale(); // true if successful
if (not "de_DE.utf8"_var.setxlocale()) ... // true if successful
setxlocale("de_DE.utf8"); // ditto</syntaxhighlight>
if (setxlocale("de_DE.utf8")) ... // ditto</syntaxhighlight>
|}
|}


===== String Creation =====
===== String Creation =====
Line 378: Line 378:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.chr(num)||Create a string of a single char (byte) given an integer 0-255.<br>
|var=||var.<em>chr</em>(num)||Create a string of a single char (byte) given an integer 0-255.<br>
0-127 -> ASCII, 128-255 -> invalid UTF-8 so cannot be written to database or used various exodus string operations
0-127 -> ASCII, 128-255 -> invalid UTF-8 so cannot be written to database or used various exodus string operations
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 384: Line 384:
chr(0x61); // ditto</syntaxhighlight>
chr(0x61); // ditto</syntaxhighlight>
|-
|-
|var=||var.textchr(num)||Create a string of a single unicode code point in utf8 encoding.<br>
|var=||var.<em>textchr</em>(num)||Create a string of a single unicode code point in utf8 encoding.<br>
To get utf codepoints > 2^63 you must provide negative ints<br>
To get utf codepoints > 2^63 you must provide negative ints<br>
Not providing implicit constructor from var to unsigned int due to getting ambigious conversions<br>
Not providing implicit constructor from var to unsigned int due to getting ambigious conversions<br>
Line 392: Line 392:
textchr(171416); // ditto</syntaxhighlight>
textchr(171416); // ditto</syntaxhighlight>
|-
|-
|var=||var.str(num)||Create a string by repeating a given character or string
|var=||var.<em>str</em>(num)||Create a string by repeating a given character or string
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"ab"_var.str(3); // "ababab"
"ab"_var.str(3); // "ababab"
str("ab"_var, 3); // ditto</syntaxhighlight>
str("ab"_var, 3); // ditto</syntaxhighlight>
|-
|-
|var=||var.space()||Create string of space characters.
|var=||num.<em>space</em>()||Create string of space characters.<br>
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(3).space(); // "␣␣␣"
var(3).space(); // "␣␣␣"
space(3); // ditto</syntaxhighlight>
space(3); // ditto</syntaxhighlight>
|-
|-
|var=||var.numberinwords(languagename_or_locale_id = "")||Create a string describing a given number in words
|var=||num.<em>numberinwords</em>(languagename_or_locale_id = "")||Create a string describing a given number in words<br>
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(123.45).numberinwords("de_DE").outputl();
var(123.45).numberinwords("de_DE");
//"ein­hundert­drei­und­zwanzig Komma vier fünf"</syntaxhighlight>
//"ein­hundert­drei­und­zwanzig Komma vier fünf"</syntaxhighlight>
|}
|}


===== String Scanning =====
===== String Scanning =====
Line 413: Line 414:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.seq()||Returns the character number of the first char.
|var=||str.<em>seq</em>()||Returns the character number of the first char.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.seq(); // 0x61 97
"abc"_var.seq(); // 0x61 97
seq("abc"_var); // 0x61 97</syntaxhighlight>
seq("abc"_var); // 0x61 97</syntaxhighlight>
|-
|-
|var=||var.textseq()||Returns the Unicode character number of the first unicode code point.
|var=||str.<em>textseq</em>()||Returns the Unicode character number of the first unicode code point.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"Γ"_var.textseq(); // 915 U+0393: Greek Capital Letter Gamma (Unicode Character)
"Γ"_var.textseq(); // 915 U+0393: Greek Capital Letter Gamma (Unicode Character)
textseq("Γ"); // ditto</syntaxhighlight>
textseq("Γ"); // ditto</syntaxhighlight>
|-
|-
|var=||var.len()||Returns the length of a string in number of chars
|var=||str.<em>len</em>()||Returns the length of a string in number of chars
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.len(); // 3
"abc"_var.len(); // 3
len("abc"_var); // ditto</syntaxhighlight>
len("abc"_var); // ditto</syntaxhighlight>
|-
|-
|var=||var.textwidth()||Returns the number of output columns.<br>
|var=||str.<em>textwidth</em>()||Returns the number of output columns.<br>
Allows multi column unicode and reduces combining characters etc. like e followed by grave accent<br>
Allows multi column unicode and reduces combining characters etc. like e followed by grave accent<br>
Possibly does not properly calculate combining sequences of graphemes e.g. face followed by colour
Possibly does not properly calculate combining sequences of graphemes e.g. face followed by colour
Line 435: Line 436:
textwidth("🤡x🤡"_var); // ditto</syntaxhighlight>
textwidth("🤡x🤡"_var); // ditto</syntaxhighlight>
|-
|-
|var=||var.textlen()||Returns the number of Unicode code points
|var=||str.<em>textlen</em>()||Returns the number of Unicode code points
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"Γιάννης"_var.textlen(); // 7
"Γιάννης"_var.textlen(); // 7
textlen("Γιάννης"_var); // ditto</syntaxhighlight>
textlen("Γιάννης"_var); // ditto</syntaxhighlight>
|-
|-
|var=||var.fcount(sepstr)||Returns the number of fields separated by sepstr present.<br>
|var=||str.<em>fcount</em>(sepstr)||Returns the number of fields separated by sepstr present.<br>
It is the same as var.count(sepstr) + 1 except that and empty string returns 0
It is the same as var.count(sepstr) + 1 except that and empty string returns 0
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 446: Line 447:
fcount("a1**c3"_var, "*"); // ditto</syntaxhighlight>
fcount("a1**c3"_var, "*"); // ditto</syntaxhighlight>
|-
|-
|var=||var.count(sepstr)||Return the number of sepstr found
|var=||str.<em>count</em>(sepstr)||Return the number of sepstr found
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"a1*b2*c3"_var.count("*"); // 3
"a1*b2*c3"_var.count("*"); // 3
count("a1*b2*c3"_var, "*"); // ditto</syntaxhighlight>
count("a1*b2*c3"_var, "*"); // ditto</syntaxhighlight>
|-
|-
|if||var.starts(prefix)||Returns true if starts with prefix
|if||str.<em>starts</em>(prefix)||Returns true if starts with prefix
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.starts("ab"); // true</syntaxhighlight>
"abc"_var.starts("ab"); // true</syntaxhighlight>
|-
|-
|if||var.ends(suffix)||Returns true if ends with suffix
|if||str.<em>ends</em>(suffix)||Returns true if ends with suffix
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.ends("bc"); // true</syntaxhighlight>
"abc"_var.ends("bc"); // true</syntaxhighlight>
|-
|-
|if||var.contains(substr)||Returns true if starts, ends or contains substr
|if||str.<em>contains</em>(substr)||Returns true if starts, ends or contains substr
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcd"_var.contains("bc"); // true</syntaxhighlight>
"abcd"_var.contains("bc"); // true</syntaxhighlight>
|-
|-
|var=||var.index(substr, startchar1 = 1)||Returns char no if found or 0 if not. startchar1 is byte no to start at.
|var=||str.<em>index</em>(substr, startchar1 = 1)||Returns char no if found or 0 if not. startchar1 is byte no to start at.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcd"_var.index("bc"); // 2</syntaxhighlight>
"abcd"_var.index("bc"); // 2</syntaxhighlight>
|-
|-
|var=||var.indexn(substr, occurrence)||ditto. Occurrence 1 = find first occurrence
|var=||str.<em>indexn</em>(substr, occurrence)||ditto. Occurrence 1 = find first occurrence
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcabc"_var.index("bc", 2); // 5</syntaxhighlight>
"abcabc"_var.index("bc", 2); // 5</syntaxhighlight>
|-
|-
|var=||var.indexr(substr, startchar1 = -1)||ditto. Reverse search.<br>
|var=||str.<em>indexr</em>(substr, startchar1 = -1)||ditto. Reverse search.<br>
startchar1 defaults to -1 meaning start searching from the last byte
startchar1 defaults to -1 meaning start searching from the last byte
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcabc"_var.indexr("bc"); // 5</syntaxhighlight>
"abcabc"_var.indexr("bc"); // 5</syntaxhighlight>
|-
|-
|var=||var.match(regex, regex_options = "")||Returns all results of regex matching<br>
|var=||str.<em>match</em>(regex, regex_options = "")||Returns all results of regex matching<br>
Multiple matches are in fields<br>
Multiple matches are in fields. Groups are in values
Groups are in values
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc1abc2"_var.match("bc(\\d)"_rex); // "bc1]1^bc2]2"</syntaxhighlight>
"abc1abc2"_var.match("bc(\\d)"); // "bc1]1^bc2]2"</syntaxhighlight>
regex_options:<br>
<br>
l - Literal (any regex chars are treated as normal chars)<br>
<br>
i - Case insensitive<br>
<br>
p - ECMAScript/Perl (the default)<br>
b - Basic POSIX (same as sed)<br>
e - Extended POSIX<br>
a - awk<br>
g - grep<br>
eg - egrep or grep -E<br>
<br>
char ranges like a-z are locale sensitive if ECMAScript<br>
<br>
m - Multiline. Default in boost (and therefore exodus)<br>
s - Single line. Default in std::regex<br>
<br>
f - First only. Only for replace() (not match() or search())<br>
<br>
w - Wildcard glob style (e.g. *.cfg) not regex style. Only for match() and search(). Not replace().
|-
|-
|var=||var.match(regex)||Ditto
|var=||str.<em>match</em>(regex)||Ditto
|-
|-
|var=||var.search(regex, io startchar1, regex_options = "")||Search for first match of a regular expression starting at startchar1<br>
|var=||str.<em>search</em>(regex, io startchar1, regex_options = "")||Search for first match of a regular expression starting at startchar1<br>
Updates startchar1 ready to search for the next match
Updates startchar1 ready to search for the next match<br>
regex_options as for match()
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var startchar1 = 1;
var startchar1 = 1;
Line 491: Line 513:
// startchar1 becomes 5 ready for the next search</syntaxhighlight>
// startchar1 becomes 5 ready for the next search</syntaxhighlight>
|-
|-
|var=||var.search(regex)||Ditto starting from first char
|var=||str.<em>search</em>(regex)||Ditto starting from first char
|-
|-
|var=||var.search(regex, io startchar1)||Ditto given a rex
|var=||str.<em>search</em>(regex, io startchar1)||Ditto given a rex
|-
|-
|var=||var.search(regex)||Ditto starting from first char.
|var=||str.<em>search</em>(regex)||Ditto starting from first char.
|}
|}


===== String Conversion - Chainable. Non-Mutating =====
===== String Conversion - Chainable. Non-Mutating =====
Line 503: Line 526:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.ucase()||To upper case
|var=||str.<em>ucase</em>()||Upper case
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"Γιάννης"_var.ucase(); // "ΓΙΆΝΝΗΣ"</syntaxhighlight>
"Γιάννης"_var.ucase(); // "ΓΙΆΝΝΗΣ"</syntaxhighlight>
|-
|-
|var=||var.lcase()||Lower case
|var=||str.<em>lcase</em>()||Lower case
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"ΓΙΆΝΝΗΣ"_var.lcase(); // "γιάννης"</syntaxhighlight>
"ΓΙΆΝΝΗΣ"_var.lcase(); // "γιάννης"</syntaxhighlight>
|-
|-
|var=||var.tcase()||Title case (first letters)
|var=||str.<em>tcase</em>()||Title case (first letters)
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"γιάννης"_var.tcase(); // "Γιάννης"</syntaxhighlight>
"γιάννης"_var.tcase(); // "Γιάννης"</syntaxhighlight>
|-
|-
|var=||var.fcase()||Fold case (lower case and remove accents for indexing)
|var=||str.<em>fcase</em>()||Fold case (lower case and remove accents for indexing)
|-
|-
|var=||var.normalize()||Normalise Unicode to NFC to eliminate different code combinations of the same character
|var=||str.<em>normalize</em>()||Normalise Unicode to NFC to eliminate different code combinations of the same character
|-
|-
|var=||var.invert()||Simple reversible disguising of text
|var=||str.<em>invert</em>()||Simple reversible disguising of text
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.invert(); // "\x{C29EC29DC29C}"</syntaxhighlight>
"abc"_var.invert(); // "\x{C29EC29DC29C}"</syntaxhighlight>
|-
|-
|var=||var.lower()||Convert all FM to VM, VM to SM etc.
|var=||str.<em>lower</em>()||Convert all FM to VM, VM to SM etc.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"a1^b2^c3"_var.lower(); // "a1]b2]c3"</syntaxhighlight>
"a1^b2^c3"_var.lower(); // "a1]b2]c3"</syntaxhighlight>
|-
|-
|var=||var.raise()||Convert all VM to FM, SM to VM etc.
|var=||str.<em>raise</em>()||Convert all VM to FM, SM to VM etc.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"a1]b2]c3"_var.raise(); // "a1^b2^c3"</syntaxhighlight>
"a1]b2]c3"_var.raise(); // "a1^b2^c3"</syntaxhighlight>
|-
|-
|var=||var.crop()||Remove any redundant FM, VM etc. characters (Trailing FM; VM before FM etc.)
|var=||str.<em>crop</em>()||Remove any redundant FM, VM etc. characters (Trailing FM; VM before FM etc.)
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"a1^b2]]^c3^^"_var.crop(); // "a1^b2^c3"</syntaxhighlight>
"a1^b2]]^c3^^"_var.crop(); // "a1^b2^c3"</syntaxhighlight>
|-
|-
|var=||var.quote()||Wrap in double quotes
|var=||str.<em>quote</em>()||Wrap in double quotes
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.quote(); // ""abc""</syntaxhighlight>
"abc"_var.quote(); // ""abc""</syntaxhighlight>
|-
|-
|var=||var.squote()||Wrap in single quotes
|var=||str.<em>squote</em>()||Wrap in single quotes
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.squote(); // "'abc'"</syntaxhighlight>
"abc"_var.squote(); // "'abc'"</syntaxhighlight>
|-
|-
|var=||var.unquote()||Remove one pair of double or single quotes
|var=||str.<em>unquote</em>()||Remove one pair of double or single quotes
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"'abc'"_var.unquote(); // "abc"</syntaxhighlight>
"'abc'"_var.unquote(); // "abc"</syntaxhighlight>
|-
|-
|var=||var.trim(trimchars = " ")||Remove leading, trailing and excessive inner bytes
|var=||str.<em>trim</em>(trimchars = " ")||Remove leading, trailing and excessive inner bytes
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"␣␣a1␣␣b2␣c3␣␣"_var.trim(); // "a1␣b2␣c3"</syntaxhighlight>
"␣␣a1␣␣b2␣c3␣␣"_var.trim(); // "a1␣b2␣c3"</syntaxhighlight>
|-
|-
|var=||var.trimfirst(trimchars = " ")||Ditto leading
|var=||str.<em>trimfirst</em>(trimchars = " ")||Ditto leading
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"␣␣a1␣␣b2␣c3␣␣"_var.trimfirst(); // "a1␣␣b2␣c3␣␣"</syntaxhighlight>
"␣␣a1␣␣b2␣c3␣␣"_var.trimfirst(); // "a1␣␣b2␣c3␣␣"</syntaxhighlight>
|-
|-
|var=||var.trimlast(trimchars = " ")||Ditto trailing
|var=||str.<em>trimlast</em>(trimchars = " ")||Ditto trailing
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"␣␣a1␣␣b2␣c3␣␣"_var.trimlast(); // "␣␣a1␣␣b2␣c3"</syntaxhighlight>
"␣␣a1␣␣b2␣c3␣␣"_var.trimlast(); // "␣␣a1␣␣b2␣c3"</syntaxhighlight>
|-
|-
|var=||var.trimboth(trimchars = " ")||Ditto leading, trailing but not inner
|var=||str.<em>trimboth</em>(trimchars = " ")||Ditto leading, trailing but not inner
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"␣␣a1␣␣b2␣c3␣␣"_var.trimboth(); // "a1␣␣b2␣c3"</syntaxhighlight>
"␣␣a1␣␣b2␣c3␣␣"_var.trimboth(); // "a1␣␣b2␣c3"</syntaxhighlight>
|-
|-
|var=||var.first()||Extract first char or "" if empty
|var=||str.<em>first</em>()||Extract first char or "" if empty
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.first(); // "a"</syntaxhighlight>
"abc"_var.first(); // "a"</syntaxhighlight>
|-
|-
|var=||var.last()||Extract last char or "" if empty
|var=||str.<em>last</em>()||Extract last char or "" if empty
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.last(); // "c"</syntaxhighlight>
"abc"_var.last(); // "c"</syntaxhighlight>
|-
|-
|var=||var.first(std::size_t length)||Extract up to length leading chars
|var=||str.<em>first</em>(std::size_t length)||Extract up to length leading chars
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.first(2); // "ab"</syntaxhighlight>
"abc"_var.first(2); // "ab"</syntaxhighlight>
|-
|-
|var=||var.last(std::size_t length)||Extract up to length trailing chars
|var=||str.<em>last</em>(std::size_t length)||Extract up to length trailing chars
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.last(2); // "bc"</syntaxhighlight>
"abc"_var.last(2); // "bc"</syntaxhighlight>
|-
|-
|var=||var.cut(length)||Remove length leading chars
|var=||str.<em>cut</em>(length)||Remove length leading chars
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcd"_var.cut(2); // "cd"</syntaxhighlight>
"abcd"_var.cut(2); // "cd"</syntaxhighlight>
|-
|-
|var=||var.paste(pos1, length, insertstr)||Insert text at char position overwriting length chars
|var=||str.<em>paste</em>(pos1, length, insertstr)||Insert text at char position overwriting length chars
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcd"_var.paste(2, 2, "XYZ"); // "aXYZd"</syntaxhighlight>
"abcd"_var.paste(2, 2, "XYZ"); // "aXYZd"</syntaxhighlight>
|-
|-
|var=||var.paste(pos1, insertstr)||Insert text at char position without overwriting any following characters
|var=||str.<em>paste</em>(pos1, insertstr)||Insert text at char position without overwriting any following characters
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcd"_var.paste(2, "XYZ"); // "aXYbcd"</syntaxhighlight>
"abcd"_var.paste(2, "XYZ"); // "aXYbcd"</syntaxhighlight>
|-
|-
|var=||var.prefix(insertstr)||Insert text at the beginning
|var=||str.<em>prefix</em>(insertstr)||Insert text at the beginning
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.prefix("XY"); // "XYabc"</syntaxhighlight>
"abc"_var.prefix("XY"); // "XYabc"</syntaxhighlight>
|-
|-
|var=||var.pop()||Remove one trailing char
|var=||str.<em>pop</em>()||Remove one trailing char
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.pop(); // "ab"</syntaxhighlight>
"abc"_var.pop(); // "ab"</syntaxhighlight>
|-
|-
|var=||var.fieldstore(separator, fieldno, nfields, replacement)||fieldstore() replaces nfields of subfield(s) in a string.
|var=||str.<em>fieldstore</em>(separator, fieldno, nfields, replacement)||fieldstore() replaces nfields of subfield(s) in a string.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"aa*bb*cc*dd"_var.fieldstore("*", 2, 3, "X*Y"); // "aa*X*Y*"</syntaxhighlight>
"aa*bb*cc*dd"_var.fieldstore("*", 2, 3, "X*Y"); // "aa*X*Y*"</syntaxhighlight>
Line 609: Line 632:
"a1*b2*c3*d4"_var.fieldstore("*", 2, -3, "X*Y"); // "a1*X*Y"</syntaxhighlight>
"a1*b2*c3*d4"_var.fieldstore("*", 2, -3, "X*Y"); // "a1*X*Y"</syntaxhighlight>
|-
|-
|var=||var.substr(startindex1, length)||substr version 1. Extract length chars starting at startindex1
|var=||str.<em>substr</em>(pos1, length)||substr version 1. Extract length chars starting at pos1
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcd"_var.substr(2, 2); // "bc"</syntaxhighlight>
"abcd"_var.substr(2, 2); // "bc"</syntaxhighlight>
Line 616: Line 639:
"abcd"_var.substr(3, -2); // "cb"</syntaxhighlight>
"abcd"_var.substr(3, -2); // "cb"</syntaxhighlight>
|-
|-
|var=||var.substr(startindex1)||substr version 2. Extract all chars from startindex1 up to the end
|var=||str.<em>substr</em>(pos1)||substr version 2. Extract all chars from pos1 up to the end
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcd"_var.substr(2); // "bcd"</syntaxhighlight>
"abcd"_var.substr(2); // "bcd"</syntaxhighlight>
|-
|-
|var=||var.b(pos1, length)||Same as substr version 1.
|var=||str.<em>b</em>(pos1, length)||Same as substr version 1.
|-
|-
|var=||var.b(pos1)||Same as substr version 2.
|var=||str.<em>b</em>(pos1)||Same as substr version 2.
|-
|-
|var=||var.convert(fromchars, tochars)||Convert chars to other chars one for one or delete where tochars is shorter.
|var=||str.<em>convert</em>(fromchars, tochars)||Convert chars to other chars one for one or delete where tochars is shorter.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abcde"_var.convert("aZd", "XY"); // "Xbce" (a is replaced and d is removed)</syntaxhighlight>
"abcde"_var.convert("aZd", "XY"); // "Xbce" (a is replaced and d is removed)</syntaxhighlight>
|-
|-
|var=||var.textconvert(fromchars, tochars)||Ditto for Unicode code points.
|var=||str.<em>textconvert</em>(fromchars, tochars)||Ditto for Unicode code points.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"🤡😀✌"_var.textconvert("🤡😀", "👋"); // "👋✌ "</syntaxhighlight>
"a🤡b😀c🌍d"_var.textconvert("🤡😀", "👋"); // "a👋bc🌍d"</syntaxhighlight>
|-
|-
|var=||var.replace(fromstr, tostr)||Replace all occurrences of a substr with another. Case sensitive
|var=||str.<em>replace</em>(fromstr, tostr)||Replace all occurrences of a substr with another. Case sensitive
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"Abc Abc"_var.replace("bc", "X"); // "AX AX"</syntaxhighlight>
"Abc Abc"_var.replace("bc", "X"); // "AX AX"</syntaxhighlight>
|-
|-
|var=||var.replace(regex, tostr)||Replace substring(s) using a regular expression.<br>
|var=||str.<em>replace</em>(regex, tostr)||Replace substring(s) using a regular expression.<br>
Use $0, $1, $2 in tostr to refer to groups defined in the regex.
Use $0, $1, $2 in tostr to refer to groups defined in the regex.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"A a B b"_var.replace("[A-Z]"_rex, "'$0'"); // "'A' a 'B' b"</syntaxhighlight>
"A a B b"_var.replace("[A-Z]"_rex, "'$0'"); // "'A' a 'B' b"</syntaxhighlight>
|-
|-
|var=||var.unique()||Remove duplicate fields in an FM or VM etc. separated list
|var=||str.<em>unique</em>()||Remove duplicate fields in an FM or VM etc. separated list
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"a1^b2^a1^c2"_var.unique(); // "a1^b2^c2"</syntaxhighlight>
"a1^b2^a1^c2"_var.unique(); // "a1^b2^c2"</syntaxhighlight>
|-
|-
|var=||var.sort(sepchar = FM)||Reorder fields in an FM or VM etc. separated list in ascending order
|var=||str.<em>sort</em>(sepchar = FM)||Reorder fields in an FM or VM etc. separated list in ascending order
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"20^10^2^1^1.1"_var.sort(); // "1^1.1^2^10^20"</syntaxhighlight>
"20^10^2^1^1.1"_var.sort(); // "1^1.1^2^10^20"</syntaxhighlight>
Line 651: Line 674:
"b1^a1^c20^c10^c2^c1^b2"_var.sort(); // "a1^b1^b2^c1^c10^c2^c20"</syntaxhighlight>
"b1^a1^c20^c10^c2^c1^b2"_var.sort(); // "a1^b1^b2^c1^c10^c2^c20"</syntaxhighlight>
|-
|-
|var=||var.reverse(sepchar = FM)||Reorder fields in an FM or VM etc. separated list in descending order
|var=||str.<em>reverse</em>(sepchar = FM)||Reorder fields in an FM or VM etc. separated list in descending order
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"20^10^2^1^1.1"_var.reverse(); // "1.1^1^2^10^20"</syntaxhighlight>
"20^10^2^1^1.1"_var.reverse(); // "1.1^1^2^10^20"</syntaxhighlight>
|-
|-
|var=||var.shuffle(sepchar = FM)||Randomise the order of fields in an FM, VM separated list
|var=||str.<em>shuffle</em>(sepchar = FM)||Randomise the order of fields in an FM, VM separated list
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"20^10^2^1^1.1"_var.shuffle(); // "2^1^20^1.1^10" (random order depending on initrand())</syntaxhighlight>
"20^10^2^1^1.1"_var.shuffle(); // "2^1^20^1.1^10" (random order depending on initrand())</syntaxhighlight>
|-
|-
|var=||var.parse(char sepchar = ' ')||Replace separator characters with FM char except inside double or single quotes ignoring escaped quotes \\" \&squot;
|var=||str.<em>parse</em>(char sepchar = ' ')||Replace separator characters with FM char except inside double or single quotes ignoring escaped quotes \\" \&squot;
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc,\"def,\"123\" fgh\",12.34"_var.parse(','); // "abc^"def,"123" fgh"^12.34"</syntaxhighlight>
"abc,\"def,\"123\" fgh\",12.34"_var.parse(','); // "abc^"def,"123" fgh"^12.34"</syntaxhighlight>
|}
|}


===== String Mutators Not Chainable. All Similar To Non-Mutators =====
===== String Mutators Not Chainable. All Similar To Non-Mutators =====
Line 669: Line 693:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|cmd||var.ucaser()||
|cmd||str.<em>ucaser</em>()||
|-
|-
|cmd||var.lcaser()||
|cmd||str.<em>lcaser</em>()||
|-
|-
|cmd||var.tcaser()||
|cmd||str.<em>tcaser</em>()||
|-
|-
|cmd||var.fcaser()||
|cmd||str.<em>fcaser</em>()||
|-
|-
|cmd||var.normalizer()||
|cmd||str.<em>normalizer</em>()||
|-
|-
|cmd||var.inverter()||
|cmd||str.<em>inverter</em>()||
|-
|-
|cmd||var.quoter()||
|cmd||str.<em>quoter</em>()||
|-
|-
|cmd||var.squoter()||
|cmd||str.<em>squoter</em>()||
|-
|-
|cmd||var.unquoter()||
|cmd||str.<em>unquoter</em>()||
|-
|-
|cmd||var.lowerer()||
|cmd||str.<em>lowerer</em>()||
|-
|-
|cmd||var.raiser()||
|cmd||str.<em>raiser</em>()||
|-
|-
|cmd||var.cropper()||
|cmd||str.<em>cropper</em>()||
|-
|-
|cmd||var.trimmer(trimchars = " ")||
|cmd||str.<em>trimmer</em>(trimchars = " ")||
|-
|-
|cmd||var.trimmerfirst(trimchars = " ")||
|cmd||str.<em>trimmerfirst</em>(trimchars = " ")||
|-
|-
|cmd||var.trimmerlast(trimchars = " ")||
|cmd||str.<em>trimmerlast</em>(trimchars = " ")||
|-
|-
|cmd||var.trimmerboth(trimchars = " ")||
|cmd||str.<em>trimmerboth</em>(trimchars = " ")||
|-
|-
|cmd||var.firster()||
|cmd||str.<em>firster</em>()||
|-
|-
|cmd||var.laster()||
|cmd||str.<em>laster</em>()||
|-
|-
|cmd||var.firster(std::size_t length)||
|cmd||str.<em>firster</em>(std::size_t length)||
|-
|-
|cmd||var.laster(std::size_t length)||
|cmd||str.<em>laster</em>(std::size_t length)||
|-
|-
|cmd||var.cutter(length)||
|cmd||str.<em>cutter</em>(length)||
|-
|-
|cmd||var.paster(pos1, length, insertstr)||
|cmd||str.<em>paster</em>(pos1, length, insertstr)||
|-
|-
|cmd||var.paster(pos1, insertstr)||
|cmd||str.<em>paster</em>(pos1, insertstr)||
|-
|-
|cmd||var.prefixer(insertstr)||
|cmd||str.<em>prefixer</em>(insertstr)||
|-
|-
|cmd||var.popper()||
|cmd||str.<em>popper</em>()||
|-
|-
|cmd||var.fieldstorer(sepchar, fieldno, nfields, replacement)||
|cmd||str.<em>fieldstorer</em>(sepchar, fieldno, nfields, replacement)||
|-
|-
|cmd||var.substrer(pos1, length)||
|cmd||str.<em>substrer</em>(pos1, length)||
|-
|-
|cmd||var.substrer(startindex1)||
|cmd||str.<em>substrer</em>(pos1)||
|-
|-
|cmd||var.converter(fromchars, tochars)||
|cmd||str.<em>converter</em>(fromchars, tochars)||
|-
|-
|cmd||var.textconverter(fromchars, tochars)||
|cmd||str.<em>textconverter</em>(fromchars, tochars)||
|-
|-
|cmd||var.replacer(regex, tostr)||
|cmd||str.<em>replacer</em>(regex, tostr)||
|-
|-
|cmd||var.replacer(fromstr, tostr)||
|cmd||str.<em>replacer</em>(fromstr, tostr)||
|-
|-
|cmd||var.uniquer()||
|cmd||str.<em>uniquer</em>()||
|-
|-
|cmd||var.sorter(sepchar = FM)||
|cmd||str.<em>sorter</em>(sepchar = FM)||
|-
|-
|cmd||var.reverser(sepchar = FM)||
|cmd||str.<em>reverser</em>(sepchar = FM)||
|-
|-
|cmd||var.shuffler(sepchar = FM)||
|cmd||str.<em>shuffler</em>(sepchar = FM)||
|-
|-
|cmd||var.parser(char sepchar = ' ')||
|cmd||str.<em>parser</em>(char sepchar = ' ')||
|}
|}


===== Other String Access =====
===== Other String Access =====
Line 749: Line 774:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.hash(std::uint64_t modulus = 0)||MurmurHash3 hashing.
|var=||str.<em>hash</em>(std::uint64_t modulus = 0)||MurmurHash3 hashing.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"abc"_var.hash(); // 6715211243465481821</syntaxhighlight>
"abc"_var.hash(); // 6715211243465481821</syntaxhighlight>
|-
|-
|var=||var.substr(pos1, delimiterchars, out endindex)||substr version 3.<br>
|var=||str.<em>substr</em>(pos1, delimiterchars, out pos2)||substr version 3.<br>
Extract substr starting from pos1 up to any one of some delimiter chars also returning the next pos1 after the delimiter found
Extract a substr starting from pos1 up to any one of the given delimiter chars also returning the next pos1 after the delimiter found
|-
|-
|var=||var.b(pos1, delimiterchars, out endindex)||Alias of substr version 3.
|var=||str.<em>b</em>(pos1, delimiterchars, out pos2)||Alias of substr version 3.
|-
|-
|var=||var.substr2(io startstopindex, io delimiterno)||substr version 4.<br>
|var=||str.<em>substr2</em>(io pos1, io delimiterno)||substr version 4.<br>
Returns the substr from a given index offset (0 based) up to the next RM/FM/VM/SM/TM/STM delimiter char. Also returns the next index/offset and the delimiter no. found 1-6 or 0 if not found.
Returns a substr from a given pos1 up to the next RM/FM/VM/SM/TM/STM delimiter char. Also returns the next index/offset and the delimiter no. found 1-6 or 0 if not found.
|-
|-
|var=||var.b2(io startstopindex, io delimiterno)||Alias of substr version 4
|var=||str.<em>b2</em>(io pos1, io delimiterno)||Alias of substr version 4
|-
|-
|var=||var.field(strx, fieldnx = 1, nfieldsx = 1)||Extract one or more consecutive fields given a delimiter char or substr.
|var=||str.<em>field</em>(strx, fieldnx = 1, nfieldsx = 1)||Extract one or more consecutive fields given a delimiter char or substr.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"aa*bb*cc"_var.field("*", 2);m // "bb"</syntaxhighlight>
"aa*bb*cc"_var.field("*", 2);m // "bb"</syntaxhighlight>
|-
|-
|var=||var.field2(separator, fieldno, nfields = 1)||field2 is a version that treats fieldn -1 as the last field, -2 the penultimate field etc. -<br>
|var=||str.<em>field2</em>(separator, fieldno, nfields = 1)||field2 is a version that treats fieldn -1 as the last field, -2 the penultimate field etc. -<br>
TODO Should probably make field() do this (since -1 is basically an erroneous call) and remove field2<br>
TODO Should probably make field() do this (since -1 is basically an erroneous call) and remove field2<br>
Same as var.field() but negative fieldnos work backwards from the last field.
Same as var.field() but negative fieldnos work backwards from the last field.
Line 773: Line 798:
"aa*bb*cc"_var.field("*", -1); // "cc"</syntaxhighlight>
"aa*bb*cc"_var.field("*", -1); // "cc"</syntaxhighlight>
|}
|}


===== I/O Conversion =====
===== I/O Conversion =====
Line 779: Line 805:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.oconv(convstr)||Converts to output format
|var=||var.<em>oconv</em>(convstr)||Converts internal data to output external display format according to a given conversion code or pattern<br>
If the internal data is invalid and cannot be converted then most conversions return the ORIGINAL data unconverted<br>
Throws a runtime error VarNotImplemented if convstr is invalid<br>
See [[#ICONV/OCONV PATTERNS]]
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var(30123).oconv("D/E"); // "21/06/2050"</syntaxhighlight>
var(30123).oconv("D/E"); // "21/06/2050"</syntaxhighlight>
|-
|-
|var=||var.iconv(convstr)||Converts to input format
|var=||var.<em>iconv</em>(convstr)||Converts external data to internal format according to a given conversion code or pattern<br>
If the external data is invalid and cannot be converted then most conversions return the EMPTY STRING ""<br>
Throws a runtime error VarNotImplemented if convstr is invalid<br>
See [[#ICONV/OCONV PATTERNS]]
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"21 JUN 2050"_var.iconv("D/E"); // 30123</syntaxhighlight>
"21 JUN 2050"_var.iconv("D/E"); // 30123</syntaxhighlight>
|-
|-
|var=||var.format(fmt_str, Args&&... args)||Classic format function in printf style
|var=||var.<em>format</em>(fmt_str, Args&&... args)||Classic format function in printf style<br>
vars can be formatted either with C++ format codes e.g. {:_>8.2f}<br>
or with exodus oconv codes e.g. {::MD20P|R(_)#8} as in the below example.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
format("Text and aligned {:9.2f} number", var(123.456)); // "Text and aligned ␣␣␣123.46 number"</syntaxhighlight>
var(12.345).format("'{:_>8.2f}' should match '{::MD20P|R(_)#8}'", var(12.345));
// -> "'___12.35' should match '___12.35'"
 
// or
format("'{:_>8.2f}' should match '{::MD20P|R(_)#8}'", var(12.345), var(12.345));</syntaxhighlight>
|-
|-
|var=||var.from_codepage(codepage)||Converts from codepage encoded text to UTF-8 encoded text<br>
|var=||str.<em>from_codepage</em>(codepage)||Converts from codepage encoded text to UTF-8 encoded text<br>
e.g. Codepage "CP1251" (Ukrainian).<br>
e.g. Codepage "CP1124" (Ukrainian).<br>
Use Linux command "iconv -l" for complete list of code pages and encodings.
Use Linux command "iconv -l" for complete list of code pages and encodings.
<syntaxhighlight lang="c++">
"\xa4"_var.from_codepage("CP1124"); // "Є"
// U+0404 Cyrillic Capital Letter Ukrainian Ie Unicode Character</syntaxhighlight>
|-
|-
|var=||var.to_codepage(codepage)||Converts to codepage encoded text from UTF-8 encoded text
|var=||str.<em>to_codepage</em>(codepage)||Converts to codepage encoded text from UTF-8 encoded text
<syntaxhighlight lang="c++">
"Є"_var.to_codepage("CP1124").oconv("HEX"); // "A4"</syntaxhighlight>
|}
|}


===== Basic Dynamic Array Functions =====
===== Basic Dynamic Array Functions =====
Line 803: Line 847:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.f(fieldno, valueno = 0, subvalueno = 0)||f() is a highly abbreviated alias for the PICK OS field/value/subvalue extract() function.<br>
|var=||str.<em>f</em>(fieldno, valueno = 0, subvalueno = 0)||f() is a highly abbreviated alias for the PICK OS field/value/subvalue extract() function.<br>
"f()" can be thought of as "field" although the function can extract values and subvalues as well.<br>
"f()" can be thought of as "field" although the function can extract values and subvalues as well.<br>
The convenient PICK OS angle bracket syntax for field extraction (e.g. xxx<20>) is not available in C++.<br>
The convenient PICK OS angle bracket syntax for field extraction (e.g. xxx<20>) is not available in C++.<br>
Line 810: Line 854:
"f1^f2v1]f2v2]f2v3^f2"_var.f(2, 2); // "f2v2"</syntaxhighlight>
"f1^f2v1]f2v2]f2v3^f2"_var.f(2, 2); // "f2v2"</syntaxhighlight>
|-
|-
|var=||var.extract(fieldno, valueno = 0, subvalueno = 0)||Extract a specific field, value or subvalue from a dynamic array.<br>
|var=||str.<em>extract</em>(fieldno, valueno = 0, subvalueno = 0)||Extract a specific field, value or subvalue from a dynamic array.<br>
The alias "f" is usually used instead
The alias "f" is usually used instead
|-
|-
|var=||var.pickreplace(fieldno, valueno, subvalueno, replacement)||Same as var.r() function but returns a new string instead of updating a variable in place.<br>Rarely used.
|var=||str.<em>pickreplace</em>(fieldno, valueno, subvalueno, replacement)||Same as var.r() function but returns a new string instead of updating a variable in place.<br>Rarely used.
|-
|-
|var=||var.pickreplace(fieldno, valueno, replacement)||Ditto for a specific multivalue
|var=||str.<em>pickreplace</em>(fieldno, valueno, replacement)||Ditto for a specific multivalue
|-
|-
|var=||var.pickreplace(fieldno, replacement)||Ditto for a specific field
|var=||str.<em>pickreplace</em>(fieldno, replacement)||Ditto for a specific field
|-
|-
|var=||var.insert(fieldno, valueno, subvalueno, insertion)||Same as var.inserter() function but returns a new string instead of updating a variable in place.
|var=||str.<em>insert</em>(fieldno, valueno, subvalueno, insertion)||Same as var.inserter() function but returns a new string instead of updating a variable in place.
|-
|-
|var=||var.insert(fieldno, valueno, insertion)||Ditto for a specific multivalue
|var=||str.<em>insert</em>(fieldno, valueno, insertion)||Ditto for a specific multivalue
|-
|-
|var=||var.insert(fieldno, insertion)||Ditto for a specific field
|var=||str.<em>insert</em>(fieldno, insertion)||Ditto for a specific field
|-
|-
|var=||var.remove(fieldno, valueno = 0, subvalueno = 0)||Same as var.remover() function but returns a new string instead of updating a variable in place.<br>
|var=||str.<em>remove</em>(fieldno, valueno = 0, subvalueno = 0)||Same as var.remover() function but returns a new string instead of updating a variable in place.<br>
"remove" was called "delete" in Pick OS.
"remove" was called "delete" in Pick OS.
|}
|}


===== Dynamic Array Filters =====
===== Dynamic Array Filters =====
Line 834: Line 879:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.sum()||Sum up multiple values into one higher level
|var=||str.<em>sum</em>()||Sum up multiple values into one higher level
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"1]2]3^4]5]6"_var.sum(); // "6^15"</syntaxhighlight>
"1]2]3^4]5]6"_var.sum(); // "6^15"</syntaxhighlight>
|-
|-
|var=||var.sumall()||Sum up all levels into a single figure
|var=||str.<em>sumall</em>()||Sum up all levels into a single figure
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"1]2]3^4]5]6"_var.sumall(); // "21"</syntaxhighlight>
"1]2]3^4]5]6"_var.sumall(); // "21"</syntaxhighlight>
|-
|-
|var=||var.sum(sepchar)||Ditto allowing commas etc.
|var=||str.<em>sum</em>(sepchar)||Ditto allowing commas etc.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"10,20,33"_var.sum(","); // "60"</syntaxhighlight>
"10,20,33"_var.sum(","); // "60"</syntaxhighlight>
|-
|-
|var=||var.mv(opcode, var2)||Binary ops (+, -, *, /) in parallel on multiple values
|var=||str.<em>mv</em>(opcode, var2)||Binary ops (+, -, *, /) in parallel on multiple values
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
"10]20]30"_var.mv("+","2]3]4"); // "12]23]34"</syntaxhighlight>
"10]20]30"_var.mv("+","2]3]4"); // "12]23]34"</syntaxhighlight>
|}
|}


===== Dynamic Array Mutators (Standalone And Cannot Be Chained) =====
===== Dynamic Array Mutators (Standalone And Cannot Be Chained) =====
Line 856: Line 902:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|cmd||var.r(fieldno, replacement)||Replaces a specific field in a dynamic array
|cmd||str.<em>r</em>(fieldno, replacement)||Replaces a specific field in a dynamic array
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = "f1^v1]v2}s2}s3^f3"_var;
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.r(2, 2, "X"); // v1 -> "f1^X^f3"</syntaxhighlight>
v1.r(2, 2, "X"); // v1 -> "f1^X^f3"</syntaxhighlight>
|-
|-
|cmd||var.r(fieldno, valueno, replacement)||Ditto for specific value in a specific field.
|cmd||str.<em>r</em>(fieldno, valueno, replacement)||Ditto for specific value in a specific field.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = "f1^v1]v2}s2}s3^f3"_var;
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.r(2, 2, "X"); // v1 -> "f1^v1]X^f3"</syntaxhighlight>
v1.r(2, 2, "X"); // v1 -> "f1^v1]X^f3"</syntaxhighlight>
|-
|-
|cmd||var.r(fieldno, valueno, subvalueno, replacement)||Ditto for a specific subvalue in a specific value of a specific field
|cmd||str.<em>r</em>(fieldno, valueno, subvalueno, replacement)||Ditto for a specific subvalue in a specific value of a specific field
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = "f1^v1]v2}s2}s3^f3"_var;
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.r(2, 2, 2, "X"); // v1 -> "f1^v1]v2}X}s3^f3"</syntaxhighlight>
v1.r(2, 2, 2, "X"); // v1 -> "f1^v1]v2}X}s3^f3"</syntaxhighlight>
|-
|-
|cmd||var.inserter(fieldno, insertion)||Insert a specific field in a dynamic array, moving all other fields up.
|cmd||str.<em>inserter</em>(fieldno, insertion)||Insert a specific field in a dynamic array, moving all other fields up.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = "f1^v1]v2}s2}s3^f3"_var;
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.inserter(2, "X"); // v1 -> "f1^X^v1]v2}s2}s3^f3"</syntaxhighlight>
v1.inserter(2, "X"); // v1 -> "f1^X^v1]v2}s2}s3^f3"</syntaxhighlight>
|-
|-
|cmd||var.inserter(fieldno, valueno, insertion)||Ditto for a specific value in a specific field, moving all other fields up.
|cmd||str.<em>inserter</em>(fieldno, valueno, insertion)||Ditto for a specific value in a specific field, moving all other fields up.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = "f1^v1]v2}s2}s3^f3"_var;
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.inserter(2, 2, "X"); // v1 -> "f1^v1]X]v2}s2}s3^f3"</syntaxhighlight>
v1.inserter(2, 2, "X"); // v1 -> "f1^v1]X]v2}s2}s3^f3"</syntaxhighlight>
|-
|-
|cmd||var.inserter(fieldno, valueno, subvalueno, insertion)||Ditto for a specific subvalue in a dynamic array, moving all other subvalues up.
|cmd||str.<em>inserter</em>(fieldno, valueno, subvalueno, insertion)||Ditto for a specific subvalue in a dynamic array, moving all other subvalues up.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = "f1^v1]v2}s2}s3^f3"_var;
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.inserter(2, 2, 2, "X"); // v1 -> "f1^v1]v2}X}s2}s3^f3"</syntaxhighlight>
v1.inserter(2, 2, 2, "X"); // v1 -> "f1^v1]v2}X}s2}s3^f3"</syntaxhighlight>
|-
|-
|cmd||var.remover(fieldno, valueno = 0, subvalueno = 0)||Remove a specific field (or value, or subvalue) from a dynamic array, moving all other fields (or values, or subvalues) down.
|cmd||str.<em>remover</em>(fieldno, valueno = 0, subvalueno = 0)||Remove a specific field (or value, or subvalue) from a dynamic array, moving all other fields (or values, or subvalues) down.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = "f1^v1]v2}s2}s3^f3"_var;
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.remover(2, 2); // v1 -> "f1^v1^f3"</syntaxhighlight>
v1.remover(2, 2); // v1 -> "f1^v1^f3"</syntaxhighlight>
|}
|}


===== Dynamic Array Search =====
===== Dynamic Array Search =====
Line 897: Line 944:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|if||var.locate(target)||locate() with only the target substr argument provided searches unordered values separated by VM chars.<br>
|if||str.<em>locate</em>(target)||locate() with only the target substr argument provided searches unordered values separated by VM chars.<br>
Returns true if found and false if not.
Returns true if found and false if not.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
if ("UK]US]UA"_var.locate("US")) ... // true</syntaxhighlight>
if ("UK]US]UA"_var.locate("US")) ... // true</syntaxhighlight>
|-
|-
|if||var.locate(target, out valueno)||locate() with only the target substr and valueno arguments provided searches unordered values separated by VM chars.<br>
|if||str.<em>locate</em>(target, out valueno)||locate() with only the target substr and valueno arguments provided searches unordered values separated by VM chars.<br>
Returns true if found and with the value number in valueno.<br>
Returns true if found and with the value number in valueno.<br>
Returns false if not found and with the max value number + 1 in setting. Suitable for additiom of new values
Returns false if not found and with the max value number + 1 in setting. Suitable for additiom of new values
Line 908: Line 955:
var valueno; if ("UK]US]UA"_var.locate("US", valueno)) ... // returns true and valueno = 2</syntaxhighlight>
var valueno; if ("UK]US]UA"_var.locate("US", valueno)) ... // returns true and valueno = 2</syntaxhighlight>
|-
|-
|if||var.locate(target, out setting, fieldno, valueno = 0)||locate() the target in unordered fields if fieldno is 0, or values if a fieldno is specified, or subvalues if the valueno argument is provided.<br>
|if||str.<em>locate</em>(target, out setting, fieldno, valueno = 0)||locate() the target in unordered fields if fieldno is 0, or values if a fieldno is specified, or subvalues if the valueno argument is provided.<br>
Returns true if found and with the field, value or subvalue number in setting.<br>
Returns true if found and with the field, value or subvalue number in setting.<br>
Returns false if not found and with the max field, value or subvalue number found + 1 in setting. Suitable for replacement of new fields, values or subvalues.
Returns false if not found and with the max field, value or subvalue number found + 1 in setting. Suitable for replacement of new fields, values or subvalues.
Line 914: Line 961:
var setting; if ("f1^f2v1]f2v2]s1}s2}s3}s4^f3^f4"_var.locate("s4", setting, 2, 3)) ... // returns true and setting = 4</syntaxhighlight>
var setting; if ("f1^f2v1]f2v2]s1}s2}s3}s4^f3^f4"_var.locate("s4", setting, 2, 3)) ... // returns true and setting = 4</syntaxhighlight>
|-
|-
|if||var.locateby(ordercode, target, out valueno)||locateby() without fieldno or valueno arguments searches ordered values separated by VM chars.<br>
|if||str.<em>locateby</em>(ordercode, target, out valueno)||locateby() without fieldno or valueno arguments searches ordered values separated by VM chars.<br>
The order code can be AL, DL, AR, DR meaning Ascending Left, Descending Right, Ascending Right, Ascending Left.<br>
The order code can be AL, DL, AR, DR meaning Ascending Left, Descending Right, Ascending Right, Ascending Left.<br>
Left is used to indicate alphabetic order where 10 < 2.<br>
Left is used to indicate alphabetic order where 10 < 2.<br>
Line 924: Line 971:
var valueno; if ("aaa]bbb]ccc"_var.locateby("AL", "bb", valueno)) ... // returns false and valueno = 2 where it could be correctly inserted.</syntaxhighlight>
var valueno; if ("aaa]bbb]ccc"_var.locateby("AL", "bb", valueno)) ... // returns false and valueno = 2 where it could be correctly inserted.</syntaxhighlight>
|-
|-
|if||var.locateby(ordercode, target, out setting, fieldno, valueno = 0)||locateby() ordered as above but in fields if fieldno is 0, or values in a specific fieldno, or subvalues in a specific valueno.
|if||str.<em>locateby</em>(ordercode, target, out setting, fieldno, valueno = 0)||locateby() ordered as above but in fields if fieldno is 0, or values in a specific fieldno, or subvalues in a specific valueno.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var setting; if ("f1^f2^aaa]bbb]ccc^f4"_var.locateby("AL", "bb", setting, 3)) ... // returns false and setting = 2 where it could be correctly inserted.</syntaxhighlight>
var setting; if ("f1^f2^aaa]bbb]ccc^f4"_var.locateby("AL", "bb", setting, 3)) ... // returns false and setting = 2 where it could be correctly inserted.</syntaxhighlight>
|-
|-
|if||var.locateusing(usingchar, target)||locate() a target substr in the whole unordered string using a given delimiter char returning true if found.<br>
|if||str.<em>locateusing</em>(usingchar, target)||locate() a target substr in the whole unordered string using a given delimiter char returning true if found.<br>
if (<syntaxhighlight lang="c++">
if (<syntaxhighlight lang="c++">
"AB,EF,CD"_var.locateusing(",", "EF")) ... // true</syntaxhighlight>
"AB,EF,CD"_var.locateusing(",", "EF")) ... // true</syntaxhighlight>
|-
|-
|if||var.locateusing(usingchar, target, out setting, fieldno = 0, valueno = 0, subvalueno = 0)||locate() the target in a specific field, value or subvalue using a specified delimiter and unordered data<br>
|if||str.<em>locateusing</em>(usingchar, target, out setting, fieldno = 0, valueno = 0, subvalueno = 0)||locate() the target in a specific field, value or subvalue using a specified delimiter and unordered data<br>
Returns true If found and returns in setting the number of the delimited field found.<br>
Returns true If found and returns in setting the number of the delimited field found.<br>
Returns false if not found and returns in setting the maximum number of delimited fields + 1 if not found.<br>
Returns false if not found and returns in setting the maximum number of delimited fields + 1 if not found.<br>
Line 939: Line 986:
var setting; if ("f1^f2^f3c1,f3c2,f3c3^f4"_var.locateusing(",", "f3c2", setting, 3)) ... // returns true and setting = 2</syntaxhighlight>
var setting; if ("f1^f2^f3c1,f3c2,f3c3^f4"_var.locateusing(",", "f3c2", setting, 3)) ... // returns true and setting = 2</syntaxhighlight>
|-
|-
|if||var.locatebyusing(ordercode, usingchar, target, out setting, fieldno = 0, valueno = 0, subvalueno = 0)||locatebyusing() supports all the above features in a single function.<br>
|if||str.<em>locatebyusing</em>(ordercode, usingchar, target, out setting, fieldno = 0, valueno = 0, subvalueno = 0)||locatebyusing() supports all the above features in a single function.<br>
Returns true if found.
Returns true if found.
|}
|}


===== Database Access =====
===== Database Access =====
Line 948: Line 996:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|if||var.connect(conninfo = "")||for all db operations, var() can be a db connection or a default connection.<br>var db="mydb";<br>if (not db.connect()) abort(db.lasterror());<br>db.version().outputl();<br>db.disconnect();
|if||conn.<em>connect</em>(conninfo = "")||For all db operations, var() can be db connection created with dbconnect() or any var will perform a default connection.<br>
The db connection string (conninfo) parameters are merged from the following places in descending priority.<br>
1. Provided in connect()'s conninfo argument. See 4. for the complete list of parameters.<br>
2. Any environment variables EXO_HOST EXO_PORT EXO_USER EXO_DATA EXO_PASS EXO_TIME<br>
3. Any parameters found in a configuration file at ~/.config/exodus/exodus.cfg<br>
4. The defaults "host=127.0.0.1 port=5432 dbname=exodus user=exodus password=somesillysecret connect_timeout=10"
<syntaxhighlight lang="c++">
var db="mydb";
if (not db.connect()) abort(db.lasterror());
db.version().outputl();
db.disconnect();</syntaxhighlight>
|-
|-
|cmd||var.disconnect()||
|cmd||conn.<em>disconnect</em>()||Removes a db connection and frees resources.
|-
|-
|cmd||var.disconnectall()||
|cmd||conn.<em>disconnectall</em>()||Removes all db connection and frees resources.
|-
|-
|if||var.attach(filenames)||Connect specific filenames on specific databases for the current default session
|if||conn.<em>attach</em>(filenames)||Attach (connect) specific files by name to specific connections.<br>
For the remainder of the session, opening the file by name will automatically use the specified connection.
|-
|-
|cmd||var.detach(filenames)||
|cmd||conn.<em>detach</em>(filenames)||Detach (disconnect) files that have been attached using attach().
|-
|-
|if||var.begintrans()||
|if||conn.<em>begintrans</em>()||Begin a db transaction.
|-
|-
|if||var.rollbacktrans()||
|if||conn.<em>rollbacktrans</em>()||Rollback a db transaction.
|-
|-
|if||var.committrans()||
|if||conn.<em>committrans</em>()||Commit a db transaction.
|-
|-
|if||var.statustrans()||
|if||conn.<em>statustrans</em>()||Check if a db transaction is in progress.
|-
|-
|if||var.sqlexec(sqlcmd)||
|if||conn.<em>sqlexec</em>(sqlcmd)||Execute an sql command.
|-
|-
|if||var.sqlexec(sqlcmd, io response)||
|if||conn.<em>sqlexec</em>(sqlcmd, io response)||Execute an SQL command and capture the response.
|-
|-
|var=||var.lasterror()||
|var=||conn.<em>lasterror</em>()||Get the last os or db error message.
|-
|-
|var=||var.loglasterror(source = "")||
|var=||conn.<em>loglasterror</em>(source = "")||Log the last os or db error message.
|}
|}


===== Database Management =====
===== Database Management =====
Line 980: Line 1,040:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|if||var.dbcreate(dbname)||Create a named database on a particular connection
|if||conn.<em>dbcreate</em>(dbname)||Create a named database on a particular connection.
|-
|-
|var=||var.dblist()||Return a list of available databases on a particular connection
|var=||conn.<em>dblist</em>()||Return a list of available databases on a particular connection.
|-
|-
|if||var.dbcopy(from_dbname, to_dbname)||Create a named database from an existing database
|if||conn.<em>dbcopy</em>(from_dbname, to_dbname)||Create a named database from an existing database.
|-
|-
|if||var.dbdelete(dbname)||Delete (drop) a named database
|if||conn.<em>dbdelete</em>(dbname)||Delete (drop) a named database.
|-
|-
|if||var.createfile(filename)||Create a named file
|if||conn.<em>createfile</em>(filename)||Create a named db file.
|-
|-
|if||var.renamefile(filename, newfilename)||Rename a file
|if||conn.<em>renamefile</em>(filename, newfilename)||Rename a db file.
|-
|-
|if||var.deletefile(filename)||Delete (drop) a file
|if||conn.<em>deletefile</em>(filename)||Delete (drop) a db file
|-
|-
|if||var.clearfile(filename)||Delete all records in a file
|if||conn.<em>clearfile</em>(filename)||Delete all records in a db file
|-
|-
|var=||var.listfiles()||Return a list of all files in a database
|var=||conn.<em>listfiles</em>()||Return a list of all files in a database
|-
|-
|if||var.createindex(fieldname, dictfile = "")||
|var=||conn.<em>reccount</em>(filename = "")||Returns the approx. number of records in a file
|-
|-
|if||var.deleteindex(fieldname)||
|if||conn.<em>flushindex</em>(filename = "")||Calls db maintenance function (vacuum)<br>
This doesnt flush any indexes any longer but does make sure that reccount() function is reasonably accurate.
|}
 
 
===== Database File I/O =====
 
{|border="1" cellpadding="10" cellspacing="0"
!Usage!!Function!!Comment
|-
|-
|var=||var.listindex(filename = "", fieldname = "")||
|if||file.<em>open</em>(dbfilename, connection = "")||
|-
|-
|var=||var.version()||
|cmd||file.<em>close</em>()||
|-
|-
|var=||var.reccount(filename = "")||
|if||file.<em>createindex</em>(fieldname, dictfile = "")||
|-
|-
|var=||var.flushindex(filename = "")||
|if||file.<em>deleteindex</em>(fieldname)||
|-
|-
|if||var.open(dbfilename, connection = "")||
|var=||file.<em>listindex</em>(filename = "", fieldname = "")||
|-
|-
|cmd||var.close()||
|var=||file.<em>lock</em>(key)||Returns 1=ok, 0=failed, ""=already locked
|-
|-
|var=||var.lock(key)||Returns 1=ok, 0=failed, ""=already locked
|if||file.<em>unlock</em>(key)||
|-
|-
|if||var.unlock(key)||
|if||file.<em>unlockall</em>()||
|-
|-
|if||var.unlockall()||
|if||rec.<em>read</em>(file, key)||Reads a record from a file given its unique primary key.<br>
Returns false if the key doesnt exist
<syntaxhighlight lang="c++">
var rec; if (not rec.read(file, key)) ...</syntaxhighlight>
|-
|-
|if||var.read(filehandle, key)||DB file i/o
|cmd||rec.<em>write</em>(file, key)||Writes a record to a file.<br>
It updates an existing record if the key already exists or inserts a new record.<br>
It always succeeds so no result code is returned.<br>
Any memory cached record is deleted.
<syntaxhighlight lang="c++">
rec.write(file, key);</syntaxhighlight>
|-
|-
|cmd||var.write(filehandle, key)||
|if||rec.<em>updaterecord</em>(file, key)||Updates an existing record in a file.<br>
Returns false if the key doesnt already exist<br>
Any memory cached record is deleted.
<syntaxhighlight lang="c++">
if (not rec.updaterecord(file, key)) ...</syntaxhighlight>
|-
|-
|if||var.deleterecord(key)||
|if||rec.<em>insertrecord</em>(file, key)||Inserts a new record in a file.<br>
Returns false if the key already exists<br>
Any memory cached record is deleted.
<syntaxhighlight lang="c++">
if (not rec.insertrecord(file, key)) ...</syntaxhighlight>
|-
|-
|if||var.updaterecord(filehandle, key)||
|if||file.<em>deleterecord</em>(key)||Deletes a record from a file given its key.<br>
Returns false if the key doesnt exist<br>
Any memory cached record is deleted.<br>
<syntaxhighlight lang="c++">
if (not file.deleterecord(key)) ...</syntaxhighlight>
|-
|-
|if||var.insertrecord(filehandle, key)||
|if||str.<em>readf</em>(file, key, fieldno)||Same as read() but only returns a specific field no from the record
<syntaxhighlight lang="c++">
var field; if (not field.readf(file, key, fieldno)) ...</syntaxhighlight>
|-
|-
|if||var.readf(filehandle, key, fieldno)||Specific db field i/o
|cmd||str.<em>writef</em>(file, key, fieldno)||Same as write() but only writes a specific field no to the record
<syntaxhighlight lang="c++">
field.writef(file, key, fieldno);</syntaxhighlight>
|-
|-
|cmd||var.writef(filehandle, key, fieldno)||
|if||rec.<em>readc</em>(file, key)||Cache read a record from a memory cache "file" given its key.<br>
1. Tries to read from a memory cache and returns true if successful.<br>
2. Reads to read from the actual file and returns false if unsuccessful.<br>
3. Writes the record and key to the memory cache and returns true.<br>
Cached db file data lives in exodus process memory not the database.
<syntaxhighlight lang="c++">
var rec; if (not rec.readc(file, key)) ...</syntaxhighlight>
|-
|-
|if||var.readc(filehandle, key)||Cached db file i/o lives in exodus process memory not the database
|cmd||rec.<em>writec</em>(file, key)||Cache write a record and key into a memory cached "file".<br>
The actual file is NOT updated.<br>
It either updates an existing record if the key already exists or otherwise inserts a new record.<br>
It always succeeds so no result code is returned.
<syntaxhighlight lang="c++">
rec.writec(file, key);</syntaxhighlight>
|-
|-
|cmd||var.writec(filehandle, key)||
|if||dbfile.<em>deletec</em>(key)||Deletes a record and key from a memory cached "file".<br>
The actual file is NOT updated.<br>
Returns false if the key doesnt exist
<syntaxhighlight lang="c++">
if (not file.deletec(key)) ...</syntaxhighlight>
|-
|-
|if||var.deletec(key)||
|cmd||conn.<em>cleardbcache</em>()||Clears the memory cache of all records for the given connection<br>
All future cache readc() function calls will be forced to obtain records from the actual database and refresh the cache.
<syntaxhighlight lang="c++">
conn.cleardbcache();</syntaxhighlight>
|-
|-
|cmd||var.cleardbcache()||
|var=||str.<em>xlate</em>(filename, fieldno, mode)||
|-
|var=||var.xlate(filename, fieldno, mode)||
|}
|}


===== Database Sort/Select =====
===== Database Sort/Select =====
Line 1,050: Line 1,159:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|if||var.select(sortselectclause = "")||
|if||file.<em>select</em>(sortselectclause = "")||
|-
|-
|cmd||var.clearselect()||
|cmd||file.<em>clearselect</em>()||
|-
|-
|if||var.hasnext()||
|if||file.<em>hasnext</em>()||
|-
|-
|if||var.readnext(out key)||
|if||file.<em>readnext</em>(out key)||
|-
|-
|if||var.readnext(out key, out valueno)||
|if||file.<em>readnext</em>(out key, out valueno)||
|-
|-
|if||var.readnext(out record, out key, out valueno)||
|if||file.<em>readnext</em>(out record, out key, out valueno)||
|-
|-
|if||var.savelist(listname)||
|if||file.<em>savelist</em>(listname)||
|-
|-
|if||var.getlist(listname)||
|if||file.<em>getlist</em>(listname)||
|-
|-
|if||var.makelist(listname, keys)||
|if||file.<em>makelist</em>(listname, keys)||
|-
|-
|if||var.deletelist(listname)||
|if||file.<em>deletelist</em>(listname)||
|-
|-
|if||var.formlist(keys, fieldno = 0)||
|if||file.<em>formlist</em>(keys, fieldno = 0)||
|}
|}


===== OS Time/Date =====
===== OS Time/Date =====
Line 1,078: Line 1,188:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.date()||Number of whole days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before.
|var=||var.<em>date</em>()||Number of whole days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var today1 = var().date(); // e.g. was 20821 from 2025-01-01 00:00:00 UTC
var today1 = var().date(); // e.g. was 20821 from 2025-01-01 00:00:00 UTC
Line 1,084: Line 1,194:
var today2 = date();</syntaxhighlight>
var today2 = date();</syntaxhighlight>
|-
|-
|var=||var.time()||Number of whole seconds since last 00:00:00 (UTC).
|var=||var.<em>time</em>()||Number of whole seconds since last 00:00:00 (UTC).
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var now1 = var().time(); // range 0 - 86399 since there are 24*60*60 (86400) seconds in a day.
var now1 = var().time(); // range 0 - 86399 since there are 24*60*60 (86400) seconds in a day.
Line 1,090: Line 1,200:
var now2 = time();</syntaxhighlight>
var now2 = time();</syntaxhighlight>
|-
|-
|var=||var.ostime()||Number of fractional seconds since last 00:00:00 (UTC).<br>
|var=||var.<em>ostime</em>()||Number of fractional seconds since last 00:00:00 (UTC).<br>
A floating point with approx. nanosecond resolution depending on hardware.
A floating point with approx. nanosecond resolution depending on hardware.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,097: Line 1,207:
var now2 = ostime();</syntaxhighlight>
var now2 = ostime();</syntaxhighlight>
|-
|-
|var=||var.timestamp()||Number of fractional days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before.<br>
|var=||var.<em>timestamp</em>()||Number of fractional days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before.<br>
A floating point with approx. nanosecond resolution depending on hardware.
A floating point with approx. nanosecond resolution depending on hardware.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,104: Line 1,214:
var now2 = ostimestamp();</syntaxhighlight>
var now2 = ostimestamp();</syntaxhighlight>
|-
|-
|var=||var.timestamp(ostime)||Construct a timestamp from a date and time
|var=||var.<em>timestamp</em>(ostime)||Construct a timestamp from a date and time
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var ts1 = var().timestamp(iconv("2025-01-01", "D"), iconv("23:59:59", "MT")); // 20821.99998842593
var ts1 = var().timestamp(iconv("2025-01-01", "D"), iconv("23:59:59", "MT")); // 20821.99998842593
Line 1,110: Line 1,220:
var ts2 = timestamp(somedate, sometime);</syntaxhighlight>
var ts2 = timestamp(somedate, sometime);</syntaxhighlight>
|-
|-
|cmd||var.ossleep(milliseconds)||Sleep/pause/wait for a number of milliseconds
|cmd||var.<em>ossleep</em>(milliseconds)||Sleep/pause/wait for a number of milliseconds
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var().ossleep(3000); // sleep for 3 seconds
var().ossleep(3000); // sleep for 3 seconds
Line 1,116: Line 1,226:
ossleep(3000);</syntaxhighlight>
ossleep(3000);</syntaxhighlight>
|-
|-
|var=||var.oswait(milliseconds, directory)||Sleep/pause/wait for any activity in a file system directory for a number of milliseconds
|var=||var.<em>oswait</em>(milliseconds, directory)||Sleep/pause/wait for any activity in a file system directory for a number of milliseconds
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var().oswait(3000, "."); // max 3 seconds
var().oswait(3000, "."); // max 3 seconds
Line 1,123: Line 1,233:
|}
|}


===== OS Files =====
 
===== OS File Io =====


{|border="1" cellpadding="10" cellspacing="0"
{|border="1" cellpadding="10" cellspacing="0"
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|if||var.osopen(osfilename, locale = "")||Given the name of an existing file name including path, initialises a var that can be used in random access osbread and osbwrite functions.<br>
|if||osfilevar.<em>osopen</em>(osfilename, locale = "")||Given the name of an existing file name including path, initialises a var that can be used in random access osbread and osbwrite functions.<br>
Optionally allows specifying a locale/codepage to which and from which all writes and reads will be converted (?) from a assumed internal UTF8 encoding.<br>
Optionally allows specifying a locale/codepage to which and from which all writes and reads will be converted (?) from a assumed internal UTF8 encoding.<br>
File will be opened for writing if possible otherwise for reading.<br>
File will be opened for writing if possible otherwise for reading.<br>
Line 1,139: Line 1,250:
if (not osopen("/etc/hosts" to hostsfile) ...</syntaxhighlight>
if (not osopen("/etc/hosts" to hostsfile) ...</syntaxhighlight>
|-
|-
|if||var.osbread(osfilevar, io offset, length)||Reads length bytes from an existing os file starting at a given byte offset.<br>
|if||osfilevar.<em>osbread</em>(osfilevar, io offset, length)||Reads length bytes from an existing os file starting at a given byte offset (0 based).<br>
The osfilevar file handle may either be initialised by osopen (optionally with a locale/codepage) or be just a normal string variable holding the path and name of the os file.<br>
The osfilevar file handle may either be initialised by osopen (optionally with a locale/codepage) or be just a normal string variable holding the path and name of the os file.<br>
After reading, the offset is updated to point to the correct offset for a subsequent sequential read.<br>
After reading, the offset is updated to point to the correct offset for a subsequent sequential read.<br>
Line 1,149: Line 1,260:
if (not osbread(text from hostsfile, offset, 1024) ...</syntaxhighlight>
if (not osbread(text from hostsfile, offset, 1024) ...</syntaxhighlight>
|-
|-
|if||var.osbwrite(osfilevar, io offset)||Writes data to an existing os file starting at a given byte offset.<br>
|if||osfilevar.<em>osbwrite</em>(osfilevar, io offset)||Writes data to an existing os file starting at a given byte offset (0 based).<br>
See osbread for more info.
See osbread for more info.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,158: Line 1,269:
if (not osbwrite(text on xyzfile, offset) ...</syntaxhighlight>
if (not osbwrite(text on xyzfile, offset) ...</syntaxhighlight>
|-
|-
|cmd||var.osclose()||Removes an osfilevar handle from the internal memory cache of os file handles freeing up both exodus process memory and operating system resources.<br>
|cmd||osfilevar.<em>osclose</em>()||Removes an osfilevar handle from the internal memory cache of os file handles freeing up both exodus process memory and operating system resources.<br>
It is advisable to osclose any file handles after use, regardless of whether they were specifically opened using osopen or not, especially in long running programs. Exodus performs caching of internal os file handles per thread and os file. If not closed, then the operating system will probably not flush deleted files from storage until the process is terminated. This can potentially create an memory issue or file system resource issue especially if osopening/osreading/oswriting many perhaps temporary files in a long running process.
It is advisable to osclose any file handles after use, regardless of whether they were specifically opened using osopen or not, especially in long running programs. Exodus performs caching of internal os file handles per thread and os file. If not closed, then the operating system will probably not flush deleted files from storage until the process is terminated. This can potentially create an memory issue or file system resource issue especially if osopening/osreading/oswriting many perhaps temporary files in a long running process.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,165: Line 1,276:
osclose(osfilevar);</syntaxhighlight>
osclose(osfilevar);</syntaxhighlight>
|-
|-
|if||var.osread(osfilename, codepage = "")||Read a complete os file into a var<br>
|if||str.<em>osread</em>(osfilename, codepage = "")||Read a complete os file into a var<br>
Returns true if successful or false if not possible for any reason.<br>
Returns true if successful or false if not possible for any reason.<br>
e.g. File doesnt exist, permissions etc.
e.g. File doesnt exist, permissions etc.
Line 1,174: Line 1,285:
if (not osread(text from "/etc/hosts")) ...</syntaxhighlight>
if (not osread(text from "/etc/hosts")) ...</syntaxhighlight>
|-
|-
|if||var.oswrite(osfilename, codepage = "")||Create a complete os file from a var.<br>
|if||str.<em>oswrite</em>(osfilename, codepage = "")||Create a complete os file from a var.<br>
Any existing file is removed first.<br>
Any existing file is removed first.<br>
Returns true if successful or false if not possible for any reason.<br>
Returns true if successful or false if not possible for any reason.<br>
Line 1,184: Line 1,295:
if (not oswrite(text on osfilename)) ...</syntaxhighlight>
if (not oswrite(text on osfilename)) ...</syntaxhighlight>
|-
|-
|if||var.osremove()||Removes/deletes an os file from the OS file system given path and name.<br>
|if||osfilename.<em>osremove</em>()||Removes/deletes an os file from the OS file system given path and name.<br>
Will not remove directories. Use osrmdir() to remove directories<br>
Will not remove directories. Use osrmdir() to remove directories<br>
Returns true if successful or false if not possible for any reason.<br>
Returns true if successful or false if not possible for any reason.<br>
Line 1,193: Line 1,304:
if (not osremove("../xyz.conf") ...</syntaxhighlight>
if (not osremove("../xyz.conf") ...</syntaxhighlight>
|-
|-
|if||var.osrename(new_dirpath_or_filepath)||Renames an os file or dir in the OS file system.<br>
|if||osfileordirname.<em>osrename</em>(new_dirpath_or_filepath)||Renames an os file or dir in the OS file system.<br>
Will not overwrite an existing file or dir.<br>
Will not overwrite an existing file or dir.<br>
Source and target must exist in the same storage device.<br>
Source and target must exist in the same storage device.<br>
Line 1,204: Line 1,315:
if (not osrename("../xyz.conf", "../abc.conf") ...</syntaxhighlight>
if (not osrename("../xyz.conf", "../abc.conf") ...</syntaxhighlight>
|-
|-
|if||var.oscopy(to_osfilename)||Copies a file or directory recursively within the file system.<br>
|if||osfileordirname.<em>oscopy</em>(to_osfilename)||Copies a file or directory recursively within the file system.<br>
Uses std::filesystem::copy internally with recursive and overwrite options
Uses std::filesystem::copy internally with recursive and overwrite options
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,211: Line 1,322:
if (not oscopy("../xyz.conf", "../abc.conf") ...</syntaxhighlight>
if (not oscopy("../xyz.conf", "../abc.conf") ...</syntaxhighlight>
|-
|-
|if||var.osmove(to_osfilename)||"Moves" a file or dir within the os file system.<br>
|if||osfileordirname.<em>osmove</em>(to_osfilename)||"Moves" a file or dir within the os file system.<br>
Will not overwrite an existing file or dir.<br>
Will not overwrite an existing file or dir.<br>
Returns true if successful or false if not possible for any reason.<br>
Returns true if successful or false if not possible for any reason.<br>
Line 1,221: Line 1,332:
if (not osmove("../xyz.conf", "../abc.conf") ...</syntaxhighlight>
if (not osmove("../xyz.conf", "../abc.conf") ...</syntaxhighlight>
|}
|}


===== OS Directories =====
===== OS Directories =====
Line 1,227: Line 1,339:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|var=||var.oslist(globpattern = "", mode = 0)||Returns a FM delimited string containing all matching dir entries given a dir path<br>
|var=||dirpath.<em>oslist</em>(globpattern = "", mode = 0)||Returns a FM delimited string containing all matching dir entries given a dir path<br>
A glob pattern (e.g. *.conf) can be appended to the path or passed as argument.
A glob pattern (e.g. *.conf) can be appended to the path or passed as argument.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,234: Line 1,346:
var entries2 = oslist("/etc/" "*.conf";</syntaxhighlight>
var entries2 = oslist("/etc/" "*.conf";</syntaxhighlight>
|-
|-
|var=||var.oslistf(globpattern = "")||Same as oslist for files only
|var=||dirpath.<em>oslistf</em>(globpattern = "")||Same as oslist for files only
|-
|-
|var=||var.oslistd(globpattern = "")||Same as oslist for files only
|var=||dirpath.<em>oslistd</em>(globpattern = "")||Same as oslist for files only
|-
|-
|var=||var.osinfo(mode = 0)||Return dir info for any dir entry or "" if it doesnt exist<br>
|var=||osfileordirpath.<em>osinfo</em>(mode = 0)||Return dir info for any dir entry or "" if it doesnt exist<br>
A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time<br>
A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time<br>
mode 0 default<br>
mode 0 default<br>
Line 1,249: Line 1,361:
var info2 = osinfo("/etc/hosts");</syntaxhighlight>
var info2 = osinfo("/etc/hosts");</syntaxhighlight>
|-
|-
|var=||var.osfile()||Return dir info for a file<br>
|var=||osfilename.<em>osfile</em>()||Return dir info for a file<br>
A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time<br>
A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time<br>
Alias for osinfo(1)
Alias for osinfo(1)
Line 1,257: Line 1,369:
var fileinfo2 = osfile("/etc/hosts");</syntaxhighlight>
var fileinfo2 = osfile("/etc/hosts");</syntaxhighlight>
|-
|-
|var=||var.osdir()||Return dir info for a dir.<br>
|var=||dirpath.<em>osdir</em>()||Return dir info for a dir.<br>
A short string containing FM ^ modified_time ^ FM ^ modified_time<br>
A short string containing FM ^ modified_time ^ FM ^ modified_time<br>
Alias for osinfo(2)
Alias for osinfo(2)
Line 1,265: Line 1,377:
var dirinfo2 = osfile("/etc/");</syntaxhighlight>
var dirinfo2 = osfile("/etc/");</syntaxhighlight>
|-
|-
|if||var.osmkdir()||Makes a new directory and returns true if successful.<br>
|if||dirpath.<em>osmkdir</em>()||Makes a new directory and returns true if successful.<br>
Including parent dirs if necessary.
Including parent dirs if necessary.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,272: Line 1,384:
if (not osmkdir("abc/def")) ...</syntaxhighlight>
if (not osmkdir("abc/def")) ...</syntaxhighlight>
|-
|-
|if||var.osrmdir(evenifnotempty = false)||Removes a os dir and returns true if successful.<br>
|if||dirpath.<em>osrmdir</em>(evenifnotempty = false)||Removes a os dir and returns true if successful.<br>
Optionally even if not empty. Including subdirs.
Optionally even if not empty. Including subdirs.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,279: Line 1,391:
if (not osrmdir("abc/def")) ...</syntaxhighlight>
if (not osrmdir("abc/def")) ...</syntaxhighlight>
|-
|-
|var=||var.oscwd()||Returns the current working directory
|var=||var.<em>oscwd</em>()||Returns the current working directory
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var cwd1 = var().oscwd(); // "/home/exodus"
var cwd1 = var().oscwd(); // "/home/exodus"
Line 1,285: Line 1,397:
var cwd2 = oscwd();</syntaxhighlight>
var cwd2 = oscwd();</syntaxhighlight>
|-
|-
|if||var.oscwd(newpath)||Changes the current working dir and returns true if successful.
|if||var.<em>oscwd</em>(newpath)||Changes the current working dir and returns true if successful.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
if (not "abc/def"_var.oscwd()) ...
if (not "abc/def"_var.oscwd()) ...
Line 1,291: Line 1,403:
if (not oscwd("abc/def")) ...</syntaxhighlight>
if (not oscwd("abc/def")) ...</syntaxhighlight>
|}
|}


===== OS Shell/Environment =====
===== OS Shell/Environment =====
Line 1,297: Line 1,410:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|if||var.osshell()||Execute a shell command<br>
|if||command.<em>osshell</em>()||Execute a shell command<br>
Returns true if the process terminates with error status 0 and false otherwise.
Returns true if the process terminates with error status 0 and false otherwise.
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
Line 1,305: Line 1,418:
if (not osshell(cmd)) ...</syntaxhighlight>
if (not osshell(cmd)) ...</syntaxhighlight>
|-
|-
|if||var.osshellread(oscmd)||Same as osshell but captures stdout
|if||instr.<em>osshellread</em>(oscmd)||Same as osshell but captures stdout
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var intext;
var intext;
Line 1,313: Line 1,426:
intext = osshellread("ls -l xyz");</syntaxhighlight>
intext = osshellread("ls -l xyz");</syntaxhighlight>
|-
|-
|if||var.osshellwrite(oscmd)||Same as osshell but provides stdin to the process
|if||outstr.<em>osshellwrite</em>(oscmd)||Same as osshell but provides stdin to the process
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var outtext = ...
var outtext = ...
Line 1,320: Line 1,433:
if (not osshellwrite(outtext, "grep xyz")) ...</syntaxhighlight>
if (not osshellwrite(outtext, "grep xyz")) ...</syntaxhighlight>
|-
|-
|var=||var.ostempdirpath()||Get the path of the tmp dir
|var=||var.<em>ostempdirpath</em>()||Get the path of the tmp dir
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var v1 = var().ostempdirpath(); // "/tmp/"
var v1 = var().ostempdirpath(); // "/tmp/"
// or just
// or just
var v1 = ostempdirpath();</syntaxhighlight>
var v1 = ostempdirpath();</syntaxhighlight>()
|-
|-
|var=||var.ostempfilename()||Create and get a temporary file
|var=||var.<em>ostempfilename</em>()||Create and get a temporary file
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var tempfilename1 = var().ostempfilename(); // "/tmp/~exoEcLj3C"
var tempfilename1 = var().ostempfilename(); // "/tmp/~exoEcLj3C"
// or just
// or just
var tempfilename2 = ostempfilename();</syntaxhighlight>
var tempfilename2 = ostempfilename();</syntaxhighlight>()
|-
|-
|if||var.osgetenv(envcode)||Get the value of an environment variable
|if||envvalue.<em>osgetenv</em>(envcode)||Get the value of an environment variable
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var home1;
var envvalue1;
if (not home1.osgetenv("HOME")) ... // "/home/exodus"
if (not envvalue1.osgetenv("HOME")) ... // "/home/exodus"
// or just
// or just
var home2 = osgetenv("HOME");</syntaxhighlight>
var envvalue2 = osgetenv("HOME");</syntaxhighlight>
|-
|-
|cmd||var.ossetenv(envcode)||Set the value of an environment variable code
|cmd||envvalue.<em>ossetenv</em>(envcode)||Set the value of an environment variable code
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
envvalue.ossetenv(envcode);
envvalue.ossetenv(envcode);
Line 1,345: Line 1,458:
ossetenv(envcode, envvalue);</syntaxhighlight>
ossetenv(envcode, envvalue);</syntaxhighlight>
|-
|-
|var=||var.ospid()||Get the os process id
|var=||var.<em>ospid</em>()||Get the os process id
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
let pid = var().ospid(); // 663237
let pid = var().ospid(); // 663237
Line 1,351: Line 1,464:
let pid = ospid();</syntaxhighlight>
let pid = ospid();</syntaxhighlight>
|-
|-
|var=||var.ostid()||Get the os thread process id
|var=||var.<em>ostid</em>()||Get the os thread process id
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
let tid = var().ostid(); // 663237
let tid = var().ostid(); // 663237
// or just
// or just
let tid = ostid();</syntaxhighlight>
let tid = ostid();</syntaxhighlight>
|-
|var=||var.<em>version</em>()||Get the libexodus build date and time
<syntaxhighlight lang="c++">
var().version(); // "29 JAN 2025 14:56:52"</syntaxhighlight>
|}
|}


===== Output =====
===== Output =====
Line 1,363: Line 1,481:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|expr||var.output()||stdout no new line, buffered
|expr||var.<em>output</em>()||stdout no new line, buffered
|-
|-
|expr||var.outputl()||stdout starts a new line, flushed
|expr||var.<em>outputl</em>()||stdout starts a new line, flushed
|-
|-
|expr||var.outputt()||stdout adds a tab, buffered
|expr||var.<em>outputt</em>()||stdout adds a tab, buffered
|-
|-
|expr||var.logput()||stdlog no new line, buffered
|expr||var.<em>logput</em>()||stdlog no new line, buffered
|-
|-
|expr||var.logputl()||stdlog starts a new line, flushed
|expr||var.<em>logputl</em>()||stdlog starts a new line, flushed
|-
|-
|expr||var.errput()||stderr no new line, flushed
|expr||var.<em>errput</em>()||stderr no new line, flushed
|-
|-
|expr||var.errputl()||stderr starts a new line, flushed
|expr||var.<em>errputl</em>()||stderr starts a new line, flushed
|-
|-
|expr||var.output(prefix)||stdout with a prefix, no new line, buffered
|expr||var.<em>output</em>(prefix)||stdout with a prefix, no new line, buffered
|-
|-
|expr||var.outputl(prefix)||stdout with a prefix, starts a new line, flushed
|expr||var.<em>outputl</em>(prefix)||stdout with a prefix, starts a new line, flushed
|-
|-
|expr||var.outputt(prefix)||stdout with a prefix, adds a tab, buffered
|expr||var.<em>outputt</em>(prefix)||stdout with a prefix, adds a tab, buffered
|-
|-
|expr||var.logput(prefix)||stdlog with a prefix, no new line, buffered
|expr||var.<em>logput</em>(prefix)||stdlog with a prefix, no new line, buffered
|-
|-
|expr||var.logputl(prefix)||stdlog with a prefix, starts a new line, flushed
|expr||var.<em>logputl</em>(prefix)||stdlog with a prefix, starts a new line, flushed
|-
|-
|expr||var.errput(prefix)||stderr with a prefix, no new line, flushed
|expr||var.<em>errput</em>(prefix)||stderr with a prefix, no new line, flushed
|-
|-
|expr||var.errputl(prefix)||stderr with a prefix, starts a new line, flushed
|expr||var.<em>errputl</em>(prefix)||stderr with a prefix, starts a new line, flushed
|-
|-
|expr||var.put(std::ostream& ostream1)||Output to a given stream
|expr||var.<em>put</em>(std::ostream& ostream1)||Output to a given stream
|-
|-
|cmd||var.osflush()||Flushes any buffered output to stdout/cout
|cmd||var.<em>osflush</em>()||Flushes any buffered output to stdout/cout
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
var().osflush();
var().osflush();
// or just
// or just
osflush();</syntaxhighlight>
osflush();</syntaxhighlight>()
|}
|}


===== Standard Input =====
===== Standard Input =====
Line 1,405: Line 1,524:
!Usage!!Function!!Comment
!Usage!!Function!!Comment
|-
|-
|expr||var.input()||Wait for stdin until cr or eof
|expr||var.<em>input</em>()||Wait for stdin until cr or eof
|-
|-
|expr||var.input(prompt)||Ditto after outputting prompt to stdout
|expr||var.<em>input</em>(prompt)||Ditto after outputting prompt to stdout
|-
|-
|expr||var.inputn(nchars)||Wait for nbytes from stdin
|expr||var.<em>inputn</em>(nchars)||Wait for nbytes from stdin
|-
|-
|if||var.isterminal()||true if terminal is available
|if||var.<em>isterminal</em>()||true if terminal is available
|-
|-
|if||var.hasinput(milliseconds = 0)||true if stdin bytes available within milliseconds
|if||var.<em>hasinput</em>(milliseconds = 0)||true if stdin bytes available within milliseconds
|-
|-
|if||var.eof()||true if stdin is at end of file
|if||var.<em>eof</em>()||true if stdin is at end of file
|-
|-
|if||var.echo(on_off)||Reflect all stdin to stdout if terminal available
|if||var.<em>echo</em>(on_off)||Reflect all stdin to stdout if terminal available
|-
|-
|cmd||var.breakon()||Allow interrupt Ctrl+C
|cmd||var.<em>breakon</em>()||Allow interrupt Ctrl+C
|-
|-
|cmd||var.breakoff()||Prevent interrupt Ctr+C
|cmd||var.<em>breakoff</em>()||Prevent interrupt Ctr+C
|}
|}

Revision as of 20:18, 29 January 2025

ICONV/OCONV PATTERNS

Decimal (MD/MC)

input conversion (string) output
1234 MD2 12.34
1234 MD20 1234.00
1234 MD20, 1,234.00
1234.5678 MD2 12.35
1234.5678 MD20 1234.57
1234.5678 MD20, 1,234.57
1234 MC2 12,34
1234 MC20 1234,00
1234 MC20, 1.234,00
1234 MD20- 1234.00

Date (D)

input conversion (string) output
12345 D 18 OCT 2001
12345 D/ 10/18/2001
12345 D- 10-18-2001
12345 D2 18 OCT 01
12345 D/E 18/10/2001
12345 DS 2001 OCT 18
12345 DS/ 2001/10/18
12345 DM 10
12345 DMA OCTOBER
12345 DY 2001
12345 DY2 01
12345 DD 18
12345 DW 4
12345 DWA THURSDAY
12345 DQ 4
12345 DJ 291
12345 DL 31

Time (MT)

input conversion (string) output
234800 MT 17:13
234800 MTH 05:13PM
234800 MTS 17:13:20
234800 MTHS 05:13:20PM
0 MT 00:00
0 MTH 12:00AM
0 MTS 00:00:00
0 MTHS 12:00:00AM

Hex (HEX/MX)

input conversion (string) output
ab HEX (same as HEX8 or HEX4 depending on platform)
ab HEX8 0000006100000062
ab HEX4 00610062
ab HEX2 6162
15 MX F
254 MX FE
255 MX FF
256 MX 100
27354234 MX 1A1647A

Text (L/R/T)

input conversion (string)output
abcd L#3 abc
ab L#3 ab␣
abcd R#3 bcd
ab R#3 ␣ab
ab T#3 ab␣
abcd T#3 abc™d␣␣
42 L(0)#5 42000
42 R(0)#5 00042
42 T(0)#5 42000

Dictionaries

Exodus dictionaries enable classic multivalue database data definition. Dictionaries are just normal Exodus multivalue files that contain one record for each data column definition. You can use Exodus's edir program to manually edit dictionaries.

Dictionary file names must start with the word "dict_". For example, if you have a "books" file, then you will probably have a "dict_books" file.

You can list the contents of a dictionary by typing "list dict_filename".

Exodus Dictionary Format

0 DICTID Field/Column Code
1 DICTTYPE "F" or "S" : "F" means use Field No (i.e. raw data) and "S" means use Source Code (i.e. a function).
2 FIELDNO Field number (0=key, 1=field 1 etc for "Fields"
3 TITLE Title on reports
4 SM S or M or Mnn : "Single Value" or "Multivalue" or "Multivalue Group nn"
5 KEYPARTNO Multipart keys are separated by * characters.
6
7 CONVERSION Conversion (MD/MT/D etc.)
8 SOURCE Source Code of a subroutine to calculate the field. Multivalues are lines and the result must be placed in a variable "ANS".
9 JUST "L" or "R" or "T" requesting left, right or text justification
10 WIDTH Column Width on fixed width reports

Sort/Select Command

Exodus provides the classic multivalue sort/select command within any Exodus program followed by readnext().

Classic multivalue select/readnext functions only provide the keys of the selected records. Exodus provides the classic select/readnext and also selectrecords/readnextrecord which provides complete records instead of just keys.

The format of the select/sselect command is as follows:

 SELECT|SSELECT

 {max_number_of_records}

 {using filename}

 filename

 {datakeyvalue} ...

 {BY|BY-DSND fieldname} ...
 
 {

  WITH

  {NO|ALL|ANY}

  dict_field_id

  {
   CONTAINING|STARTING|ENDING|LIKE|EQ|NE|NOT|GT|LT|GE|LE=|<>|>|<|>=|<= value(s)
   |
   BETWEEN value AND value
  }

  {AND|OR}

 } ...

Functions and Commands

String Commands

Most string functions like trim() that return a new modified string have a corresponding modify in place command like function like trimmer() that is is usually much faster. So we have convert and converter, replace and replacer, insert and inserter and so on.

Therefore by preference use

trimmer(v1);
// or
v1.trimmer()

instead of

v1 = trim(v1);
// or
v1 = v1.trim();

Function Types

TYPE FUNCTION TYPE
var= traditional functions that return values and can be used in expressions and be on the right hand side of assignments
if traditional conditional statements that started with "if" or ended with "then/else" (or could have)
cmd traditional commands with no outputs
exp traditional commands that now have outputs and can be used in expressions

Parameters/Argument Types

in Parameters that provide data to the function. Can be variables or raw data like 1 or "X"
unspecified Same as "in". Omission of the most common type de-clutters the documentation. NB When defining your own subroutines and functions "in" cannot be omitted from the source code.
io Parameters that may provide and/or return data. Must be variables. Cannot be raw data like 1 or "X"
out Parameters that return data. Must be variables. Cannot be raw data like 1 or "X"

Optional Parameters

Key Default
="" ""
=" " " "
="." "."
=1 1
=0 0
=true true
=false false

Complete List of Functions

Generated by cli/gendoc from var.h at 29JAN2025 8:13PM

Math/Boolean
Usage Function Comment
var= num.abs() Absolute value
var(-12.34).abs(); // 12.34
var= num.pwr(exponent) Power
var(2).pwr(8); // 256
var= num.rnd() Pseudo random number generator
var(100).rnd(); // 0 to 99 pseudo random
cmd num.initrnd() Initialise the seed for rnd()
var(123).initrnd(); // Set seed to 123
var= num.exp() Power of e
var(1).exp(); // 2.718281828459045
var= num.sqrt() Square root
var(100).sqrt(); // 10
var= num.sin() Sine of degrees
var(30).sin(); // 0.5
var= num.cos() Cosine of degrees
var(60).cos(); // 0.5
var= num.tan() Tangent of degrees
var(45).tan(); // 1
var= num.atan() Arctangent of degrees
var(1).atan(); // 45
var= num.loge() Natural logarithm
var(2.718281828459045).loge(); // 1
var= num.integer() Truncate decimal numbers towards zero.
var(2.9).integer(); // 2
var(-2.9).integer(); // -2
var= num.floor() Truncate decimal numbers towards negative
var(2.9).floor(); // 2
var(-2.9).floor(); // -3
var= num.round(ndecimals = 0) Round decimal numbers to a desired number of decimal places

.5 always rounds away from zero.

var(0.455).round(2); // "0.46"
var(-0.455).round(2); // "-0.46"
var(1.455).round(2); // "1.46"
var(-1.455).round(2); // "-1.46"
var= num.mod(divisor)


Locale
Usage Function Comment
expr var.getxlocale() Gets the current thread's default locale codepage code
var().getxlocale(); // e.g. "en_US.utf8"
getxlocale(); // ditto
if str.setxlocale() Sets the current thread's default locale codepage code
if (not "de_DE.utf8"_var.setxlocale()) ... // true if successful
if (setxlocale("de_DE.utf8")) ... // ditto


String Creation
Usage Function Comment
var= var.chr(num) Create a string of a single char (byte) given an integer 0-255.

0-127 -> ASCII, 128-255 -> invalid UTF-8 so cannot be written to database or used various exodus string operations

var().chr(0x61); // "a"
chr(0x61); // ditto
var= var.textchr(num) Create a string of a single unicode code point in utf8 encoding.

To get utf codepoints > 2^63 you must provide negative ints
Not providing implicit constructor from var to unsigned int due to getting ambigious conversions
since int and unsigned int are parallel priority in c++ implicit conversions

var().textchr(171416); // "𩶘" or "\xF0A9B698"
textchr(171416); // ditto
var= var.str(num) Create a string by repeating a given character or string
"ab"_var.str(3); // "ababab"
str("ab"_var, 3); // ditto
var= num.space() Create string of space characters.
var(3).space(); // "␣␣␣"
space(3); // ditto
var= num.numberinwords(languagename_or_locale_id = "") Create a string describing a given number in words
var(123.45).numberinwords("de_DE");
//"ein­hundert­drei­und­zwanzig Komma vier fünf"


String Scanning
Usage Function Comment
var= str.seq() Returns the character number of the first char.
"abc"_var.seq(); // 0x61 97
seq("abc"_var); // 0x61 97
var= str.textseq() Returns the Unicode character number of the first unicode code point.
"Γ"_var.textseq(); // 915 U+0393: Greek Capital Letter Gamma (Unicode Character)
textseq("Γ"); // ditto
var= str.len() Returns the length of a string in number of chars
"abc"_var.len(); // 3
len("abc"_var); // ditto
var= str.textwidth() Returns the number of output columns.

Allows multi column unicode and reduces combining characters etc. like e followed by grave accent
Possibly does not properly calculate combining sequences of graphemes e.g. face followed by colour

"🤡x🤡"_var.textwidth(); // 5
textwidth("🤡x🤡"_var); // ditto
var= str.textlen() Returns the number of Unicode code points
"Γιάννης"_var.textlen(); // 7
textlen("Γιάννης"_var); // ditto
var= str.fcount(sepstr) Returns the number of fields separated by sepstr present.

It is the same as var.count(sepstr) + 1 except that and empty string returns 0

"a1**c3"_var.fcount("*"); // 3
fcount("a1**c3"_var, "*"); // ditto
var= str.count(sepstr) Return the number of sepstr found
"a1*b2*c3"_var.count("*"); // 3
count("a1*b2*c3"_var, "*"); // ditto
if str.starts(prefix) Returns true if starts with prefix
"abc"_var.starts("ab"); // true
if str.ends(suffix) Returns true if ends with suffix
"abc"_var.ends("bc"); // true
if str.contains(substr) Returns true if starts, ends or contains substr
"abcd"_var.contains("bc"); // true
var= str.index(substr, startchar1 = 1) Returns char no if found or 0 if not. startchar1 is byte no to start at.
"abcd"_var.index("bc"); // 2
var= str.indexn(substr, occurrence) ditto. Occurrence 1 = find first occurrence
"abcabc"_var.index("bc", 2); // 5
var= str.indexr(substr, startchar1 = -1) ditto. Reverse search.

startchar1 defaults to -1 meaning start searching from the last byte

"abcabc"_var.indexr("bc"); // 5
var= str.match(regex, regex_options = "") Returns all results of regex matching

Multiple matches are in fields. Groups are in values

"abc1abc2"_var.match("bc(\\d)"); // "bc1]1^bc2]2"

regex_options:

l - Literal (any regex chars are treated as normal chars)

i - Case insensitive

p - ECMAScript/Perl (the default)
b - Basic POSIX (same as sed)
e - Extended POSIX
a - awk
g - grep
eg - egrep or grep -E

char ranges like a-z are locale sensitive if ECMAScript

m - Multiline. Default in boost (and therefore exodus)
s - Single line. Default in std::regex

f - First only. Only for replace() (not match() or search())

w - Wildcard glob style (e.g. *.cfg) not regex style. Only for match() and search(). Not replace().

var= str.match(regex) Ditto
var= str.search(regex, io startchar1, regex_options = "") Search for first match of a regular expression starting at startchar1

Updates startchar1 ready to search for the next match
regex_options as for match()

var startchar1 = 1;
"abc1abc2"_var.search("bc(\\d)", startchar1); // returns "bc1]1"
// startchar1 becomes 5 ready for the next search
var= str.search(regex) Ditto starting from first char
var= str.search(regex, io startchar1) Ditto given a rex
var= str.search(regex) Ditto starting from first char.


String Conversion - Chainable. Non-Mutating
Usage Function Comment
var= str.ucase() Upper case
"Γιάννης"_var.ucase(); // "ΓΙΆΝΝΗΣ"
var= str.lcase() Lower case
"ΓΙΆΝΝΗΣ"_var.lcase(); // "γιάννης"
var= str.tcase() Title case (first letters)
"γιάννης"_var.tcase(); // "Γιάννης"
var= str.fcase() Fold case (lower case and remove accents for indexing)
var= str.normalize() Normalise Unicode to NFC to eliminate different code combinations of the same character
var= str.invert() Simple reversible disguising of text
"abc"_var.invert(); // "\x{C29EC29DC29C}"
var= str.lower() Convert all FM to VM, VM to SM etc.
"a1^b2^c3"_var.lower(); // "a1]b2]c3"
var= str.raise() Convert all VM to FM, SM to VM etc.
"a1]b2]c3"_var.raise(); // "a1^b2^c3"
var= str.crop() Remove any redundant FM, VM etc. characters (Trailing FM; VM before FM etc.)
"a1^b2]]^c3^^"_var.crop(); // "a1^b2^c3"
var= str.quote() Wrap in double quotes
"abc"_var.quote(); // ""abc""
var= str.squote() Wrap in single quotes
"abc"_var.squote(); // "'abc'"
var= str.unquote() Remove one pair of double or single quotes
"'abc'"_var.unquote(); // "abc"
var= str.trim(trimchars = " ") Remove leading, trailing and excessive inner bytes
"␣␣a1␣␣b2␣c3␣␣"_var.trim(); // "a1␣b2␣c3"
var= str.trimfirst(trimchars = " ") Ditto leading
"␣␣a1␣␣b2␣c3␣␣"_var.trimfirst(); // "a1␣␣b2␣c3␣␣"
var= str.trimlast(trimchars = " ") Ditto trailing
"␣␣a1␣␣b2␣c3␣␣"_var.trimlast(); // "␣␣a1␣␣b2␣c3"
var= str.trimboth(trimchars = " ") Ditto leading, trailing but not inner
"␣␣a1␣␣b2␣c3␣␣"_var.trimboth(); // "a1␣␣b2␣c3"
var= str.first() Extract first char or "" if empty
"abc"_var.first(); // "a"
var= str.last() Extract last char or "" if empty
"abc"_var.last(); // "c"
var= str.first(std::size_t length) Extract up to length leading chars
"abc"_var.first(2); // "ab"
var= str.last(std::size_t length) Extract up to length trailing chars
"abc"_var.last(2); // "bc"
var= str.cut(length) Remove length leading chars
"abcd"_var.cut(2); // "cd"
var= str.paste(pos1, length, insertstr) Insert text at char position overwriting length chars
"abcd"_var.paste(2, 2, "XYZ"); // "aXYZd"
var= str.paste(pos1, insertstr) Insert text at char position without overwriting any following characters
"abcd"_var.paste(2, "XYZ"); // "aXYbcd"
var= str.prefix(insertstr) Insert text at the beginning
"abc"_var.prefix("XY"); // "XYabc"
var= str.pop() Remove one trailing char
"abc"_var.pop(); // "ab"
var= str.fieldstore(separator, fieldno, nfields, replacement) fieldstore() replaces nfields of subfield(s) in a string.
"aa*bb*cc*dd"_var.fieldstore("*", 2, 3, "X*Y"); // "aa*X*Y*"

If nfields is 0 then insert fields before fieldno

"a1*b2*c3*d4"_var.fieldstore("*", 2, 0, "X*Y"); // "a1*X*Y*b2*c3*d4"

If nfields is negative then delete nfields before inserting.

"a1*b2*c3*d4"_var.fieldstore("*", 2, -3, "X*Y"); // "a1*X*Y"
var= str.substr(pos1, length) substr version 1. Extract length chars starting at pos1
"abcd"_var.substr(2, 2); // "bc"

If length is negative then work backwards and return chars reversed

"abcd"_var.substr(3, -2); // "cb"
var= str.substr(pos1) substr version 2. Extract all chars from pos1 up to the end
"abcd"_var.substr(2); // "bcd"
var= str.b(pos1, length) Same as substr version 1.
var= str.b(pos1) Same as substr version 2.
var= str.convert(fromchars, tochars) Convert chars to other chars one for one or delete where tochars is shorter.
"abcde"_var.convert("aZd", "XY"); // "Xbce" (a is replaced and d is removed)
var= str.textconvert(fromchars, tochars) Ditto for Unicode code points.
"a🤡b😀c🌍d"_var.textconvert("🤡😀", "👋"); // "a👋bc🌍d"
var= str.replace(fromstr, tostr) Replace all occurrences of a substr with another. Case sensitive
"Abc Abc"_var.replace("bc", "X"); // "AX AX"
var= str.replace(regex, tostr) Replace substring(s) using a regular expression.

Use $0, $1, $2 in tostr to refer to groups defined in the regex.

"A a B b"_var.replace("[A-Z]"_rex, "'$0'"); // "'A' a 'B' b"
var= str.unique() Remove duplicate fields in an FM or VM etc. separated list
"a1^b2^a1^c2"_var.unique(); // "a1^b2^c2"
var= str.sort(sepchar = FM) Reorder fields in an FM or VM etc. separated list in ascending order
"20^10^2^1^1.1"_var.sort(); // "1^1.1^2^10^20"
"b1^a1^c20^c10^c2^c1^b2"_var.sort(); // "a1^b1^b2^c1^c10^c2^c20"
var= str.reverse(sepchar = FM) Reorder fields in an FM or VM etc. separated list in descending order
"20^10^2^1^1.1"_var.reverse(); // "1.1^1^2^10^20"
var= str.shuffle(sepchar = FM) Randomise the order of fields in an FM, VM separated list
"20^10^2^1^1.1"_var.shuffle(); // "2^1^20^1.1^10" (random order depending on initrand())
var= str.parse(char sepchar = ' ') Replace separator characters with FM char except inside double or single quotes ignoring escaped quotes \\" \&squot;
"abc,\"def,\"123\" fgh\",12.34"_var.parse(','); // "abc^"def,"123" fgh"^12.34"


String Mutators Not Chainable. All Similar To Non-Mutators
Usage Function Comment
cmd str.ucaser()
cmd str.lcaser()
cmd str.tcaser()
cmd str.fcaser()
cmd str.normalizer()
cmd str.inverter()
cmd str.quoter()
cmd str.squoter()
cmd str.unquoter()
cmd str.lowerer()
cmd str.raiser()
cmd str.cropper()
cmd str.trimmer(trimchars = " ")
cmd str.trimmerfirst(trimchars = " ")
cmd str.trimmerlast(trimchars = " ")
cmd str.trimmerboth(trimchars = " ")
cmd str.firster()
cmd str.laster()
cmd str.firster(std::size_t length)
cmd str.laster(std::size_t length)
cmd str.cutter(length)
cmd str.paster(pos1, length, insertstr)
cmd str.paster(pos1, insertstr)
cmd str.prefixer(insertstr)
cmd str.popper()
cmd str.fieldstorer(sepchar, fieldno, nfields, replacement)
cmd str.substrer(pos1, length)
cmd str.substrer(pos1)
cmd str.converter(fromchars, tochars)
cmd str.textconverter(fromchars, tochars)
cmd str.replacer(regex, tostr)
cmd str.replacer(fromstr, tostr)
cmd str.uniquer()
cmd str.sorter(sepchar = FM)
cmd str.reverser(sepchar = FM)
cmd str.shuffler(sepchar = FM)
cmd str.parser(char sepchar = ' ')


Other String Access
Usage Function Comment
var= str.hash(std::uint64_t modulus = 0) MurmurHash3 hashing.
"abc"_var.hash(); // 6715211243465481821
var= str.substr(pos1, delimiterchars, out pos2) substr version 3.

Extract a substr starting from pos1 up to any one of the given delimiter chars also returning the next pos1 after the delimiter found

var= str.b(pos1, delimiterchars, out pos2) Alias of substr version 3.
var= str.substr2(io pos1, io delimiterno) substr version 4.

Returns a substr from a given pos1 up to the next RM/FM/VM/SM/TM/STM delimiter char. Also returns the next index/offset and the delimiter no. found 1-6 or 0 if not found.

var= str.b2(io pos1, io delimiterno) Alias of substr version 4
var= str.field(strx, fieldnx = 1, nfieldsx = 1) Extract one or more consecutive fields given a delimiter char or substr.
"aa*bb*cc"_var.field("*", 2);m // "bb"
var= str.field2(separator, fieldno, nfields = 1) field2 is a version that treats fieldn -1 as the last field, -2 the penultimate field etc. -

TODO Should probably make field() do this (since -1 is basically an erroneous call) and remove field2
Same as var.field() but negative fieldnos work backwards from the last field.

"aa*bb*cc"_var.field("*", -1); // "cc"


I/O Conversion
Usage Function Comment
var= var.oconv(convstr) Converts internal data to output external display format according to a given conversion code or pattern

If the internal data is invalid and cannot be converted then most conversions return the ORIGINAL data unconverted
Throws a runtime error VarNotImplemented if convstr is invalid
See #ICONV/OCONV PATTERNS

var(30123).oconv("D/E"); // "21/06/2050"
var= var.iconv(convstr) Converts external data to internal format according to a given conversion code or pattern

If the external data is invalid and cannot be converted then most conversions return the EMPTY STRING ""
Throws a runtime error VarNotImplemented if convstr is invalid
See #ICONV/OCONV PATTERNS

"21 JUN 2050"_var.iconv("D/E"); // 30123
var= var.format(fmt_str, Args&&... args) Classic format function in printf style

vars can be formatted either with C++ format codes e.g. {:_>8.2f}
or with exodus oconv codes e.g. {::MD20P|R(_)#8} as in the below example.

var(12.345).format("'{:_>8.2f}' should match '{::MD20P|R(_)#8}'", var(12.345));
// -> "'___12.35' should match '___12.35'"

// or
format("'{:_>8.2f}' should match '{::MD20P|R(_)#8}'", var(12.345), var(12.345));
var= str.from_codepage(codepage) Converts from codepage encoded text to UTF-8 encoded text

e.g. Codepage "CP1124" (Ukrainian).
Use Linux command "iconv -l" for complete list of code pages and encodings.

"\xa4"_var.from_codepage("CP1124"); // "Є"
// U+0404 Cyrillic Capital Letter Ukrainian Ie Unicode Character
var= str.to_codepage(codepage) Converts to codepage encoded text from UTF-8 encoded text
"Є"_var.to_codepage("CP1124").oconv("HEX"); // "A4"


Basic Dynamic Array Functions
Usage Function Comment
var= str.f(fieldno, valueno = 0, subvalueno = 0) f() is a highly abbreviated alias for the PICK OS field/value/subvalue extract() function.

"f()" can be thought of as "field" although the function can extract values and subvalues as well.
The convenient PICK OS angle bracket syntax for field extraction (e.g. xxx<20>) is not available in C++.
The abbreviated exodus field extraction function (e.g. xxx.f(20)) is provided instead since field access is extremely heavily used in source code.

"f1^f2v1]f2v2]f2v3^f2"_var.f(2, 2); // "f2v2"
var= str.extract(fieldno, valueno = 0, subvalueno = 0) Extract a specific field, value or subvalue from a dynamic array.

The alias "f" is usually used instead

var= str.pickreplace(fieldno, valueno, subvalueno, replacement) Same as var.r() function but returns a new string instead of updating a variable in place.
Rarely used.
var= str.pickreplace(fieldno, valueno, replacement) Ditto for a specific multivalue
var= str.pickreplace(fieldno, replacement) Ditto for a specific field
var= str.insert(fieldno, valueno, subvalueno, insertion) Same as var.inserter() function but returns a new string instead of updating a variable in place.
var= str.insert(fieldno, valueno, insertion) Ditto for a specific multivalue
var= str.insert(fieldno, insertion) Ditto for a specific field
var= str.remove(fieldno, valueno = 0, subvalueno = 0) Same as var.remover() function but returns a new string instead of updating a variable in place.

"remove" was called "delete" in Pick OS.


Dynamic Array Filters
Usage Function Comment
var= str.sum() Sum up multiple values into one higher level
"1]2]3^4]5]6"_var.sum(); // "6^15"
var= str.sumall() Sum up all levels into a single figure
"1]2]3^4]5]6"_var.sumall(); // "21"
var= str.sum(sepchar) Ditto allowing commas etc.
"10,20,33"_var.sum(","); // "60"
var= str.mv(opcode, var2) Binary ops (+, -, *, /) in parallel on multiple values
"10]20]30"_var.mv("+","2]3]4"); // "12]23]34"


Dynamic Array Mutators (Standalone And Cannot Be Chained)
Usage Function Comment
cmd str.r(fieldno, replacement) Replaces a specific field in a dynamic array
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.r(2, 2, "X"); // v1 -> "f1^X^f3"
cmd str.r(fieldno, valueno, replacement) Ditto for specific value in a specific field.
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.r(2, 2, "X"); // v1 -> "f1^v1]X^f3"
cmd str.r(fieldno, valueno, subvalueno, replacement) Ditto for a specific subvalue in a specific value of a specific field
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.r(2, 2, 2, "X"); // v1 -> "f1^v1]v2}X}s3^f3"
cmd str.inserter(fieldno, insertion) Insert a specific field in a dynamic array, moving all other fields up.
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.inserter(2, "X"); // v1 -> "f1^X^v1]v2}s2}s3^f3"
cmd str.inserter(fieldno, valueno, insertion) Ditto for a specific value in a specific field, moving all other fields up.
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.inserter(2, 2, "X"); // v1 -> "f1^v1]X]v2}s2}s3^f3"
cmd str.inserter(fieldno, valueno, subvalueno, insertion) Ditto for a specific subvalue in a dynamic array, moving all other subvalues up.
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.inserter(2, 2, 2, "X"); // v1 -> "f1^v1]v2}X}s2}s3^f3"
cmd str.remover(fieldno, valueno = 0, subvalueno = 0) Remove a specific field (or value, or subvalue) from a dynamic array, moving all other fields (or values, or subvalues) down.
var v1 = "f1^v1]v2}s2}s3^f3"_var;
v1.remover(2, 2); // v1 -> "f1^v1^f3"


Dynamic Array Search
Usage Function Comment
if str.locate(target) locate() with only the target substr argument provided searches unordered values separated by VM chars.

Returns true if found and false if not.

if ("UK]US]UA"_var.locate("US")) ... // true
if str.locate(target, out valueno) locate() with only the target substr and valueno arguments provided searches unordered values separated by VM chars.

Returns true if found and with the value number in valueno.
Returns false if not found and with the max value number + 1 in setting. Suitable for additiom of new values

var valueno; if ("UK]US]UA"_var.locate("US", valueno)) ... // returns true and valueno = 2
if str.locate(target, out setting, fieldno, valueno = 0) locate() the target in unordered fields if fieldno is 0, or values if a fieldno is specified, or subvalues if the valueno argument is provided.

Returns true if found and with the field, value or subvalue number in setting.
Returns false if not found and with the max field, value or subvalue number found + 1 in setting. Suitable for replacement of new fields, values or subvalues.

var setting; if ("f1^f2v1]f2v2]s1}s2}s3}s4^f3^f4"_var.locate("s4", setting, 2, 3)) ... // returns true and setting = 4
if str.locateby(ordercode, target, out valueno) locateby() without fieldno or valueno arguments searches ordered values separated by VM chars.

The order code can be AL, DL, AR, DR meaning Ascending Left, Descending Right, Ascending Right, Ascending Left.
Left is used to indicate alphabetic order where 10 < 2.
Right is used to indicate numeric order where 10 > 2.
Data must be in the correct order for searching to work properly.
Returns true if found.
In case the target is not exactly found then the correct value no for inserting the target is returned in setting.

var valueno; if ("aaa]bbb]ccc"_var.locateby("AL", "bb", valueno)) ... // returns false and valueno = 2 where it could be correctly inserted.
if str.locateby(ordercode, target, out setting, fieldno, valueno = 0) locateby() ordered as above but in fields if fieldno is 0, or values in a specific fieldno, or subvalues in a specific valueno.
var setting; if ("f1^f2^aaa]bbb]ccc^f4"_var.locateby("AL", "bb", setting, 3)) ... // returns false and setting = 2 where it could be correctly inserted.
if str.locateusing(usingchar, target) locate() a target substr in the whole unordered string using a given delimiter char returning true if found.
if (
"AB,EF,CD"_var.locateusing(",", "EF")) ... // true
if str.locateusing(usingchar, target, out setting, fieldno = 0, valueno = 0, subvalueno = 0) locate() the target in a specific field, value or subvalue using a specified delimiter and unordered data

Returns true If found and returns in setting the number of the delimited field found.
Returns false if not found and returns in setting the maximum number of delimited fields + 1 if not found.
This is similar to the main locate command but the delimiter char can be specified e.g. a comma or TM etc.

var setting; if ("f1^f2^f3c1,f3c2,f3c3^f4"_var.locateusing(",", "f3c2", setting, 3)) ... // returns true and setting = 2
if str.locatebyusing(ordercode, usingchar, target, out setting, fieldno = 0, valueno = 0, subvalueno = 0) locatebyusing() supports all the above features in a single function.

Returns true if found.


Database Access
Usage Function Comment
if conn.connect(conninfo = "") For all db operations, var() can be db connection created with dbconnect() or any var will perform a default connection.

The db connection string (conninfo) parameters are merged from the following places in descending priority.
1. Provided in connect()'s conninfo argument. See 4. for the complete list of parameters.
2. Any environment variables EXO_HOST EXO_PORT EXO_USER EXO_DATA EXO_PASS EXO_TIME
3. Any parameters found in a configuration file at ~/.config/exodus/exodus.cfg
4. The defaults "host=127.0.0.1 port=5432 dbname=exodus user=exodus password=somesillysecret connect_timeout=10"

var db="mydb";
if (not db.connect()) abort(db.lasterror());
db.version().outputl();
db.disconnect();
cmd conn.disconnect() Removes a db connection and frees resources.
cmd conn.disconnectall() Removes all db connection and frees resources.
if conn.attach(filenames) Attach (connect) specific files by name to specific connections.

For the remainder of the session, opening the file by name will automatically use the specified connection.

cmd conn.detach(filenames) Detach (disconnect) files that have been attached using attach().
if conn.begintrans() Begin a db transaction.
if conn.rollbacktrans() Rollback a db transaction.
if conn.committrans() Commit a db transaction.
if conn.statustrans() Check if a db transaction is in progress.
if conn.sqlexec(sqlcmd) Execute an sql command.
if conn.sqlexec(sqlcmd, io response) Execute an SQL command and capture the response.
var= conn.lasterror() Get the last os or db error message.
var= conn.loglasterror(source = "") Log the last os or db error message.


Database Management
Usage Function Comment
if conn.dbcreate(dbname) Create a named database on a particular connection.
var= conn.dblist() Return a list of available databases on a particular connection.
if conn.dbcopy(from_dbname, to_dbname) Create a named database from an existing database.
if conn.dbdelete(dbname) Delete (drop) a named database.
if conn.createfile(filename) Create a named db file.
if conn.renamefile(filename, newfilename) Rename a db file.
if conn.deletefile(filename) Delete (drop) a db file
if conn.clearfile(filename) Delete all records in a db file
var= conn.listfiles() Return a list of all files in a database
var= conn.reccount(filename = "") Returns the approx. number of records in a file
if conn.flushindex(filename = "") Calls db maintenance function (vacuum)

This doesnt flush any indexes any longer but does make sure that reccount() function is reasonably accurate.


Database File I/O
Usage Function Comment
if file.open(dbfilename, connection = "")
cmd file.close()
if file.createindex(fieldname, dictfile = "")
if file.deleteindex(fieldname)
var= file.listindex(filename = "", fieldname = "")
var= file.lock(key) Returns 1=ok, 0=failed, ""=already locked
if file.unlock(key)
if file.unlockall()
if rec.read(file, key) Reads a record from a file given its unique primary key.

Returns false if the key doesnt exist

var rec; if (not rec.read(file, key)) ...
cmd rec.write(file, key) Writes a record to a file.

It updates an existing record if the key already exists or inserts a new record.
It always succeeds so no result code is returned.
Any memory cached record is deleted.

rec.write(file, key);
if rec.updaterecord(file, key) Updates an existing record in a file.

Returns false if the key doesnt already exist
Any memory cached record is deleted.

if (not rec.updaterecord(file, key)) ...
if rec.insertrecord(file, key) Inserts a new record in a file.

Returns false if the key already exists
Any memory cached record is deleted.

if (not rec.insertrecord(file, key)) ...
if file.deleterecord(key) Deletes a record from a file given its key.

Returns false if the key doesnt exist
Any memory cached record is deleted.

if (not file.deleterecord(key)) ...
if str.readf(file, key, fieldno) Same as read() but only returns a specific field no from the record
var field; if (not field.readf(file, key, fieldno)) ...
cmd str.writef(file, key, fieldno) Same as write() but only writes a specific field no to the record
field.writef(file, key, fieldno);
if rec.readc(file, key) Cache read a record from a memory cache "file" given its key.

1. Tries to read from a memory cache and returns true if successful.
2. Reads to read from the actual file and returns false if unsuccessful.
3. Writes the record and key to the memory cache and returns true.
Cached db file data lives in exodus process memory not the database.

var rec; if (not rec.readc(file, key)) ...
cmd rec.writec(file, key) Cache write a record and key into a memory cached "file".

The actual file is NOT updated.
It either updates an existing record if the key already exists or otherwise inserts a new record.
It always succeeds so no result code is returned.

rec.writec(file, key);
if dbfile.deletec(key) Deletes a record and key from a memory cached "file".

The actual file is NOT updated.
Returns false if the key doesnt exist

if (not file.deletec(key)) ...
cmd conn.cleardbcache() Clears the memory cache of all records for the given connection

All future cache readc() function calls will be forced to obtain records from the actual database and refresh the cache.

conn.cleardbcache();
var= str.xlate(filename, fieldno, mode)


Database Sort/Select
Usage Function Comment
if file.select(sortselectclause = "")
cmd file.clearselect()
if file.hasnext()
if file.readnext(out key)
if file.readnext(out key, out valueno)
if file.readnext(out record, out key, out valueno)
if file.savelist(listname)
if file.getlist(listname)
if file.makelist(listname, keys)
if file.deletelist(listname)
if file.formlist(keys, fieldno = 0)


OS Time/Date
Usage Function Comment
var= var.date() Number of whole days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before.
var today1 = var().date(); // e.g. was 20821 from 2025-01-01 00:00:00 UTC
// or just
var today2 = date();
var= var.time() Number of whole seconds since last 00:00:00 (UTC).
var now1 = var().time(); // range 0 - 86399 since there are 24*60*60 (86400) seconds in a day.
// or just
var now2 = time();
var= var.ostime() Number of fractional seconds since last 00:00:00 (UTC).

A floating point with approx. nanosecond resolution depending on hardware.

var now1 = var().ostime(); // e.g. 23343.704387955 approx. 06:29:03 UTC
// or just
var now2 = ostime();
var= var.timestamp() Number of fractional days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before.

A floating point with approx. nanosecond resolution depending on hardware.

var now1 = var().timestamp(); // was 20821.99998842593 around 2025-01-01 23:59:59 UTC
// or just
var now2 = ostimestamp();
var= var.timestamp(ostime) Construct a timestamp from a date and time
var ts1 = var().timestamp(iconv("2025-01-01", "D"), iconv("23:59:59", "MT")); // 20821.99998842593
// or just
var ts2 = timestamp(somedate, sometime);
cmd var.ossleep(milliseconds) Sleep/pause/wait for a number of milliseconds
var().ossleep(3000); // sleep for 3 seconds
// or just
ossleep(3000);
var= var.oswait(milliseconds, directory) Sleep/pause/wait for any activity in a file system directory for a number of milliseconds
var().oswait(3000, "."); // max 3 seconds
// or just
oswait(3000, ".");


OS File Io
Usage Function Comment
if osfilevar.osopen(osfilename, locale = "") Given the name of an existing file name including path, initialises a var that can be used in random access osbread and osbwrite functions.

Optionally allows specifying a locale/codepage to which and from which all writes and reads will be converted (?) from a assumed internal UTF8 encoding.
File will be opened for writing if possible otherwise for reading.
Returns true if successful or false if not possible for any reason.
e.g. Target doesnt exist, permissions etc.

var hostsfile;
if (not hostsfile.osopen("/etc/hosts") ...
// or
if (not osopen("/etc/hosts" to hostsfile) ...
if osfilevar.osbread(osfilevar, io offset, length) Reads length bytes from an existing os file starting at a given byte offset (0 based).

The osfilevar file handle may either be initialised by osopen (optionally with a locale/codepage) or be just a normal string variable holding the path and name of the os file.
After reading, the offset is updated to point to the correct offset for a subsequent sequential read.
If reading utf8 data then the length of data actually returned may be a few bytes shorter than requested in order to be a complete number of UTF-8 code points.

var text, hostsfile = "/etc/hosts", offset = 0;
if (not text.osbread(hostsfile, offset, 1024) ...
// or
if (not osbread(text from hostsfile, offset, 1024) ...
if osfilevar.osbwrite(osfilevar, io offset) Writes data to an existing os file starting at a given byte offset (0 based).

See osbread for more info.

let text = "\n#comment", xyzfile = "../xyz.conf";
var offset = osfile(xyzfile).f(1); // size of file -> append
if (not text.osbwrite(xyzfile, offset)) abort(lasterror());
// or
if (not osbwrite(text on xyzfile, offset) ...
cmd osfilevar.osclose() Removes an osfilevar handle from the internal memory cache of os file handles freeing up both exodus process memory and operating system resources.

It is advisable to osclose any file handles after use, regardless of whether they were specifically opened using osopen or not, especially in long running programs. Exodus performs caching of internal os file handles per thread and os file. If not closed, then the operating system will probably not flush deleted files from storage until the process is terminated. This can potentially create an memory issue or file system resource issue especially if osopening/osreading/oswriting many perhaps temporary files in a long running process.

osfilevar.osclose();
// or
osclose(osfilevar);
if str.osread(osfilename, codepage = "") Read a complete os file into a var

Returns true if successful or false if not possible for any reason.
e.g. File doesnt exist, permissions etc.

var text;
if (not text.osread("/etc/hosts")) ...
// or
if (not osread(text from "/etc/hosts")) ...
if str.oswrite(osfilename, codepage = "") Create a complete os file from a var.

Any existing file is removed first.
Returns true if successful or false if not possible for any reason.
e.g. Path is not writeable, permissions etc.

let text = "xyz = 123\n", osfilename="../xyz.conf";
if (not text.oswrite(osfilename)) abort(lasterror());
// or
if (not oswrite(text on osfilename)) ...
if osfilename.osremove() Removes/deletes an os file from the OS file system given path and name.

Will not remove directories. Use osrmdir() to remove directories
Returns true if successful or false if not possible for any reason.
e.g. Target doesnt exist, path is not writeable, permissions etc.

if (not "../xyz.conf"_var.osfilevar.osremove()) abort(lasterror());
// or
if (not osremove("../xyz.conf") ...
if osfileordirname.osrename(new_dirpath_or_filepath) Renames an os file or dir in the OS file system.

Will not overwrite an existing file or dir.
Source and target must exist in the same storage device.
Returns true if successful or false if not possible for any reason.
e.g. Target already exists, path is not writeable, permissions etc.
Uses std::filesystem::rename internally.

if (not "../xyz.conf"_var.osfilevar.osrename("../abc.conf")) abort(lasterror());
// or
if (not osrename("../xyz.conf", "../abc.conf") ...
if osfileordirname.oscopy(to_osfilename) Copies a file or directory recursively within the file system.

Uses std::filesystem::copy internally with recursive and overwrite options

if (not "../xyz.conf"_var.osfilevar.oscopy("../abc.conf")) abort(lasterror());
// or
if (not oscopy("../xyz.conf", "../abc.conf") ...
if osfileordirname.osmove(to_osfilename) "Moves" a file or dir within the os file system.

Will not overwrite an existing file or dir.
Returns true if successful or false if not possible for any reason.
e.g. Source doesnt exist or cannot be accessed, target already exists, source or target is not writeable, permissions etc.
Attempts osrename first then oscopy followed by osremove original.

if (not "../xyz.conf"_var.osfilevar.osmove("../abc.conf")) abort(lasterror());
// or
if (not osmove("../xyz.conf", "../abc.conf") ...


OS Directories
Usage Function Comment
var= dirpath.oslist(globpattern = "", mode = 0) Returns a FM delimited string containing all matching dir entries given a dir path

A glob pattern (e.g. *.conf) can be appended to the path or passed as argument.

var entries1 = "/etc/"_var.oslist("*.cfg"); // "adduser.conf^ca-certificates.conf^ ..."
// or just
var entries2 = oslist("/etc/" "*.conf";
var= dirpath.oslistf(globpattern = "") Same as oslist for files only
var= dirpath.oslistd(globpattern = "") Same as oslist for files only
var= osfileordirpath.osinfo(mode = 0) Return dir info for any dir entry or "" if it doesnt exist

A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time
mode 0 default
mode 1 returns "" if not a file
mode 2 returns "" if not a dir
See also osfile() and osdir()

var info1 = "/etc/hosts"_var.osinfo(); // "221^20597^78309"
// or just
var info2 = osinfo("/etc/hosts");
var= osfilename.osfile() Return dir info for a file

A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time
Alias for osinfo(1)

var fileinfo1 = "/etc/hosts"_var.osfile(); // "221^20597^78309"
// or just
var fileinfo2 = osfile("/etc/hosts");
var= dirpath.osdir() Return dir info for a dir.

A short string containing FM ^ modified_time ^ FM ^ modified_time
Alias for osinfo(2)

var dirinfo1 = "/etc/"_var.osdir(); // "^20848^44464"
// or just
var dirinfo2 = osfile("/etc/");
if dirpath.osmkdir() Makes a new directory and returns true if successful.

Including parent dirs if necessary.

if (not "abc/def"_var.osmkdir()) ...
// or just
if (not osmkdir("abc/def")) ...
if dirpath.osrmdir(evenifnotempty = false) Removes a os dir and returns true if successful.

Optionally even if not empty. Including subdirs.

if (not "abc/def"_var.osrmdir()) ...
// or just
if (not osrmdir("abc/def")) ...
var= var.oscwd() Returns the current working directory
var cwd1 = var().oscwd(); // "/home/exodus"
// or just
var cwd2 = oscwd();
if var.oscwd(newpath) Changes the current working dir and returns true if successful.
if (not "abc/def"_var.oscwd()) ...
// or just
if (not oscwd("abc/def")) ...


OS Shell/Environment
Usage Function Comment
if command.osshell() Execute a shell command

Returns true if the process terminates with error status 0 and false otherwise.

let cmd = "ls -l xyz";
if (not cmd.osshell()) ...
// or
if (not osshell(cmd)) ...
if instr.osshellread(oscmd) Same as osshell but captures stdout
var intext;
if (not intext.osshellread("ls -l xyz")) ...

// or just capturing stdout but ignoring exit status
intext = osshellread("ls -l xyz");
if outstr.osshellwrite(oscmd) Same as osshell but provides stdin to the process
var outtext = ...
if (not outtext.osshellwrite("grep xyz")) ...
// or
if (not osshellwrite(outtext, "grep xyz")) ...
var= var.ostempdirpath() Get the path of the tmp dir
var v1 = var().ostempdirpath(); // "/tmp/"
// or just
var v1 = ostempdirpath();
()
var= var.ostempfilename() Create and get a temporary file
var tempfilename1 = var().ostempfilename(); // "/tmp/~exoEcLj3C"
// or just
var tempfilename2 = ostempfilename();
()
if envvalue.osgetenv(envcode) Get the value of an environment variable
var envvalue1;
if (not envvalue1.osgetenv("HOME")) ... // "/home/exodus"
// or just
var envvalue2 = osgetenv("HOME");
cmd envvalue.ossetenv(envcode) Set the value of an environment variable code
envvalue.ossetenv(envcode);
// or just
ossetenv(envcode, envvalue);
var= var.ospid() Get the os process id
let pid = var().ospid(); // 663237
// or just
let pid = ospid();
var= var.ostid() Get the os thread process id
let tid = var().ostid(); // 663237
// or just
let tid = ostid();
var= var.version() Get the libexodus build date and time
var().version(); // "29 JAN 2025 14:56:52"


Output
Usage Function Comment
expr var.output() stdout no new line, buffered
expr var.outputl() stdout starts a new line, flushed
expr var.outputt() stdout adds a tab, buffered
expr var.logput() stdlog no new line, buffered
expr var.logputl() stdlog starts a new line, flushed
expr var.errput() stderr no new line, flushed
expr var.errputl() stderr starts a new line, flushed
expr var.output(prefix) stdout with a prefix, no new line, buffered
expr var.outputl(prefix) stdout with a prefix, starts a new line, flushed
expr var.outputt(prefix) stdout with a prefix, adds a tab, buffered
expr var.logput(prefix) stdlog with a prefix, no new line, buffered
expr var.logputl(prefix) stdlog with a prefix, starts a new line, flushed
expr var.errput(prefix) stderr with a prefix, no new line, flushed
expr var.errputl(prefix) stderr with a prefix, starts a new line, flushed
expr var.put(std::ostream& ostream1) Output to a given stream
cmd var.osflush() Flushes any buffered output to stdout/cout
var().osflush();
// or just
osflush();
()


Standard Input
Usage Function Comment
expr var.input() Wait for stdin until cr or eof
expr var.input(prompt) Ditto after outputting prompt to stdout
expr var.inputn(nchars) Wait for nbytes from stdin
if var.isterminal() true if terminal is available
if var.hasinput(milliseconds = 0) true if stdin bytes available within milliseconds
if var.eof() true if stdin is at end of file
if var.echo(on_off) Reflect all stdin to stdout if terminal available
cmd var.breakon() Allow interrupt Ctrl+C
cmd var.breakoff() Prevent interrupt Ctr+C