Functions: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<html> | |||
<!DOCTYPE html> | <!DOCTYPE html> | ||
<html> | <html> | ||
<head> | <head> | ||
<!-- highlight.js for c++ syntax highlighting --> | |||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css"> | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> | <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/cpp.min.js"></script> | <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/cpp.min.js"></script> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/monokai.min.css"> | |||
<!-- done below <script>hljs.highlightAll();</script> --> | |||
<style> | <style> | ||
/* | |||
.hljs- | /* custom-theme.css */ | ||
. | .hljs { | ||
display: block; | |||
overflow-x: auto; | |||
padding: 0.5em; | |||
background: #ffffff; /* White background */ | |||
color: #000000; /* Black text for non-highlighted code */ | |||
} | } | ||
/* Keywords (both C++ and custom) in bold green */ | |||
.hljs-keyword { | |||
color: #008000; /* Green */ | |||
font-weight: bold; | |||
} | |||
/* Optional: Style other elements for contrast */ | |||
.hljs-string { | |||
color: #a31515; /* Red for strings */ | |||
} | |||
.hljs-number { | |||
color: #0000ff; /* Blue for numbers */ | |||
} | |||
.hljs-comment { | |||
color: #008080; /* Teal for comments */ | |||
} | |||
</style> | |||
Line 206: | Line 203: | ||
</style> | </style> | ||
</head> | |||
<body> | |||
<div class=toc> | |||
<h3>Contents:</h4> | |||
<ol> | |||
<li><a href=#var>var</a></li> | |||
<li><a href=#dim>dim</a></li> | |||
<li><a href=#exoprog>exoprog</a></li> | |||
</ol> | |||
</div> | |||
<div class=toc> | <div class=toc> | ||
<h4>Contents:</h4> | <h4 id=var>Contents:</h4> | ||
<ol> | <ol> | ||
<li><a href=#Var_Creation_>Var Creation </a></li> | <li><a href=#Var_Creation_>Var Creation </a></li> | ||
<li><a href=#Arithmetical_Operators_>Arithmetical Operators </a></li> | <li><a href=#Arithmetical_Operators_>Arithmetical Operators </a></li> | ||
Line 240: | Line 248: | ||
<h5 id=Var_Creation_>Var Creation </h5> | <h5 id=Var_Creation_>Var Creation </h5> | ||
Line 255: | Line 258: | ||
A runtime error is thrown if a var is used before being assigned so silent "use before assign" bugs cannot occur. | A runtime error is thrown if a var is used before being assigned so silent "use before assign" bugs cannot occur. | ||
<pre><code class=' | <pre><code class='language-cpp'>var client; // Unassigned var | ||
if (not read(client from "xo_clients", "SB001")) ...</code></pre> | if (not read(client from "xo_clients", "SB001")) ...</code></pre> | ||
Line 263: | Line 266: | ||
Use "let" instead of "var" wherever possible as a shorthand way of writing "const var". | Use "let" instead of "var" wherever possible as a shorthand way of writing "const var". | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = 42; // Integer | ||
var v2 = 42.3; // Double | var v2 = 42.3; // Double | ||
var v3 = "abc"; // String | var v3 = "abc"; // String | ||
Line 293: | Line 296: | ||
<p><em>defaultvalue:</em> Cannot be unassigned. | <p><em>defaultvalue:</em> Cannot be unassigned. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1; // Unassigned | ||
var v2 = v1.or_default("abc"); // v2 -> "abc" | var v2 = v1.or_default("abc"); // v2 -> "abc" | ||
// or | // or | ||
Line 307: | Line 310: | ||
<em>defaultvalue:</em> Cannot be unassigned. | <em>defaultvalue:</em> Cannot be unassigned. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1; // Unassigned | ||
v1.defaulter("abc"); // v1 -> "abc" | v1.defaulter("abc"); // v1 -> "abc" | ||
// or | // or | ||
Line 319: | Line 322: | ||
Eiher or both variables may be unassigned. | Eiher or both variables may be unassigned. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = space(65'536); | ||
var v2 = ""; | var v2 = ""; | ||
v1.swap(v2); // v1 -> "" // v2.len() -> 65'536 | v1.swap(v2); // v1 -> "" // v2.len() -> 65'536 | ||
Line 332: | Line 335: | ||
The moved var must be assigned otherwise a VarUnassigned error is thrown. | The moved var must be assigned otherwise a VarUnassigned error is thrown. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = space(65'536); | ||
var v2 = v1.move(); // v2.len() -> 65'536 // v1 -> "" | var v2 = v1.move(); // v2.len() -> 65'536 // v1 -> "" | ||
// or | // or | ||
Line 342: | Line 345: | ||
The cloned var may be unassigned, in which case the copy will be unassigned too. | The cloned var may be unassigned, in which case the copy will be unassigned too. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "abc"; | ||
var v2 = v1.clone(); // "abc" | var v2 = v1.clone(); // "abc" | ||
// or | // or | ||
Line 364: | Line 367: | ||
0x16 osfile: str, int and dbl have special meaning. | 0x16 osfile: str, int and dbl have special meaning. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = str("x", 32); | ||
v1.dump().outputl(); /// e.g. var:0x7ffea7462cd0 typ:1 str:0x584d9e9f6e70 "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | v1.dump().outputl(); /// e.g. var:0x7ffea7462cd0 typ:1 str:0x584d9e9f6e70 "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||
// or | // or | ||
Line 381: | Line 384: | ||
A string is defined as numeric only if it consists of one or more digits 0-9, with an optional decimal point "." placed anywhere, with an optional + or - sign prefix, or it is the empty string "", which is defined to be zero. | A string is defined as numeric only if it consists of one or more digits 0-9, with an optional decimal point "." placed anywhere, with an optional + or - sign prefix, or it is the empty string "", which is defined to be zero. | ||
<pre><code class=' | <pre><code class='language-cpp'>if ("+123.45"_var.isnum()) ... ok | ||
if ( ""_var.isnum()) ... ok | if ( ""_var.isnum()) ... ok | ||
if (not "."_var.isnum()) ... ok | if (not "."_var.isnum()) ... ok | ||
Line 394: | Line 397: | ||
Allows working numerically with data that may be non-numeric. | Allows working numerically with data that may be non-numeric. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "123.45"_var.num(); // 123.45 | ||
var v2 = "abc"_var.num() + 100; // 100</code></pre> | var v2 = "abc"_var.num() + 100; // 100</code></pre> | ||
Line 408: | Line 411: | ||
0.10000000000000003 + 0.20000000000000004 -> 0.30000000000000004 | 0.10000000000000003 + 0.20000000000000004 -> 0.30000000000000004 | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = 0.1; | ||
var v2 = v1 + 0.2; // 0.3</code></pre> | var v2 = v1 + 0.2; // 0.3</code></pre> | ||
Line 418: | Line 421: | ||
<tr><td></td><td>v1 += v2</td><td>Self addition | <tr><td></td><td>v1 += v2</td><td>Self addition | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = 0.1; | ||
v1 += 0.2; // 0.3</code></pre> | v1 += 0.2; // 0.3</code></pre> | ||
Line 428: | Line 431: | ||
<tr><td></td><td>v1 ++</td><td>Post increment | <tr><td></td><td>v1 ++</td><td>Post increment | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = 3; | ||
var v2 = v1 ++; // v2 -> 3 // v1 -> 4</code></pre> | var v2 = v1 ++; // v2 -> 3 // v1 -> 4</code></pre> | ||
Line 434: | Line 437: | ||
<tr><td></td><td>v1 --</td><td>Post decrement | <tr><td></td><td>v1 --</td><td>Post decrement | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = 3; | ||
var v2 = v1 --; // v2 -> 3 // v1 -> 2</code></pre> | var v2 = v1 --; // v2 -> 3 // v1 -> 2</code></pre> | ||
Line 440: | Line 443: | ||
<tr><td></td><td>++ v1</td><td>Pre increment | <tr><td></td><td>++ v1</td><td>Pre increment | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = 3; | ||
var v2 = ++ v1; // v2 -> 4 // v1 -> 4</code></pre> | var v2 = ++ v1; // v2 -> 4 // v1 -> 4</code></pre> | ||
Line 446: | Line 449: | ||
<tr><td></td><td>-- v1</td><td>Pre decrement | <tr><td></td><td>-- v1</td><td>Pre decrement | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = 3; | ||
var v2 = -- v1; // v2 -> 2 // v1 -> 2</code></pre> | var v2 = -- v1; // v2 -> 2 // v1 -> 2</code></pre> | ||
Line 469: | Line 472: | ||
~ = ST, Subtext mark | ~ = ST, Subtext mark | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^f2^v1]v2^f4"_var; // "f1" _FM "f2" _FM "v1" _VM "v2" _FM "f4"</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td></td><td>var v1 = {"a", "b", "c" ...}; // Initializer list</td><td>Create a dynamic array var from a list. C++ constrains list elements to be all the same type: var, string, double, int, etc. but they all end up as fields of a dynamic array string. | <tr><td></td><td>var v1 = {"a", "b", "c" ...}; // Initializer list</td><td>Create a dynamic array var from a list. C++ constrains list elements to be all the same type: var, string, double, int, etc. but they all end up as fields of a dynamic array string. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = {11, 22, 33}; // "11^22^33"_var</code></pre> | ||
</td></tr> | </td></tr> | ||
Line 481: | Line 484: | ||
<p>See also inserter() and remover(). | <p>See also inserter() and remover(). | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "aa^bb"_var; | ||
v1(4) = 44; // v1 -> "aa^bb^^44"_var | v1(4) = 44; // v1 -> "aa^bb^^44"_var | ||
// Field number -1 causes appending a field when updating. | // Field number -1 causes appending a field when updating. | ||
Line 492: | Line 495: | ||
Furthermore using plain round brackets without the leading .f can be confused with function call syntax. | Furthermore using plain round brackets without the leading .f can be confused with function call syntax. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "aa^bb^cc"_var; | ||
var v2 = v1.f(2); // "bb" /// .f() style access. Recommended. | var v2 = v1.f(2); // "bb" /// .f() style access. Recommended. | ||
var v3 = v1(2); // "bb" /// () style access. Not recommended.</code></pre> | var v3 = v1(2); // "bb" /// () style access. Not recommended.</code></pre> | ||
Line 501: | Line 504: | ||
See also inserter() and remover(). | See also inserter() and remover(). | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "aa^b1]b2^cc"_var; | ||
v1(2, 4) = "44"; // v1 -> "aa^b1]b2]]44^cc"_var | v1(2, 4) = "44"; // v1 -> "aa^b1]b2]]44^cc"_var | ||
// value number -1 causes appending a value when updating. | // value number -1 causes appending a value when updating. | ||
Line 508: | Line 511: | ||
Value access: | Value access: | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "aa^b1]b2^cc"_var; | ||
var v2 = v1.f(2,2); // "b2" /// .f() style access. Recommended. | var v2 = v1.f(2,2); // "b2" /// .f() style access. Recommended. | ||
var v3 = v1(2,2); // "b2" /// () style access. Not recommended.</code></pre> | var v3 = v1(2,2); // "b2" /// () style access. Not recommended.</code></pre> | ||
Line 526: | Line 529: | ||
Floating point numbers are implicitly converted to strings with no more than 12 significant digits of precision. This practically eliminates all floatng point rounding errors. | Floating point numbers are implicitly converted to strings with no more than 12 significant digits of precision. This practically eliminates all floatng point rounding errors. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v2 = "aa"; | ||
var v1 = v2 ^ 22; // "aa22"</code></pre> | var v1 = v2 ^ 22; // "aa22"</code></pre> | ||
Line 532: | Line 535: | ||
<tr><td></td><td>v1 ^= v2</td><td>String self concatention ^= (append) | <tr><td></td><td>v1 ^= v2</td><td>String self concatention ^= (append) | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "aa"; | ||
v1 ^= 22; // v1 -> "aa22"</code></pre> | v1 ^= 22; // v1 -> "aa22"</code></pre> | ||
</td></tr> | </td></tr> | ||
Line 547: | Line 550: | ||
<em>Returns:</em> A var containing an ASCII string of digits with a leading "-" if negative, and a decimal point "." if ndecimals is > 0. | <em>Returns:</em> A var containing an ASCII string of digits with a leading "-" if negative, and a decimal point "." if ndecimals is > 0. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(0.295).round(2); // "0.30" | ||
// or | // or | ||
let v2 = round(1.295, 2); // "1.30" | let v2 = round(1.295, 2); // "1.30" | ||
Line 561: | Line 564: | ||
Negative number of decimals rounds to the left of the decimal point | Negative number of decimals rounds to the left of the decimal point | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = round(123456.789, 0); // "123457" | ||
let v2 = round(123456.789, -1); // "123460" | let v2 = round(123456.789, -1); // "123460" | ||
let v3 = round(123456.789, -2); // "123500"</code></pre> | let v3 = round(123456.789, -2); // "123500"</code></pre> | ||
Line 572: | Line 575: | ||
0-127 -> ASCII, 128-255 -> invalid UTF-8 which cannot be written to the database or used in many exodus string operations | 0-127 -> ASCII, 128-255 -> invalid UTF-8 which cannot be written to the database or used in many exodus string operations | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var::chr(0x61); // "a" | ||
// or | // or | ||
let v2 = chr(0x61);</code></pre> | let v2 = chr(0x61);</code></pre> | ||
Line 581: | Line 584: | ||
<em>Returns:</em> A single Unicode character in UTF8 encoding. | <em>Returns:</em> A single Unicode character in UTF8 encoding. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var::textchr(171416); // "𩶘" // or "\xF0A9B698" | ||
// or | // or | ||
let v2 = textchr(171416);</code></pre> | let v2 = textchr(171416);</code></pre> | ||
Line 592: | Line 595: | ||
<em>Returns:</em> Text of the name or "" if not a valid Unicode Code Point | <em>Returns:</em> Text of the name or "" if not a valid Unicode Code Point | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var::textchrname(91); // "LEFT SQUARE BRACKET" | ||
// or | // or | ||
let v2 = textchrname(91);</code></pre> | let v2 = textchrname(91);</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.str(num)</td><td><p>Get a string of repeated substrings. | ||
</p> | </p> | ||
<p><em>var:</em> The substring to be repeated | <p><em>var:</em> The substring to be repeated | ||
Line 605: | Line 608: | ||
<em>Returns:</em> A string | <em>Returns:</em> A string | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "ab"_var.str(3); // "ababab" | ||
// or | // or | ||
let v2 = str("ab", 3);</code></pre> | let v2 = str("ab", 3);</code></pre> | ||
Line 616: | Line 619: | ||
<em>Returns:</em> A string of space chars. | <em>Returns:</em> A string of space chars. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var::space(3); // "␣␣␣" | ||
// or | // or | ||
let v2 = space(3);</code></pre> | let v2 = space(3);</code></pre> | ||
Line 626: | Line 629: | ||
<em>locale:</em> e.g. en_GB, ar_AE, el_CY, es_US, fr_FR etc or a language name e.g. "french". | <em>locale:</em> e.g. en_GB, ar_AE, el_CY, es_US, fr_FR etc or a language name e.g. "french". | ||
<pre><code class=' | <pre><code class='language-cpp'>let softhyphen = "\xc2\xad"; | ||
let v1 = var(123.45).numberinwords("de_DE").replace(softhyphen, " "); // "ein␣hundert␣drei␣und␣zwanzig␣Komma␣vier␣fünf"</code></pre> | let v1 = var(123.45).numberinwords("de_DE").replace(softhyphen, " "); // "ein␣hundert␣drei␣und␣zwanzig␣Komma␣vier␣fünf"</code></pre> | ||
Line 641: | Line 644: | ||
<em>Returns:</em> A single char if pos1 ± the length of the string, or "" if greater. Returns the first char if pos1 is 0 or (-pos1) > length. | <em>Returns:</em> A single char if pos1 ± the length of the string, or "" if greater. Returns the first char if pos1 is 0 or (-pos1) > length. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "abc"; | ||
var v2 = v1.at(2); // "b" | var v2 = v1.at(2); // "b" | ||
var v3 = v1.at(-3); // "a" | var v3 = v1.at(-3); // "a" | ||
Line 654: | Line 657: | ||
Equivalent to ord() in php | Equivalent to ord() in php | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.ord(); // 0x61 // decimal 97, 'a' | ||
// or | // or | ||
let v2 = ord("abc");</code></pre> | let v2 = ord("abc");</code></pre> | ||
Line 667: | Line 670: | ||
Equivalent to ord() in python and ruby, mb_ord() php. | Equivalent to ord() in python and ruby, mb_ord() php. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "Γ"_var.textord(); // 915 // U+0393: Greek Capital Letter Gamma (Unicode character) | ||
// or | // or | ||
let v2 = textord("Γ");</code></pre> | let v2 = textord("Γ");</code></pre> | ||
Line 676: | Line 679: | ||
<em>Returns:</em> A number | <em>Returns:</em> A number | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.len(); // 3 | ||
// or | // or | ||
let v2 = len("abc");</code></pre> | let v2 = len("abc");</code></pre> | ||
Line 689: | Line 692: | ||
Note that 'if (var.empty())' is not exactly the same as 'if (not var)' because 'if (var("0.0")' is also defined as false. If a string can be converted to 0 then it is considered to be false. Contrast this with common scripting languages where 'if (var("0"))' is defined to be true. | Note that 'if (var.empty())' is not exactly the same as 'if (not var)' because 'if (var("0.0")' is also defined as false. If a string can be converted to 0 then it is considered to be false. Contrast this with common scripting languages where 'if (var("0"))' is defined to be true. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "0"; | ||
if (not v1.empty()) ... ok // true | if (not v1.empty()) ... ok // true | ||
// or | // or | ||
Line 705: | Line 708: | ||
Does not properly calculate all possible combining sequences of graphemes e.g. face followed by colour | Does not properly calculate all possible combining sequences of graphemes e.g. face followed by colour | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "🤡x🤡"_var.textwidth(); // 5 | ||
// or | // or | ||
let v2 = textwidth("🤡x🤡");</code></pre> | let v2 = textwidth("🤡x🤡");</code></pre> | ||
Line 714: | Line 717: | ||
<em>Returns:</em> A number. | <em>Returns:</em> A number. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "Γιάννης"_var.textlen(); // 7 | ||
// or | // or | ||
let v2 = textlen("Γιάννης");</code></pre> | let v2 = textlen("Γιάννης");</code></pre> | ||
Line 727: | Line 730: | ||
This is similar to "var.count(sepstr) + 1" but it returns 0 for an empty source string. | This is similar to "var.count(sepstr) + 1" but it returns 0 for an empty source string. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa**cc"_var.fcount("*"); // 3 | ||
// or | // or | ||
let v2 = fcount("aa**cc", "*");</code></pre> | let v2 = fcount("aa**cc", "*");</code></pre> | ||
Line 740: | Line 743: | ||
Overlapping substrings are not counted. | Overlapping substrings are not counted. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa**cc"_var.count("*"); // 2 | ||
// or | // or | ||
let v2 = count("aa**cc", "*");</code></pre> | let v2 = count("aa**cc", "*");</code></pre> | ||
Line 753: | Line 756: | ||
<em>Returns:</em> False if prefix is "". DIFFERS from c++, javascript, python3. See contains() for more info. | <em>Returns:</em> False if prefix is "". DIFFERS from c++, javascript, python3. See contains() for more info. | ||
<pre><code class=' | <pre><code class='language-cpp'>if ("abc"_var.starts("ab")) ... true | ||
// or | // or | ||
if (starts("abc", "ab")) ... true</code></pre> | if (starts("abc", "ab")) ... true</code></pre> | ||
Line 766: | Line 769: | ||
<em>Returns:</em> False if suffix is "". DIFFERS from c++, javascript, python3. See contains() for more info. | <em>Returns:</em> False if suffix is "". DIFFERS from c++, javascript, python3. See contains() for more info. | ||
<pre><code class=' | <pre><code class='language-cpp'>if ("abc"_var.ends("bc")) ... true | ||
// or | // or | ||
if (ends("abc", "bc")) ... true</code></pre> | if (ends("abc", "bc")) ... true</code></pre> | ||
Line 785: | Line 788: | ||
Programmer logic: Compare as many characters as are in the search string for presence in the list of characters and return success if there are no failures. | Programmer logic: Compare as many characters as are in the search string for presence in the list of characters and return success if there are no failures. | ||
<pre><code class=' | <pre><code class='language-cpp'>if ("abcd"_var.contains("bc")) ... true | ||
// or | // or | ||
if (contains("abcd", "bc")) ... true</code></pre> | if (contains("abcd", "bc")) ... true</code></pre> | ||
Line 798: | Line 801: | ||
<em>Returns:</em> The char position (1 based) that the substr is found at or 0 if not present. | <em>Returns:</em> The char position (1 based) that the substr is found at or 0 if not present. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.index("bc"); // 2 | ||
// or | // or | ||
let v2 = index("abcd", "bc");</code></pre> | let v2 = index("abcd", "bc");</code></pre> | ||
Line 809: | Line 812: | ||
<em>Returns:</em> char position (1 based) or 0 if not present. | <em>Returns:</em> char position (1 based) or 0 if not present. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcabc"_var.index("bc", 2); // 2 | ||
// or | // or | ||
let v2 = index("abcabc", "bc", 2);</code></pre> | let v2 = index("abcabc", "bc", 2);</code></pre> | ||
Line 822: | Line 825: | ||
<em>startchar1:</em> defaults to -1 meaning start searching from the last char. Positive start1char1 counts from the beginning of the source string and negative startchar1 counts backwards from the last char. | <em>startchar1:</em> defaults to -1 meaning start searching from the last char. Positive start1char1 counts from the beginning of the source string and negative startchar1 counts backwards from the last char. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcabc"_var.indexr("bc"); // 5 | ||
// or | // or | ||
let v2 = indexr("abcabc", "bc");</code></pre> | let v2 = indexr("abcabc", "bc");</code></pre> | ||
Line 831: | Line 834: | ||
<p><em>Returns:</em> Zero or more matching substrings separated by FMs. Any groups are in VMs. | <p><em>Returns:</em> Zero or more matching substrings separated by FMs. Any groups are in VMs. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc1abc2"_var.match("BC(\\d)", "i"); // "bc1]1^bc2]2"_var | ||
// or | // or | ||
let v2 = match("abc1abc2", "BC(\\d)", "i");</code></pre> | let v2 = match("abc1abc2", "BC(\\d)", "i");</code></pre> | ||
Line 839: | Line 842: | ||
<p><em>regex_options:</em> | <p><em>regex_options:</em> | ||
</p> | </p> | ||
<p> | <p>* l - Literal (any regex chars are treated as normal chars) | ||
</p> | </p> | ||
<p> | <p>* i - Case insensitive | ||
</p> | </p> | ||
<p> | <p>* p - ECMAScript/Perl (the default) | ||
</p> | </p> | ||
<p> | <p>* b - Basic POSIX (same as sed) | ||
</p> | </p> | ||
<p> | <p>* e - Extended POSIX | ||
</p> | </p> | ||
<p> | <p>* a - awk | ||
</p> | </p> | ||
<p> | <p>* g - grep | ||
</p> | </p> | ||
<p> | <p>* eg - egrep or grep -E | ||
</p> | </p> | ||
Line 861: | Line 862: | ||
</p> | </p> | ||
<p> | <p><em>regex_options:</em> | ||
</p> | </p> | ||
<p> | <p>* m - Multiline. Default in boost (and therefore exodus) | ||
</p> | </p> | ||
<p> | <p>* s - Single line. Default in std::regex | ||
</p> | </p> | ||
<p> | <p>* f - First only. Only for replace() (not match() or search()) | ||
</p> | </p> | ||
<p> | <p>* w - Wildcard glob style (e.g. *.cfg) not regex style. Only for match() and search(). Not replace(). | ||
</p> | </p> | ||
</td></tr> | </td></tr> | ||
Line 883: | Line 884: | ||
regex_options as for match() | regex_options as for match() | ||
<pre><code class=' | <pre><code class='language-cpp'>var startchar1 = 1; | ||
let v1 = "abc1abc2"_var.search("BC(\\d)", startchar1, "i"); // "bc1]1"_var // startchar1 -> 5 /// Ready for the next search | let v1 = "abc1abc2"_var.search("BC(\\d)", startchar1, "i"); // "bc1]1"_var // startchar1 -> 5 /// Ready for the next search | ||
// or | // or | ||
Line 901: | Line 902: | ||
MurmurHash3 is used. | MurmurHash3 is used. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.hash(); assert(v1 == var(6'715'211'243'465'481'821)); | ||
// or | // or | ||
let v2 = hash("abc");</code></pre> | let v2 = hash("abc");</code></pre> | ||
Line 913: | Line 914: | ||
<tr><td>var=</td><td>strvar.ucase()</td><td>Convert to upper case | <tr><td>var=</td><td>strvar.ucase()</td><td>Convert to upper case | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "Γιάννης"_var.ucase(); // "ΓΙΆΝΝΗΣ" | ||
// or | // or | ||
let v2 = ucase("Γιάννης");</code></pre> | let v2 = ucase("Γιάννης");</code></pre> | ||
Line 920: | Line 921: | ||
<tr><td>var=</td><td>strvar.lcase()</td><td>Convert to lower case | <tr><td>var=</td><td>strvar.lcase()</td><td>Convert to lower case | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "ΓΙΆΝΝΗΣ"_var.lcase(); // "γιάννης" | ||
// or | // or | ||
let v2 = lcase("ΓΙΆΝΝΗΣ");</code></pre> | let v2 = lcase("ΓΙΆΝΝΗΣ");</code></pre> | ||
Line 929: | Line 930: | ||
<em>Returns:</em> Original source string with the first letter of each word is capitalised. | <em>Returns:</em> Original source string with the first letter of each word is capitalised. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "γιάννης παππάς"_var.tcase(); // "Γιάννης Παππάς" | ||
// or | // or | ||
let v2 = tcase("γιάννης παππάς");</code></pre> | let v2 = tcase("γιάννης παππάς");</code></pre> | ||
Line 946: | Line 947: | ||
Case folding is not locale-dependent. | Case folding is not locale-dependent. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "Grüßen"_var.fcase(); // "grüssen" | ||
// or | // or | ||
let v2 = tcase("Grüßen");</code></pre> | let v2 = tcase("Grüßen");</code></pre> | ||
Line 959: | Line 960: | ||
Normalization is not locale-dependent. | Normalization is not locale-dependent. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "cafe\u0301"_var.normalize(); // "caf\u00E9" // "café" | ||
// or | // or | ||
let v2 = normalize("cafe\u0301");</code></pre> | let v2 = normalize("cafe\u0301");</code></pre> | ||
Line 978: | Line 979: | ||
Non-existant Unicode Code Points may be created but UTF8 encoding remains valid. | Non-existant Unicode Code Points may be created but UTF8 encoding remains valid. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.invert(); // "\xC2" "\x9E" "\xC2" "\x9D" "\xC2" "\x9C" | ||
// or | // or | ||
let v2 = invert("abc");</code></pre> | let v2 = invert("abc");</code></pre> | ||
Line 993: | Line 994: | ||
String size remains identical. | String size remains identical. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "a1^b2^c3"_var.lower(); // "a1]b2]c3"_var | ||
// or | // or | ||
let v2 = lower("a1^b2^c3"_var);</code></pre> | let v2 = lower("a1^b2^c3"_var);</code></pre> | ||
Line 1,008: | Line 1,009: | ||
String size remains identical. | String size remains identical. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "a1]b2]c3"_var.raise(); // "a1^b2^c3"_var | ||
// or | // or | ||
let v2 = "a1]b2]c3"_var;</code></pre> | let v2 = "a1]b2]c3"_var;</code></pre> | ||
Line 1,015: | Line 1,016: | ||
<tr><td>var=</td><td>strvar.crop()</td><td>Remove any redundant FM, VM etc. chars (Trailing FM; VM before FM etc.) | <tr><td>var=</td><td>strvar.crop()</td><td>Remove any redundant FM, VM etc. chars (Trailing FM; VM before FM etc.) | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "a1^b2]]^c3^^"_var.crop(); // "a1^b2^c3"_var | ||
// or | // or | ||
let v2 = crop("a1^b2]]^c3^^"_var);</code></pre> | let v2 = crop("a1^b2]]^c3^^"_var);</code></pre> | ||
Line 1,022: | Line 1,023: | ||
<tr><td>var=</td><td>strvar.quote()</td><td>Wrap in double quotes. | <tr><td>var=</td><td>strvar.quote()</td><td>Wrap in double quotes. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.quote(); // "\"abc\"" | ||
// or | // or | ||
let v2 = quote("abc");</code></pre> | let v2 = quote("abc");</code></pre> | ||
Line 1,029: | Line 1,030: | ||
<tr><td>var=</td><td>strvar.squote()</td><td>Wrap in single quotes. | <tr><td>var=</td><td>strvar.squote()</td><td>Wrap in single quotes. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.squote(); // "'abc'" | ||
// or | // or | ||
let v2 = squote("abc");</code></pre> | let v2 = squote("abc");</code></pre> | ||
Line 1,036: | Line 1,037: | ||
<tr><td>var=</td><td>strvar.unquote()</td><td>Remove one pair of surrounding double or single quotes. | <tr><td>var=</td><td>strvar.unquote()</td><td>Remove one pair of surrounding double or single quotes. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "'abc'"_var.unquote(); // "abc" | ||
// or | // or | ||
let v2 = unquote("'abc'");</code></pre> | let v2 = unquote("'abc'");</code></pre> | ||
Line 1,045: | Line 1,046: | ||
<em>trimchars:</em> The chars (bytes) to remove. The default is space. | <em>trimchars:</em> The chars (bytes) to remove. The default is space. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "␣␣a1␣␣b2␣c3␣␣"_var.trim(); // "a1␣b2␣c3" | ||
// or | // or | ||
let v2 = trim("␣␣a1␣␣b2␣c3␣␣");</code></pre> | let v2 = trim("␣␣a1␣␣b2␣c3␣␣");</code></pre> | ||
Line 1,052: | Line 1,053: | ||
<tr><td>var=</td><td>strvar.trimfirst(trimchars = " ")</td><td>Ditto but only leading. | <tr><td>var=</td><td>strvar.trimfirst(trimchars = " ")</td><td>Ditto but only leading. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "␣␣a1␣␣b2␣c3␣␣"_var.trimfirst(); // "a1␣␣b2␣c3␣␣" | ||
// or | // or | ||
let v2 = trimfirst("␣␣a1␣␣b2␣c3␣␣");</code></pre> | let v2 = trimfirst("␣␣a1␣␣b2␣c3␣␣");</code></pre> | ||
Line 1,059: | Line 1,060: | ||
<tr><td>var=</td><td>strvar.trimlast(trimchars = " ")</td><td>Ditto but only trailing. | <tr><td>var=</td><td>strvar.trimlast(trimchars = " ")</td><td>Ditto but only trailing. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "␣␣a1␣␣b2␣c3␣␣"_var.trimlast(); // "␣␣a1␣␣b2␣c3" | ||
// or | // or | ||
let v2 = trimlast("␣␣a1␣␣b2␣c3␣␣");</code></pre> | let v2 = trimlast("␣␣a1␣␣b2␣c3␣␣");</code></pre> | ||
Line 1,066: | Line 1,067: | ||
<tr><td>var=</td><td>strvar.trimboth(trimchars = " ")</td><td>Ditto but only leading and trailing, not inner. | <tr><td>var=</td><td>strvar.trimboth(trimchars = " ")</td><td>Ditto but only leading and trailing, not inner. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "␣␣a1␣␣b2␣c3␣␣"_var.trimboth(); // "a1␣␣b2␣c3" | ||
// or | // or | ||
let v2 = trimboth("␣␣a1␣␣b2␣c3␣␣");</code></pre> | let v2 = trimboth("␣␣a1␣␣b2␣c3␣␣");</code></pre> | ||
Line 1,077: | Line 1,078: | ||
Equivalent to var.substr(1,length) or var[1, length] in Pick OS | Equivalent to var.substr(1,length) or var[1, length] in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.first(); // "a" | ||
// or | // or | ||
let v2 = first("abc");</code></pre> | let v2 = first("abc");</code></pre> | ||
Line 1,088: | Line 1,089: | ||
Equivalent to var.substr(-1, 1) or var[-1, 1] in Pick OS | Equivalent to var.substr(-1, 1) or var[-1, 1] in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.last(); // "c" | ||
// or | // or | ||
let v2 = last("abc");</code></pre> | let v2 = last("abc");</code></pre> | ||
Line 1,101: | Line 1,102: | ||
Equivalent to var.substr(1, length) or var[1, length] in Pick OS | Equivalent to var.substr(1, length) or var[1, length] in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.first(2); // "ab" | ||
// or | // or | ||
let v2 = first("abc", 2);</code></pre> | let v2 = first("abc", 2);</code></pre> | ||
Line 1,110: | Line 1,111: | ||
Equivalent to var.substr(-length, length) or var[-length, length] in Pick OS | Equivalent to var.substr(-length, length) or var[-length, length] in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.last(2); // "bc" | ||
// or | // or | ||
let v2 = last("abc", 2);</code></pre> | let v2 = last("abc", 2);</code></pre> | ||
Line 1,123: | Line 1,124: | ||
Equivalent to var.substr(length) or var[1, length] = "" in Pick OS | Equivalent to var.substr(length) or var[1, length] = "" in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.cut(2); // "cd" | ||
// or | // or | ||
let v2 = cut("abcd", 2);</code></pre> | let v2 = cut("abcd", 2);</code></pre> | ||
Line 1,141: | Line 1,142: | ||
Equivalent to var[pos1, length] = substr in Pick OS | Equivalent to var[pos1, length] = substr in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.paste(2, 2, "XYZ"); // "aXYZd" | ||
// or | // or | ||
let v2 = paste("abcd", 2, 2, "XYZ");</code></pre> | let v2 = paste("abcd", 2, 2, "XYZ");</code></pre> | ||
Line 1,150: | Line 1,151: | ||
Equivalent to var[pos1, 0] = substr in Pick OS | Equivalent to var[pos1, 0] = substr in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.paste(2, "XYZ"); // "aXYZbcd" | ||
// or | // or | ||
let v2 = paste("abcd", 2, "XYZ");</code></pre> | let v2 = paste("abcd", 2, "XYZ");</code></pre> | ||
Line 1,159: | Line 1,160: | ||
Equivalent to var[0, 0] = substr in Pick OS | Equivalent to var[0, 0] = substr in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.prefix("XYZ"); // "XYZabc" | ||
// or | // or | ||
let v2 = prefix("abc", "XYZ");</code></pre> | let v2 = prefix("abc", "XYZ");</code></pre> | ||
Line 1,166: | Line 1,167: | ||
<tr><td>var=</td><td>strvar.append(appendable, ...)</td><td>Append anything at the end of a string | <tr><td>var=</td><td>strvar.append(appendable, ...)</td><td>Append anything at the end of a string | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.append(" is ", 10, " ok", '.'); // "abc is 10 ok." | ||
// or | // or | ||
let v2 = append("abc", " is ", 10, " ok", '.');</code></pre> | let v2 = append("abc", " is ", 10, " ok", '.');</code></pre> | ||
Line 1,174: | Line 1,175: | ||
Equivalent to var[-1, 1] = "" in Pick OS | Equivalent to var[-1, 1] = "" in Pick OS | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc"_var.pop(); // "ab" | ||
// or | // or | ||
let v2 = pop("abc");</code></pre> | let v2 = pop("abc");</code></pre> | ||
Line 1,187: | Line 1,188: | ||
<em>Returns:</em> A substring | <em>Returns:</em> A substring | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa*bb*cc"_var.field("*", 2); // "bb" | ||
// or | // or | ||
let v2 = field("aa*bb*cc", "*", 2);</code></pre> | let v2 = field("aa*bb*cc", "*", 2);</code></pre> | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa*bb*cc"_var.field("*", -1); // "cc" | ||
// or | // or | ||
let v2 = field("aa*bb*cc", "*", -1);</code></pre> | let v2 = field("aa*bb*cc", "*", -1);</code></pre> | ||
Line 1,212: | Line 1,213: | ||
The replacement can contain multiple fields itself. If replacing n fields and the replacement contains < n fields then the remaining fields become "". Conversely, if the replacement contains more fields than are required, they are discarded. | The replacement can contain multiple fields itself. If replacing n fields and the replacement contains < n fields then the remaining fields become "". Conversely, if the replacement contains more fields than are required, they are discarded. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa,bb,cc,dd,ee"_var.fieldstore(",", 2, 3, "11,22"); // "aa,11,22,,ee" | ||
// or | // or | ||
let v2 = fieldstore("aa,bb,cc,dd,ee", ",", 2, 3, "11,22");</code></pre> | let v2 = fieldstore("aa,bb,cc,dd,ee", ",", 2, 3, "11,22");</code></pre> | ||
Line 1,218: | Line 1,219: | ||
If nfields is 0 then insert the replacement field(s) before fieldno | If nfields is 0 then insert the replacement field(s) before fieldno | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa,bb,cc,dd,ee"_var.fieldstore(",", 2, 0, "11,22"); // "aa,11,22,bb,cc,dd,ee"</code></pre> | ||
If nfields is negative then delete abs(n) fields before inserting whatever fields the replacement has. | If nfields is negative then delete abs(n) fields before inserting whatever fields the replacement has. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa,bb,cc,dd,ee"_var.fieldstore(",", 2, -2, "11"); // "aa,11,dd,ee"</code></pre> | ||
If nfields exceeds the number of fields in the input then additional empty fields are added. | If nfields exceeds the number of fields in the input then additional empty fields are added. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "aa,bb,cc"_var.fieldstore(",", 6, 2, "11"); // "aa,bb,cc,,,11,"</code></pre> | ||
</td></tr> | </td></tr> | ||
Line 1,243: | Line 1,244: | ||
Not Unicode friendly. | Not Unicode friendly. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.substr(2, 2); // "bc" | ||
// or | // or | ||
let v2 = substr("abcd", 2, 2);</code></pre> | let v2 = substr("abcd", 2, 2);</code></pre> | ||
Line 1,249: | Line 1,250: | ||
If pos1 is negative then start counting backwards from the last char | If pos1 is negative then start counting backwards from the last char | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.substr(-3, 2); // "bc" | ||
// or | // or | ||
let v2 = substr("abcd", -3, 2);</code></pre> | let v2 = substr("abcd", -3, 2);</code></pre> | ||
Line 1,255: | Line 1,256: | ||
If length is negative then work backwards and return chars reversed | If length is negative then work backwards and return chars reversed | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.substr(3, -2); // "cb" | ||
// or | // or | ||
let v2 = substr("abcd", 3, -2); // "cb"</code></pre> | let v2 = substr("abcd", 3, -2); // "cb"</code></pre> | ||
Line 1,273: | Line 1,274: | ||
Partially Unicode friendly but pos1 is in chars. | Partially Unicode friendly but pos1 is in chars. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcd"_var.substr(2); // "bcd" | ||
// or | // or | ||
let v2 = substr("abcd", 2);</code></pre> | let v2 = substr("abcd", 2);</code></pre> | ||
Line 1,303: | Line 1,304: | ||
This function is similar to std::string::find_first_of but that function only returns pos2. | This function is similar to std::string::find_first_of but that function only returns pos2. | ||
<pre><code class=' | <pre><code class='language-cpp'>var pos1 = 4; | ||
let v1 = "12,45 78"_var.substr(pos1, ", ", COL2); // v1 -> "45" // COL2 -> 6 // 6 is the position of the next delimiter char found. | let v1 = "12,45 78"_var.substr(pos1, ", ", COL2); // v1 -> "45" // COL2 -> 6 // 6 is the position of the next delimiter char found. | ||
// or | // or | ||
Line 1,338: | Line 1,339: | ||
It is similar to version 3 of substr - substr(pos1, delimiterchars, pos2) except that in this version the delimiter chars are hard coded as the standard field mark chars (RM, FM, VM, SM, TM, ST) and it returns the first char position of the next substr, not the char position of the next field mark char. | It is similar to version 3 of substr - substr(pos1, delimiterchars, pos2) except that in this version the delimiter chars are hard coded as the standard field mark chars (RM, FM, VM, SM, TM, ST) and it returns the first char position of the next substr, not the char position of the next field mark char. | ||
<pre><code class=' | <pre><code class='language-cpp'>var pos1 = 4, field_mark_no; | ||
let v1 = "12^45^78"_var.substr2(pos1, field_mark_no); // "45" // pos1 -> 7 // field_mark_no -> 2 // field_mark_no 2 means that a FM was found. | let v1 = "12^45^78"_var.substr2(pos1, field_mark_no); // "45" // pos1 -> 7 // field_mark_no -> 2 // field_mark_no 2 means that a FM was found. | ||
// or | // or | ||
Line 1,353: | Line 1,354: | ||
Not UTF8 compatible. | Not UTF8 compatible. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abcde"_var.convert("aZd", "XY"); // "Xbce" // a is replaced and d is removed | ||
// or | // or | ||
let v2 = convert("abcde", "aZd", "XY");</code></pre> | let v2 = convert("abcde", "aZd", "XY");</code></pre> | ||
Line 1,360: | Line 1,361: | ||
<tr><td>var=</td><td>strvar.textconvert(fromchars, tochars)</td><td>Ditto for Unicode code points. | <tr><td>var=</td><td>strvar.textconvert(fromchars, tochars)</td><td>Ditto for Unicode code points. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "a🤡b😀c🌍d"_var.textconvert("🤡😀", "👋"); // "a👋bc🌍d" | ||
// or | // or | ||
let v2 = textconvert("a🤡b😀c🌍d", "🤡😀", "👋");</code></pre> | let v2 = textconvert("a🤡b😀c🌍d", "🤡😀", "👋");</code></pre> | ||
Line 1,369: | Line 1,370: | ||
Case sensitive. | Case sensitive. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "Abc.Abc"_var.replace("bc", "X"); // "AX.AX" | ||
// or | // or | ||
let v2 = replace("Abc Abc", "bc", "X");</code></pre> | let v2 = replace("Abc Abc", "bc", "X");</code></pre> | ||
Line 1,394: | Line 1,395: | ||
$n Inserts the nth (1-indexed) capturing group where n is a positive integer less than 100. | $n Inserts the nth (1-indexed) capturing group where n is a positive integer less than 100. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "A a B b"_var.replace("[A-Z]"_rex, "'$0'"); // "'A' a 'B' b" | ||
// or | // or | ||
let v2 = replace("A a B b", "[A-Z]"_rex, "'$0'");</code></pre> | let v2 = replace("A a B b", "[A-Z]"_rex, "'$0'");</code></pre> | ||
Line 1,409: | Line 1,410: | ||
<em>match_str:</em> Text of a single match. If regex groups are used, match_str.f(1, 1) is the whole match, match_str.f(1, 2) is the first group, etc. | <em>match_str:</em> Text of a single match. If regex groups are used, match_str.f(1, 1) is the whole match, match_str.f(1, 2) is the first group, etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>// Decode hex escape codes. | ||
var v1 = R"(--\0x3B--\0x2F--)"; // Hex escape codes. | var v1 = R"(--\0x3B--\0x2F--)"; // Hex escape codes. | ||
v1.replacer( | v1.replacer( | ||
Line 1,428: | Line 1,429: | ||
<tr><td>var=</td><td>strvar.unique()</td><td>Remove duplicate fields in an FM or VM etc. separated list | <tr><td>var=</td><td>strvar.unique()</td><td>Remove duplicate fields in an FM or VM etc. separated list | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "a1^b2^a1^c2"_var.unique(); // "a1^b2^c2"_var | ||
// or | // or | ||
let v2 = unique("a1^b2^a1^c2"_var);</code></pre> | let v2 = unique("a1^b2^a1^c2"_var);</code></pre> | ||
Line 1,437: | Line 1,438: | ||
Numeric data: | Numeric data: | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "20^10^2^1^1.1"_var.sort(); // "1^1.1^2^10^20"_var | ||
// or | // or | ||
let v2 = sort("20^10^2^1^1.1"_var);</code></pre> | let v2 = sort("20^10^2^1^1.1"_var);</code></pre> | ||
Line 1,443: | Line 1,444: | ||
Alphabetic data: | Alphabetic data: | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "b1^a1^c20^c10^c2^c1^b2"_var.sort(); // "a1^b1^b2^c1^c10^c2^c20"_var | ||
// or | // or | ||
let v2 = sort("b1^a1^c20^c10^c2^c1^b2"_var);</code></pre> | let v2 = sort("b1^a1^c20^c10^c2^c1^b2"_var);</code></pre> | ||
Line 1,450: | Line 1,451: | ||
<tr><td>var=</td><td>strvar.reverse(delimiter = FM)</td><td>Reorder fields in an FM or VM etc. separated list in descending order | <tr><td>var=</td><td>strvar.reverse(delimiter = FM)</td><td>Reorder fields in an FM or VM etc. separated list in descending order | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "20^10^2^1^1.1"_var.reverse(); // "1.1^1^2^10^20"_var | ||
// or | // or | ||
let v2 = reverse("20^10^2^1^1.1"_var);</code></pre> | let v2 = reverse("20^10^2^1^1.1"_var);</code></pre> | ||
Line 1,457: | Line 1,458: | ||
<tr><td>var=</td><td>strvar.shuffle(delimiter = FM)</td><td>Randomise the order of fields in an FM, VM separated list | <tr><td>var=</td><td>strvar.shuffle(delimiter = FM)</td><td>Randomise the order of fields in an FM, VM separated list | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "20^10^2^1^1.1"_var.shuffle(); /// e.g. "2^1^20^1.1^10" (random order depending on initrand()) | ||
// or | // or | ||
let v2 = shuffle("20^10^2^1^1.1"_var);</code></pre> | let v2 = shuffle("20^10^2^1^1.1"_var);</code></pre> | ||
Line 1,468: | Line 1,469: | ||
Replaces separator chars with FM chars except inside double or single quotes and ignoring escaped quotes \" \' | Replaces separator chars with FM chars except inside double or single quotes and ignoring escaped quotes \" \' | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "abc,\"def,\"123\" fgh\",12.34"_var.parse(','); // "abc^\"def,\"123\" fgh\"^12.34"_var | ||
// or | // or | ||
let v2 = parse("abc,\"def,\"123\" fgh\",12.34", ',');</code></pre> | let v2 = parse("abc,\"def,\"123\" fgh\",12.34", ',');</code></pre> | ||
Line 1,479: | Line 1,480: | ||
<em>Returns:</em> A dim array. | <em>Returns:</em> A dim array. | ||
<pre><code class=' | <pre><code class='language-cpp'>dim d1 = "a^b^c"_var.split(); // A dimensioned array with three elements (vars) | ||
// or | // or | ||
dim d2 = split("a^b^c"_var);</code></pre> | dim d2 = split("a^b^c"_var);</code></pre> | ||
Line 1,494: | Line 1,495: | ||
All string mutators follow the same pattern as ucaser.<br>See the non-mutating functions for details. | All string mutators follow the same pattern as ucaser.<br>See the non-mutating functions for details. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "abc"; | ||
v1.ucaser(); // "ABC" | v1.ucaser(); // "ABC" | ||
// or | // or | ||
Line 1,551: | Line 1,552: | ||
See [[#ICONV/OCONV PATTERNS]] | See [[#ICONV/OCONV PATTERNS]] | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(30123).oconv("D/E"); // "21/06/2050" | ||
// or | // or | ||
let v2 = oconv(30123, "D/E");</code></pre> | let v2 = oconv(30123, "D/E");</code></pre> | ||
Line 1,564: | Line 1,565: | ||
See [[#ICONV/OCONV PATTERNS]] | See [[#ICONV/OCONV PATTERNS]] | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "21 JUN 2050"_var.iconv("D/E"); // 30123 | ||
// or | // or | ||
let v2 = iconv("21 JUN 2050", "D/E");</code></pre> | let v2 = iconv("21 JUN 2050", "D/E");</code></pre> | ||
Line 1,575: | Line 1,576: | ||
or with exodus oconv codes e.g. {::MD20P|R(_)#8} as in the below example. | or with exodus oconv codes e.g. {::MD20P|R(_)#8} as in the below example. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(12.345).format("'{:_>8.2f}'"); // "'___12.35'" | ||
let v2 = var(12.345).format("'{::MD20P|R(_)#8}'"); | let v2 = var(12.345).format("'{::MD20P|R(_)#8}'"); | ||
// or | // or | ||
Line 1,588: | Line 1,589: | ||
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. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "\xa4"_var.from_codepage("CP1124"); // "Є" | ||
// or | // or | ||
let v2 = from_codepage("\xa4", "CP1124"); | let v2 = from_codepage("\xa4", "CP1124"); | ||
Line 1,596: | Line 1,597: | ||
<tr><td>var=</td><td>strvar.to_codepage(codepage)</td><td>Converts to codepage encoded text from exodus UTF-8 encoded text | <tr><td>var=</td><td>strvar.to_codepage(codepage)</td><td>Converts to codepage encoded text from exodus UTF-8 encoded text | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "Є"_var.to_codepage("CP1124").oconv("HEX"); // "A4" | ||
// or | // or | ||
let v2 = to_codepage("Є", "CP1124").oconv("HEX");</code></pre> | let v2 = to_codepage("Є", "CP1124").oconv("HEX");</code></pre> | ||
Line 1,614: | Line 1,615: | ||
The abbreviated exodus field extraction function (e.g. xxx.f(20)) is provided instead since field access is extremely heavily used in source code. | The abbreviated exodus field extraction function (e.g. xxx.f(20)) is provided instead since field access is extremely heavily used in source code. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "f1^f2v1]f2v2]f2v3^f2"_var; | ||
let v2 = v1.f(2, 2); // "f2v2"</code></pre> | let v2 = v1.f(2, 2); // "f2v2"</code></pre> | ||
Line 1,620: | Line 1,621: | ||
<tr><td>var=</td><td>strvar.extract(fieldno, valueno = 0, subvalueno = 0)</td><td>Extract a specific field, value or subvalue from a dynamic array. | <tr><td>var=</td><td>strvar.extract(fieldno, valueno = 0, subvalueno = 0)</td><td>Extract a specific field, value or subvalue from a dynamic array. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "f1^f2v1]f2v2]f2v3^f2"_var; | ||
let v2 = v1.extract(2, 2); // "f2v2" | let v2 = v1.extract(2, 2); // "f2v2" | ||
// | // | ||
Line 1,645: | Line 1,646: | ||
<tr><td>var=</td><td>strvar.sum()</td><td>Sum up multiple values into one higher level | <tr><td>var=</td><td>strvar.sum()</td><td>Sum up multiple values into one higher level | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "1]2]3^4]5]6"_var.sum(); // "6^15"_var | ||
// or | // or | ||
let v2 = sum("1]2]3^4]5]6"_var);</code></pre> | let v2 = sum("1]2]3^4]5]6"_var);</code></pre> | ||
Line 1,652: | Line 1,653: | ||
<tr><td>var=</td><td>strvar.sumall()</td><td>Sum up all levels into a single figure | <tr><td>var=</td><td>strvar.sumall()</td><td>Sum up all levels into a single figure | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "1]2]3^4]5]6"_var.sumall(); // 21 | ||
// or | // or | ||
let v2 = sumall("1]2]3^4]5]6"_var);</code></pre> | let v2 = sumall("1]2]3^4]5]6"_var);</code></pre> | ||
Line 1,659: | Line 1,660: | ||
<tr><td>var=</td><td>strvar.sum(delimiter)</td><td>Ditto allowing commas etc. | <tr><td>var=</td><td>strvar.sum(delimiter)</td><td>Ditto allowing commas etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "10,20,30"_var.sum(","); // 60 | ||
// or | // or | ||
let v2 = sum("10,20,30", ",");</code></pre> | let v2 = sum("10,20,30", ",");</code></pre> | ||
Line 1,666: | Line 1,667: | ||
<tr><td>var=</td><td>strvar.mv(opcode, var2)</td><td>Binary ops (+, -, *, /) in parallel on multiple values | <tr><td>var=</td><td>strvar.mv(opcode, var2)</td><td>Binary ops (+, -, *, /) in parallel on multiple values | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "10]20]30"_var.mv("+","2]3]4"_var); // "12]23]34"_var</code></pre> | ||
</td></tr> | </td></tr> | ||
Line 1,676: | Line 1,677: | ||
<tr><td></td><td>strvar.updater(fieldno, replacement)</td><td>Replace a specific field in a dynamic array | <tr><td></td><td>strvar.updater(fieldno, replacement)</td><td>Replace a specific field in a dynamic array | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^v1]v2}s2}s3^f3"_var; | ||
v1.updater(2, "X"); // "f1^X^f3"_var | v1.updater(2, "X"); // "f1^X^f3"_var | ||
// or | // or | ||
Line 1,686: | Line 1,687: | ||
<tr><td></td><td>strvar.updater(fieldno, valueno, replacement)</td><td>Replace a specific value of a specific field in a dynamic array. | <tr><td></td><td>strvar.updater(fieldno, valueno, replacement)</td><td>Replace a specific value of a specific field in a dynamic array. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^v1]v2}s2}s3^f3"_var; | ||
v1.updater(2, 2, "X"); // "f1^v1]X^f3"_var | v1.updater(2, 2, "X"); // "f1^v1]X^f3"_var | ||
// or | // or | ||
Line 1,696: | Line 1,697: | ||
<tr><td></td><td>strvar.updater(fieldno, valueno, subvalueno, replacement)</td><td>Replace a specific subvalue of a specific value of a specific field in a dynamic array. | <tr><td></td><td>strvar.updater(fieldno, valueno, subvalueno, replacement)</td><td>Replace a specific subvalue of a specific value of a specific field in a dynamic array. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^v1]v2}s2}s3^f3"_var; | ||
v1.updater(2, 2, 2, "X"); // "f1^v1]v2}X}s3^f3"_var | v1.updater(2, 2, 2, "X"); // "f1^v1]v2}X}s3^f3"_var | ||
// or | // or | ||
Line 1,706: | Line 1,707: | ||
<tr><td></td><td>strvar.inserter(fieldno, insertion)</td><td>Insert a specific field in a dynamic array, moving all other fields up. | <tr><td></td><td>strvar.inserter(fieldno, insertion)</td><td>Insert a specific field in a dynamic array, moving all other fields up. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^v1]v2}s2}s3^f3"_var; | ||
v1.inserter(2, "X"); // "f1^X^v1]v2}s2}s3^f3"_var | v1.inserter(2, "X"); // "f1^X^v1]v2}s2}s3^f3"_var | ||
// or | // or | ||
Line 1,714: | Line 1,715: | ||
<tr><td></td><td>strvar.inserter(fieldno, valueno, insertion)</td><td>Ditto for a specific value in a specific field, moving all other values up. | <tr><td></td><td>strvar.inserter(fieldno, valueno, insertion)</td><td>Ditto for a specific value in a specific field, moving all other values up. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^v1]v2}s2}s3^f3"_var; | ||
v1.inserter(2, 2, "X"); // "f1^v1]X]v2}s2}s3^f3"_var | v1.inserter(2, 2, "X"); // "f1^v1]X]v2}s2}s3^f3"_var | ||
// or | // or | ||
Line 1,722: | Line 1,723: | ||
<tr><td></td><td>strvar.inserter(fieldno, valueno, subvalueno, insertion)</td><td>Ditto for a specific subvalue in a dynamic array, moving all other subvalues up. | <tr><td></td><td>strvar.inserter(fieldno, valueno, subvalueno, insertion)</td><td>Ditto for a specific subvalue in a dynamic array, moving all other subvalues up. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^v1]v2}s2}s3^f3"_var; | ||
v1.inserter(2, 2, 2, "X"); // "f1^v1]v2}X}s2}s3^f3"_var | v1.inserter(2, 2, 2, "X"); // "f1^v1]v2}X}s2}s3^f3"_var | ||
// or | // or | ||
Line 1,730: | Line 1,731: | ||
<tr><td></td><td>strvar.remover(fieldno, valueno = 0, subvalueno = 0)</td><td>Remove a specific field (or value, or subvalue) from a dynamic array, moving all other fields (or values, or subvalues) down. | <tr><td></td><td>strvar.remover(fieldno, valueno = 0, subvalueno = 0)</td><td>Remove a specific field (or value, or subvalue) from a dynamic array, moving all other fields (or values, or subvalues) down. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^v1]v2}s2}s3^f3"_var; | ||
v1.remover(2, 2); // "f1^v1^f3"_var | v1.remover(2, 2); // "f1^v1^f3"_var | ||
// or | // or | ||
Line 1,747: | Line 1,748: | ||
Searching for empty fields, values etc. (i.e. "") will work. Locating "" in "]yy" will return 1, in "xx]]zz" 2, and in "xx]yy]" 3, however, locating "" in "xx" will return 0 because there is conceptually no empty value in "xx". Locate "" in "" will return 1. | Searching for empty fields, values etc. (i.e. "") will work. Locating "" in "]yy" will return 1, in "xx]]zz" 2, and in "xx]yy]" 3, however, locating "" in "xx" will return 0 because there is conceptually no empty value in "xx". Locate "" in "" will return 1. | ||
<pre><code class=' | <pre><code class='language-cpp'>if ("UK^US^UA"_var.locate("US")) ... ok // 2 | ||
// or | // or | ||
if (locate("US", "UK^US^UA"_var)) ... ok</code></pre> | if (locate("US", "UK^US^UA"_var)) ... ok</code></pre> | ||
Line 1,758: | Line 1,759: | ||
<em>Setting:</em> Field, value, subvalue etc. number if found or the max number + 1 if not. Suitable for additiom of new values | <em>Setting:</em> Field, value, subvalue etc. number if found or the max number + 1 if not. Suitable for additiom of new values | ||
<pre><code class=' | <pre><code class='language-cpp'>var setting; | ||
if ("UK]US]UA"_var.locate("US", setting)) ... ok // setting -> 2 | if ("UK]US]UA"_var.locate("US", setting)) ... ok // setting -> 2 | ||
// or | // or | ||
Line 1,770: | Line 1,771: | ||
<em>Returns:</em> 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. | <em>Returns:</em> 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. | ||
<pre><code class=' | <pre><code class='language-cpp'>var setting; | ||
if ("f1^f2v1]f2v2]s1}s2}s3}s4^f3^f4"_var.locate("s4", setting, 2, 3)) ... ok // setting -> 4 // returns true</code></pre> | if ("f1^f2v1]f2v2]s1}s2}s3}s4^f3^f4"_var.locate("s4", setting, 2, 3)) ... ok // setting -> 4 // returns true</code></pre> | ||
Line 1,788: | Line 1,789: | ||
In case the target is not exactly found then the correct value no for inserting the target is returned in setting. | In case the target is not exactly found then the correct value no for inserting the target is returned in setting. | ||
<pre><code class=' | <pre><code class='language-cpp'>var valueno; if ("aaa]bbb]ccc"_var.locateby("AL", "bb", valueno)) ... // valueno -> 2 // returns false and valueno = where it could be correctly inserted.</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>if</td><td>strvar.locateby(ordercode, target, out setting, fieldno, valueno = 0)</td><td>locateby() ordered as above but in fields if fieldno is 0, or values in a specific fieldno, or subvalues in a specific valueno. | <tr><td>if</td><td>strvar.locateby(ordercode, target, out setting, fieldno, valueno = 0)</td><td>locateby() ordered as above but in fields if fieldno is 0, or values in a specific fieldno, or subvalues in a specific valueno. | ||
<pre><code class=' | <pre><code class='language-cpp'>var setting; | ||
if ("f1^f2^aaa]bbb]ccc^f4"_var.locateby("AL", "bb", setting, 3)) ... // setting -> 2 // return false and where it could be correctly inserted.</code></pre> | if ("f1^f2^aaa]bbb]ccc^f4"_var.locateby("AL", "bb", setting, 3)) ... // setting -> 2 // return false and where it could be correctly inserted.</code></pre> | ||
Line 1,799: | Line 1,800: | ||
<tr><td>if</td><td>strvar.locateusing(usingchar, target)</td><td>locate() a target substr in the whole unordered string using a given delimiter char returning true if found. | <tr><td>if</td><td>strvar.locateusing(usingchar, target)</td><td>locate() a target substr in the whole unordered string using a given delimiter char returning true if found. | ||
<pre><code class=' | <pre><code class='language-cpp'>if ("AB,EF,CD"_var.locateusing(",", "EF")) ... ok</code></pre> | ||
</td></tr> | </td></tr> | ||
Line 1,810: | Line 1,811: | ||
This is similar to the main locate command but the delimiter char can be specified e.g. a comma or TM etc. | This is similar to the main locate command but the delimiter char can be specified e.g. a comma or TM etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>var setting; | ||
if ("f1^f2^f3c1,f3c2,f3c3^f4"_var.locateusing(",", "f3c2", setting, 3)) ... ok // setting -> 2 // returns true</code></pre> | if ("f1^f2^f3c1,f3c2,f3c3^f4"_var.locateusing(",", "f3c2", setting, 3)) ... ok // setting -> 2 // returns true</code></pre> | ||
Line 1,836: | Line 1,837: | ||
Setting environment variable EXO_DBTRACE=1 will cause tracing of db interface including SQL commands. | Setting environment variable EXO_DBTRACE=1 will cause tracing of db interface including SQL commands. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (not conn.connect( | if (not conn.connect("dbname=exodus user=exodus password=somesillysecret")) ...; | ||
// or | // or | ||
if (not connect()) ... | if (not connect()) ... | ||
Line 1,858: | Line 1,859: | ||
Internally, attach merely opens each filename on the given connection causing them to be added to an internal cache. | Internally, attach merely opens each filename on the given connection causing them to be added to an internal cache. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
let filenames = "xo_clients^dict.xo_clients"_var; | |||
if (conn.attach(filenames)) ... ok | if (conn.attach(filenames)) ... ok | ||
// or | // or | ||
Line 1,873: | Line 1,875: | ||
<tr><td>if</td><td>conn.begintrans()</td><td>Begin a db transaction. | <tr><td>if</td><td>conn.begintrans()</td><td>Begin a db transaction. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (not conn.begintrans()) ... | |||
// or | // or | ||
if (not begintrans()) ...</code></pre> | if (not begintrans()) ...</code></pre> | ||
Line 1,880: | Line 1,883: | ||
<tr><td>if</td><td>conn.statustrans()</td><td>Check if a db transaction is in progress. | <tr><td>if</td><td>conn.statustrans()</td><td>Check if a db transaction is in progress. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (conn.statustrans()) ... ok | |||
// or | // or | ||
if (statustrans()) ... ok</code></pre> | if (statustrans()) ... ok</code></pre> | ||
Line 1,887: | Line 1,891: | ||
<tr><td>if</td><td>conn.rollbacktrans()</td><td>Rollback a db transaction. | <tr><td>if</td><td>conn.rollbacktrans()</td><td>Rollback a db transaction. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (conn.rollbacktrans()) ... ok | |||
// or | // or | ||
if (rollbacktrans()) ... ok</code></pre> | if (rollbacktrans()) ... ok</code></pre> | ||
Line 1,896: | Line 1,901: | ||
<em>Returns:</em> True if successfully committed or if there was no transaction in progress, otherwise false. | <em>Returns:</em> True if successfully committed or if there was no transaction in progress, otherwise false. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (conn.committrans()) ... ok | |||
// or | // or | ||
if (committrans()) ... ok</code></pre> | if (committrans()) ... ok</code></pre> | ||
Line 1,905: | Line 1,911: | ||
<em>Returns:</em> True if there was no sql error otherwise lasterror() returns a detailed error message. | <em>Returns:</em> True if there was no sql error otherwise lasterror() returns a detailed error message. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (conn.sqlexec("select 1")) ... ok | |||
// or | // or | ||
if (sqlexec("select 1")) ... ok</code></pre> | if (sqlexec("select 1")) ... ok</code></pre> | ||
Line 1,918: | Line 1,925: | ||
<em>Recommended:</em> Don't use sql directly unless you must to manage or configure a database. | <em>Recommended:</em> Don't use sql directly unless you must to manage or configure a database. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
let sqlcmd = "select 'xxx' as col1, 'yyy' as col2"; | |||
var response; | var response; | ||
if (conn.sqlexec(sqlcmd, response)) ... ok // response -> "col1^col2\x1fxxx^yyy"_var /// \x1f is the Record Mark (RM) char. The backtick char is used here by gendoc to deliminate source code. | if (conn.sqlexec(sqlcmd, response)) ... ok // response -> "col1^col2\x1fxxx^yyy"_var /// \x1f is the Record Mark (RM) char. The backtick char is used here by gendoc to deliminate source code. | ||
Line 1,927: | Line 1,935: | ||
<tr><td></td><td>conn.disconnect()</td><td>Closes db connection and frees process resources both locally and in the database server. | <tr><td></td><td>conn.disconnect()</td><td>Closes db connection and frees process resources both locally and in the database server. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
conn.disconnect(); | |||
// or | // or | ||
disconnect();</code></pre> | disconnect();</code></pre> | ||
Line 1,936: | Line 1,945: | ||
All connections are closed automatically when a process terminates. | All connections are closed automatically when a process terminates. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
conn.disconnectall(); | |||
// or | // or | ||
disconnectall();</code></pre> | disconnectall();</code></pre> | ||
Line 1,944: | Line 1,954: | ||
<em>Returns:</em> The last os or db error message. | <em>Returns:</em> The last os or db error message. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = var::lasterror(); | ||
// or | // or | ||
var v2 = lasterror();</code></pre> | var v2 = lasterror();</code></pre> | ||
Line 1,955: | Line 1,965: | ||
Prefixes the output with source if provided. | Prefixes the output with source if provided. | ||
<pre><code class=' | <pre><code class='language-cpp'>var::loglasterror("main:"); | ||
// or | // or | ||
loglasterror("main:");</code></pre> | loglasterror("main:");</code></pre> | ||
Line 1,971: | Line 1,981: | ||
Optionally copies an existing database from the same connection and which cannot have any current connections. | Optionally copies an existing database from the same connection and which cannot have any current connections. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (not dbdelete("xo_gendoc_testdb")) {}; // Cleanup first | if (not dbdelete("xo_gendoc_testdb")) {}; // Cleanup first | ||
if (conn.dbcreate("xo_gendoc_testdb")) ... ok | if (conn.dbcreate("xo_gendoc_testdb")) ... ok | ||
Line 1,984: | Line 1,994: | ||
The source database must exist on the same connection and cannot have any current connections. | The source database must exist on the same connection and cannot have any current connections. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (not dbdelete("xo_gendoc_testdb2")) {}; // Cleanup first | if (not dbdelete("xo_gendoc_testdb2")) {}; // Cleanup first | ||
if (conn.dbcopy("xo_gendoc_testdb", "xo_gendoc_testdb2")) ... ok | if (conn.dbcopy("xo_gendoc_testdb", "xo_gendoc_testdb2")) ... ok | ||
Line 1,994: | Line 2,004: | ||
<em>Returns:</em> A list of available databases on a particular connection. | <em>Returns:</em> A list of available databases on a particular connection. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
let v1 = conn.dblist(); | |||
// or | // or | ||
let v2 = dblist();</code></pre> | let v2 = dblist();</code></pre> | ||
Line 2,003: | Line 2,014: | ||
The target database must exist and cannot have any current connections. | The target database must exist and cannot have any current connections. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (conn.dbdelete("xo_gendoc_testdb2")) ... ok | if (conn.dbdelete("xo_gendoc_testdb2")) ... ok | ||
// or | // or | ||
Line 2,013: | Line 2,024: | ||
filenames ending with "_temp" only last until the connection is closed. | filenames ending with "_temp" only last until the connection is closed. | ||
<pre><code class=' | <pre><code class='language-cpp'>let filename = "xo_gendoc_temp", conn = "exodus"; | ||
if (conn.createfile(filename)) ... ok | if (conn.createfile(filename)) ... ok | ||
// or | // or | ||
Line 2,021: | Line 2,032: | ||
<tr><td>if</td><td>conn.renamefile(filename, newfilename)</td><td>Rename a db file. | <tr><td>if</td><td>conn.renamefile(filename, newfilename)</td><td>Rename a db file. | ||
<pre><code class=' | <pre><code class='language-cpp'>let conn = "exodus", filename = "xo_gendoc_temp", new_filename = "xo_gendoc_temp2"; | ||
if (conn.renamefile(filename, new_filename)) ... ok | if (conn.renamefile(filename, new_filename)) ... ok | ||
// or | // or | ||
Line 2,030: | Line 2,041: | ||
<em>Returns:</em> A list of all files in a database | <em>Returns:</em> A list of all files in a database | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (not conn.listfiles()) ... | if (not conn.listfiles()) ... | ||
// or | // or | ||
Line 2,038: | Line 2,049: | ||
<tr><td>if</td><td>conn.clearfile(filename)</td><td>Delete all records in a db file | <tr><td>if</td><td>conn.clearfile(filename)</td><td>Delete all records in a db file | ||
<pre><code class=' | <pre><code class='language-cpp'>let conn = "exodus", filename = "xo_gendoc_temp2"; | ||
if (not conn.clearfile(filename)) ... | if (not conn.clearfile(filename)) ... | ||
// or | // or | ||
Line 2,046: | Line 2,057: | ||
<tr><td>if</td><td>conn.deletefile(filename)</td><td>Delete a db file | <tr><td>if</td><td>conn.deletefile(filename)</td><td>Delete a db file | ||
<pre><code class=' | <pre><code class='language-cpp'>let conn = "exodus", filename = "xo_gendoc_temp2"; | ||
if (conn.deletefile(filename)) ... ok | if (conn.deletefile(filename)) ... ok | ||
// or | // or | ||
Line 2,059: | Line 2,070: | ||
Not very accurate inside transactions. | Not very accurate inside transactions. | ||
<pre><code class=' | <pre><code class='language-cpp'>let conn = "exodus", filename = "xo_clients"; | ||
var nrecs1 = conn.reccount(filename); | var nrecs1 = conn.reccount(filename); | ||
// or | // or | ||
Line 2,081: | Line 2,092: | ||
<em>Returns:</em> True if the filename was present in the cache OR if the db connection reports that the file is present. | <em>Returns:</em> True if the filename was present in the cache OR if the db connection reports that the file is present. | ||
<pre><code class=' | <pre><code class='language-cpp'>var file, filename = "xo_clients"; | ||
if (not file.open(filename)) ... | if (not file.open(filename)) ... | ||
// or | // or | ||
Line 2,091: | Line 2,102: | ||
Does nothing currently since database file vars consume no resources | Does nothing currently since database file vars consume no resources | ||
<pre><code class=' | <pre><code class='language-cpp'>var file = "xo_clients"; | ||
file.close(); | file.close(); | ||
// or | // or | ||
Line 2,113: | Line 2,124: | ||
* The dictionary field defines a calculated field that uses an exodus function. Using a psql function is OK. | * The dictionary field defines a calculated field that uses an exodus function. Using a psql function is OK. | ||
<pre><code class=' | <pre><code class='language-cpp'>var filename = "xo_clients", fieldname = "DATE_CREATED"; | ||
if (not deleteindex("xo_clients", "DATE_CREATED")) {}; // Cleanup first | if (not deleteindex("xo_clients", "DATE_CREATED")) {}; // Cleanup first | ||
if (filename.createindex(fieldname)) ... ok | if (filename.createindex(fieldname)) ... ok | ||
Line 2,124: | Line 2,135: | ||
<em>Returns:</em> False if the db file or fieldname are given and do not exist | <em>Returns:</em> False if the db file or fieldname are given and do not exist | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (conn.listindex()) ... ok // includes "xo_clients__date_created" | if (conn.listindex()) ... ok // includes "xo_clients__date_created" | ||
// or | // or | ||
Line 2,138: | Line 2,149: | ||
* Index does not already exists | * Index does not already exists | ||
<pre><code class=' | <pre><code class='language-cpp'>var file = "xo_clients", fieldname = "DATE_CREATED"; | ||
if (file.deleteindex(fieldname)) ... ok | if (file.deleteindex(fieldname)) ... ok | ||
// or | // or | ||
Line 2,168: | Line 2,179: | ||
* 2: Success: The lock has already been placed and the connection is in a transaction. | * 2: Success: The lock has already been placed and the connection is in a transaction. | ||
<pre><code class=' | <pre><code class='language-cpp'>var file = "xo_clients", key = "1000"; | ||
if (file.lock(key)) ... ok | if (file.lock(key)) ... ok | ||
// or | // or | ||
Line 2,182: | Line 2,193: | ||
<em>Returns:</em> False if the lock is not present in a connection. | <em>Returns:</em> False if the lock is not present in a connection. | ||
<pre><code class=' | <pre><code class='language-cpp'>var file = "xo_clients", key = "1000"; | ||
if (file.unlock(key)) ... ok | if (file.unlock(key)) ... ok | ||
// or | // or | ||
Line 2,192: | Line 2,203: | ||
Locks cannot be removed while in a transaction. | Locks cannot be removed while in a transaction. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = "exodus"; | ||
if (not conn.unlockall()) ... | if (not conn.unlockall()) ... | ||
// or | // or | ||
Line 2,208: | Line 2,219: | ||
Any memory cached record is deleted. | Any memory cached record is deleted. | ||
<pre><code class=' | <pre><code class='language-cpp'>let record = "Client GD^G^20855^30000^1001.00^20855.76539"_var; | ||
let file = "xo_clients", key = "GD001"; | let file = "xo_clients", key = "GD001"; | ||
//if (not "xo_clients"_var.deleterecord("GD001")) {}; // Cleanup first | //if (not "xo_clients"_var.deleterecord("GD001")) {}; // Cleanup first | ||
Line 2,228: | Line 2,239: | ||
A special case of the key being "%RECORDS%" results in a fictitious "record" being returned as an FM separated list of all the keys in the db file up to a maximum size of 4Mib, sorted in natural order. | A special case of the key being "%RECORDS%" results in a fictitious "record" being returned as an FM separated list of all the keys in the db file up to a maximum size of 4Mib, sorted in natural order. | ||
<pre><code class=' | <pre><code class='language-cpp'>var record; | ||
let file = "xo_clients", key = "GD001"; | let file = "xo_clients", key = "GD001"; | ||
if (not record.read(file, key)) ... // record -> "Client GD^G^20855^30000^1001.00^20855.76539"_var | if (not record.read(file, key)) ... // record -> "Client GD^G^20855^30000^1001.00^20855.76539"_var | ||
Line 2,243: | Line 2,254: | ||
deleterecord(in file), a one argument free function, is available that deletes multiple records using the currently active select list. | deleterecord(in file), a one argument free function, is available that deletes multiple records using the currently active select list. | ||
<pre><code class=' | <pre><code class='language-cpp'>let file = "xo_clients", key = "GD001"; | ||
if (file.deleterecord(key)) ... ok | if (file.deleterecord(key)) ... ok | ||
// or | // or | ||
Line 2,255: | Line 2,266: | ||
Any memory cached record is deleted. | Any memory cached record is deleted. | ||
<pre><code class=' | <pre><code class='language-cpp'>let record = "Client GD^G^20855^30000^1001.00^20855.76539"_var; | ||
let file = "xo_clients", key = "GD001"; | let file = "xo_clients", key = "GD001"; | ||
if (record.insertrecord(file, key)) ... ok | if (record.insertrecord(file, key)) ... ok | ||
Line 2,268: | Line 2,279: | ||
Any memory cached record is deleted. | Any memory cached record is deleted. | ||
<pre><code class=' | <pre><code class='language-cpp'>let record = "Client GD^G^20855^30000^1001.00^20855.76539"_var; | ||
let file = "xo_clients", key = "GD001"; | let file = "xo_clients", key = "GD001"; | ||
if (not record.updaterecord(file, key)) ... | if (not record.updaterecord(file, key)) ... | ||
Line 2,281: | Line 2,292: | ||
Any memory cached records of either key are deleted. | Any memory cached records of either key are deleted. | ||
<pre><code class=' | <pre><code class='language-cpp'>let file = "xo_clients", key = "GD001", newkey = "GD002"; | ||
if (not file.updatekey(key, newkey)) ... | if (not file.updatekey(key, newkey)) ... | ||
// or | // or | ||
Line 2,289: | Line 2,300: | ||
<tr><td>if</td><td>strvar.readf(file, key, fieldno)</td><td>"Read field" Same as read() but only returns a specific field number from the record. | <tr><td>if</td><td>strvar.readf(file, key, fieldno)</td><td>"Read field" Same as read() but only returns a specific field number from the record. | ||
<pre><code class=' | <pre><code class='language-cpp'>var field, file = "xo_clients", key = "GD001", fieldno = 2; | ||
if (not field.readf(file, key, fieldno)) ... // field -> "G" | if (not field.readf(file, key, fieldno)) ... // field -> "G" | ||
// or | // or | ||
Line 2,297: | Line 2,308: | ||
<tr><td></td><td>strvar.writef(file, key, fieldno)</td><td>"write field" Same as write() but only writes to a specific field number in the record | <tr><td></td><td>strvar.writef(file, key, fieldno)</td><td>"write field" Same as write() but only writes to a specific field number in the record | ||
<pre><code class=' | <pre><code class='language-cpp'>var field = "f3", file = "xo_clients", key = "1000", fieldno = 3; | ||
field.writef(file, key, fieldno); | field.writef(file, key, fieldno); | ||
// or | // or | ||
Line 2,313: | Line 2,324: | ||
Neither the db file nor the record key need to actually exist in the actual db. | Neither the db file nor the record key need to actually exist in the actual db. | ||
<pre><code class=' | <pre><code class='language-cpp'>let record = "Client XD^X^20855^30000^1001.00^20855.76539"_var; | ||
let file = "xo_clients", key = "XD001"; | let file = "xo_clients", key = "XD001"; | ||
record.writec(file, key); | record.writec(file, key); | ||
Line 2,330: | Line 2,341: | ||
Cached db file data lives in exodus process memory and is lost when the process terminates or clearcache() is called. | Cached db file data lives in exodus process memory and is lost when the process terminates or clearcache() is called. | ||
<pre><code class=' | <pre><code class='language-cpp'>var record; | ||
let file = "xo_clients", key = "XD001"; | let file = "xo_clients", key = "XD001"; | ||
if (record.readc(file, key)) ... ok | if (record.readc(file, key)) ... ok | ||
Line 2,346: | Line 2,357: | ||
<em>Returns:</em> False if the key doesnt exist | <em>Returns:</em> False if the key doesnt exist | ||
<pre><code class=' | <pre><code class='language-cpp'>var file = "xo_clients", key = "XD001"; | ||
if (file.deletec(key)) ... ok | if (file.deletec(key)) ... ok | ||
// or | // or | ||
Line 2,356: | Line 2,367: | ||
All future cache readc() function calls will be forced to obtain records from the actual database and refresh the cache. | All future cache readc() function calls will be forced to obtain records from the actual database and refresh the cache. | ||
<pre><code class=' | <pre><code class='language-cpp'>let conn = "exodus"; | ||
conn.clearcache(); | |||
// or | // or | ||
clearcache(conn);</code></pre> | clearcache(conn);</code></pre> | ||
Line 2,385: | Line 2,397: | ||
* "C" returns the key unconverted. | * "C" returns the key unconverted. | ||
<pre><code class=' | <pre><code class='language-cpp'>let key = "SB001"; | ||
let client_name = key.xlate("xo_clients", 1, "X"); // "Client AAA" | let client_name = key.xlate("xo_clients", 1, "X"); // "Client AAA" | ||
// or | // or | ||
Line 2,420: | Line 2,432: | ||
Active select lists created using var.select()'s member function syntax cannot be consumed by the free function form of readnext() and vice versa. | Active select lists created using var.select()'s member function syntax cannot be consumed by the free function form of readnext() and vice versa. | ||
<pre><code class=' | <pre><code class='language-cpp'>var clients = "xo_clients"; | ||
if (clients.select("with type 'B' and with balance ge 100 by type by name")) | if (clients.select("with type 'B' and with balance ge 100 by type by name")) | ||
while (clients.readnext(ID)) | while (clients.readnext(ID)) | ||
Line 2,438: | Line 2,450: | ||
<em>Returns:</em> True if any keys are provided or false if not. | <em>Returns:</em> True if any keys are provided or false if not. | ||
<pre><code class=' | <pre><code class='language-cpp'>var dbfile = ""; | ||
let keys = "A01^B02^C03"_var; | let keys = "A01^B02^C03"_var; | ||
if (dbfile.selectkeys(keys)) ... ok | if (dbfile.selectkeys(keys)) ... ok | ||
Line 2,455: | Line 2,467: | ||
If it returns true then a call to readnext() will return a database record key, otherwise not. | If it returns true then a call to readnext() will return a database record key, otherwise not. | ||
<pre><code class=' | <pre><code class='language-cpp'>var clients = "xo_clients", key; | ||
if (clients.select()) { | if (clients.select()) { | ||
assert(clients.hasnext()); | assert(clients.hasnext()); | ||
Line 2,493: | Line 2,505: | ||
<em>valueno:</em> The multivalue number if the select list was ordered on multivalued database record fields or 1 if not. | <em>valueno:</em> The multivalue number if the select list was ordered on multivalued database record fields or 1 if not. | ||
<pre><code class=' | <pre><code class='language-cpp'>var clients = "xo_clients"; | ||
if (clients.select("with type 'B' and with balance ge 100 by type by name (R)")) | if (clients.select("with type 'B' and with balance ge 100 by type by name (R)")) | ||
while (clients.readnext(RECORD, ID, MV)) | while (clients.readnext(RECORD, ID, MV)) | ||
Line 2,512: | Line 2,524: | ||
Has no effect if no select list is active for dbfile. | Has no effect if no select list is active for dbfile. | ||
<pre><code class=' | <pre><code class='language-cpp'>var clients = "xo_clients"; | ||
clients.clearselect(); | clients.clearselect(); | ||
if (not clients.hasnext()) ... ok | if (not clients.hasnext()) ... ok | ||
Line 2,542: | Line 2,554: | ||
Select lists saved in the lists database file may be created, deleted and listed like database records in any other database file. | Select lists saved in the lists database file may be created, deleted and listed like database records in any other database file. | ||
<pre><code class=' | <pre><code class='language-cpp'>var clients = "xo_clients"; | ||
if (clients.select("with type 'B' by name")) { | if (clients.select("with type 'B' by name")) { | ||
} | } | ||
Line 2,563: | Line 2,575: | ||
Retrieving a list does not delete it and a list can be retrieved more than once until specifically deleted. | Retrieving a list does not delete it and a list can be retrieved more than once until specifically deleted. | ||
<pre><code class=' | <pre><code class='language-cpp'>var file = ""; | ||
if (file.getlist("mylist")) { | if (file.getlist("mylist")) { | ||
while (file.readnext(ID)) | while (file.readnext(ID)) | ||
Line 2,583: | Line 2,595: | ||
<em>Returns:</em> True if successful or false if the list name doesnt exist. | <em>Returns:</em> True if successful or false if the list name doesnt exist. | ||
<pre><code class=' | <pre><code class='language-cpp'>var conn = ""; | ||
if (conn.deletelist("mylist")) ... ok | if (conn.deletelist("mylist")) ... ok | ||
// or | // or | ||
Line 2,594: | Line 2,606: | ||
<table class=wikitable> | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td>var=</td><td>var::date()</td><td><p> | <tr><td>var=</td><td>var::date()</td><td><p>A date in internal format. | ||
</p> | </p> | ||
e.g. | <p>Internal format is the number of whole days since pick epoch 1967-12-31 00:00:00 UTC. Dates prior to that are numbered negatively. | ||
</p> | |||
<em>Returns:</em> A number. e.g. 20821 represents 2025-01-01 00:00:00 UTC for 24 hours. | |||
<pre><code class=' | <pre><code class='language-cpp'>let today1 = var::date(); | ||
// or | // or | ||
let today2 = date();</code></pre> | let today2 = date();</code></pre> | ||
Line 2,605: | Line 2,619: | ||
<tr><td>var=</td><td>var::time()</td><td><p>Number of whole seconds since last 00:00:00 (UTC). | <tr><td>var=</td><td>var::time()</td><td><p>Number of whole seconds since last 00:00:00 (UTC). | ||
</p> | </p> | ||
< | <em>Returns:</em> A number in the range 0 - 86399 since there are 24*60*60 seconds in a day. e.g. 43200 if time is 12:00:00 | ||
</ | |||
<pre><code class=' | <pre><code class='language-cpp'>let now1 = var::time(); | ||
// or | // or | ||
let now2 = time();</code></pre> | let now2 = time();</code></pre> | ||
Line 2,616: | Line 2,628: | ||
<tr><td>var=</td><td>var::ostime()</td><td><p>Number of fractional seconds since last 00:00:00 (UTC). | <tr><td>var=</td><td>var::ostime()</td><td><p>Number of fractional seconds since last 00:00:00 (UTC). | ||
</p> | </p> | ||
<p>A floating point with approx. nanosecond resolution depending on hardware. | <p><em>Returns:</em> A floating point with approx. nanosecond resolution depending on hardware. | ||
</p> | </p> | ||
e.g. 23343.704387955 approx. 06:29:03 UTC | e.g. 23343.704387955 approx. 06:29:03 UTC | ||
<pre><code class=' | <pre><code class='language-cpp'>let now1 = var::ostime(); | ||
// or | // or | ||
let now2 = ostime();</code></pre> | let now2 = ostime();</code></pre> | ||
Line 2,627: | Line 2,639: | ||
<tr><td>var=</td><td>var::ostimestamp()</td><td><p>Number of fractional days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before. | <tr><td>var=</td><td>var::ostimestamp()</td><td><p>Number of fractional days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before. | ||
</p> | </p> | ||
<p>A floating point with approx. nanosecond resolution depending on hardware. | <p><em>Returns:</em> A floating point with approx. nanosecond resolution depending on hardware. | ||
</p> | </p> | ||
e.g. Was 20821.99998842593 around 2025-01-01 23:59:59 UTC | e.g. Was 20821.99998842593 around 2025-01-01 23:59:59 UTC | ||
<pre><code class=' | <pre><code class='language-cpp'>let now1 = var::ostimestamp(); | ||
// or | // or | ||
let now2 = ostimestamp();</code></pre> | let now2 = ostimestamp();</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td>vardate.ostimestamp(ostime)</td><td> | <tr><td>var=</td><td>vardate.ostimestamp(ostime)</td><td><p>Get a timestamp for a given date and time | ||
</p> | |||
<p><em>vardate:</em> Internal date from date(), iconv("D") etc. | |||
</p> | |||
<em>ostime:</em> Internal time from time(), ostime(), iconv("MT") etc. | |||
<pre><code class=' | <pre><code class='language-cpp'>let idate = iconv("2025-01-01", "D"), itime = iconv("23:59:59", "MT"); | ||
let ts1 = idate.ostimestamp(itime); // 20821.99998842593 | let ts1 = idate.ostimestamp(itime); // 20821.99998842593 | ||
// or | // or | ||
Line 2,644: | Line 2,660: | ||
</td></tr> | </td></tr> | ||
<tr><td></td><td>var::ossleep(milliseconds)</td><td><p>Sleep/pause/wait | <tr><td></td><td>var::ossleep(milliseconds)</td><td><p>Sleep/pause/wait | ||
</p> | |||
<p><em>milliseconds:</em> How to long to sleep. | |||
</p> | </p> | ||
Releases the processor if not needed for a period of time or a delay is required. | Releases the processor if not needed for a period of time or a delay is required. | ||
<pre><code class=' | <pre><code class='language-cpp'>var::ossleep(100); // sleep for 100ms | ||
// or | // or | ||
ossleep(100);</code></pre> | ossleep(100);</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td>file_dir_list.oswait(milliseconds)</td><td><p>Sleep/pause/wait up | <tr><td>var=</td><td>file_dir_list.oswait(milliseconds)</td><td><p>Sleep/pause/wait up for a file system event | ||
</p> | |||
<p><em>file_dir_list:</em> An FM delimited list of os files and/or dirs to monitor. | |||
</p> | </p> | ||
<p>Any terminal input (e.g. a key press) will also terminate the wait. | <p><em>milliseconds:</em> How long to wait. Any terminal input (e.g. a key press) will also terminate the wait. | ||
</p> | </p> | ||
<p>An FM array of event information is returned. See below. | <p><em>Returns:</em> An FM array of event information is returned. See below. | ||
</p> | </p> | ||
<p>Multiple events are returned in multivalues. | <p>Multiple events may be captured and are returned in multivalues. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = ".^/etc/hosts"_var.oswait(100); /// e.g. "IN_CLOSE_WRITE^/etc^hosts^f"_var | ||
// or | // or | ||
let v2 = oswait(".^/etc/hosts"_var, 100);</code></pre> | let v2 = oswait(".^/etc/hosts"_var, 100);</code></pre> | ||
Returned array fields | Returned dynamic array fields: | ||
</p> | </p> | ||
<p> | <p># Event type codes | ||
</p> | </p> | ||
<p> | <p># dirpaths | ||
</p> | </p> | ||
<p> | <p># filenames | ||
</p> | </p> | ||
<p> | <p># d=dir, f=file | ||
</p> | </p> | ||
<p>Possible event type codes: | |||
<p>Possible event type codes | |||
</p> | </p> | ||
<p>* IN_CLOSE_WRITE - A file opened for writing was closed | <p>* IN_CLOSE_WRITE - A file opened for writing was closed | ||
Line 2,702: | Line 2,721: | ||
</p> | </p> | ||
<p>* IN_MOVE_SELF - Directory or file under observation was moved | <p>* IN_MOVE_SELF - Directory or file under observation was moved | ||
</p> | </p> | ||
</td></tr> | </td></tr> | ||
Line 2,711: | Line 2,728: | ||
<table class=wikitable> | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td>if</td><td>osfilevar.osopen(osfilename, utf8 = true)</td><td><p> | <tr><td>if</td><td>osfilevar.osopen(osfilename, utf8 = true)</td><td><p>Opens an OS file handle for random read and write operations. | ||
</p> | </p> | ||
<p><em> | <p><em>osfilevar:</em> [out] Handle for subsequent osbread() and osbwrite() calls. | ||
</p> | </p> | ||
<p><em> | <p><em>osfilename:</em> Path and name of an existing OS file. | ||
</p> | </p> | ||
<p><em> | <p><em>utf8:</em> True (default) removes partial UTF-8 sequences from osbread() ends; false returns raw data. | ||
</p> | </p> | ||
<p><em>Returns:</em> True if | <p><em>Returns:</em> True if opened successfully, false if file doesn’t exist or isn’t accessible. | ||
</p> | </p> | ||
Opens for writing if possible, otherwise read-only. | |||
<pre><code class=' | <pre><code class='language-cpp'>let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
if (oswrite("" on osfilename)) ... ok /// Create an empty os file | if (oswrite("" on osfilename)) ... ok /// Create an empty os file | ||
var ostempfile; | var ostempfile; | ||
Line 2,731: | Line 2,748: | ||
</td></tr> | </td></tr> | ||
<tr><td>if</td><td> | <tr><td>if</td><td>strvar.osbwrite(osfilevar, io offset)</td><td><p>Writes data to an OS file at a specified position. | ||
</p> | </p> | ||
<p><em>strvar:</em> Data to write. | |||
</p> | |||
<p><em>osfilevar:</em> Handle from osopen() or a path/filename; creates file if offset is 0 and it’s new, fails if offset isn’t 0. | |||
</p> | |||
<p><em>offset:</em> [in/out] Start position (0-based); updated to end of written data; -1 appends. | |||
</p> | |||
<em>Returns:</em> True if write succeeds, false if file isn’t accessible, updateable, or creatable. | |||
<pre><code class=' | <pre><code class='language-cpp'>let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
let text = "aaa=123\nbbb=456\n"; | let text = "aaa=123\nbbb=456\n"; | ||
var offset = | var offset = -1; /// -1 means append. | ||
if (text.osbwrite(osfilename, offset)) ... ok // offset -> 16 | if (text.osbwrite(osfilename, offset)) ... ok // offset -> 16 | ||
// or | // or | ||
Line 2,743: | Line 2,766: | ||
</td></tr> | </td></tr> | ||
<tr><td>if</td><td> | <tr><td>if</td><td>strvar.osbread(osfilevar, io offset, length)</td><td><p>Reads data from an OS file at a specified position. | ||
</p> | </p> | ||
<p> | <p><em>strvar:</em> [out] Data read. | ||
</p> | </p> | ||
<p> | <p><em>osfilevar:</em> Handle from osopen() or a path/filename. | ||
</p> | </p> | ||
<p><em>offset:</em> [in/out] Start position (0-based); updated to end of read data. | |||
</p> | |||
<p><em>length:</em> Chars to read; with utf8=true (default), may return less to ensure complete UTF-8 code points. | |||
</p> | |||
<em>Returns:</em> True if read succeeds, false if file doesn’t exist or isn’t accessible or offset >= file size. | |||
<pre><code class=' | <pre><code class='language-cpp'>let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
var text, offset = 0; | var text, offset = 0; | ||
if (text.osbread(osfilename, offset, 8)) ... ok // text -> "aaa=123\n" // offset -> 8 | if (text.osbread(osfilename, offset, 8)) ... ok // text -> "aaa=123\n" // offset -> 8 | ||
Line 2,758: | Line 2,785: | ||
</td></tr> | </td></tr> | ||
<tr><td></td><td>osfilevar.osclose()</td><td><p>Removes an osfilevar handle from the internal memory cache of os file handles. This frees up both exodus process memory and operating system resources. | <tr><td></td><td>osfile << anything << std::endl;</td><td><p>Use convenient << syntax to output anything to an osfile. | ||
</p> | |||
<em>osfile:</em> An os path and filename or an osfilevar opened by osopen(). The file will be appended, or created if it does not already exist. osfile can be "stdout" or "stderr" to simulate cout/cerr/clog. | |||
<pre><code class='language-cpp'>let txtfile = "t_temp.txt"; | |||
if (not osremove(txtfile)) {} // Remove any existing file. | |||
txtfile << txtfile << " " << 123.456789 << " " << 123 << std::endl; | |||
let v1 = osread(txtfile); // "t_temp.txt 123.457 123\n"</code></pre> | |||
All standard c++ io manipulators may be used e.g. std::setw, setfill etc. | |||
<pre><code class='language-cpp'>let vout = "std_iomanip_overview.txt"; | |||
if (not osremove(vout)) {} | |||
using namespace std; | |||
vout << boolalpha << true << "\ttrue" << endl; | |||
vout << noboolalpha << true << "\t1" << endl; | |||
vout << showpoint << 42.0 << "\t42.0000" << endl; | |||
vout << noshowpoint << 42.0 << "\t42" << endl; | |||
vout << showpos << 42 << "\t+42" << endl; | |||
vout << noshowpos << 42 << "\t42" << endl; | |||
vout << skipws << " " << 42 << "\t 42" << endl; | |||
vout << noskipws << " " << 42 << "\t 42" << endl; | |||
vout << unitbuf << "a" << "\ta" << endl; | |||
vout << nounitbuf << "b" << "\tb" << endl; | |||
vout << setw(6) << 42 << "\t 42" << endl; | |||
vout << left << setw(6) << 42 << "\t42 " << endl; | |||
vout << right << setw(6) << 42 << "\t 42" << endl; | |||
vout << internal << setw(6) << 42 << "\t 42" << endl; | |||
vout << setfill('*') << setw(6) << 42 << "\t****42" << endl; | |||
vout << showbase << hex << 255 << "\t0xff" << endl; | |||
vout << noshowbase << 255 << "\tff" << endl; | |||
vout << uppercase << 255 << "\tFF" << endl; | |||
vout << nouppercase << 255 << "\tff" << endl; | |||
vout << oct << 255 << "\t377" << endl; | |||
vout << hex << 255 << "\tff" << endl; | |||
vout << dec << 255 << "\t255" << endl; | |||
vout << fixed << 42.1 << "\t42.100000" << endl; | |||
vout << scientific << 42.1 << "\t4.210000e+01" << endl; | |||
vout << hexfloat << 42.1 << "\t0x1.50ccccccccccdp+5" << endl; | |||
vout << defaultfloat << 42.1 << "\t42.1" << endl; | |||
vout << std::setprecision(3) << 42.1567 << "\t42.2" << endl; | |||
vout << resetiosflags(ios::fixed) << 42.1567 << "\t42.2" << endl; | |||
vout << setiosflags(ios::showpos) << 42 << "\t+42" << endl; | |||
// Verify actual v. expected. | |||
var act_v_exp = osread(vout); | |||
act_v_exp.converter("\n\t", FM ^ VM); // Text to dynamic array | |||
act_v_exp = invertarray(act_v_exp); // Columns <-> Rows | |||
assert(act_v_exp.f(1) eq act_v_exp.f(2));</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>var().osclose()</td><td><p>Removes an osfilevar handle from the internal memory cache of os file handles. This frees up both exodus process memory and operating system resources. | |||
</p> | </p> | ||
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. | ||
<pre><code class=' | <pre><code class='language-cpp'>var osfilevar; if (osfilevar.osopen(ostempfile())) ... ok | ||
osfilevar.osclose(); | |||
// or | // or | ||
osclose(osfilevar);</code></pre> | osclose(osfilevar);</code></pre> | ||
Line 2,775: | Line 2,866: | ||
<p><em>codepage:</em> If specified then output is converted from UTF-8 to that codepage before being written. Otherwise no conversion is done. | <p><em>codepage:</em> If specified then output is converted from UTF-8 to that codepage before being written. Otherwise no conversion is done. | ||
</p> | </p> | ||
<em>Returns:</em> True if successful or false if not possible for any reason. e.g. Path is not writeable, permissions etc | <em>Returns:</em> True if successful or false if not possible for any reason. e.g. Path is not writeable, permissions etc | ||
<pre><code class=' | <pre><code class='language-cpp'>let text = "aaa = 123\nbbb = 456"; | ||
let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
if (text.oswrite(osfilename)) ... ok | if (text.oswrite(osfilename)) ... ok | ||
Line 2,794: | Line 2,885: | ||
<em>Returns:</em> True if successful or false if not possible for any reason. e.g. File doesnt exist, insufficient permissions etc. | <em>Returns:</em> True if successful or false if not possible for any reason. e.g. File doesnt exist, insufficient permissions etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>var text; | ||
let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
if (text.osread(osfilename)) ... ok // text -> "aaa = 123\nbbb = 456" | if (text.osread(osfilename)) ... ok // text -> "aaa = 123\nbbb = 456" | ||
Line 2,814: | Line 2,905: | ||
Uses std::filesystem::rename internally. | Uses std::filesystem::rename internally. | ||
<pre><code class=' | <pre><code class='language-cpp'>let from_osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
let to_osfilename = from_osfilename ^ ".bak"; | let to_osfilename = from_osfilename ^ ".bak"; | ||
if (not osremove(ostempdir() ^ "xo_gendoc_test.conf.bak")) {}; // Cleanup first | if (not osremove(ostempdir() ^ "xo_gendoc_test.conf.bak")) {}; // Cleanup first | ||
Line 2,833: | Line 2,924: | ||
<em>Returns:</em> 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, storage space etc. | <em>Returns:</em> 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, storage space etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>let from_osfilename = ostempdir() ^ "xo_gendoc_test.conf.bak"; | ||
let to_osfilename = from_osfilename.cut(-4); | let to_osfilename = from_osfilename.cut(-4); | ||
Line 2,852: | Line 2,943: | ||
Uses std::filesystem::copy internally with recursive and overwrite options | Uses std::filesystem::copy internally with recursive and overwrite options | ||
<pre><code class=' | <pre><code class='language-cpp'>let from_osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
let to_osfilename = from_osfilename ^ ".bak"; | let to_osfilename = from_osfilename ^ ".bak"; | ||
Line 2,866: | Line 2,957: | ||
<p><em>osfilename:</em> Absolute or relative path and file name to be removed. | <p><em>osfilename:</em> Absolute or relative path and file name to be removed. | ||
</p> | </p> | ||
<em>Returns:</em> True if successful or false if not possible for any reason. e.g. Target doesnt exist, path is not writeable, permissions etc. | <p><em>Returns:</em> True if successful or false if not possible for any reason. e.g. Target doesnt exist, path is not writeable, permissions etc. | ||
</p> | |||
If osfilename is an osfilevar then it is automatically closed. | |||
<pre><code class=' | <pre><code class='language-cpp'>let osfilename = ostempdir() ^ "xo_gendoc_test.conf"; | ||
if (osfilename.osremove()) ... ok | if (osfilename.osremove()) ... ok | ||
// or | // or | ||
Line 2,889: | Line 2,982: | ||
<em>Returns:</em> An FM delimited string containing all matching dir entries given a dir path | <em>Returns:</em> An FM delimited string containing all matching dir entries given a dir path | ||
<pre><code class=' | <pre><code class='language-cpp'>var entries1 = "/etc/"_var.oslist("*.cfg"); /// e.g. "adduser.conf^ca-certificates.con^... etc." | ||
// or | // or | ||
var entries2 = oslist("/etc/" "*.conf");</code></pre> | var entries2 = oslist("/etc/" "*.conf");</code></pre> | ||
Line 2,903: | Line 2,996: | ||
See also osfile() and osdir() | See also osfile() and osdir() | ||
<pre><code class=' | <pre><code class='language-cpp'>var info1 = "/etc/hosts"_var.osinfo(); /// e.g. "221^20597^78309"_var | ||
// or | // or | ||
var info2 = osinfo("/etc/hosts");</code></pre> | var info2 = osinfo("/etc/hosts");</code></pre> | ||
Line 2,916: | Line 3,009: | ||
Alias for osinfo(1) | Alias for osinfo(1) | ||
<pre><code class=' | <pre><code class='language-cpp'>var fileinfo1 = "/etc/hosts"_var.osfile(); /// e.g. "221^20597^78309"_var | ||
// or | // or | ||
var fileinfo2 = osfile("/etc/hosts");</code></pre> | var fileinfo2 = osfile("/etc/hosts");</code></pre> | ||
Line 2,929: | Line 3,022: | ||
Alias for osinfo(2) | Alias for osinfo(2) | ||
<pre><code class=' | <pre><code class='language-cpp'>var dirinfo1 = "/etc/"_var.osdir(); /// e.g. "^20848^44464"_var | ||
// or | // or | ||
var dirinfo2 = osfile("/etc/");</code></pre> | var dirinfo2 = osfile("/etc/");</code></pre> | ||
Line 2,942: | Line 3,035: | ||
<em>Returns:</em> True if successful. | <em>Returns:</em> True if successful. | ||
<pre><code class=' | <pre><code class='language-cpp'>let osdirname = "xo_test/aaa"; | ||
if (osrmdir("xo_test/aaa")) {}; // Cleanup first | if (osrmdir("xo_test/aaa")) {}; // Cleanup first | ||
if (osdirname.osmkdir()) ... ok | if (osdirname.osmkdir()) ... ok | ||
Line 2,955: | Line 3,048: | ||
<em>Returns:</em> True if successful or false if not. e.g. Invalid dirpath, insufficient permission etc. | <em>Returns:</em> True if successful or false if not. e.g. Invalid dirpath, insufficient permission etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>let osdirname = "xo_test/aaa"; | ||
if (osdirname.oscwd()) ... ok | if (osdirname.oscwd()) ... ok | ||
// or | // or | ||
Line 2,968: | Line 3,061: | ||
e.g. "/root/exodus/cli/src/xo_test/aaa" | e.g. "/root/exodus/cli/src/xo_test/aaa" | ||
<pre><code class=' | <pre><code class='language-cpp'>var cwd1 = var().oscwd(); | ||
// or | // or | ||
var cwd2 = oscwd();</code></pre> | var cwd2 = oscwd();</code></pre> | ||
Line 2,979: | Line 3,072: | ||
<em>Returns:</em> Returns true if successful or false if not. e.g dir doesnt exist, insufficient permission, not empty etc. | <em>Returns:</em> Returns true if successful or false if not. e.g dir doesnt exist, insufficient permission, not empty etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>let osdirname = "xo_test/aaa"; | ||
if (osdirname.osrmdir()) ... ok | if (osdirname.osrmdir()) ... ok | ||
// or | // or | ||
Line 2,998: | Line 3,091: | ||
Append "&>/dev/null" to the command to suppress terminal output. | Append "&>/dev/null" to the command to suppress terminal output. | ||
<pre><code class=' | <pre><code class='language-cpp'>let cmd = "echo $HOME"; | ||
if (cmd.osshell()) ... ok | if (cmd.osshell()) ... ok | ||
// or | // or | ||
Line 3,010: | Line 3,103: | ||
Append "2>&1" to the command to capture stderr/stdlog output as well. | Append "2>&1" to the command to capture stderr/stdlog output as well. | ||
<pre><code class=' | <pre><code class='language-cpp'>let cmd = "echo $HOME"; | ||
var text; | var text; | ||
if (text.osshellread(cmd)) ... ok | if (text.osshellread(cmd)) ... ok | ||
Line 3,024: | Line 3,117: | ||
Append "&> somefile" to the command to suppress and/or capture output. | Append "&> somefile" to the command to suppress and/or capture output. | ||
<pre><code class=' | <pre><code class='language-cpp'>let outtext = "abc xyz"; | ||
if (outtext.osshellwrite("grep xyz")) ... ok | if (outtext.osshellwrite("grep xyz")) ... ok | ||
// or | // or | ||
Line 3,034: | Line 3,127: | ||
<em>Returns:</em> A string e.g. "/tmp/" | <em>Returns:</em> A string e.g. "/tmp/" | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var::ostempdir(); | ||
// or | // or | ||
let v2 = ostempdir();</code></pre> | let v2 = ostempdir();</code></pre> | ||
Line 3,043: | Line 3,136: | ||
<em>Returns:</em> The name of new temporary file e.g. "/tmp/~exoEcLj3C" | <em>Returns:</em> The name of new temporary file e.g. "/tmp/~exoEcLj3C" | ||
<pre><code class=' | <pre><code class='language-cpp'>var temposfilename1 = var::ostempfile(); | ||
// or | // or | ||
var temposfilename2 = ostempfile();</code></pre> | var temposfilename2 = ostempfile();</code></pre> | ||
Line 3,054: | Line 3,147: | ||
<em>envvalue:</em> The new value to set the env code to. | <em>envvalue:</em> The new value to set the env code to. | ||
<pre><code class=' | <pre><code class='language-cpp'>let envcode = "EXO_ABC", envvalue = "XYZ"; | ||
envvalue.ossetenv(envcode); | envvalue.ossetenv(envcode); | ||
// or | // or | ||
Line 3,072: | Line 3,165: | ||
For the actual system environment, see "man environ". extern char **environ; // environ is a pointer to an array of pointers to char* env pairs like xxx=yyy and the last pointer in the array is nullptr. | For the actual system environment, see "man environ". extern char **environ; // environ is a pointer to an array of pointers to char* env pairs like xxx=yyy and the last pointer in the array is nullptr. | ||
<pre><code class=' | <pre><code class='language-cpp'>var envvalue1; | ||
if (envvalue1.osgetenv("HOME")) ... ok // e.g. "/home/exodus" | if (envvalue1.osgetenv("HOME")) ... ok // e.g. "/home/exodus" | ||
// or | // or | ||
Line 3,082: | Line 3,175: | ||
<em>Returns:</em> A number e.g. 663237. | <em>Returns:</em> A number e.g. 663237. | ||
<pre><code class=' | <pre><code class='language-cpp'>let pid1 = var::ospid(); /// e.g. 663237 | ||
// or | // or | ||
let pid2 = ospid();</code></pre> | let pid2 = ospid();</code></pre> | ||
Line 3,091: | Line 3,184: | ||
<em>Returns:</em> A number e.g. 663237. | <em>Returns:</em> A number e.g. 663237. | ||
<pre><code class=' | <pre><code class='language-cpp'>let tid1 = var::ostid(); /// e.g. 663237 | ||
// or | // or | ||
let tid2 = ostid();</code></pre> | let tid2 = ostid();</code></pre> | ||
Line 3,100: | Line 3,193: | ||
<em>Returns:</em> The git commit details as at the time the library was built. | <em>Returns:</em> The git commit details as at the time the library was built. | ||
<pre><code class=' | <pre><code class='language-cpp'>// e.g. | ||
// Local: doc 2025-03-19 18:15:31 +0000 219cdad8a | // Local: doc 2025-03-19 18:15:31 +0000 219cdad8a | ||
// Remote: doc 2025-03-17 15:03:00 +0000 958f412f0 | // Remote: doc 2025-03-17 15:03:00 +0000 958f412f0 | ||
Line 3,117: | Line 3,210: | ||
True if successful | True if successful | ||
<pre><code class=' | <pre><code class='language-cpp'>if (var::setxlocale("en_US.utf8")) ... ok | ||
// or | // or | ||
if (setxlocale("en_US.utf8")) ... ok</code></pre> | if (setxlocale("en_US.utf8")) ... ok</code></pre> | ||
Line 3,126: | Line 3,219: | ||
<em>Returns:</em> A locale codepage code string. | <em>Returns:</em> A locale codepage code string. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var::getxlocale(); // "en_US.utf8" | ||
// or | // or | ||
let v2 = getxlocale();</code></pre> | let v2 = getxlocale();</code></pre> | ||
Line 3,136: | Line 3,229: | ||
<table class=wikitable> | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.outputl(prefix = "")</td><td><p>Output to stdout with optional prefix. | ||
</p> | </p> | ||
<p>Appends an NL char. | <p>Appends an NL char. | ||
Line 3,144: | Line 3,237: | ||
The raw string bytes are output. No character or byte conversion is performed. | The raw string bytes are output. No character or byte conversion is performed. | ||
<pre><code class=' | <pre><code class='language-cpp'>"abc"_var.outputl("xyz = "); /// Sends "xyz = abc\n" to stdout and flushes. | ||
// or | // or | ||
outputl("xyz = ", "abc"); /// Any number of arguments is allowed. All will be output.</code></pre> | outputl("xyz = ", "abc"); /// Any number of arguments is allowed. All will be output.</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.output(prefix = "")</td><td> Same as outputl() but doesnt append an NL char and is BUFFERED, not flushed.</td></tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.outputt(prefix = "")</td><td> Same as outputl() but appends a tab char instead of an NL char and is BUFFERED, not flushed.</td></tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.logputl(prefix = "")</td><td><p>Output to stdlog with optional prefix. | ||
</p> | </p> | ||
<p>Appends an NL char. | <p>Appends an NL char. | ||
Line 3,159: | Line 3,252: | ||
Any of the six types of field mark chars present are converted to their visible versions, | Any of the six types of field mark chars present are converted to their visible versions, | ||
<pre><code class=' | <pre><code class='language-cpp'>"abc"_var.logputl("xyz = "); /// Sends "xyz = abc\n" to stdlog buffer and is not flushed. | ||
// or | // or | ||
logputl("xyz = ", "abc");; /// Any number of arguments is allowed. All will be output.</code></pre> | logputl("xyz = ", "abc");; /// Any number of arguments is allowed. All will be output.</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.logput(prefix = "")</td><td> Same as logputl() but doesnt append an NL char.</td></tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.errputl(prefix = "")</td><td><p>Output to stderr with optional prefix. | ||
</p> | </p> | ||
<p>Appends an NL char. | <p>Appends an NL char. | ||
Line 3,173: | Line 3,266: | ||
Any of the six types of field mark chars present are converted to their visible versions, | Any of the six types of field mark chars present are converted to their visible versions, | ||
<pre><code class=' | <pre><code class='language-cpp'>"abc"_var.errputl("xyz = "); /// Sends "xyz = abc\n" to stderr | ||
// or | // or | ||
errputl("xyz = ", "abc"); /// Any number of arguments is allowed. All will be output.</code></pre> | errputl("xyz = ", "abc"); /// Any number of arguments is allowed. All will be output.</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.errput(prefix = "")</td><td> Same as errputl() but doesnt append an NL char and is BUFFERED not flushed.</td></tr> | ||
<tr><td>expr</td><td> | <tr><td>expr</td><td>strvar.put(std::ostream& ostream1)</td><td><p>Output to a given stream. | ||
</p> | </p> | ||
<p>Is BUFFERED not flushed. | <p>Is BUFFERED not flushed. | ||
Line 3,188: | Line 3,281: | ||
<tr><td></td><td>var().osflush()</td><td>Flush any and all buffered output to stdout and stdlog. | <tr><td></td><td>var().osflush()</td><td>Flush any and all buffered output to stdout and stdlog. | ||
<pre><code class=' | <pre><code class='language-cpp'>var().osflush(); | ||
// or | // or | ||
osflush();</code></pre> | osflush();</code></pre> | ||
Line 3,210: | Line 3,303: | ||
Multibyte/UTF8 friendly. | Multibyte/UTF8 friendly. | ||
<pre><code class=' | <pre><code class='language-cpp'>// var v1 = "defaultvalue"; | ||
// if (v1.input("Prompt:")) ... ok | // if (v1.input("Prompt:")) ... ok | ||
// or | // or | ||
Line 3,247: | Line 3,340: | ||
It only takes a few µsecs to return false if no key is pressed. | It only takes a few µsecs to return false if no key is pressed. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1; v1.keypressed(); | ||
// or | // or | ||
var v2 = keypressed();</code></pre> | var v2 = keypressed();</code></pre> | ||
Line 3,262: | Line 3,355: | ||
The type of stdout terminal can be obtained from the TERM environment variable. | The type of stdout terminal can be obtained from the TERM environment variable. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = var().isterminal(); /// 1 or 0 | ||
// or | // or | ||
var v2 = isterminal();</code></pre> | var v2 = isterminal();</code></pre> | ||
Line 3,311: | Line 3,404: | ||
<tr><td>var=</td><td>varnum.abs()</td><td>Absolute value | <tr><td>var=</td><td>varnum.abs()</td><td>Absolute value | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = -12.34; | ||
let v2 = v1.abs(); // 12.34 | let v2 = v1.abs(); // 12.34 | ||
// or | // or | ||
Line 3,319: | Line 3,412: | ||
<tr><td>var=</td><td>varnum.pwr(exponent)</td><td>Power | <tr><td>var=</td><td>varnum.pwr(exponent)</td><td>Power | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(2).pwr(8); // 256 | ||
// or | // or | ||
let v2 = pwr(2, 8);</code></pre> | let v2 = pwr(2, 8);</code></pre> | ||
Line 3,330: | Line 3,423: | ||
Seeded from std::chrono::high_resolution_clock::now() if the argument is 0; | Seeded from std::chrono::high_resolution_clock::now() if the argument is 0; | ||
<pre><code class=' | <pre><code class='language-cpp'>var(123).initrnd(); /// Set seed to 123 | ||
// or | // or | ||
initrnd(123);</code></pre> | initrnd(123);</code></pre> | ||
Line 3,341: | Line 3,434: | ||
Uses std::mt19937 and std::uniform_int_distribution<int> | Uses std::mt19937 and std::uniform_int_distribution<int> | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(100).rnd(); /// Random 0 to 99 | ||
// or | // or | ||
let v2 = rnd(100);</code></pre> | let v2 = rnd(100);</code></pre> | ||
Line 3,348: | Line 3,441: | ||
<tr><td>var=</td><td>varnum.exp()</td><td>Power of e | <tr><td>var=</td><td>varnum.exp()</td><td>Power of e | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(1).exp(); // 2.718281828459045 | ||
// or | // or | ||
let v2 = exp(1);</code></pre> | let v2 = exp(1);</code></pre> | ||
Line 3,355: | Line 3,448: | ||
<tr><td>var=</td><td>varnum.sqrt()</td><td>Square root | <tr><td>var=</td><td>varnum.sqrt()</td><td>Square root | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(100).sqrt(); // 10 | ||
// or | // or | ||
let v2 = sqrt(100);</code></pre> | let v2 = sqrt(100);</code></pre> | ||
Line 3,362: | Line 3,455: | ||
<tr><td>var=</td><td>varnum.sin()</td><td>Sine of degrees | <tr><td>var=</td><td>varnum.sin()</td><td>Sine of degrees | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(30).sin(); // 0.5 | ||
// or | // or | ||
let v2 = sin(30);</code></pre> | let v2 = sin(30);</code></pre> | ||
Line 3,369: | Line 3,462: | ||
<tr><td>var=</td><td>varnum.cos()</td><td>Cosine of degrees | <tr><td>var=</td><td>varnum.cos()</td><td>Cosine of degrees | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(60).cos(); // 0.5 | ||
// or | // or | ||
let v2 = cos(60);</code></pre> | let v2 = cos(60);</code></pre> | ||
Line 3,376: | Line 3,469: | ||
<tr><td>var=</td><td>varnum.tan()</td><td>Tangent of degrees | <tr><td>var=</td><td>varnum.tan()</td><td>Tangent of degrees | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(45).tan(); // 1 | ||
// or | // or | ||
let v2 = tan(45);</code></pre> | let v2 = tan(45);</code></pre> | ||
Line 3,383: | Line 3,476: | ||
<tr><td>var=</td><td>varnum.atan()</td><td>Arctangent of degrees | <tr><td>var=</td><td>varnum.atan()</td><td>Arctangent of degrees | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(1).atan(); // 45 | ||
// or | // or | ||
let v2 = atan(1);</code></pre> | let v2 = atan(1);</code></pre> | ||
Line 3,392: | Line 3,485: | ||
<em>Returns:</em> Floating point ver (double) | <em>Returns:</em> Floating point ver (double) | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(2.718281828459045).loge(); // 1 | ||
// or | // or | ||
let v2 = loge(2.718281828459045);</code></pre> | let v2 = loge(2.718281828459045);</code></pre> | ||
Line 3,401: | Line 3,494: | ||
<em>Returns:</em> An integer var | <em>Returns:</em> An integer var | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(2.9).integer(); // 2 | ||
// or | // or | ||
let v2 = integer(2.9); | let v2 = integer(2.9); | ||
Line 3,414: | Line 3,507: | ||
<em>Returns:</em> An integer var | <em>Returns:</em> An integer var | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(2.9).floor(); // 2 | ||
// or | // or | ||
let v2 = floor(2.9); | let v2 = floor(2.9); | ||
Line 3,437: | Line 3,530: | ||
Floating point works. | Floating point works. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(11).mod(5); // 1 | ||
// or | // or | ||
let v2 = mod(11, 5); // 1 | let v2 = mod(11, 5); // 1 | ||
Line 3,465: | Line 3,558: | ||
See cli/demo_precision for more info. | See cli/demo_precision for more info. | ||
<pre><code class=' | <pre><code class='language-cpp'>assert(0.000001_var == 0); /// NOTE WELL: Default precision 4. | ||
let new_precision1 = var::setprecision(6); // 6 // Increase the precision. | let new_precision1 = var::setprecision(6); // 6 // Increase the precision. | ||
// or | // or | ||
Line 3,477: | Line 3,570: | ||
See setprecision() for more info. | See setprecision() for more info. | ||
<pre><code class=' | <pre><code class='language-cpp'>let curr_precision1 = var::getprecision(); | ||
// or | // or | ||
let curr_precision2 = getprecision();</code></pre> | let curr_precision2 = getprecision();</code></pre> | ||
Line 3,495: | Line 3,588: | ||
Any Dynamic array structure is preserved. | Any Dynamic array structure is preserved. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = 19002; | ||
var v2; | var v2; | ||
v2 = v1.oconv( "D" ) ; // "09 JAN 2020" // Default | v2 = v1.oconv( "D" ) ; // "09 JAN 2020" // Default | ||
Line 3,535: | Line 3,628: | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.iconv("D")</td><td><p>Date input: Convert human readable date to internal date format. | ||
</p> | </p> | ||
<p><em>Returns:</em> Internal date or "" if the input is an invalid date. | <p><em>Returns:</em> Internal date or "" if the input is an invalid date. | ||
Line 3,543: | Line 3,636: | ||
Any Dynamic array structure is preserved. | Any Dynamic array structure is preserved. | ||
<pre><code class=' | <pre><code class='language-cpp'>// International order "DE" | ||
var v2; | var v2; | ||
v2 = oconv(19005, "DE") ; // "12 JAN 2020" | v2 = oconv(19005, "DE") ; // "12 JAN 2020" | ||
Line 3,589: | Line 3,682: | ||
Any Dynamic array structure is preserved. | Any Dynamic array structure is preserved. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = 62000; | ||
var v2; | var v2; | ||
v2 = v1.oconv("MT" ); // "17:13" // Default | v2 = v1.oconv("MT" ); // "17:13" // Default | ||
Line 3,610: | Line 3,703: | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.iconv("MT")</td><td><p>Time input: Convert human readable time (e.g. "10:30:59") to internal time format. | ||
</p> | </p> | ||
<p><em>Returns:</em> Internal time or "" if the input is an invalid time. | <p><em>Returns:</em> Internal time or "" if the input is an invalid time. | ||
Line 3,620: | Line 3,713: | ||
Any Dynamic array structure is preserved. | Any Dynamic array structure is preserved. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v2; | ||
v2 = "17:13"_var.iconv( "MT" ) ; // 61980 | v2 = "17:13"_var.iconv( "MT" ) ; // 61980 | ||
v2 = "05:13PM"_var.iconv( "MT" ) ; // 61980 | v2 = "05:13PM"_var.iconv( "MT" ) ; // 61980 | ||
Line 3,677: | Line 3,770: | ||
Any Dynamic array structure is preserved. | Any Dynamic array structure is preserved. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = -1234.567; | ||
var v2; | var v2; | ||
v2 = v1.oconv( "MD20" ) ; // "-1234.57" | v2 = v1.oconv( "MD20" ) ; // "-1234.57" | ||
Line 3,704: | Line 3,797: | ||
ASCII only. | ASCII only. | ||
<pre><code class=' | <pre><code class='language-cpp'>var v2; | ||
v2 = "abcde"_var.oconv( "L#3" ) ; // "abc" // Truncating | v2 = "abcde"_var.oconv( "L#3" ) ; // "abc" // Truncating | ||
v2 = "abcde"_var.oconv( "R#3" ) ; // "cde" | v2 = "abcde"_var.oconv( "R#3" ) ; // "cde" | ||
Line 3,728: | Line 3,821: | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.oconv("T")</td><td><p>Text folding and justification. | ||
</p> | </p> | ||
<p>e.g. T#20 | <p>e.g. T#20 | ||
Line 3,738: | Line 3,831: | ||
ASCII only. | ASCII only. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "Have a nice day"; | ||
v2 = | let v2 = v1.oconv("T#10") ; // "Have a␣␣␣␣|nice day␣␣"_var | ||
// or | // or | ||
let v3 = oconv(v1, "T#10") ; // "Have a␣␣␣␣|nice day␣␣"_var </code></pre> | |||
</td></tr> | </td></tr> | ||
Line 3,748: | Line 3,841: | ||
e.g. MRU | e.g. MRU | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "123/abC."; | ||
var v2; | var v2; | ||
v2 = v1.oconv("MRL") ; // "123/abc." // lcase | v2 = v1.oconv("MRL") ; // "123/abc." // lcase | ||
Line 3,761: | Line 3,854: | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.oconv("HEX")</td><td><p>Convert the chars of a string to a string of pairs of hexadecimal digits. | ||
</p> | </p> | ||
<p><em> | <p><em>strvar:</em> A string. Numbers will be converted to strings for conversion. 1.2 -> "1.2" -> hex "312E32" | ||
</p> | </p> | ||
<p>Dynamic array structure is not preserved. Field marks are converted to HEX as for all other bytes. | <p>Dynamic array structure is not preserved. Field marks are converted to HEX as for all other bytes. | ||
Line 3,771: | Line 3,864: | ||
This function is the exact inverse of iconv("HEX"). | This function is the exact inverse of iconv("HEX"). | ||
<pre><code class=' | <pre><code class='language-cpp'>var v2; | ||
v2 = "ab01"_var.oconv( "HEX" ) ; // "61" "62" "30" "31" | v2 = "ab01"_var.oconv( "HEX" ) ; // "61" "62" "30" "31" | ||
v2 = "\xff\x00"_var.oconv( "HEX" ) ; // "FF" "00" // Any bytes are ok. | v2 = "\xff\x00"_var.oconv( "HEX" ) ; // "FF" "00" // Any bytes are ok. | ||
Line 3,781: | Line 3,874: | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.iconv("HEX")</td><td><p>Convert a string of pairs of hexadecimal digits to a string of chars. | ||
</p> | </p> | ||
<p><em> | <p><em>strvar:</em> Must be a string of only hex digits 0-9, a-f or A-F. | ||
</p> | </p> | ||
<p><em>Returns:</em> A string if all input was hex digits otherwise "". | <p><em>Returns:</em> A string if all input was hex digits otherwise "". | ||
Line 3,822: | Line 3,915: | ||
This function is a near inverse of iconv("MX"). | This function is a near inverse of iconv("MX"). | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "14.5]QQ]65535"_var.oconv("MX"); // "F]QQ]FFFF"_var | ||
// or | // or | ||
let v2 = oconv("14.5]QQ]65535"_var, "MX");</code></pre> | let v2 = oconv("14.5]QQ]65535"_var, "MX");</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.iconv("MX")</td><td><p>Convert hexadecimal string to number. | ||
</p> | </p> | ||
<p><em> | <p><em>strvar:</em> A string or dynamic array of up to 16 hex digits: 0-9, a-f, A-F. | ||
</p> | </p> | ||
<p><em>Returns:</em> An integer or dynamic array of integers. Invalid elements are converted to "". | <p><em>Returns:</em> An integer or dynamic array of integers. Invalid elements are converted to "". | ||
Line 3,853: | Line 3,946: | ||
This function is the exact inverse of oconv("MX"). | This function is the exact inverse of oconv("MX"). | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "F]QQ]FFFF"_var.iconv("MX"); // "15]]65535"_var | ||
// or | // or | ||
let v2 = iconv("F]QQ]FFFF", "MX");</code></pre> | let v2 = iconv("F]QQ]FFFF", "MX");</code></pre> | ||
Line 3,862: | Line 3,955: | ||
<em>varnum:</em> If not numeric then no conversion is performed and the original value is returned. | <em>varnum:</em> If not numeric then no conversion is performed and the original value is returned. | ||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = var(255).oconv("MB"); // 1111'1111 | ||
// or | // or | ||
let v2 = oconv(255, "MB");</code></pre> | let v2 = oconv(255, "MB");</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.oconv("TX")</td><td><p>Convert dynamic arrays to standard text format. | ||
</p> | </p> | ||
<p>Useful for using text editors on dynamic arrays. | <p>Useful for using text editors on dynamic arrays. | ||
Line 3,879: | Line 3,972: | ||
etc. | etc. | ||
<pre><code class=' | <pre><code class='language-cpp'>// 1. Backslash in text remains backslash | ||
let v1 = var(_BS).oconv("TX"); // _BS | let v1 = var(_BS).oconv("TX"); // _BS | ||
Line 3,904: | Line 3,997: | ||
</td></tr> | </td></tr> | ||
<tr><td>var=</td><td> | <tr><td>var=</td><td>strvar.iconv("TX")</td><td><p>Convert standard text format to dynamic array. | ||
</p> | </p> | ||
Reverse of oconv("TX") above.</td></tr> | Reverse of oconv("TX") above.</td></tr> | ||
</table> | </table> | ||
< | <div class=toc> | ||
< | <h4 id=dim>Contents:</h4> | ||
< | <ol> | ||
< | <li><a href=#Dimensioned_Array_Construction_>Dimensioned Array Construction </a></li> | ||
</ | <li><a href=#Array_Access>Array Access</a></li> | ||
< | <li><a href=#Array_Mutation>Array Mutation</a></li> | ||
<li><a href=#Array_Conversion>Array Conversion</a></li> | |||
<li><a href=#Array_DB_I/O>Array DB I/O</a></li> | |||
<li><a href=#Array_OS_I/O>Array OS I/O</a></li> | |||
</ol> | |||
</div> | |||
< | <h5 id=Dimensioned_Array_Construction_>Dimensioned Array Construction </h5> | ||
/ | <table class=wikitable> | ||
. | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td></td><td>dim d1;</td><td>Create an undimensioned array of vars pending actual dimensions. | |||
<pre><code class='language-cpp'>dim d1;</code></pre> | |||
</ | </td></tr> | ||
<tr><td></td><td>dim d1(nrows, ncols = 1);</td><td>Create an array of vars with a fixed number of columns and rows. All vars are unassigned. | |||
< | <pre><code class='language-cpp'>dim d1(10); | ||
dim d2(10, 3);</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>dim d1 = d2; // Copy</td><td>Create a copy of an array. | |||
</ | |||
<pre><code class='language-cpp'> dim d1 = {2, 4, 6, 8}; | |||
dim d2 = d1;</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>dim d1 = dim(); // Move</td><td><p>Save an array created elsewhere. | |||
</p> | |||
Uses C++ "move" semantics. | |||
<pre><code class='language-cpp'>dim d1 = "f1^f2^f3"_var.split();</code></pre> | |||
< | </td></tr> | ||
<tr><td></td><td>dim d1 = {"a", "b", "c" ...}; // Initializer list</td><td>Create an array from a list. All elements must be the same type, var, string, double, int, etc.. but all end up as vars which are a flexible type. | |||
<pre><code class='language-cpp'>dim d1 = {1, 2, 3, 4, 5}; | |||
dim d2 = {"A", "B", "C"};</code></pre> | |||
} | |||
</td></tr> | |||
<tr><td></td><td>dim d1 = v1;</td><td>Initialise all elements of an array to some single value or constant. A var, "", 0 etc. | |||
<pre><code class='language-cpp'>dim d1(10); | |||
d1 = "";</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>d1.redim(nrows, ncols = 1)</td><td><p>Resize an array to a different number of rows and columns. | |||
</p> | |||
<p>Existing data will be retained as far as possible. Any additional elements are unassigned. | |||
</p> | |||
<p>Resizing rows to 0 clears all data. | |||
</p> | |||
Resizing cols to 0 clears all data and changes its status to "undimensioned". | |||
<pre><code class='language-cpp'>dim d1; | |||
d1.redim(10, 3);</code></pre> | |||
td | </td></tr> | ||
<tr><td></td><td>d1.swap(d2) </td><td><p>Swap one array with another. | |||
</p> | |||
Either or both may be undimensioned. | |||
<pre><code class='language-cpp'>dim d1(5); | |||
dim d2(10); | |||
d1.swap(d2);</code></pre> | |||
</td></tr> | |||
</table> | |||
<h5 id=Array_Access>Array Access</h5> | |||
<table class=wikitable> | |||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td></td><td>var v1 = d1[rowno];</br>d1[rowno] = v1;</td><td>Access and update elements of a one dimensional array using [] brackets | |||
<pre><code class='language-cpp'>dim d1 = {1, 2, 3, 4, 5}; | |||
d1[3] = "X"; | |||
let v1 = d1[3]; // "X"</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>var v1 = d1[rowno, colno];</br>d1[rowno, colno] = v1;</td><td>Access and update elements of an two dimensional array using [] brackets | |||
<pre><code class='language-cpp'>dim d1(10, 5); | |||
d1 = ""; | |||
d1[3, 4] = "X"; | |||
let v1 = d1[3, 4]; // "X"</code></pre> | |||
</td></tr> | |||
<tr><td>var=</td><td>d1.rows()</td><td><p>Get the number of rows in the dimensioned array | |||
</p> | |||
<em>Returns:</em> A count. Can be zero, indicating an empty array. | |||
<pre><code class='language-cpp'>dim d1(5,3); | |||
let v1 = d1.rows(); // 5</code></pre> | |||
</td></tr> | |||
<tr><td>var=</td><td>d1.cols()</td><td><p>Get the number of columns in the dimensioned array | |||
</p> | |||
<em>Returns:</em> A count. 0 if the array is undimensioned. | |||
<pre><code class='language-cpp'>dim d1(5,3); | |||
let v1 = d1.cols(); // 3</code></pre> | |||
</td></tr> | |||
<tr><td>var=</td><td>d1.join(delimiter = FM)</td><td><p>Joins all elements into a single delimited string | |||
</p> | |||
<p><em>delimiter:</em> Default is FM. | |||
</p> | |||
<em>Returns:</em> A string var. | |||
<pre><code class='language-cpp'>dim d1 = {"f1", "f2", "f3"}; | |||
let v1 = d1.join(); // "f1^f2^f3"_var</code></pre> | |||
</td></tr> | |||
</table> | |||
<h5 id=Array_Mutation>Array Mutation</h5> | |||
<table class=wikitable> | |||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td></td><td>d1.splitter(str1, delimiter = FM)</td><td><p>Creates or updates the array from a given string. | |||
</p> | |||
<p>If the dim array is undimensioned it will be dimensioned with the number of elements that the string has fields. | |||
</p> | |||
<p>If the dim array is dimensioned and has more elements than there are fields in the string, the excess array elements are initialised to "". If the record has more fields than there are elements in the array, the excess fields are all left unsplit in the final element of the array. | |||
</p> | |||
<p>Predimensioning arrays allows the efficient reuse of arrays in loops and ensures that all elements are assigned values, useful when reading records from db files. | |||
</p> | |||
Using undimensioned arrays allows the efficient handling of arrays with a very variable number of elements. e.g. os text files. | |||
<pre><code class='language-cpp'>dim d1; | |||
d1.splitter("f1^f2^f3"_var); // d1.rows() -> 3 //// Automatically dimensioned. | |||
// | |||
dim d2(10); | |||
d2.splitter("f1^f2^f3"_var); // d2.rows() -> 10 /// Predimensioned. Excess elements become ""</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>d1.sorter(reverse = false)</td><td><p>Sort the elements of the array in place. | |||
</p> | |||
<em>reverse:</em> Defaults to false. If true, then the order is reversed. | |||
<pre><code class='language-cpp'>dim d1 = "2,20,10,1"_var.split(","); | |||
d1.sorter(); | |||
let v1 = d1.join(","); // "1,2,10,20"_var</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>d1.reverser()</td><td>Reverse the elements of the array in place. | |||
<pre><code class='language-cpp'>dim d1 = "2,20,10,1"_var.split(","); | |||
d1.reverser(); | |||
let v1 = d1.join(","); // "1,10,20,2"_var</code></pre> | |||
</td></tr> | |||
<tr><td></td><td>d1.shuffler()</td><td>Randomly shuffle the order of the elements of the array in place. | |||
<pre><code class='language-cpp'>dim d1 = "2,20,10,1"_var.split(","); | |||
d1.shuffler(); | |||
let v1 = d1.join(","); // random</code></pre> | |||
</td></tr> | |||
</table> | |||
<h5 id=Array_Conversion>Array Conversion</h5> | |||
</ | |||
< | |||
<table class=wikitable> | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td>dim=</td><td>d1.sort(reverse = false)</td><td>Same as sorter() but returns a new array leaving the original untouched.</td></tr> | |||
<tr><td>dim=</td><td>d1.reverse()</td><td>Same as reverser() but returns a new array leaving the original untouched.</td></tr> | |||
<tr><td>dim=</td><td>d1.shuffle()</td><td>Same as shuffler() but returns a new array leaving the original untouched.</td></tr> | |||
</table> | </table> | ||
<h5 id= | <h5 id=Array_DB_I/O>Array DB I/O</h5> | ||
<table class=wikitable> | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td></td><td> | <tr><td></td><td>d1.write(dbfile, key)</td><td><p>Writes a db file record created from an array. | ||
</p> | |||
Each element in the array becomes a separate field in the db record. Any redundant trailing FMs are suppressed. | |||
<pre><code class=' | <pre><code class='language-cpp'>dim d1 = "Client GD^G^20855^30000^1001.00^20855.76539"_var.split(); | ||
let file = "xo_clients", key = "GD001"; | |||
if (not deleterecord("xo_clients", "GD001")) {}; // Cleanup first | |||
d1.write(file, key); | |||
// or | |||
write(d1 on file, key);</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td></td><td> | <tr><td>if</td><td>d1.read(dbfile, key)</td><td><p>Read a db file record into an array. | ||
</p> | |||
<p>Each field in the database record becomes a single element in the array. | |||
</p> | |||
<p><em>Returns:</em> True if the record exists or false if not, | |||
</p> | |||
<p>If the array is predimensioned then any excess array elements are initialised to "" and any excess record fields are left unsplit in the final array element. See dim splitter for more info. | |||
</p> | |||
If the array is not predimensioned (rows and cols = 0) then it will be dimensioned to have exactly the same number of rows as there are fields in the record being read. | |||
<pre><code class=' | <pre><code class='language-cpp'>dim d1(10); | ||
let file = "xo_clients", key = "GD001"; | |||
if (not d1.read(file, key)) ... // d1.join() -> "Client GD^G^20855^30000^1001.00^20855.76539^^^^"_var | |||
// or | |||
if (not read(d1 from file, key)) ...</code></pre> | |||
</td></tr> | </td></tr> | ||
</table> | |||
<h5 id=Array_OS_I/O>Array OS I/O</h5> | |||
< | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td>if</td><td>d1.oswrite(osfilename, codepage = "")</td><td><p>Creates an entire os text file from an array | |||
</ | </p> | ||
<tr><td></td><td> | <p>Each element of the array becomes one line in the os file delimited by \n | ||
</p> | |||
<p>Any existing os file is overwritten and replaced. | |||
</p> | |||
<p><em>codepage:</em> Optional: Data is converted from UTF8 to the required codepage/encoding before output. If the conversion cannot be performed then return false. | |||
</p> | </p> | ||
<em>Returns:</em> True if successful or false if not. | |||
<pre><code class=' | <pre><code class='language-cpp'>dim d1 = "aaa=1\nbbb=2\nccc=3\n"_var.split("\n"); | ||
if (not osremove("xo_conf.txt")) {}; // Cleanup first | |||
let osfilename = "xo_conf.txt"; | |||
if (not d1.oswrite(osfilename)) ... | |||
// or | |||
if (not oswrite(d1 on osfilename)) ...</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td></td><td> | <tr><td>if</td><td>d1.osread(osfilename, codepage = "")</td><td><p>Read an entire os text file into an array. | ||
</p> | |||
<p>Each line in the os file, delimited by \n or \r\n, becomes a separate element in the array. | |||
</td | |||
< | |||
</p> | </p> | ||
<p>Existing data | <p>Existing data in the array is lost and the array is redimensioned to the number of lines in the input data. | ||
</p> | </p> | ||
<p> | <p><em>codepage:</em> Optional. Data will be converted from the specified codepage/encoding to UTF8 after being read. If the conversion cannot be performed then return false. | ||
</p> | </p> | ||
<p><em>Returns:</em> True if successful or false if not. | |||
< | |||
< | |||
</p> | </p> | ||
If the first \n in the file is \r\n then the whole file will be split using \r\n as delimiter. | |||
<pre><code class=' | <pre><code class='language-cpp'>dim d1; | ||
let osfilename = "xo_conf.txt"; | |||
d1. | if (not d1.osread(osfilename)) ... // d1.join("\n") -> "aaa=1\nbbb=2\nccc=3\n"_var0 | ||
// or | |||
if (not osread(d1 from osfilename)) ...</code></pre> | |||
</td></tr> | </td></tr> | ||
</table> | </table> | ||
< | <div class=toc> | ||
<h4 id=exoprog>Contents:</h4> | |||
<ol> | |||
<li><a href=#Select_Lists>Select Lists</a></li> | |||
<li><a href=#Perform/Execute>Perform/Execute</a></li> | |||
<li><a href=#Program_Termination_>Program Termination </a></li> | |||
<li><a href=#DB_File_Dictionaries>DB File Dictionaries</a></li> | |||
<li><a href=#I/O_Conversion>I/O Conversion</a></li> | |||
<li><a href=#Ioconv_Date/Time_>Ioconv Date/Time </a></li> | |||
<li><a href=#Time/Date_Utilities>Time/Date Utilities</a></li> | |||
<li><a href=#Terminal_I/O_Utilities>Terminal I/O Utilities</a></li> | |||
<li><a href=#Array_Utilities>Array Utilities</a></li> | |||
<li><a href=#Record_Locking>Record Locking</a></li> | |||
</ | </ol> | ||
<tr><td></td><td>var | </div> | ||
<h5 id=Select_Lists>Select Lists</h5> | |||
<table class=wikitable> | |||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td>if</td><td>select(sortselectclause_or_filehandle = "")</td><td><p>Create an active select list using a natural language sort/select command. | |||
</p> | |||
<p>This and all the following exoprog member functions work on an environment variable CURSOR. | |||
</p> | |||
<p>Identical functions are available directly on plain var objects but vars have less functionality regarding dictionaries and environment variables which are built-in to exoprog. | |||
</p> | |||
<p><em>Returns:</em> True if an active select list was created, false otherwise. | |||
</p> | |||
In the following examples, various environment variables like RECORD, ID and MV are used instead of declaring and using named vars. In actual code, either may be freely used. | |||
<pre><code class=' | <pre><code class='language-cpp'>select("xo_clients by name by type with type 'A' 'B' and with balance between 0 and 2000"); | ||
if (readnext(ID)) ... ok</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td> | <tr><td>if</td><td>selectkeys(keys)</td><td>Create an active select list from some given keys. | ||
<pre><code class=' | <pre><code class='language-cpp'>selectkeys("SB001^JB001^JB002"_var); | ||
if (readnext(ID)) ... ok // ID -> "SB001"</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td> | <tr><td>if</td><td>hasnext()</td><td>Check if a select list is active. | ||
<pre><code class=' | <pre><code class='language-cpp'>if (hasnext()) ... ok</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td> | <tr><td>if</td><td>readnext(out key)</td><td><p>Get the next key from an active select list. | ||
</p> | </p> | ||
<p><em> | <p><em>key:</em> [out] A string. Typically the key of a db file record. | ||
</p> | </p> | ||
<em>Returns:</em> | <em>Returns:</em> True if an active select list was available and the next key in the list was obtained. | ||
<pre><code class=' | <pre><code class='language-cpp'>selectkeys("SB001^JB001^JB002"_var); | ||
if (readnext(ID)) ... ok // ID -> "SB001"</code></pre> | |||
</td></tr> | </td></tr> | ||
</ | <tr><td>if</td><td>readnext(out key, out valueno)</td><td><p>Get the next key and value number pair from an active select list. | ||
< | </p> | ||
<p><em>key:</em> [out] A string. Typically the key of a db file record. | |||
</p> | |||
<p><em>valueno:</em> [out] Is only available in select lists that have been created by sort/select commands that refer to multi-valued db dictionary fields where db records have multiple values for a specific field. In this case, a record key will appear multiple times in the select list since each multivalue is exploded for the purpose of sorting and selecting. This can be viewed as a process of "normalising" multivalues so they appear as multiple records instead of being held in a single record. | |||
</p> | |||
<em>Returns:</em> True if an active select list was available and the next key in the list was obtained. | |||
<pre><code class='language-cpp'>selectkeys("SB001]2^SB001]1^JB001]2"_var); | |||
if (readnext(ID, MV)) ... ok // ID -> "SB001" // MV -> 2</code></pre> | |||
</td></tr> | |||
<tr><td>if</td><td>readnext(out record, out key, out valueno)</td><td><p>Get the next record, key and value no from an active select list. | |||
<tr><td></td><td> | |||
</p> | </p> | ||
<p> | <p><em>record:</em> [out] Is only available in select lists that have been created with the final (R) option. Otherwise the record will be returned as an empty string and must be obtained using a db read() function. | ||
</p> | </p> | ||
<p> | <p><em>key:</em> [out] A string. Typically the key of a db file record. | ||
</p> | </p> | ||
<p> | <p><em>valueno:</em> [out] Is only available in select lists that have been created by sort/select commands that refer to multi-valued db dictionary fields where db records have multiple values for a specific field. | ||
</p> | </p> | ||
<em>Returns:</em> True if an active select list was available and the next key in the list was obtained. | |||
<pre><code class=' | <pre><code class='language-cpp'>select("xo_clients by name (R)"); | ||
if (readnext(RECORD, ID, MV)) ... ok; | |||
assert(not RECORD.empty());</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td></td><td> | <tr><td></td><td>pushselect(out cursor)</td><td><p>Saves a pointer to the currently active select list. | ||
</p> | |||
<p>This allows another select list to be activated and used temporarily before the original select list is reactivated. | |||
</p> | </p> | ||
<em> | <em>cursor:</em> [out] A var that can be passed later on to the popselect() function to reactivate the saved list. | ||
<pre><code class=' | <pre><code class='language-cpp'>select("xo_clients by name"); | ||
var saved_xo_clients_cursor; | |||
pushselect(saved_xo_clients_cursor); | |||
// | |||
// ... work with another select list ... | |||
// | |||
popselect(saved_xo_clients_cursor); // Reactivate the original select list.</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td></td><td> | <tr><td></td><td>popselect(cursor)</td><td><p>Re-establish an active select list saved by pushselect(). | ||
</p> | |||
<p><em>cursor:</em> A var created by the pushselect() function. | |||
</p> | |||
See pushselect() for more info.</td></tr> | |||
<tr><td></td><td>clearselect()</td><td><p>Deactivate an active select list. | |||
</p> | |||
If no select list is active then nothing is done. | |||
<pre><code class=' | <pre><code class='language-cpp'>clearselect();</code></pre> | ||
</td></tr> | </td></tr> | ||
<tr><td></td><td> | <tr><td>if</td><td>deleterecord(filename)</td><td><p>Use an active select list to delete db records. | ||
</p> | |||
<p><em>Returns:</em> False if any records could not be deleted. | |||
</p> | |||
Contrast this function with the two argument "deleterecord(file, key)" function that deletes a single record. | |||
<pre><code class=' | <pre><code class='language-cpp'>if (select("xo_clients with type 'Q' and with balance between 0 and 100")) { | ||
if (deleterecord("xo_clients")) ... | |||
}</code></pre> | |||
</td></tr> | </td></tr> | ||
</ | <tr><td>if</td><td>deleterecord(dbfile, key)</td><td>Delete a single database file record. | ||
< | |||
<pre><code class='language-cpp'>let file = "xo_clients", key = "QQ001"; | |||
write("" on file, key); | |||
if (not deleterecord(file, key)) ... | |||
<pre><code class=' | |||
let file = "xo_clients", key = " | |||
// or | // or | ||
write( | write("" on file, key); | ||
if (not file.deleterecord(key)) ...</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td>if</td><td> | <tr><td>if</td><td>savelist(listname)</td><td><p>Save a currently active select list under a given name. | ||
</p> | |||
<p>After saving, the list is no longer active and hasnext() will return false. | |||
</p> | |||
<p><em>Returns:</em> True if an active select list was saved, false if there was no active select list. | |||
</p> | </p> | ||
<p> | Lists are saved as a record in the "lists" file. | ||
<pre><code class='language-cpp'>selectkeys("SB001^SB002"_var); | |||
if (not savelist("my_list")) ...</code></pre> | |||
</td></tr> | |||
<tr><td>if</td><td>getlist(listname)</td><td><p>Reactivate a saved select list of a given name. | |||
</p> | </p> | ||
<p> | <p>A saved list is obtained from the "lists" file and activated. | ||
</p> | </p> | ||
< | <em>Returns:</em> True if an active select list was successfully reactivated, otherwise false. | ||
<pre><code class='language-cpp'>if (not getlist("my_list")) ...</code></pre> | |||
</td></tr> | |||
<tr><td>if</td><td>deletelist(listname)</td><td><p>Remove a saved select list by name. | |||
</p> | </p> | ||
A saved list is deleted from the "lists" file. | |||
<pre><code class=' | <pre><code class='language-cpp'>if (not deletelist("my_list")) ...</code></pre> | ||
if (not | |||
</td></tr> | </td></tr> | ||
</table> | </table> | ||
<h5 id= | <h5 id=Perform/Execute>Perform/Execute</h5> | ||
<table class=wikitable> | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td> | <tr><td>var=</td><td>perform(command_line)</td><td><p>Run an exodus program/library's main function using a command like syntax similar to that of executable programs. | ||
</p> | |||
<p>A "command line" is passed to the program/library in the usual COMMAND, SENTENCE and OPTIONS environment variables instead of function arguments. | |||
</p> | |||
<p>The program/library's main function should have zero arguments. Performing a program/library function with main arguments results in them being unassigned and in some case core dump may occur. | |||
</p> | </p> | ||
<p> | <p>The following environment variables are initialised on entry to the main function of the program/library. They are preserved untouched in the calling program. | ||
</p> | </p> | ||
<p> | <p>SENTENCE, COMMAND, OPTIONS: Initialised from the argument "command_line". | ||
</p> | </p> | ||
<p> | <p>RECUR0, RECUR1, RECUR2, RECUR3, RECUR4 to "". | ||
</p> | </p> | ||
< | <p>ID, RECORD, MV, DICT initialised to "". | ||
</p> | |||
< | <p>LEVEL is incremented by one. | ||
</p> | |||
<p>All other environment variables are shared between the caller and callee. There is essentially only one environment in any one process or thread. | |||
</p> | |||
<p>Any active select list is passed to the performed program/library and can be consumed by it. Conversely any active select list created by the performed program/library will be returned to the calling program. In other words, both the performing and the performed programs/libraries share a single active select list environment. This is different from execute() which gets its own private active select list, initially inactive. | |||
</p> | |||
<p><em>command_line:</em> The first word of this argument is used as the name of the program/library to be loaded and run. command_line is used to initialise the SENTENCE, COMMAND and OPTIONS environment variables. | |||
</ | |||
< | |||
</p> | </p> | ||
<p> | <p><em>Returns:</em> Whatever var the program/library returns, or "" if it calls stop() or abort(()". | ||
</p> | </p> | ||
<p> | <p>The return value can be ignored and discarded without any compiler warning. | ||
</p> | </p> | ||
< | Exodus program/libraries may also be called directly using conventional function calling syntax. To call an exodus program/library called progname using either the syntax "call progname(args...);" or "var v1 = progname(args...);" you must "#include <progname.h>" after the "programinit()" or "libraryinit()" lines in your program/library.</td></tr> | ||
<tr><td>var=</td><td>execute(command_line)</td><td><p>Run an exodus program/library's main function. | |||
</p> | </p> | ||
< | Identical to perform() but any currently active select list in the calling program/library is not accessible to the executed program/library and is preserved in the calling [program as is. Any select list created by the executed library is discarded when it terminates.</td></tr> | ||
<tr><td></td><td>chain(command_line)</td><td><p>Run an exodus program/library's main function after closing the current program. | |||
</p> | </p> | ||
Identical to perform() except that the current program closes first.</td></tr> | |||
<tr><td>var=</td><td>libinfo(libname)</td><td>Check if a lib exists to be performed/executed or called.</td></tr> | |||
< | |||
</td></tr> | |||
</table> | </table> | ||
<h5 id=Program_Termination_>Program Termination </h5> | |||
</ | <table class=wikitable> | ||
</ | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
</ | <tr><td></td><td>stop(message = "")</td><td><p>Stop the current exodus program/library normally and return to the parent exodus program/library, or return to the operating system if none. | ||
</p> | |||
< | <p>Calling stop() in an exodus OS command line executable program, or in a function called from the same, will terminate the OS process with an error status of 0 which is generally considered to indicate success. | ||
< | </p> | ||
< | Calling stop() in a performed or executed exodus program/library, or in a function called from the same, will terminate the program/library being executed and return to the exodus program that performed or executed it.</td></tr> | ||
< | <tr><td></td><td>abort(message = "")</td><td><p>Abort the current exodus program/library abnormally and return to the parent exodus program/library, or return to the operating system if none. | ||
</ | </p> | ||
< | Similar to stop() but, if terminating the OS process, then return an error status of 1 which is generally considered to be an indication of failure.</td></tr> | ||
<tr><td></td><td>abortall(message = "")</td><td><p>Abort the current exodus program/library abnormally and return to the parent exodus program/library, or return to the operating system if none. | |||
</p> | |||
Similar to abort() but, if terminating the OS process, then return an error status of 2 which is generally considered to be an indication of failure.</td></tr> | |||
<tr><td></td><td>logoff(message = "")</td><td></td></tr> | |||
</table> | |||
<h5 id=DB_File_Dictionaries>DB File Dictionaries</h5> | |||
<table class=wikitable> | |||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td>var=</td><td>calculate(dictid)</td><td><p>given dictid reads dictrec from DICT file and extracts from RECORD/ID or calls library | |||
</p> | |||
called dict+DICT function dictid not const so we can mess with the library?</td></tr> | |||
<tr><td>var=</td><td>calculate(dictid, dictfile, id, record, mv = 0)</td><td></td></tr> | |||
<tr><td>var=</td><td>xlate(filename, key, fieldno_or_name, mode)</td><td></td></tr> | |||
</table> | |||
<h5 id=I/O_Conversion>I/O Conversion</h5> | |||
<table class=wikitable> | |||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td>var=</td><td>oconv(input, conversion)</td><td><p>iconv/oconv with access to exoprogram's environment variables. | |||
</p> | |||
<p>exoprog's iconv/oconv have the ability to call custom functions like "[funname,args...]" | |||
</p> | |||
< | <p>[NUMBER] // built-in. See doc below. | ||
</p> | |||
/ | <p>[DATE] // built-in. See doc below. | ||
. | </p> | ||
. | <p>[DATEPERIOD] e.g. [DATEPERIOD,1] [DATEPERIOD,1,12] | ||
</p> | |||
<p>[DATETIME] e.g. [DATETIME,4*,DOS] [DATETIME,4*,MTS] [DATETIME,4*] | |||
</p> | |||
<p>[TIME2] e.g. [TIME2,MT] [TIME2,MTS] [TIME2,MTS48] | |||
</ | </p> | ||
</td></tr> | |||
<tr><td>var=</td><td>iconv(input, conversion)</td><td></td></tr> | |||
</table> | |||
<h5 id=Ioconv_Date/Time_>Ioconv Date/Time </h5> | |||
< | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td>var=</td><td>iconv|oconv(var, "[DATE]")</td><td><p>Use iconv/oconv code "[DATE,args]" when you want date conversion to depend on the environment variable DATEFMT, particularly its American/International setting. Otherwise use ordinary "D" conversion codes directly for slightly greater performance. | |||
</p> | |||
<p><em>var:</em> [oconv] An internal date (a number). | |||
</p> | |||
<p><em>Returns:</em> [oconv] A readable date in text format depending on "[DATE,args]" e.g. "31 DEC 2020" "31/12/2020" "12/31/2020" | |||
</p> | |||
<p><em>var:</em> [iconv] A date in text format as above. | |||
</p> | |||
<p><em>Returns:</em> [iconv] An internal date (a number) or "" if the input could not be understood as a valid date. | |||
</p> | |||
<p><em>args:</em> If args is empty then DATEFMT is used as the conversion code. If args starts with "D" then args is used as the conversion codes but any E option in DATEFMT is appended. If args does not start with "D" then args are appended to DATEFMT, a "Z" option is appended, and the result used as the conversion code. A "*" option is equivalent to a second "Z" option. | |||
</p> | |||
If you are calling iconv/oconv in code and DATEFMT is adequate for your needs then pass it directly as a function argument e.g. 'var v1 = iconv|oconv(v2, DATEFORMAT);' instead of indirectly like 'var v1 = iconv|oconv(v2, "[DATE]");'. | |||
<pre><code class='language-cpp'>DATEFMT = "D/E"; | |||
let v1 = iconv("JAN 9 2025", "D"); | |||
assert(oconv(v1, "[DATE]" ) == " 9/ 1/2025"); // "D/EZ" or "[DATE,D]" equivalent assuming D/E in DATEFMT (replace leading zeros with spaces) | |||
assert(oconv(v1, "[DATE,4]" ) == " 9/ 1/2025"); // "D4Z" equivalent assuming D/E in DATEFMT (replace leading zeros with spaces) | |||
assert(oconv(v1, "[DATE,*4]") == "9/1/2025"); // "D4ZZ" equivalent assuming D/E in DATEFMT (trim leading zeros and spaces) | |||
assert(oconv(v1, "[DATE,*]" ) == "9/1/2025"); // "DZZ" equivalent assuming D/E in DATEFMT (trim leading zeros and spaces)</code></pre> | |||
</td></tr> | |||
<tr><td>var=</td><td>iconv|oconv(var, "[NUMBER]")</td><td><p>Use iconv/oconv "[NUMBER,args]" either when your numbers have currency or unit code suffixes or when you want number conversion to depend on the environment variable BASEFMT to determine thousands separator and decimal point. Otherwise use ordinary "MD" conversion codes directly for slightly greater performance. | |||
</p> | |||
<p>Formatting for numbers with optional currency code/unit suffix and is sensitive to the International or European setting in BASEFMT regarding use of commas or dots for thousands separators and decimal points. | |||
</p> | |||
<p>Primarily used for oconv() but can be used in reverse for iconv. | |||
</p> | |||
<p><em>var:</em> A number with an optional currency code or unit suffix. e.g. "12345.67USD" | |||
</p> | |||
<p><em>Returns:</em> A formatted number with thousands separated conventionally e.g. "12.345.67USD". | |||
</p> | |||
<p>iconv/oconv("[NUMBER]") oconv leaves ndecimals untouched as in the input. iconv see below. | |||
</p> | |||
<p>iconv/oconv("[NUMBER,2]") Specified number of decimal places | |||
</p> | |||
<p>iconv/oconv("[NUMBER,BASE]") Decimal places as per BASEFMT | |||
</p> | |||
<p>iconv/oconv("[NUMBER,*]") Leave decimal places untouched as in the input | |||
</p> | |||
<p>iconv/oconv("[NUMBER,X]") Leave decimal places untouched as in the input | |||
</p> | |||
<p>iconv/oconv("[NUMBER,2Z]") Z (suppress zero) combined with any other code for oconv results in empty output "" instead of "0.00" in case of zero input. | |||
</p> | |||
<p>Empty input "" gives empty output "". | |||
</p> | |||
< | |||
<p>All leading, trailing and internal spaces are removed from the input. | |||
</p> | |||
<p>A trailing currency or unit code is ignored and returned on output. | |||
</p> | |||
<p>An exodus number is an optional leading + or - followed by one or more decimal digits 0-9 with a single optional decimal point placed anywhere. | |||
</p> | |||
p | <p>If the input is non-numeric then "" is returned and STATUS set to 2. In the case of oconv with multiple fields or values each field or value is processed separately but STATUS is set to 2 if any are non-numeric. | ||
</p> | |||
<p>iconv removes and oconv adds thousand separator chars. The thousands separator is "," if BASEFMT starts with "MD" or "." if it starts with "MC". | |||
</p> | |||
<p><em>oconv:</em> | |||
</p> | |||
. | <p>Add thousands separator chars and optionally standardise the number of decimal places. | ||
</p> | |||
<p>Multiple numbers in fields, values, subvalues etc. can be processed in one string. | |||
</p> | |||
<p>Any leading + character is preserved on output. | |||
</p> | |||
<p>Z suppresses zeros and returns empty string "" instead. | |||
</p> | |||
<p>Special format "[NUMBER,ndecs,move_ndecs]": move_ndecs causes decimal point to be shifted left if positive or right if negative. | |||
<pre><code class='language-cpp'>var v1 = oconv("1234.5USD", "[NUMBER,2]"); // "1,234.50USD" // Comma added and decimal places corrected.</code></pre> | |||
</p> | |||
<p><em>iconv:</em> | |||
</p> | |||
<p>Remove all thousands separator chars and optionally standardise the number of decimal places. | |||
</p> | |||
<p>If ndecs is not specified in the "[NUMBER]" pattern then ndecs is taken from the current RECORD using dictionary code NDECS if DICT is available otherwise it uses ndecs from BASEFMT. | |||
</p> | |||
<p>iconv only handles a single field/value. | |||
</p> | |||
Optional prefix of "1/" or "/" causes the reciprocal of the number to be used. e.g. "1/100" or "/100" -> "0.01". | |||
<pre><code class='language-cpp'>var v1 = iconv("1,234.5678USD", "[NUMBER]"); // "1234.57USD" // Comma removed</code></pre> | |||
</td></tr> | |||
<tr><td>var=</td><td>amountunit(input0, out unitx)</td><td><p>Split amount+currency code/unit string into number and currency code/unit. | |||
</p> | |||
<p><em>var:</em> "123.45USD" | |||
</p> | |||
<p><em>Returns:</em> e.g. "123.45" | |||
</p> | |||
<em>unitx:</em> [out] e.g. "USD"</td></tr> | |||
<tr><td>var=</td><td>amountunit(input0)</td><td></td></tr> | |||
</table> | |||
<h5 id=Time/Date_Utilities>Time/Date Utilities</h5> | |||
<table class=wikitable> | |||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td>var=</td><td>timedate2()</td><td> | |||
<p><em>Returns:</em> Text of date and time in users time zone | |||
</p> | |||
<p>e.g. "2MAR2025 11:52AM" | |||
</p> | |||
Offset from UTC by TZ seconds.</td></tr> | |||
<tr><td></td><td>getdatetime(out user_date, out user_time, out system_date, out system_time, out UTC_date, out UTC_time)</td><td> | |||
<p><em>Returns:</em> User, server and UTC date and time | |||
</p> | |||
<p>User date and time is determined by adding the environment variable TZ.f(1)'s TZ offset (in seconds) to UTC date/time obtained from the operating system. | |||
</p> | |||
<p>"system" date and time is normally the same as UTC date/time and is determined by adding the environment variable TZ.f(2)'s TZ offset (in seconds) to UTC date/time obtained from the operating system. | |||
</p> | |||
</td></tr> | |||
<tr><td>var=</td><td>elapsedtimetext()</td><td><p>Get text of elapsed time since environment variable TIMESTAMP was initialised with ostimestamp() at program/thread startup. | |||
</p> | |||
TIMESTAMP can be updated using ostimestamp() as and when desired. | |||
<pre><code class='language-cpp'>var v1 = elapsedtimetext(); // e.g. "< 1ms"</code></pre> | |||
</td></tr> | |||
<tr><td>var=</td><td>elapsedtimetext(timestamp1, timestamp2)</td><td>Get text of elapsed time between two timestamps | |||
<pre><code class='language-cpp'>let v1 = elapsedtimetext(0, 0.55); // "13 hours, 12 mins" | |||
let v2 = elapsedtimetext(0, 0.001); // "1 min, 26 secs"</code></pre> | |||
</td></tr> | |||
</table> | |||
<h5 id=Terminal_I/O_Utilities>Terminal I/O Utilities</h5> | |||
</ | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td></td><td>note(msg, options, io response)</td><td><p>If stdin is a terminal, output a message to stdout and optionally pause processing and request a response from the user, otherwise set the response to "" and continue. | |||
</p> | |||
<em>options:</em> R = Response requested. C upper case response. | |||
<pre><code class='language-cpp'>var response; | |||
// call note("Enter something", "RC", response);</code></pre> | |||
< | </td></tr> | ||
<tr><td></td><td>note(msg)</td><td>Output a message to stdin and continue. | |||
< | |||
< | |||
< | |||
</ | <pre><code class='language-cpp'>call note("Hello world.");</code></pre> | ||
</ | |||
</td></tr> | |||
< | <tr><td>var=</td><td>decide(question, options = "")</td><td><p>If stdin is a terminal, pause processing, list some given options to stdout and request the user to make a choice, otherwise set the response to "" and continue. | ||
</p> | |||
< | <em>Returns:</em> The chosen option (value not number) or "" if the user cancelled.</td></tr> | ||
< | <tr><td>var=</td><td>decide(question, options, out reply, defaultreply = 1)</td><td><p>Same as decide() above but extended. | ||
</ | </p> | ||
< | <p><em>defaultreply:</em> A default option if the user presses Enter. | ||
</p> | |||
< | <em>reply:</em> [out] The option number that the user chose or "" if they cancelled.</td></tr> | ||
< | <tr><td>if</td><td>esctoexit()</td><td><p>If stdin is a terminal, check if a key has been pressed and, if so, pause execution and ask the user to confirm if they want to escape/cancel or resume processing. | ||
<tr><td>if</td><td> | |||
</p> | </p> | ||
< | <em>Returns:</em> True if a key has been pressed and the user confirms to escape/cancel. False if no key has been pressed or the user chooses to resume and not escape/cancel.</td></tr> | ||
<tr><td>var=</td><td>AT(code)</td><td><p>Get a string to control terminal operation. | |||
</p> | </p> | ||
<p> | <p><em>Returns:</em> A string to be output to the terminal in order to accomplish the desired operation. | ||
</p> | </p> | ||
<p> | <p>The terminal protocol is xterminal. | ||
</p> | </p> | ||
<p><em>code:</em> | |||
</p> | |||
< | <p>n Position the cursor at column number n | ||
</ | |||
</p> | </p> | ||
<p> | <p>0 Position the cursor at column number 0 | ||
</p> | </p> | ||
< | <p>-1 Clear the screen and home the cursor | ||
</p> | </p> | ||
<p> | <p>-2 Position the cursor at the top left home (x,y = 0,0) | ||
</p> | </p> | ||
<p> | <p>-3 Clear from the cursor at the end of screen | ||
</p> | </p> | ||
< | <p>-4 Clear from cursor to end of line | ||
</p> | </p> | ||
< | -40 Position the cursor at columnno 0 and clear to end of line</td></tr> | ||
<tr><td>var=</td><td>AT(x, y)</td><td><p>Get a terminal cursor positioning string. | |||
</p> | </p> | ||
<p><em> | <p><em>Returns:</em> A string to be output to the terminal to position the cursor at the desired screen x and y position. | ||
</p> | </p> | ||
< | The terminal protocol is xterminal.</td></tr> | ||
<tr><td>if</td><td>getcursor(out cursor, delayms = 3000, max_errors = 0)</td><td><p>Get the position of the terminal cursor. | |||
</p> | </p> | ||
<em> | <p><em>cursor:</em> [out] If stdin is a terminal, an FM delimited string containing the x and y coordinates of the current terminal cursor. | ||
</p> | |||
< | <p>If stdin is not a terminatl then an empty string "" is returned. | ||
</p> | |||
<p>The cursor additionally contains a third field which contains the delay in ms from the terminal. | |||
</p> | |||
</ | <p>The FM delimited string returned can be later passed to setcursor() to reposition the cursor back to its original position or it can be parsed and used accordingly. | ||
< | </p> | ||
<p><em>delayms:</em> Default 3000ms. The maximum time to wait for terminal response. | |||
</p> | |||
<p><em>max_errors:</em> Default is 0. If not zero, reset the number of times to error before automatically disabling getcursor(). max_errors is initialised to 3. If negative then max_errors has the the effect of disabling all future calls to getcursor(). | |||
</p> | |||
<p>In case the terminal fails to respond correctly within the required timeout, or is currently disabled due to too many failures, or has been specifically disabled then the returned "cursor" var contains a 4th field: | |||
</p> | </p> | ||
<p> | <p>TIMEOUT - The terminal failed to respond within the timeout. | ||
</p> | </p> | ||
<p>READ_ERROR - Failed to read terminal response. | |||
</p> | </p> | ||
<p> | <p>INVALID_RESPONSE - Terminal response invalid. | ||
</p> | </p> | ||
<p>SETUP_ERROR - Terminal setup failed. | |||
</p> | </p> | ||
DISABLED - Terminal is disabled due to more errors than the maximum currently set. | |||
<pre><code class=' | <pre><code class='language-cpp'>var cursor; | ||
if (isterminal() and not getcursor(cursor)) ... // cursor becomes something like "0^20^0.012345"_var</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td> | <tr><td>var=</td><td>getcursor()</td><td><p>Get the position of the terminal cursor. | ||
</p> | </p> | ||
< | For more info see the main getcursor() function above. | ||
</ | |||
<pre><code class='language-cpp'>let cursor = getcursor(); // If isterminal() then cursor becomes something like "0^20^0.012345"_var</code></pre> | |||
<pre><code class=' | </td></tr> | ||
<tr><td></td><td>setcursor(cursor_coordinates)</td><td><p>If stdin is a terminal, position the cursor at x and y as per the given coordinates. | |||
</p> | |||
<em>cursor_coordinates:</em> An FM delimited string containing the x and y coordinates of the terminal cursor as can be obtained by getcursor(). | |||
<pre><code class='language-cpp'>if (isterminal()) { | |||
let cursor = getcursor(); // Save the current cursor position. | |||
TRACE(cursor) // Show the saved cursor position. | |||
print(AT(0,0)); // Position the cursor at 0,0. | |||
setcursor(cursor); // Restore its position | |||
}</code></pre> | }</code></pre> | ||
</td></tr> | </td></tr> | ||
</table> | |||
<h5 id=Array_Utilities>Array Utilities</h5> | |||
< | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | |||
<tr><td>var=</td><td>invertarray(input, pad = false)</td><td><p>Dynamic array fields become values and vice versa | |||
/ | |||
</ | |||
<tr><td> | |||
</p> | </p> | ||
<p> | <p><em>Returns:</em> The inverted dynamic array. | ||
</p> | </p> | ||
<em>pad:</em> If true then on return, all fields will have the same number of values with superfluous trailing VMs where necessary. | |||
<pre><code class=' | <pre><code class='language-cpp'>let v1 = "a]b]c^1]2]3"_var; | ||
let v2 = invertarray(v1); // "a]1^b]2^c]3"_var</code></pre> | |||
</td></tr> | </td></tr> | ||
<tr><td> | <tr><td></td><td>sortarray(io array, fns = "", order = "")</td><td><p>Sorts fields of multivalues of dynamic arrays in parallel | ||
</p> | </p> | ||
<p> | <p><em>fns:</em> VM separated list of field numbers to sort in parallel based on the first field number | ||
</p> | </p> | ||
<em> | <p><em>order:</em> | ||
</p> | </p> | ||
<p>AL Ascending - Left Justified - Alphabetic | |||
</p> | |||
<p>DL Descending - Left Justfiied - Alphabetic | |||
</p> | |||
<p>AR Ascending - Right Justified - Numeric | |||
</p> | |||
DR Descending - Right Justified - Numeric | |||
<pre><code class=' | <pre><code class='language-cpp'>var v1 = "f1^10]20]2]1^ww]xx]yy]zz^f3^f4"_var; // fields 2 and 3 are parallel multivalues and currently unordered. | ||
sortarray(v1, "2]3"_var, "AR"); // v1 -> "f1^1]2]10]20^zz]yy]ww]xx^f3^f4"_var</code></pre> | |||
</td></tr> | </td></tr> | ||
</table> | </table> | ||
<h5 id= | <h5 id=Record_Locking>Record Locking</h5> | ||
<table class=wikitable> | <table class=wikitable> | ||
<tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | <tr> <th>Use</th> <th>Function</th> <th>Description</th> </tr> | ||
<tr><td> | <tr><td>if</td><td>lockrecord(filename, io file, keyx, recordx, waitsecs = 0, allowduplicate = false)</td><td>Does not actually return record</td></tr> | ||
<tr><td>if</td><td>lockrecord(filename, io file, keyx)</td><td></td></tr> | |||
<tr><td>if</td><td>unlockrecord(filename, io file, key)</td><td></td></tr> | |||
<tr><td>if</td><td>unlockrecord()</td><td></td></tr> | |||
</ | |||
< | |||
<tr><td> | |||
<tr><td></td><td> | |||
<tr><td> | |||
</table> | </table> | ||
< | <script> | ||
hljs.registerLanguage('cpp', function(hljs) { | |||
// Get the original C++ language definition | |||
const cpp = hljs.getLanguage('cpp'); | |||
// Your custom keywords | |||
const customKeywords = 'var let _var BASEFMT BS CVR Callable DATEFMT DQ DimIndexOutOfBounds DimUndimensioned EOL ExoAbort ExoAbortAll ExoCommon ExoEnv ExoLogoff ExoProgram ExoStop FM NL OSSLASH OSSLASH_IS_BACKSLASH PLATFORM RELOAD_req RM SM SQ ST SV TERMINATE_req TM TZ VARREF VM VarDBException VarDebug VarDivideByZero VarError VarInvalidPointer VarNonNumeric VarNonPositive VarNotImplemented VarNumOverflow VarNumUnderflow VarOutOfMemory VarUnassigned VarUnconstructed _CPP_STANDARD _OS_NAME _OS_VERSION abs append appender assigned at atan attach backtrace begin begintrans breakoff breakon c_str call chr clearcache clearfile clearselect clone close committrans connect contains convert converter cos count createString createfile createindex createstring crop cropper cut cutter data date dbcopy dbcreate dbcursorexists dbdelete dblist debug defaulter deletec deletefile deleteindex deletelist deleterecord detach dim dim_iter disconnect disconnectall dump echo empty end ends eof errput errputl exo_backtrace exo_savestack exodus_main exp extract f fcase fcaser fcount field field2 fieldstore fieldstorer first firster floor flushindex format from from_codepage from_u32tring getexecpath gethostname getlist getprecision getprocessn getprompt getxlocale hash hasinput hasnext iconv iconv_D iconv_HEX iconv_MT iconv_TX index indexn indexr initrnd input inputn insert inserter insertrecord integer into invert inverter isnum isterminal join keypressed last laster lasterror lcase lcaser len let listfiles listindex load localeAwareCompare locate locateby locatebyusing locateusing lock loge loglasterror logput logputl lower lowerer match mod move multivalued mv normalize normalizer num numberinwords oconv oconv_D oconv_HEX oconv_LRC oconv_MD oconv_MR oconv_MS oconv_MT oconv_T oconv_TX on open operator or_default ord osbread osbwrite osclose oscopy oscwd osdir osfile osflush osgetenv osinfo oslist oslistd oslistf osmkdir osmove osopen osopenx ospid osread osremove osrename osrmdir ossetenv osshell osshellread osshellwrite ossleep ostempdir ostempfile ostid ostime ostimestamp oswait oswrite output outputl outputt parse parser paste pasteall paster pasterall pop popper prefix prefixer print printl println printt printx put pwr quote quoter raise raiser range read readc readf readnext reccount remove remover renamefile replace replacer reverse reverse_range reverser rex rnd rollbacktrans round savelist search select selectkeys selectx setlasterror setprecision setprompt setxlocale shuffle shuffler sin sort sorter space split sqlexec sqrt squote squoter starts statustrans str substr substr2 substr3 substrer sum sumall swap tan tcase tcaser textchr textchrname textconvert textconverter textlen textord textwidth time to toBool toChar toDouble toInt toInt64 toString to_codepage to_u32string to_wstring trim trimboth trimfirst trimlast trimmer trimmerboth trimmerfirst trimmerlast ucase ucaser unassigned unique uniquer unlock unlockall unquote unquoter update updatekey updater updaterecord var var_base var_iter var_mid var_proxy1 var_proxy2 var_proxy3 varint_t version with write writec writef xlate dim _dim cols dim getelementref init join operator osread oswrite read redim reverser rows shuffler sort sorter split splitter write ExoProgram _ExoProgram AT ExoProgram abort abortall amountunit at calculate chain clearselect debug decide deletelist deleterecord elapsedtimetext esctoexit execute exoprog_date exoprog_number formlist fsmsg getcursor getdatetime getlist hasnext iconv invertarray libinfo lockrecord logoff makelist note oconv otherdatasetusers otherdatausers otherusers perform popselect pushselect readnext savelist select selectkeys setcursor sortarray stop timedate2 unlockrecord xlate FlowControl _FlowControl call func function gosub subr subroutine'; | |||
// Merge with original keywords | |||
const extendedKeywords = { | |||
keyword: (cpp.keywords.keyword || '') + ' ' + customKeywords, | |||
literal: cpp.keywords.literal || '', | |||
built_in: cpp.keywords.built_in || '' | |||
}; | |||
// Return the extended language definition | |||
return { | |||
name: 'C++', | |||
keywords: extendedKeywords, | |||
contains: cpp.contains, | |||
illegal: cpp.illegal, | |||
case_insensitive: cpp.case_insensitive || false | |||
}; | |||
}); | |||
hljs.highlightAll(); | |||
</script> | |||
</body> | </body> | ||
</html> | </html> |
Revision as of 20:41, 28 March 2025
Contents:
- Var Creation
- Arithmetical Operators
- Dynamic Array Creation, Access And Update
- String Creation
- String Scanning
- String Conversion - Non-Mutating - Chainable
- String Mutation - Standalone Commands
- I/O Conversion
- Dynamic Array Functions
- Dynamic Array Filters
- Dynamic Array Mutators Standalone Commands
- Dynamic Array Search
- Database Access
- Database Management
- Database File I/O
- Database Sort/Select
- OS Time/Date
- OS File I/O
- OS Directories
- OS Shell/Environment
- Output
- Input
- Math/Boolean
- I/O Conversion Codes
Var Creation
Use | Function | Description |
---|---|---|
var v1; | Create an unassigned var. Unassigned variables can be assigned conditionally in if/else statements or used as outbound arguments of function calls. A runtime error is thrown if a var is used before being assigned so silent "use before assign" bugs cannot occur.
| |
var v1 = expression; | Assign a var using a literal or an expression. Use "let" instead of "var" wherever possible as a shorthand way of writing "const var".
| |
if | v1.assigned() | Returns: True if the var is assigned, otherwise false |
if | v1.unassigned() | Returns: True if the var is unassigned, otherwise false |
var= | v2.or_default(defaultvalue) |
Returns: A copy of the var if it is assigned or the default value if it is not. Can be used to handle optional arguments in functions. defaultvalue: Cannot be unassigned.
Mutator: defaulter() |
v1.defaulter(defaultvalue) | If the var is unassigned then assign the default value to it, otherwise do nothing. defaultvalue: Cannot be unassigned.
| |
v1.swap(io v2) | Swap the contents of one var with another. Useful for stashing large strings quickly. They are moved using pointers without making copies or allocating memory. Eiher or both variables may be unassigned.
| |
var= | v2.move() | Force the contents of a var to be moved instead of copied. The moved var becomes an empty string. This allows large strings to be handled efficiently. They are moved using pointers without making copies or allocating memory. The moved var must be assigned otherwise a VarUnassigned error is thrown.
|
var= | v2.clone() | Returns a copy of the var. The cloned var may be unassigned, in which case the copy will be unassigned too.
|
var= | v1.dump() | Return a string describing internal data of a var. If the str is located on the heap then its address is given. typ: 0x01 str is available. 0x02 int is available. 0x04 dbl is available. 0x08 nan: str is not a number. 0x16 osfile: str, int and dbl have special meaning.
|
Arithmetical Operators
Use | Function | Description |
---|---|---|
if | v1.isnum() | Checks if a var is numeric. Returns: True if a var holds a double, an integer, or a string that is defined as numeric. A string is defined as numeric only if it consists of one or more digits 0-9, with an optional decimal point "." placed anywhere, with an optional + or - sign prefix, or it is the empty string "", which is defined to be zero.
|
var= | v1.num() | Returns a copy of the var if it is numeric or 0 otherwise. Returns: A guaranteed numeric var Allows working numerically with data that may be non-numeric.
|
var= | v2 + v3 | Addition Attempts to perform numeric operations on non-numeric strings will throw a runtime error VarNonNumeric. Floating point numbers are implicitly converted to strings with no more than 12 significant digits of precision. This practically eliminates all floatng point rounding errors. Internally, 0.1 + 0.2 looks like this using doubles. 0.10000000000000003 + 0.20000000000000004 -> 0.30000000000000004
|
var= | v2 - v3 | Subtraction |
var= | v2 * v3 | Multiplication |
var= | v2 / v3 | Division |
var= | v2 % v3 | Modulus |
v1 += v2 | Self addition
| |
v1 -= v2 | Self subtraction | |
v1 *= v2 | Self multiplication | |
v1 /= v2 | Self division | |
v1 %= v2 | Self modulus | |
v1 ++ | Post increment
| |
v1 -- | Post decrement
| |
++ v1 | Pre increment
| |
-- v1 | Pre decrement
|
Dynamic Array Creation, Access And Update
Use | Function | Description |
---|---|---|
var= | ""_var | The literal suffix "_var" allows dynamic arrays to be seamlessly embedded in code using a predefined set of visible equivalents of unprintable field mark characters as follows: ` = RM, Record mark ^ = FM, Field mark ] = VM, Value mark } = SM, Subvalue mark | = TM, Text mark ~ = ST, Subtext mark
|
var v1 = {"a", "b", "c" ...}; // Initializer list | Create a dynamic array var from a list. C++ constrains list elements to be all the same type: var, string, double, int, etc. but they all end up as fields of a dynamic array string.
| |
var= | v2(fieldno); v1(fieldno) = v2 | Dynamic array - field extraction, update and append: See also inserter() and remover().
Field access:
It is recommended to use "v1.f(fieldno)" syntax using a ".f(" prefix to access fields in expressions instead of plain "v1(fieldno)". The former syntax (using .f()) will always compile whereas the latter does not compile in all contexts. It will compile only if being called on a constant var or in a location which requires a var. This is due to C++ not making a clear distinction between usage on the left and right side of assignment operator =. Furthermore using plain round brackets without the leading .f can be confused with function call syntax.
|
var= | v2(fieldno, valueno); v1(fieldno, valueno) = v2 | Dynamic array - value update and append See also inserter() and remover().
Value access:
|
String Creation
Use | Function | Description |
---|---|---|
var= | v2 ^ v3 | String concatention operator ^ At least one side must be a var. "aa" ^ "22" will not compile but "aa" "22" will. Floating point numbers are implicitly converted to strings with no more than 12 significant digits of precision. This practically eliminates all floatng point rounding errors.
|
v1 ^= v2 | String self concatention ^= (append)
| |
var= | varnum.round(ndecimals = 0) | Convert a number into a string after rounding it to a given number of decimal places. Trailing zeros are not omitted. A leading "0." is shown where appropriate. 0.5 always rounds away from zero. i.e. 1.5 -> 2 and -2.5 -> -3 var: The number to be converted. ndecimals: Determines how many decimal places are shown to the right of the decimal point or, if ndecimals is negative, how many 0's to the left of it. Returns: A var containing an ASCII string of digits with a leading "-" if negative, and a decimal point "." if ndecimals is > 0.
Negative number of decimals rounds to the left of the decimal point
|
var= | var::chr(num) | Get a char given an integer 0-255. Returns: A string containing a single char 0-127 -> ASCII, 128-255 -> invalid UTF-8 which cannot be written to the database or used in many exodus string operations
|
var= | var::textchr(num) | Get a Unicode character given a Unicode Code Point (Number) Returns: A single Unicode character in UTF8 encoding.
|
var= | var::textchrname(unicode_code_point) | Get a Unicode character name unicode_code_point: 0 - 0x10FFFF. Returns: Text of the name or "" if not a valid Unicode Code Point
|
var= | strvar.str(num) | Get a string of repeated substrings. var: The substring to be repeated num: How many times to repeat the substring Returns: A string
|
var= | var::space(nspaces) | Get a string containing a given number of spaces. nspaces: The number of spaces required. Returns: A string of space chars.
|
var= | varnum.numberinwords(locale = "") |
Returns: A string representing a given number written in words instead of digits. locale: e.g. en_GB, ar_AE, el_CY, es_US, fr_FR etc or a language name e.g. "french".
|
String Scanning
Use | Function | Description |
---|---|---|
var= | strvar.at(pos1) | Get a single char from a string. pos1: First char is 1. Last char is -1. Returns: A single char if pos1 ± the length of the string, or "" if greater. Returns the first char if pos1 is 0 or (-pos1) > length.
|
var= | strvar.ord() | Get the char number of a char Returns: A number between 0 and 255. If given a string, then only the first char is considered. Equivalent to ord() in php
|
var= | strvar.textord() | Get the Unicode Code Point of a Unicode character. var: A UTF-8 string. Only the first Unicode character is considered. Returns: A number 0 to 0x10FFFF. Equivalent to ord() in python and ruby, mb_ord() php.
|
var= | strvar.len() | Get the length of a source string in number of chars Returns: A number
|
if | strvar.empty() | Checks if the var is an empty string. Returns: True if it is empty amd false if not. This is a shorthand and more expressive way of writing 'if (var == "")' or 'if (var.len() == 0)' or 'if (not var.len())' Note that 'if (var.empty())' is not exactly the same as 'if (not var)' because 'if (var("0.0")' is also defined as false. If a string can be converted to 0 then it is considered to be false. Contrast this with common scripting languages where 'if (var("0"))' is defined to be true.
|
var= | strvar.textwidth() | Count the number of output columns required for a given source string. Returns: A number Allows wide multi-column Unicode characters that occupy more than one space in a text file or terminal screen. Reduces combining characters to a single column. e.g. "e" followed by grave accent is multiple bytes but only occupies one output column. Does not properly calculate all possible combining sequences of graphemes e.g. face followed by colour
|
var= | strvar.textlen() | Count the number of Unicode code points in a source string. Returns: A number.
|
var= | strvar.fcount(sepstr) | Count the number of fields in a source string. sepstr: The separator character or substr that delimits individual fields. Returns: The count of the number of fields This is similar to "var.count(sepstr) + 1" but it returns 0 for an empty source string.
|
var= | strvar.count(sepstr) | Count the number of occurrences of a given substr in a source string. substr: The substr to count. Returns: The count of the number of sepstr found. Overlapping substrings are not counted.
|
if | strvar.starts(prefix) | Checks if a source string starts with a given prefix (substr). prefix: The substr to check for. Returns: True if the source string starts with the given prefix. Returns: False if prefix is "". DIFFERS from c++, javascript, python3. See contains() for more info.
|
if | strvar.ends(suffix) | Checks if a source string ends with a given suffix (substr). suffix: The substr to check for. Returns: True if the source string ends with given suffix. Returns: False if suffix is "". DIFFERS from c++, javascript, python3. See contains() for more info.
|
if | strvar.contains(substr) | Checks if a given substr exists in a source string. substr: The substr to check for. Returns: True if the source string starts with, ends with or contains the given substr. Returns: False if suffix is "". DIFFERS from c++, javascript, python3 Human logic: "" is not equal to "x" therefore x does not contain "". Human logic: Check each item (character) in the list for equality with what I am looking for and return success if any are equal. Programmer logic: Compare as many characters as are in the search string for presence in the list of characters and return success if there are no failures.
|
var= | strvar.index(substr, startchar1 = 1) | Find a substr in a source string. substr: The substr to search for. startchar1: The char position (1 based) to start the search at. The default is 1, the first char. Returns: The char position (1 based) that the substr is found at or 0 if not present.
|
var= | strvar.indexn(substr, occurrence) | Find the nth occurrence of a substr in a source string. substr: The string to search for. Returns: char position (1 based) or 0 if not present.
|
var= | strvar.indexr(substr, startchar1 = -1) | Find the position of substr working backwards from the end of the string towards the beginning. substr: The string to search for. Returns: The char position of the substr if found, or 0 if not. startchar1: defaults to -1 meaning start searching from the last char. Positive start1char1 counts from the beginning of the source string and negative startchar1 counts backwards from the last char.
|
var= | strvar.match(regex_str, regex_options = "") | Finds all matches of a given regular expression. Returns: Zero or more matching substrings separated by FMs. Any groups are in VMs.
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 regex_options: * 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= | strvar.match(regex) | Ditto |
var= | strvar.search(regex_str, io startchar1, regex_options = "") | Search for the first match of a regular expression. startchar1: [in] char position to start the search from startchar1: [out] char position to start the next search from Returns: The 1st match like match() regex_options as for match()
|
var= | strvar.search(regex_str) | Ditto starting from first char |
var= | strvar.search(regex, io startchar1) | Ditto given a rex |
var= | strvar.search(regex) | Ditto starting from first char. |
var= | strvar.hash(std::uint64_t modulus = 0) | Get a hash of a source string. modulus: The result is limited to [0, modulus) Returns: A 64 bit signed integer. MurmurHash3 is used.
|
String Conversion - Non-Mutating - Chainable
Use | Function | Description |
---|---|---|
var= | strvar.ucase() | Convert to upper case
|
var= | strvar.lcase() | Convert to lower case
|
var= | strvar.tcase() | Convert to title case. Returns: Original source string with the first letter of each word is capitalised.
|
var= | strvar.fcase() | Convert to folded case. Returns the source string standardised in a way to enable consistent indexing and searching, Case folding is the process of converting text to a case independent representation. https://www.w3.org/International/wiki/Case_folding Accents can be significant. As in French cote, coté, côte and côté. Case folding is not locale-dependent.
|
var= | strvar.normalize() | Replace Unicode character sequences with their standardised NFC form. Unicode normalization is the process of converting Unicode strings to a standard form, making them binary comparable and suitable for text processing and comparison. It is an important part of Unicode text processing. For example, Unicode character "é" can be represented by either a single Unicode character, which is Unicode Code Point (\u00E9" - Latin Small Letter E with Acute), or a combination of two Unicode code points i.e. the ASCII letter "e" and a combining acute accent (Unicode Code Point "\u0301"). Unicode NFC definition converts the pair of code points to the single code point. Normalization is not locale-dependent.
|
var= | strvar.invert() | Simple reversible disguising of string text. It works by treating the string as UTF8 encoded Unicode code points and inverting the first 8 bits of their Unicode Code Points. Returns: A string. invert(invert()) returns to the original text. ASCII bytes become multibyte UTF-8 so string sizes increase. Inverted characters remain on their original Unicode Code Page but are jumbled up. Non-existant Unicode Code Points may be created but UTF8 encoding remains valid.
|
var= | strvar.lower() | Reduce all types of field mark chars by one level. Convert all FM to VM, VM to SM etc. Returns: The converted string. Note that subtext ST chars are not converted because they are already the lowest level. String size remains identical.
|
var= | strvar.raise() | Increase all types of field mark chars by one level. Convert all VM to FM, SM to VM etc. Returns: The converted string. The record mark char RM is not converted because it is already the highest level. String size remains identical.
|
var= | strvar.crop() | Remove any redundant FM, VM etc. chars (Trailing FM; VM before FM etc.)
|
var= | strvar.quote() | Wrap in double quotes.
|
var= | strvar.squote() | Wrap in single quotes.
|
var= | strvar.unquote() | Remove one pair of surrounding double or single quotes.
|
var= | strvar.trim(trimchars = " ") | Remove all leading, trailing and excessive inner bytes. trimchars: The chars (bytes) to remove. The default is space.
|
var= | strvar.trimfirst(trimchars = " ") | Ditto but only leading.
|
var= | strvar.trimlast(trimchars = " ") | Ditto but only trailing.
|
var= | strvar.trimboth(trimchars = " ") | Ditto but only leading and trailing, not inner.
|
var= | strvar.first() | Get the first char of a string. Returns: A char, or "" if empty. Equivalent to var.substr(1,length) or var[1, length] in Pick OS
|
var= | strvar.last() | Get the last char of a string. Returns: A char, or "" if empty. Equivalent to var.substr(-1, 1) or var[-1, 1] in Pick OS
|
var= | strvar.first(std::size_t length) | Get the first n chars of a source string. length: The number of chars (bytes) to get. Returns: A string of up to n chars. Equivalent to var.substr(1, length) or var[1, length] in Pick OS
|
var= | strvar.last(std::size_t length) | Extract up to length trailing chars Equivalent to var.substr(-length, length) or var[-length, length] in Pick OS
|
var= | strvar.cut(length) | Remove n chars (bytes) from the source string. length: Positive to remove first n chars or negative to remove the last n chars. If the absolute value of length is >= the number of chars in the source string then all chars will be removed. Equivalent to var.substr(length) or var[1, length] = "" in Pick OS
|
var= | strvar.paste(pos1, length, replacestr) | Insert a substr at an given position after removing a given number of chars. pos1: 0 or 1 : Remove length chars from the beginning and insert at the beginning. pos1: > than the length of the source string. Insert after the last char. pos1: -1 : Remove up to length chars before inserting.Insert on or before the last char. pos1: -2 : Insert on or before the penultimate char. Equivalent to var[pos1, length] = substr in Pick OS
|
var= | strvar.paste(pos1, insertstr) | Insert text at char position without overwriting any following chars Equivalent to var[pos1, 0] = substr in Pick OS
|
var= | strvar.prefix(insertstr) | Insert text at the beginning Equivalent to var[0, 0] = substr in Pick OS
|
var= | strvar.append(appendable, ...) | Append anything at the end of a string
|
var= | strvar.pop() | Remove one trailing char. Equivalent to var[-1, 1] = "" in Pick OS
|
var= | strvar.field(delimiter, fieldnx = 1, nfieldsx = 1) | Copies one or more consecutive fields from a string given a delimiter delimiter: A Unicode character. fieldno: The first field is 1, the last field is -1. Returns: A substring
|
var= | strvar.fieldstore(separator, fieldno, nfields, replacement) | fieldstore() replaces, inserts or deletes subfields in a string. fieldno: The field number to replace or, if not 1, the field number to start at. Negative fieldno counts backwards from the last field. nfields: The number of fields to replace or, if negative, the number of fields to delete first. Can be 0 to cause simple insertion of fields. replacement: A string that is the replacement field or fields. Returns: A modified copy of the original string. There is no way to simply delete n fields because the replacement argument cannot be omitted, however one can achieve the same result by replacing n+1 fields with the n+1th field. The replacement can contain multiple fields itself. If replacing n fields and the replacement contains < n fields then the remaining fields become "". Conversely, if the replacement contains more fields than are required, they are discarded.
If nfields is 0 then insert the replacement field(s) before fieldno
If nfields is negative then delete abs(n) fields before inserting whatever fields the replacement has.
If nfields exceeds the number of fields in the input then additional empty fields are added.
|
var= | strvar.substr(pos1, length) | substr version 1. Copies a substr of length chars from a given a starting char position. Returns: A substr or "". pos1: The char position to start at. If negative then start from a position counting backwards from the last char length: The number of chars to copy. If negative then copy backwards. This reverses the order of the chars in the returned substr. Equivalent to var[start, length] in Pick OS Not Unicode friendly.
If pos1 is negative then start counting backwards from the last char
If length is negative then work backwards and return chars reversed
|
var= | strvar.b(pos1, length) | Abbreviated alias of substr version 1. |
var= | strvar.substr(pos1) | substr version 2. Copies a substr from a given char position up to the end of the source string Returns: A substr or "". pos1: The char position to start at. If negative then start from a position counting backwards from the last char Equivalent to var[pos1, 9999999] in Pick OS Partially Unicode friendly but pos1 is in chars.
|
var= | strvar.b(pos1) | Shorthand alias of substr version 2. |
var= | strvar.substr(pos1, delimiterchars, out pos2) | substr version 3. Copies a substr from a given char position up to (but excluding) any one of some given delimiter chars Returns: A substr or "". pos1: [in] The position of the first char to copy. Negative positions count backwards from the last char of the string. pos2: [out] The position of the next delimiter char, or one char position after the end of the source string if no subsequent delimiter chars are found. COL2: is a predefined variable that can be used for pos2 instead of declaring a variable. An empty string may be returned if pos1 [in] points to one of the delimiter chars or points beyond the end of the source string. Equivalent to var[pos1, ",."] in Pick OS (non-numeric length). Works with any encoding including UTF8 for the source string but the delimiter chars are bytes. Add 1 to pos2 to skip over the next delimiter char to copy the next substr Works with any encoding including UTF8 for the source string but the delimiter chars are bytes. This function is similar to std::string::find_first_of but that function only returns pos2.
|
var= | strvar.b(pos1, delimiterchars, out pos2) | Shorthand alias of substr version 3. |
var= | strvar.substr2(io pos1, out delimiterno) | substr version 4. Copies a substr from a given char position up to (but excluding) the next field mark char (RM, FM, VM, SM, TM, ST). Returns: A substr or "". pos1: [in] The position of the first char to copy. Negative positions count backwards from the last char of the string. pos1: [out] The position of the first char of the next substr after whatever field mark char is found, or one char position after the end of the source string if no subsequent field mark char is found. field_mark_no: [out] A number (1-6) indicating which of the standard field mark chars was found, or 0 if not. An empty string may be returned if the pos1 [in] points to one of the field marks or beyond the end of the source string. pos1 [out] is correctly positioned to copy the next substr. Works with any encoding including UTF8. Was called "remove" in Pick OS. The equivalent in Pick OS was the statement "Remove variable From string At column Setting flag" ... This function is valuable for high performance processing of dynamic arrays. It is notably used in "list" to print parallel columns of mixed combinations of multivalues/subvalues and text marks correctly lined up mv to mv, sv to sv, tm to tm even when particular values, subvalues and text fragments are missing from particular columns. It is similar to version 3 of substr - substr(pos1, delimiterchars, pos2) except that in this version the delimiter chars are hard coded as the standard field mark chars (RM, FM, VM, SM, TM, ST) and it returns the first char position of the next substr, not the char position of the next field mark char.
|
var= | strvar.b2(io pos1, out field_mark_no) | Shorthand alias of substr version 4. |
var= | strvar.convert(fromchars, tochars) | Convert or delete chars one for one to other chars from_chars: chars to convert. If longer than to_chars then delete those characters instead of converting them. to_chars: chars to convert to Not UTF8 compatible.
|
var= | strvar.textconvert(fromchars, tochars) | Ditto for Unicode code points.
|
var= | strvar.replace(fromstr, tostr) | Replace all occurrences of one substr with another. Case sensitive.
|
var= | strvar.replace(regex, replacement_str) | Replace substrings using a regular expression. regex: A regular expression created by rex() or _rex. replacement_str: A literal to replace all matched substrings. The replacement string can include the following special replacement patterns: Pattern Inserts $$ Inserts a "$". $& Inserts the matched substring. Equivalent to $0. $` Inserts the portion of the string that precedes the matched substring. $' Inserts the portion of the string that follows the matched substring. $n Inserts the nth (1-indexed) capturing group where n is a positive integer less than 100.
|
var= | strvar.replace(regex, SomeFunction(match_str)) | Replace substrings using a regular expression and a custom function. Allows very complex string conversions. SomeFunction: Must return a var. Can be an inline anonymous lambda function. e.g. [](auto match_str) {return match_str;} // Does nothing. match_str: Text of a single match. If regex groups are used, match_str.f(1, 1) is the whole match, match_str.f(1, 2) is the first group, etc.
|
var= | strvar.unique() | Remove duplicate fields in an FM or VM etc. separated list
|
var= | strvar.sort(delimiter = FM) | Reorder fields in an FM or VM etc. separated list in ascending order Numeric data:
Alphabetic data:
|
var= | strvar.reverse(delimiter = FM) | Reorder fields in an FM or VM etc. separated list in descending order
|
var= | strvar.shuffle(delimiter = FM) | Randomise the order of fields in an FM, VM separated list
|
var= | strvar.parse(char sepchar = ' ') | Split a delimited string with embedded quotes into a dynamic array. Can be used to process CSV data. Replaces separator chars with FM chars except inside double or single quotes and ignoring escaped quotes \" \'
|
dim= | strvar.split(delimiter = FM) | Split a delimited string into a dim array. The delimiter can be multibyte Unicode. Returns: A dim array.
|
var= | strvar.fieldstore(delimiter, fieldno, nfields, replacement) |
String Mutation - Standalone Commands
Use | Function | Description |
---|---|---|
strvar.ucaser() | Upper case All string mutators follow the same pattern as ucaser.See the non-mutating functions for details.
| |
strvar.lcaser() | ||
strvar.tcaser() | ||
strvar.fcaser() | ||
strvar.normalizer() | ||
strvar.inverter() | ||
strvar.quoter() | ||
strvar.squoter() | ||
strvar.unquoter() | ||
strvar.lowerer() | ||
strvar.raiser() | ||
strvar.cropper() | ||
strvar.trimmer(trimchars = " ") | ||
strvar.trimmerfirst(trimchars = " ") | ||
strvar.trimmerlast(trimchars = " ") | ||
strvar.trimmerboth(trimchars = " ") | ||
strvar.firster() | ||
strvar.laster() | ||
strvar.firster(std::size_t length) | ||
strvar.laster(std::size_t length) | ||
strvar.cutter(length) | ||
strvar.paster(pos1, length, insertstr) | ||
strvar.paster(pos1, insertstr) | ||
strvar.prefixer(insertstr) | ||
strvar.appender(appendable, ...) | ||
strvar.popper() | ||
strvar.fieldstorer(delimiter, fieldno, nfields, replacement) | ||
strvar.substrer(pos1, length) | ||
strvar.substrer(pos1) | ||
strvar.converter(from_chars, to_chars) | ||
strvar.textconverter(from_characters, to_characters) | ||
strvar.replacer(regex, tostr) | ||
strvar.replacer(regex, SomeFunction(match_str)) | ||
strvar.replacer(fromstr, tostr) | ||
strvar.uniquer() | ||
strvar.sorter(delimiter = FM) | ||
strvar.reverser(delimiter = FM) | ||
strvar.shuffler(delimiter = FM) | ||
strvar.parser(char sepchar = ' ') |
I/O Conversion
Use | Function | Description |
---|---|---|
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= | 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]]
|
var= | var.format(fmt_str, 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= | strvar.from_codepage(codepage) | Converts from codepage encoded text to UTF-8 encoded exodus text e.g. Codepage "CP1124" (Ukrainian). Use Linux command "iconv -l" for complete list of code pages and encodings.
|
var= | strvar.to_codepage(codepage) | Converts to codepage encoded text from exodus UTF-8 encoded text
|
Dynamic Array Functions
Use | Function | Description |
---|---|---|
var= | strvar.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.
|
var= | strvar.extract(fieldno, valueno = 0, subvalueno = 0) | Extract a specific field, value or subvalue from a dynamic array.
|
var= | strvar.update(fieldno, valueno, subvalueno, replacement) | Same as var.updater() function but returns a new string instead of updating a variable in place. |
var= | strvar.update(fieldno, valueno, replacement) | Ditto for a specific multivalue |
var= | strvar.update(fieldno, replacement) | Ditto for a specific field |
var= | strvar.insert(fieldno, valueno, subvalueno, insertion) | Same as var.inserter() function but returns a new string instead of updating a variable in place. |
var= | strvar.insert(fieldno, valueno, insertion) | Ditto for a specific multivalue |
var= | strvar.insert(fieldno, insertion) | Ditto for a specific field |
var= | strvar.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/Basic. |
Dynamic Array Filters
Use | Function | Description |
---|---|---|
var= | strvar.sum() | Sum up multiple values into one higher level
|
var= | strvar.sumall() | Sum up all levels into a single figure
|
var= | strvar.sum(delimiter) | Ditto allowing commas etc.
|
var= | strvar.mv(opcode, var2) | Binary ops (+, -, *, /) in parallel on multiple values
|
Dynamic Array Mutators Standalone Commands
Use | Function | Description |
---|---|---|
strvar.updater(fieldno, replacement) | Replace a specific field in a dynamic array
| |
strvar.updater(fieldno, valueno, replacement) | Replace a specific value of a specific field in a dynamic array.
| |
strvar.updater(fieldno, valueno, subvalueno, replacement) | Replace a specific subvalue of a specific value of a specific field in a dynamic array.
| |
strvar.inserter(fieldno, insertion) | Insert a specific field in a dynamic array, moving all other fields up.
| |
strvar.inserter(fieldno, valueno, insertion) | Ditto for a specific value in a specific field, moving all other values up.
| |
strvar.inserter(fieldno, valueno, subvalueno, insertion) | Ditto for a specific subvalue in a dynamic array, moving all other subvalues up.
| |
strvar.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.
|
Dynamic Array Search
Use | Function | Description |
---|---|---|
var= | strvar.locate(target) | locate() with only the target substr argument provided searches unordered values separated by any of the field mark chars. Returns: The field, value, subvalue etc. number if found or 0 if not. Searching for empty fields, values etc. (i.e. "") will work. Locating "" in "]yy" will return 1, in "xx]]zz" 2, and in "xx]yy]" 3, however, locating "" in "xx" will return 0 because there is conceptually no empty value in "xx". Locate "" in "" will return 1.
|
if | strvar.locate(target, out valueno) | locate() with only the target substr provided and setting returned searches unordered values separated by any type of field mark chars. Returns: True if found Setting: Field, value, subvalue etc. number if found or the max number + 1 if not. Suitable for additiom of new values
|
if | strvar.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.
|
if | strvar.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.
|
if | strvar.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 | strvar.locateusing(usingchar, target) | locate() a target substr in the whole unordered string using a given delimiter char returning true if found.
|
if | strvar.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.
|
if | strvar.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
Use | Function | Description |
---|---|---|
if | conn.connect(conninfo = "") | For all db operations, the operative var can either be a db connection created with dbconnect() or be any var and a default connection will be established on the fly. 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 default conninfo is "host=127.0.0.1 port=5432 dbname=exodus user=exodus password=somesillysecret connect_timeout=10" Setting environment variable EXO_DBTRACE=1 will cause tracing of db interface including SQL commands.
|
if | conn.attach(filenames) | "attach" causes the given filenames to be associated with a specific connection for the remainder of the session. It is not necessary to attach files before opening them. Attachments can changed by calling attach() or open() on a different connection or they can be removed by calling detach(). var: Defaults to the default connection. filenames: FM separated list. Returns: false if any filename does not exist and cannot be opened on the given connection. All filenames that can be opened on the conneciton are attached even if some cannot. Internally, attach merely opens each filename on the given connection causing them to be added to an internal cache.
|
conn.detach(filenames) | Removes files from the internal cache created by previous open() and attach() calls. var: Defaults to the default connection. filenames: FM separated list. | |
if | conn.begintrans() | Begin a db transaction.
|
if | conn.statustrans() | Check if a db transaction is in progress.
|
if | conn.rollbacktrans() | Rollback a db transaction.
|
if | conn.committrans() | Commit a db transaction. Returns: True if successfully committed or if there was no transaction in progress, otherwise false.
|
if | conn.sqlexec(sqlcmd) | Execute an sql command. Returns: True if there was no sql error otherwise lasterror() returns a detailed error message.
|
if | conn.sqlexec(sqlcmd, io response) | Execute an SQL command and capture the response. Returns: True if there was no sql error otherwise response contains a detailed error message. response: Any rows and columns returned are separated by RM and FM respectively. The first row is the column names. Recommended: Don't use sql directly unless you must to manage or configure a database.
|
conn.disconnect() | Closes db connection and frees process resources both locally and in the database server.
| |
conn.disconnectall() | Closes all connections and frees process resources both locally and in the database server(s). All connections are closed automatically when a process terminates.
| |
var= | var::lasterror() |
Returns: The last os or db error message.
|
var::loglasterror(source = "") | Log the last os or db error message. Output: to stdlog Prefixes the output with source if provided.
|
Database Management
Use | Function | Description |
---|---|---|
if | conn.dbcreate(new_dbname, old_dbname = "") | Create a named database on a particular connection. The target database cannot already exist. Optionally copies an existing database from the same connection and which cannot have any current connections.
|
if | conn.dbcopy(from_dbname, to_dbname) | Create a named database as a copy of an existing database. The target database cannot already exist. The source database must exist on the same connection and cannot have any current connections.
|
var= | conn.dblist() |
Returns: A list of available databases on a particular connection.
|
if | conn.dbdelete(dbname) | Delete (drop) a named database. The target database must exist and cannot have any current connections.
|
if | conn.createfile(filename) | Create a named db file. filenames ending with "_temp" only last until the connection is closed.
|
if | conn.renamefile(filename, newfilename) | Rename a db file.
|
var= | conn.listfiles() |
Returns: A list of all files in a database
|
if | conn.clearfile(filename) | Delete all records in a db file
|
if | conn.deletefile(filename) | Delete a db file
|
var= | conn_or_file.reccount(filename = "") |
Returns: The approx. number of records in a db file. Might return -1 if not known. Not very accurate inside transactions.
|
if | conn_or_file.flushindex(filename = "") | Calls db maintenance function for a file or all files. This doesnt actually flush any indexes but does make sure that reccount() function is reasonably accurate. Returns: True if successful otherwise false if not and with lasterror() set. |
Database File I/O
Use | Function | Description |
---|---|---|
if | file.open(dbfilename, connection = "") | Opens a db file to a var which can be used in subsequent db function calls to access a specific file using a specific connection. connection: If not specified and the filename is present in an internal cache of filenames and connections created by previous calls to open() or attach() then open() returns true. If it is not present in the cache then the default connection will be checked. Returns: True if the filename was present in the cache OR if the db connection reports that the file is present.
|
file.close() | Closes db file var Does nothing currently since database file vars consume no resources
| |
if | file.createindex(fieldname, dictfile = "") | Creates a secondary index for a given db file and field name. The fieldname must exist in a dictionary file. The default dictionary is "dict." ^ filename. Returns: False if the index cannot be created for any reason. * Index already exists * File does not exist * The dictionary file does not have a record with a key of the given field name. * The dictionary file does not exist. Default is "dict." ^ filename. * The dictionary field defines a calculated field that uses an exodus function. Using a psql function is OK.
|
var= | file|conn.listindex(file_or_filename = "", fieldname = "") | Lists secondary indexes in a database or for a db file Returns: False if the db file or fieldname are given and do not exist
|
if | file.deleteindex(fieldname) | Deletes a secondary index for a db file and field name. Returns: False if the index cannot be deleted for any reason * File does not exist * Index does not already exists
|
var= | file.lock(key) | Places a metaphorical db lock on a particular record given a db file and key. This is a advisory lock, not a physical lock, since it makes no restriction on the access or modification of data by other connections. Neither the db file nor the record key need to actually exist since a lock is just a hash of the db file name and key combined. If another connection attempts to place an identical lock on the same database it will be denied. Locks can be removed by unlock() or unlockall() or will be automatically removed at the end of a transaction or when the connection is closed. If the same process attempts to place an identical lock more than once it may be denied (if not in a transaction) or succeed but be ignored (if in a transaction). Locks can be used to avoid processing a transaction simultaneously with another connection only to have one of them fail due to mutually updating the same records. Returns:: * 0: Failure: Another connection has already placed the same lock. * "" Failure: The lock has already been placed. * 1: Success: A new lock has been placed. * 2: Success: The lock has already been placed and the connection is in a transaction.
|
if | file.unlock(key) | Removes a db lock placed by the lock function. Only locks placed on the specified connection can be removed. Locks cannot be removed while a connection is in a transaction. Returns: False if the lock is not present in a connection.
|
if | file.unlockall() | Removes all db locks placed by the lock function in the specified connection. Locks cannot be removed while in a transaction.
|
record.write(file, key) | Writes a record into a db file given a unique primary key. Either inserts a new record or updates an existing record. Returns: Nothing since writes always succeed. Throws: VarDBException if the file does not exist. Like most db functions. Any memory cached record is deleted.
| |
if | record.read(file, key) | Reads a record from a db file for a given key. file: A db filename or a var opened to a db file. key: The key of the record to be read. Returns: False if the key doesnt exist var: Contains the record if it exists or is unassigned if not. A special case of the key being "%RECORDS%" results in a fictitious "record" being returned as an FM separated list of all the keys in the db file up to a maximum size of 4Mib, sorted in natural order.
|
if | file.deleterecord(key) | Deletes a record from a db file given a key. Returns: False if the key doesnt exist Any memory cached record is deleted. deleterecord(in file), a one argument free function, is available that deletes multiple records using the currently active select list.
|
if | record.insertrecord(file, key) | Inserts a new record in a db file. Returns: False if the key already exists Any memory cached record is deleted.
|
if | record.updaterecord(file, key) | Updates an existing record in a db file. Returns: False if no record with the given key exists. Any memory cached record is deleted.
|
if | record.updatekey(key, newkey) | Updates the key of an existing record in a db file. Returns: True if successful or false if no record with the given key exists, or a record with newkey already exists Any memory cached records of either key are deleted.
|
if | strvar.readf(file, key, fieldno) | "Read field" Same as read() but only returns a specific field number from the record.
|
strvar.writef(file, key, fieldno) | "write field" Same as write() but only writes to a specific field number in the record
| |
record.writec(file, key) | "Write cache" Writes a record and key into a memory cached "db file". The actual database file is NOT updated. writec() either updates an existing cache record if the key already exists or otherwise inserts a new record into the cache. It always succeeds so no result code is returned. Neither the db file nor the record key need to actually exist in the actual db.
| |
if | record.readc(file, key) | "Read cache" Same as "read() but first reads from a memory cache. 1. Tries to read from a memory cache. Returns true if successful. 2a. Tries to read from the actual db file and returns false if unsuccessful. 2b. Writes the record and key to the memory cache and returns true. Cached db file data lives in exodus process memory and is lost when the process terminates or clearcache() is called.
|
if | dbfile.deletec(key) | Deletes a record and key from a memory cached "file". The actual database file is NOT updated. Returns: False if the key doesnt exist
|
conn.clearcache() | 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.
| |
var= | strvar.xlate(filename, fieldno, mode) | The xlate ("translate") function is similar to readf() but, when called as an exodus program member function, it can be used efficiently with exodus file dictionaries using column names and functions and multivalued data. Arguments: strvar: Used as the primary key to lookup a field in a given file and field no or field name. filename: The db file in which to look up data. If var key is multivalued then a multivalued field is returned. fieldno: Determines which field of the record is returned. * Integer returns that field number * 0 means return the key unchanged. * "" means return the whole record. mode: Determines what is returned if the record does not exist for the given key and file. * "X" returns "" * "C" returns the key unconverted.
|
Database Sort/Select
Use | Function | Description |
---|---|---|
if | dbfile.select(sort_select_command = "") | Create an active select list of keys of a database file. The select(command) function searches and orders database records for subsequent processing given an English language-like command. The primary job of a database, beyond mere storage and retrieval of information, is to allow rapid searching and ordering of information on demand. In Exodus, searching and ordering of information is known as "sort/select" and is performed by the select() function. Executing the select() function creates an "active select list" which can then be consumed by the readnext() function. dbfile: A opened database file or file name, or an open connection or an empty var for default connections. Subsequent readnext calls must use the same. sort_select_command: A natural language command using dictionary field names. The command can be blank if a dbfile or filename is given in dbfile or just a file name and all keys will be selected in undefined order. Example: "select xo_clients with type 'B' and with balance ge 100 by type by name" Option: "(R)" appended to the sort_select_command acquires the database records as well. Returns: True if any records are selected or false if none. Throws: VarDBException in case of any syntax error in the command. Active select lists created using var.select()'s member function syntax cannot be consumed by the free function form of readnext() and vice versa.
|
if | dbfile.selectkeys(keys) | Create an active select list from a string of keys. Similar to select() but creates the list directly from a var. keys: An FM separated list of keys or key^VM^valueno pairs. Returns: True if any keys are provided or false if not.
|
if | dbfile.hasnext() | Checks if a select list is active. dbfile: A file or connection var used in a prior select, selectkeys or getlist function call. Returns: True if a select list is active and false if not. If it returns true then a call to readnext() will return a database record key, otherwise not.
|
if | dbfile.readnext(out key) | Acquires and consumes one key from an active select list of database record keys. dbfile: A file or connection var used in a prior select, selectkeys or getlist function call. key: Returns the first (next) key present in an active select list or "" if no select list is active. Returns: True if a list is active and a key is available, false if not. Each call to readnext consumes one key from the list. Once all the keys in an active select list have been consumed by calls to readnext, the list becomes inactive. See select() for example code. |
if | dbfile.readnext(out key, out valueno) | Similar to readnext(key) but multivalued. If the active list was ordered by multivalued database fields then pairs of key and multivalue number will be available to the readnext function. |
if | dbfile.readnext(out record, out key, out valueno) | Similar to readnext(key) but acquires the database record as well. record: Returns the next database record from the select list assuming that the select list was created with the (R) option otherwise "" if not. key: Returns the next database record key in the select list. valueno: The multivalue number if the select list was ordered on multivalued database record fields or 1 if not.
|
dbfile.clearselect() | Deactivates an active select list. dbfile: A file or connection var used in a prior select, selectkeys or getlist function call. Returns: Nothing Has no effect if no select list is active for dbfile.
| |
if | dbfile.savelist(listname) | Stores an active select list for later retrieval. dbfile: A file or connection var used in a prior select, selectkeys or getlist function call. listname: A suitable name that will be required for later retrieval. Returns: True if saved successfully or false if there was no active list to be saved. Any existing list with the same name will be overwritten. Only the remaining unconsumed part of the active select list is saved. Saved lists are stand-alone and are not tied to specific database files although they usually hold keys related to specific files. Saved lists can be created from one file and used to access another. savelist() merely writes an FM separated string of keys as a record in the "lists" database file using the list name as the key of the record. If a saved list is very long, additional blocks of keys for the same list may be stored with keys like listname*2, listname*3 etc. Select lists saved in the lists database file may be created, deleted and listed like database records in any other database file.
|
if | dbfile.getlist(listname) | Retrieve and reactivate a saved select list. dbfile: A file or connection var to be used by subsequent readnext function calls. listname: The name of an existing list in the "lists" database file, either created by savelist or manually. Returns: True if the list was successfully retrieved and activated, or false if the list name doesnt exist. Any currently active select list is replaced. Retrieving a list does not delete it and a list can be retrieved more than once until specifically deleted.
|
if | dbfile.deletelist(listname) | Delete a saved select list. dbfile: A file or connection to the desired database. listname: The name of an existing list in the "lists" database file. Returns: True if successful or false if the list name doesnt exist.
|
OS Time/Date
Use | Function | Description |
---|---|---|
var= | var::date() | A date in internal format. Internal format is the number of whole days since pick epoch 1967-12-31 00:00:00 UTC. Dates prior to that are numbered negatively. Returns: A number. e.g. 20821 represents 2025-01-01 00:00:00 UTC for 24 hours.
|
var= | var::time() | Number of whole seconds since last 00:00:00 (UTC). Returns: A number in the range 0 - 86399 since there are 24*60*60 seconds in a day. e.g. 43200 if time is 12:00:00
|
var= | var::ostime() | Number of fractional seconds since last 00:00:00 (UTC). Returns: A floating point with approx. nanosecond resolution depending on hardware. e.g. 23343.704387955 approx. 06:29:03 UTC
|
var= | var::ostimestamp() | Number of fractional days since pick epoch 1967-12-31 00:00:00 UTC. Negative for dates before. Returns: A floating point with approx. nanosecond resolution depending on hardware. e.g. Was 20821.99998842593 around 2025-01-01 23:59:59 UTC
|
var= | vardate.ostimestamp(ostime) | Get a timestamp for a given date and time vardate: Internal date from date(), iconv("D") etc. ostime: Internal time from time(), ostime(), iconv("MT") etc.
|
var::ossleep(milliseconds) | Sleep/pause/wait milliseconds: How to long to sleep. Releases the processor if not needed for a period of time or a delay is required.
| |
var= | file_dir_list.oswait(milliseconds) | Sleep/pause/wait up for a file system event file_dir_list: An FM delimited list of os files and/or dirs to monitor. milliseconds: How long to wait. Any terminal input (e.g. a key press) will also terminate the wait. Returns: An FM array of event information is returned. See below. Multiple events may be captured and are returned in multivalues.
Returned dynamic array fields:
# Event type codes # dirpaths # filenames # d=dir, f=file Possible event type codes: * IN_CLOSE_WRITE - A file opened for writing was closed * IN_ACCESS - Data was read from file * IN_MODIFY - Data was written to file * IN_ATTRIB - File attributes changed * IN_CLOSE - File was closed (read or write) * IN_MOVED_FROM - File was moved away from watched directory * IN_MOVED_TO - File was moved into watched directory * IN_MOVE - File was moved (in or out of directory) * IN_CREATE - A file was created in the directory * IN_DELETE - A file was deleted from the directory * IN_DELETE_SELF - Directory or file under observation was deleted * IN_MOVE_SELF - Directory or file under observation was moved |
OS File I/O
Use | Function | Description |
---|---|---|
if | osfilevar.osopen(osfilename, utf8 = true) | Opens an OS file handle for random read and write operations. osfilevar: [out] Handle for subsequent osbread() and osbwrite() calls. osfilename: Path and name of an existing OS file. utf8: True (default) removes partial UTF-8 sequences from osbread() ends; false returns raw data. Returns: True if opened successfully, false if file doesn’t exist or isn’t accessible. Opens for writing if possible, otherwise read-only.
|
if | strvar.osbwrite(osfilevar, io offset) | Writes data to an OS file at a specified position. strvar: Data to write. osfilevar: Handle from osopen() or a path/filename; creates file if offset is 0 and it’s new, fails if offset isn’t 0. offset: [in/out] Start position (0-based); updated to end of written data; -1 appends. Returns: True if write succeeds, false if file isn’t accessible, updateable, or creatable.
|
if | strvar.osbread(osfilevar, io offset, length) | Reads data from an OS file at a specified position. strvar: [out] Data read. osfilevar: Handle from osopen() or a path/filename. offset: [in/out] Start position (0-based); updated to end of read data. length: Chars to read; with utf8=true (default), may return less to ensure complete UTF-8 code points. Returns: True if read succeeds, false if file doesn’t exist or isn’t accessible or offset >= file size.
|
osfile << anything << std::endl; | Use convenient << syntax to output anything to an osfile. osfile: An os path and filename or an osfilevar opened by osopen(). The file will be appended, or created if it does not already exist. osfile can be "stdout" or "stderr" to simulate cout/cerr/clog.
All standard c++ io manipulators may be used e.g. std::setw, setfill etc.
| |
var().osclose() | Removes an osfilevar handle from the internal memory cache of os file handles. This frees 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.
| |
if | strvar.oswrite(osfilename, codepage = "") | Create a complete os file from a var. strvar: The text or data to be used to create the file. osfilename: Absolute or relative path and filename to be written. Any existing os file is removed first. codepage: If specified then output is converted from UTF-8 to that codepage before being written. Otherwise no conversion is done. Returns: True if successful or false if not possible for any reason. e.g. Path is not writeable, permissions etc
|
if | strvar.osread(osfilename, codepage = "") | Read a complete os file into a var. osfilename: Absolute or relative path and filename to be read. codepage: If specified then input is converted from that codepage to UTF-8 after being read. Otherwise no conversion is done. strvar: [out] is currently set to "" in case of any failure but this is may be changed in a future release to either force var to be unassigned or to leave it untouched. To guarantee future behaviour either add a line 'xxxx.defaulter("")' or set var manually in case osread() returns false. Or use the one argument free function version of osread() which always returns "" in case of failure to read. Returns: True if successful or false if not possible for any reason. e.g. File doesnt exist, insufficient permissions etc.
|
if | osfile_or_dirname.osrename(new_dirpath_or_filepath) | Renames an os file or dir in the OS file system. The source and target must exist in the same storage device. osfile_or_dirname: Absolute or relative path and file or dir name to be renamed. new_dirpath_or_filepath: Will not overwrite an existing os file or dir. 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 | osfile_or_dirname.osmove(to_osfilename) | "Moves" an os file or dir within the os file system. Attempts osrename first, then oscopy followed by osremove original. osfile_or_dirname: Absolute or relative path and file or dir name to be moved. to_osfilename: Will not overwrite an existing os 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, storage space etc.
|
if | osfile_or_dirname.oscopy(to_osfilename) | Copies an os file or directory recursively within the os file system. osfile_or_dirname: Absolute or relative path and file or dir name to be copied. to_osfilename: Will overwrite an existing os file or merge into an existing dir. Returns: True if successful or false if not possible for any reason. e.g. Source doesnt exist or cannot be accessed, target is not writeable, permissions, storage space, etc. Uses std::filesystem::copy internally with recursive and overwrite options
|
if | osfilename.osremove() | Removes/deletes an os file from the OS file system. Will not remove directories. Use osrmdir() to remove directories osfilename: Absolute or relative path and file name to be removed. Returns: True if successful or false if not possible for any reason. e.g. Target doesnt exist, path is not writeable, permissions etc. If osfilename is an osfilevar then it is automatically closed.
|
OS Directories
Use | Function | Description |
---|---|---|
var= | dirpath.oslist(globpattern = "", mode = 0) | Get a list of os files and/or dirs. dirpath: Absolute or relative dir path. globpattern: e.g. *.conf to be appended to the dirpath or a complete path plus glob pattern e.g. /etc/ *.conf. mode: 0: default - Any regular files or dirs. 1 - Only regular os files. 2 - Only dirs. Returns: An FM delimited string containing all matching dir entries given a dir path
|
var= | dirpath.oslistf(globpattern = "") | Same as oslist for files only |
var= | dirpath.oslistd(globpattern = "") | Same as oslist for files only |
var= | osfile_or_dirpath.osinfo(mode = 0) | Get dir info about an os file or dir. Returns: A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time or "" if not a regular file or dir. mode: 0: default. 1: Must be a regular os file. 2: Must be an os dir. See also osfile() and osdir()
|
var= | osfilename.osfile() | Get dir info of an os file. osfilename: Absolute or relative path and file name. Returns: A short string containing size ^ FM ^ modified_time ^ FM ^ modified_time or "" if not a regular file. Alias for osinfo(1)
|
var= | dirpath.osdir() | Get dir info of an os dir. dirpath: Absolute or relative path and dir name. Returns: A short string containing FM ^ modified_time ^ FM ^ modified_time or "" if not a dir. Alias for osinfo(2)
|
if | dirpath.osmkdir() | Create a new os file system directory. Parent dirs wil be created if necessary. dirpath: Absolute or relative path and dir name. Returns: True if successful.
|
if | var::oscwd(newpath) | Changes the current working dir. newpath: An absolute or relative dir path and name. Returns: True if successful or false if not. e.g. Invalid dirpath, insufficient permission etc.
|
var= | var::oscwd() | Gets the current dir path and name. Returns: The current working dir path and name. e.g. "/root/exodus/cli/src/xo_test/aaa"
|
if | dirpath.osrmdir(evenifnotempty = false) | Removes (deletes) an os dir, eventifnotempty: If true any subdirs will also be removed/deleted recursively, otherwise the function will fail and return false. Returns: Returns true if successful or false if not. e.g dir doesnt exist, insufficient permission, not empty etc.
|
OS Shell/Environment
Use | Function | Description |
---|---|---|
if | command.osshell() | Execute a shell command. command: An executable command to be interpreted by the default os shell. Returns: True if the process terminates with error status 0 and false otherwise. Append "&>/dev/null" to the command to suppress terminal output.
|
if | instr.osshellread(oscmd) | Same as osshell but captures and returns stdout Returns: The stout of the shell command. Append "2>&1" to the command to capture stderr/stdlog output as well.
|
if | outstr.osshellwrite(oscmd) | Same as osshell but provides stdin to the process Returns: True if the process terminates with error status 0 and false otherwise. Append "&> somefile" to the command to suppress and/or capture output.
|
var= | var::ostempdir() | Get the tmp dir path and name. Returns: A string e.g. "/tmp/"
|
var= | var::ostempfile() | Create a temporary file Returns: The name of new temporary file e.g. "/tmp/~exoEcLj3C"
|
envvalue.ossetenv(envcode) | Set the value of an environment variable envcode: The code of the env variable to set. envvalue: The new value to set the env code to.
| |
if | envvalue.osgetenv(envcode) | Get the value of an environment variable. envcode: The code of the env variable to get or "" for all. envvalue: [out] Set to the value of the env variable if set otherwise "". If envcode is "" then envvalue is set to a dynamic array of all environment variables LIKE CODE1=VALUE1^CODE2=VALUE2... Returns: True if the envcode is set or false if not. osgetenv and ossetenv work with a per thread copy of the os process environment. This avoids multithreading issues but does not change the process environment. Child processes created by var::osshell() will not inherit any env variables set using ossetenv() so the oscommand will need to be prefixed to achieve the desired result. For the actual system environment, see "man environ". extern char **environ; // environ is a pointer to an array of pointers to char* env pairs like xxx=yyy and the last pointer in the array is nullptr.
|
var= | var::ospid() | Get the current os process id Returns: A number e.g. 663237.
|
var= | var::ostid() | Get the current os thread process id Returns: A number e.g. 663237.
|
var= | var::version() | Get the exodus library version info. Returns: The git commit details as at the time the library was built.
|
if | strvar.setxlocale(newlocalecode) | Sets the current thread's default locale. strvar: The new locale codepage code. True if successful
|
var= | var.getxlocale() | Gets the current thread's default locale. Returns: A locale codepage code string.
|
Output
Use | Function | Description |
---|---|---|
expr | strvar.outputl(prefix = "") | Output to stdout with optional prefix. Appends an NL char. Is FLUSHED, not buffered. The raw string bytes are output. No character or byte conversion is performed.
|
expr | strvar.output(prefix = "") | Same as outputl() but doesnt append an NL char and is BUFFERED, not flushed. |
expr | strvar.outputt(prefix = "") | Same as outputl() but appends a tab char instead of an NL char and is BUFFERED, not flushed. |
expr | strvar.logputl(prefix = "") | Output to stdlog with optional prefix. Appends an NL char. Is BUFFERED not flushed. Any of the six types of field mark chars present are converted to their visible versions,
|
expr | strvar.logput(prefix = "") | Same as logputl() but doesnt append an NL char. |
expr | strvar.errputl(prefix = "") | Output to stderr with optional prefix. Appends an NL char. Is FLUSHED not buffered. Any of the six types of field mark chars present are converted to their visible versions,
|
expr | strvar.errput(prefix = "") | Same as errputl() but doesnt append an NL char and is BUFFERED not flushed. |
expr | strvar.put(std::ostream& ostream1) | Output to a given stream. Is BUFFERED not flushed. The raw string bytes are output. No character or byte conversion is performed. |
var().osflush() | Flush any and all buffered output to stdout and stdlog.
|
Input
Use | Function | Description |
---|---|---|
if | var.input(prompt = "") | Returns one line of input from stdin. Returns: True if successful or false if EOF or user pressed Esc or Ctrl+X in a terminal. var: [in] The default value for terminal input and editing. Ignored if not a terminal. var: [out] Raw bytes up to but excluding the first new line char. In case of EOF or user pressed Esc or Ctrl+X in a terminal it will be changed to "". Prompt: If provided, it will be displayed on the terminal. Multibyte/UTF8 friendly.
|
expr | var.inputn(nchars) | Get raw bytes from standard input. Any new line chars are treated like any other bytes. Care must be taken to handle incomplete UTF8 byte sequences at the end of one block and the beginning of the next block. Returns: The requested number of bytes or fewer if not available. nchars: 99 : Get up to 99 bytes or fewer if not available. Caution required with UTF8. ⋅0 : Get all bytes presently available. ⋅1 : Same as keypressed(true). Deprecated. -1 : Same as keypressed(). Deprecated. |
expr | var.keypressed(wait = false) | Return the code of the current terminal key pressed. wait: Defaults to false. True means wait for a key to be pressed if not already pressed. Returns: ASCII or key code defined according to terminal protocol. Returns: "" if stdin is not a terminal. e.g. The PgDn key if pressed might return an escape sequence like "\x1b[6~" It only takes a few µsecs to return false if no key is pressed.
|
if | var().isterminal(arg = 1) | Checks if one of stdin, stdout, stderr is a terminal or a file/pipe. arg: 0 - stdin, 1 - stdout (Default), 2 - stderr. Returns: True if it is a terminal or false if it is a file or pipe. Note that if the process is at the start or end of a pipeline, then only stdin or stdout will be a terminal. The type of stdout terminal can be obtained from the TERM environment variable.
|
if | var().hasinput(milliseconds = 0) | Checks if stdin has any bytes available for input. If no bytes are immediately available, the process sleeps for up to the given number of milliseconds, returning true immediately any bytes become available or false if the period expires without any bytes becoming available. Returns: True if any bytes are available otherwise false. It only takes a few µsecs to return false if no bytes are available and no wait time has been requested. |
if | var().eof() | True if stdin is at end of file |
if | var().echo(on_off = true) | Sets terminal echo on or off. "On" causes all stdin data to be reflected to stdout if stdin is a terminal. Turning terminal echo off can be used to prevent display of confidential information. Returns: True if successful. |
var().breakon() | Install various interrupt handlers. Automatically called in program/thread initialisation by exodus_main. SIGINT - Ctrl+C -> "Interrupted. (C)ontinue (Q)uit (B)acktrace (D)ebug (A)bort ?" SIGHUP - Sets a variable "RELOAD_req" which may be handled or ignored by the program. SIGTERM - Sets a variable "TERMINATE_req" which may be handled or ignored by the program. | |
var().breakoff() | Disable keyboard interrupt. Ctrl+C becomes inactive in terminal. |
Math/Boolean
Use | Function | Description |
---|---|---|
var= | varnum.abs() | Absolute value
|
var= | varnum.pwr(exponent) | Power
|
varnum.initrnd() | Initialise the seed for rnd() Allows the stream of pseudo random numbers generated by rnd() to be reproduced. Seeded from std::chrono::high_resolution_clock::now() if the argument is 0;
| |
var= | varnum.rnd() | Pseudo random number generator Returns: a pseudo random integer between 0 and the provided maximum minus 1. Uses std::mt19937 and std::uniform_int_distribution
|
var= | varnum.exp() | Power of e
|
var= | varnum.sqrt() | Square root
|
var= | varnum.sin() | Sine of degrees
|
var= | varnum.cos() | Cosine of degrees
|
var= | varnum.tan() | Tangent of degrees
|
var= | varnum.atan() | Arctangent of degrees
|
var= | varnum.loge() | Natural logarithm Returns: Floating point ver (double)
|
var= | varnum.integer() | Truncate decimal numbers towards zero Returns: An integer var
|
var= | varnum.floor() | Truncate decimal numbers towards negative Returns: An integer var
|
var= | varnum.mod(modulus) | Modulus function Identical to C++ % operator only for positive numbers and modulus Negative denominators are considered as periodic with positiive numbers Result is between [0, modulus) if modulus is positive Result is between (modulus, 0] if modulus is negative (symmetric) Throws: VarDivideByZero if modulus is zero. Floating point works.
|
int= | var::setprecision(newprecision) | Set the maximum floating point precision. This is the number of post-decimal point digits to consider for floating point comparison and implicit conversion to strings. The default precision is 4 which is 0.0001. NUMBERS AND DIFFERENCES SMALLER THAN 0.0001 ARE TREATED AS ZERO UNLESS PRECISION IS INCREASED. newprecision: New precision between -307 and 308 inclusive. Returns: The new precision if successful or the old precision if not. Not required if using common numbers or using the explicit rounding and formatting functions to convert numbers to strings. Increasing the precision allows comparing and outputting smaller numbers but creates errors handling large numbers. Setting precision inside a perform, execute or dictionary function lasts until termination of the function. See cli/demo_precision for more info.
|
int= | var::getprecision() |
Returns: The current precision setting. See setprecision() for more info.
|
I/O Conversion Codes
Use | Function | Description |
---|---|---|
var= | vardate.oconv("D") | Date output: Convert internal date format to human readable date or calendar info in text format. Returns: Human readable date or calendar info, or the original value unconverted if non-numeric. Flags: See examples below. Any Dynamic array structure is preserved.
|
var= | strvar.iconv("D") | Date input: Convert human readable date to internal date format. Returns: Internal date or "" if the input is an invalid date. Internal date format is whole days since 1967-12-31 00:00:00 which is day 0. Any Dynamic array structure is preserved.
|
var= | vartime.oconv("MT") | Time output: Convert internal time format to human readable time e.g. "10:30:59". Returns: Human readable time or the original value unconverted if non-numeric. Conversion code (e.g. "MTHS") is "MT" + flags ... Flags: "H" - Show AM/PM otherwise 24 hour clock is used. "S" - Output seconds "2" = Ignored (used in iconv) ":" - Any other flag is used as the separator char instead of ":" Any Dynamic array structure is preserved.
|
var= | strvar.iconv("MT") | Time input: Convert human readable time (e.g. "10:30:59") to internal time format. Returns: Internal time or "" if the input is an invalid time. Internal time format is whole seconds since midnight. Accepts: Two or three groups of digits surrounded and separated by any non-digits char(s). Any Dynamic array structure is preserved.
|
var= | varnum.oconv("MD") | Number output: Convert internal numbers to external text format after rounding and optional scaling. Returns: A string or, if the value is not numeric, then no conversion is performed and the original value is returned. Conversion code (e.g. "MD20") is "MD" or "MC", 1st digit, 2nd digit, flags ... MD outputs like 123.45 (International) MC outputs like 123,45 (European) 1st digit = Decimal places to display. Also decimal places to move if 2nd digit not present and no P flag present. 2nd digit = Optional decimal places to move left if P flag not present. Flags: "P" - Preserve decimal places. Same as 2nd digit = 0; "Z" - Zero flag - return "" if zero. "X" - No conversion - return as is. "." or "," - Separate thousands depending on MD or MC. "-" means suffix negatives with "-" and positives with " " (space). "<" means wrap negatives in "<" and ">" chars. "C" means suffix negatives with "CR" and positives or zero with "DB". "D" means suffix negatives with "DB" and positives or zero with "CR". Any Dynamic array structure is preserved.
|
var= | var.oconv("LRC") | Text justification: Left, right and center. Padding and truncating. See Procrustes. e.g. "L#10", "R#10", "C#10" Useful when outputting to terminal devices where spaces are used for alignment. Dynamic array structure is preserved. ASCII only.
|
var= | strvar.oconv("T") | Text folding and justification. e.g. T#20 Useful when outputting to terminal devices where spaces are used for alignment. Splits text into multiple fixed length lines by inserting spaces and TM chars. ASCII only.
|
expr | varnum.oconv("MR") | Character replacement e.g. MRU
|
var= | strvar.oconv("HEX") | Convert the chars of a string to a string of pairs of hexadecimal digits. strvar: A string. Numbers will be converted to strings for conversion. 1.2 -> "1.2" -> hex "312E32" Dynamic array structure is not preserved. Field marks are converted to HEX as for all other bytes. The size of the output is always precisely double that of the input. This function is the exact inverse of iconv("HEX").
|
var= | strvar.iconv("HEX") | Convert a string of pairs of hexadecimal digits to a string of chars. strvar: Must be a string of only hex digits 0-9, a-f or A-F. Returns: A string if all input was hex digits otherwise "". Dynamic array structure is not preserved. Any field marks prevent conversion. This function is the exact inverse of oconv("HEX"). After prefixing a "0" to an odd sized input, the size of the output is always precisely half that of the input. |
var= | varnum.oconv("MX") | Convert number to hexadecimal string. "MX": Convert and trim leading zeros e.g. oconv(1025, "MX") -> "401" "MXn": Pad with up to n leading zeros but do not truncate. e.g. oconv(1025, "MX8") -> "00000401" "MXnT": Pad and truncate to n characters. e.g. oconv(1025, "MX2") -> "01" "n": Width. 0-9, A-G = 10 - 16. varnum: A number or dynamic array of numbers. Floating point numbers are rounded to integers before conversion. Returns: A string of hexadecimal digits or a dynamic array of the same. Elements that are not numeric are left untouched and unconverted. Dynamic array structure is preserved. Negative numbers are treated as unsigned 8 byte integers (uint64). 0 -> "00" 1 -> "01" 15 -> "0F" -1 -> "FFFF" "FFFF" "FFFF" "FFFF" (8 x "FF") This function is a near inverse of iconv("MX").
|
var= | strvar.iconv("MX") | Convert hexadecimal string to number. strvar: A string or dynamic array of up to 16 hex digits: 0-9, a-f, A-F. Returns: An integer or dynamic array of integers. Invalid elements are converted to "". Dynamic array structure is preserved. Hex strings are converted to unsigned 8 byte integers (uint64) Leading zeros are ignored. "0" -> 0 "00"-> 0 "1" -> 1 Hex "FFFFFFFFFFFFFFFF" (8 x "FF") -> -1. Hex "7FFFFFFFFFFFFFFF" is the maximum positive integer: 9223372036854775805. Hex "8000000000000000" is the maximum negative integer: -9223372036854775808. This function is the exact inverse of oconv("MX").
|
var= | varnum.oconv("MB") | Number to binary format: Convert number to strings of 1s and 0s varnum: If not numeric then no conversion is performed and the original value is returned.
|
var= | strvar.oconv("TX") | Convert dynamic arrays to standard text format. Useful for using text editors on dynamic arrays. FMs -> \n after escaping any embedded NL VMs -> literal "\" \n SMs -> literal "\\" \n etc.
|
var= | strvar.iconv("TX") | Convert standard text format to dynamic array. Reverse of oconv("TX") above. |
Contents:
Dimensioned Array Construction
Use | Function | Description |
---|---|---|
dim d1; | Create an undimensioned array of vars pending actual dimensions.
| |
dim d1(nrows, ncols = 1); | Create an array of vars with a fixed number of columns and rows. All vars are unassigned.
| |
dim d1 = d2; // Copy | Create a copy of an array.
| |
dim d1 = dim(); // Move | Save an array created elsewhere. Uses C++ "move" semantics.
| |
dim d1 = {"a", "b", "c" ...}; // Initializer list | Create an array from a list. All elements must be the same type, var, string, double, int, etc.. but all end up as vars which are a flexible type.
| |
dim d1 = v1; | Initialise all elements of an array to some single value or constant. A var, "", 0 etc.
| |
d1.redim(nrows, ncols = 1) | Resize an array to a different number of rows and columns. Existing data will be retained as far as possible. Any additional elements are unassigned. Resizing rows to 0 clears all data. Resizing cols to 0 clears all data and changes its status to "undimensioned".
| |
d1.swap(d2) | Swap one array with another. Either or both may be undimensioned.
|
Array Access
Use | Function | Description |
---|---|---|
var v1 = d1[rowno]; d1[rowno] = v1; | Access and update elements of a one dimensional array using [] brackets
| |
var v1 = d1[rowno, colno]; d1[rowno, colno] = v1; | Access and update elements of an two dimensional array using [] brackets
| |
var= | d1.rows() | Get the number of rows in the dimensioned array Returns: A count. Can be zero, indicating an empty array.
|
var= | d1.cols() | Get the number of columns in the dimensioned array Returns: A count. 0 if the array is undimensioned.
|
var= | d1.join(delimiter = FM) | Joins all elements into a single delimited string delimiter: Default is FM. Returns: A string var.
|
Array Mutation
Use | Function | Description |
---|---|---|
d1.splitter(str1, delimiter = FM) | Creates or updates the array from a given string. If the dim array is undimensioned it will be dimensioned with the number of elements that the string has fields. If the dim array is dimensioned and has more elements than there are fields in the string, the excess array elements are initialised to "". If the record has more fields than there are elements in the array, the excess fields are all left unsplit in the final element of the array. Predimensioning arrays allows the efficient reuse of arrays in loops and ensures that all elements are assigned values, useful when reading records from db files. Using undimensioned arrays allows the efficient handling of arrays with a very variable number of elements. e.g. os text files.
| |
d1.sorter(reverse = false) | Sort the elements of the array in place. reverse: Defaults to false. If true, then the order is reversed.
| |
d1.reverser() | Reverse the elements of the array in place.
| |
d1.shuffler() | Randomly shuffle the order of the elements of the array in place.
|
Array Conversion
Use | Function | Description |
---|---|---|
dim= | d1.sort(reverse = false) | Same as sorter() but returns a new array leaving the original untouched. |
dim= | d1.reverse() | Same as reverser() but returns a new array leaving the original untouched. |
dim= | d1.shuffle() | Same as shuffler() but returns a new array leaving the original untouched. |
Array DB I/O
Use | Function | Description |
---|---|---|
d1.write(dbfile, key) | Writes a db file record created from an array. Each element in the array becomes a separate field in the db record. Any redundant trailing FMs are suppressed.
| |
if | d1.read(dbfile, key) | Read a db file record into an array. Each field in the database record becomes a single element in the array. Returns: True if the record exists or false if not, If the array is predimensioned then any excess array elements are initialised to "" and any excess record fields are left unsplit in the final array element. See dim splitter for more info. If the array is not predimensioned (rows and cols = 0) then it will be dimensioned to have exactly the same number of rows as there are fields in the record being read.
|
Array OS I/O
Use | Function | Description |
---|---|---|
if | d1.oswrite(osfilename, codepage = "") | Creates an entire os text file from an array Each element of the array becomes one line in the os file delimited by \n Any existing os file is overwritten and replaced. codepage: Optional: Data is converted from UTF8 to the required codepage/encoding before output. If the conversion cannot be performed then return false. Returns: True if successful or false if not.
|
if | d1.osread(osfilename, codepage = "") | Read an entire os text file into an array. Each line in the os file, delimited by \n or \r\n, becomes a separate element in the array. Existing data in the array is lost and the array is redimensioned to the number of lines in the input data. codepage: Optional. Data will be converted from the specified codepage/encoding to UTF8 after being read. If the conversion cannot be performed then return false. Returns: True if successful or false if not. If the first \n in the file is \r\n then the whole file will be split using \r\n as delimiter.
|
Contents:
Select Lists
Use | Function | Description |
---|---|---|
if | select(sortselectclause_or_filehandle = "") | Create an active select list using a natural language sort/select command. This and all the following exoprog member functions work on an environment variable CURSOR. Identical functions are available directly on plain var objects but vars have less functionality regarding dictionaries and environment variables which are built-in to exoprog. Returns: True if an active select list was created, false otherwise. In the following examples, various environment variables like RECORD, ID and MV are used instead of declaring and using named vars. In actual code, either may be freely used.
|
if | selectkeys(keys) | Create an active select list from some given keys.
|
if | hasnext() | Check if a select list is active.
|
if | readnext(out key) | Get the next key from an active select list. key: [out] A string. Typically the key of a db file record. Returns: True if an active select list was available and the next key in the list was obtained.
|
if | readnext(out key, out valueno) | Get the next key and value number pair from an active select list. key: [out] A string. Typically the key of a db file record. valueno: [out] Is only available in select lists that have been created by sort/select commands that refer to multi-valued db dictionary fields where db records have multiple values for a specific field. In this case, a record key will appear multiple times in the select list since each multivalue is exploded for the purpose of sorting and selecting. This can be viewed as a process of "normalising" multivalues so they appear as multiple records instead of being held in a single record. Returns: True if an active select list was available and the next key in the list was obtained.
|
if | readnext(out record, out key, out valueno) | Get the next record, key and value no from an active select list. record: [out] Is only available in select lists that have been created with the final (R) option. Otherwise the record will be returned as an empty string and must be obtained using a db read() function. key: [out] A string. Typically the key of a db file record. valueno: [out] Is only available in select lists that have been created by sort/select commands that refer to multi-valued db dictionary fields where db records have multiple values for a specific field. Returns: True if an active select list was available and the next key in the list was obtained.
|
pushselect(out cursor) | Saves a pointer to the currently active select list. This allows another select list to be activated and used temporarily before the original select list is reactivated. cursor: [out] A var that can be passed later on to the popselect() function to reactivate the saved list.
| |
popselect(cursor) | Re-establish an active select list saved by pushselect(). cursor: A var created by the pushselect() function. See pushselect() for more info. | |
clearselect() | Deactivate an active select list. If no select list is active then nothing is done.
| |
if | deleterecord(filename) | Use an active select list to delete db records. Returns: False if any records could not be deleted. Contrast this function with the two argument "deleterecord(file, key)" function that deletes a single record.
|
if | deleterecord(dbfile, key) | Delete a single database file record.
|
if | savelist(listname) | Save a currently active select list under a given name. After saving, the list is no longer active and hasnext() will return false. Returns: True if an active select list was saved, false if there was no active select list. Lists are saved as a record in the "lists" file.
|
if | getlist(listname) | Reactivate a saved select list of a given name. A saved list is obtained from the "lists" file and activated. Returns: True if an active select list was successfully reactivated, otherwise false.
|
if | deletelist(listname) | Remove a saved select list by name. A saved list is deleted from the "lists" file.
|
Perform/Execute
Use | Function | Description |
---|---|---|
var= | perform(command_line) | Run an exodus program/library's main function using a command like syntax similar to that of executable programs. A "command line" is passed to the program/library in the usual COMMAND, SENTENCE and OPTIONS environment variables instead of function arguments. The program/library's main function should have zero arguments. Performing a program/library function with main arguments results in them being unassigned and in some case core dump may occur. The following environment variables are initialised on entry to the main function of the program/library. They are preserved untouched in the calling program. SENTENCE, COMMAND, OPTIONS: Initialised from the argument "command_line". RECUR0, RECUR1, RECUR2, RECUR3, RECUR4 to "". ID, RECORD, MV, DICT initialised to "". LEVEL is incremented by one. All other environment variables are shared between the caller and callee. There is essentially only one environment in any one process or thread. Any active select list is passed to the performed program/library and can be consumed by it. Conversely any active select list created by the performed program/library will be returned to the calling program. In other words, both the performing and the performed programs/libraries share a single active select list environment. This is different from execute() which gets its own private active select list, initially inactive. command_line: The first word of this argument is used as the name of the program/library to be loaded and run. command_line is used to initialise the SENTENCE, COMMAND and OPTIONS environment variables. Returns: Whatever var the program/library returns, or "" if it calls stop() or abort(()". The return value can be ignored and discarded without any compiler warning. Exodus program/libraries may also be called directly using conventional function calling syntax. To call an exodus program/library called progname using either the syntax "call progname(args...);" or "var v1 = progname(args...);" you must "#include |
var= | execute(command_line) | Run an exodus program/library's main function. Identical to perform() but any currently active select list in the calling program/library is not accessible to the executed program/library and is preserved in the calling [program as is. Any select list created by the executed library is discarded when it terminates. |
chain(command_line) | Run an exodus program/library's main function after closing the current program. Identical to perform() except that the current program closes first. | |
var= | libinfo(libname) | Check if a lib exists to be performed/executed or called. |
Program Termination
Use | Function | Description |
---|---|---|
stop(message = "") | Stop the current exodus program/library normally and return to the parent exodus program/library, or return to the operating system if none. Calling stop() in an exodus OS command line executable program, or in a function called from the same, will terminate the OS process with an error status of 0 which is generally considered to indicate success. Calling stop() in a performed or executed exodus program/library, or in a function called from the same, will terminate the program/library being executed and return to the exodus program that performed or executed it. | |
abort(message = "") | Abort the current exodus program/library abnormally and return to the parent exodus program/library, or return to the operating system if none. Similar to stop() but, if terminating the OS process, then return an error status of 1 which is generally considered to be an indication of failure. | |
abortall(message = "") | Abort the current exodus program/library abnormally and return to the parent exodus program/library, or return to the operating system if none. Similar to abort() but, if terminating the OS process, then return an error status of 2 which is generally considered to be an indication of failure. | |
logoff(message = "") |
DB File Dictionaries
Use | Function | Description |
---|---|---|
var= | calculate(dictid) | given dictid reads dictrec from DICT file and extracts from RECORD/ID or calls library called dict+DICT function dictid not const so we can mess with the library? |
var= | calculate(dictid, dictfile, id, record, mv = 0) | |
var= | xlate(filename, key, fieldno_or_name, mode) |
I/O Conversion
Use | Function | Description |
---|---|---|
var= | oconv(input, conversion) | iconv/oconv with access to exoprogram's environment variables. exoprog's iconv/oconv have the ability to call custom functions like "[funname,args...]" [NUMBER] // built-in. See doc below. [DATE] // built-in. See doc below. [DATEPERIOD] e.g. [DATEPERIOD,1] [DATEPERIOD,1,12] [DATETIME] e.g. [DATETIME,4*,DOS] [DATETIME,4*,MTS] [DATETIME,4*] [TIME2] e.g. [TIME2,MT] [TIME2,MTS] [TIME2,MTS48] |
var= | iconv(input, conversion) |
Ioconv Date/Time
Use | Function | Description |
---|---|---|
var= | iconv|oconv(var, "[DATE]") | Use iconv/oconv code "[DATE,args]" when you want date conversion to depend on the environment variable DATEFMT, particularly its American/International setting. Otherwise use ordinary "D" conversion codes directly for slightly greater performance. var: [oconv] An internal date (a number). Returns: [oconv] A readable date in text format depending on "[DATE,args]" e.g. "31 DEC 2020" "31/12/2020" "12/31/2020" var: [iconv] A date in text format as above. Returns: [iconv] An internal date (a number) or "" if the input could not be understood as a valid date. args: If args is empty then DATEFMT is used as the conversion code. If args starts with "D" then args is used as the conversion codes but any E option in DATEFMT is appended. If args does not start with "D" then args are appended to DATEFMT, a "Z" option is appended, and the result used as the conversion code. A "*" option is equivalent to a second "Z" option. If you are calling iconv/oconv in code and DATEFMT is adequate for your needs then pass it directly as a function argument e.g. 'var v1 = iconv|oconv(v2, DATEFORMAT);' instead of indirectly like 'var v1 = iconv|oconv(v2, "[DATE]");'.
|
var= | iconv|oconv(var, "[NUMBER]") | Use iconv/oconv "[NUMBER,args]" either when your numbers have currency or unit code suffixes or when you want number conversion to depend on the environment variable BASEFMT to determine thousands separator and decimal point. Otherwise use ordinary "MD" conversion codes directly for slightly greater performance. Formatting for numbers with optional currency code/unit suffix and is sensitive to the International or European setting in BASEFMT regarding use of commas or dots for thousands separators and decimal points. Primarily used for oconv() but can be used in reverse for iconv. var: A number with an optional currency code or unit suffix. e.g. "12345.67USD" Returns: A formatted number with thousands separated conventionally e.g. "12.345.67USD". iconv/oconv("[NUMBER]") oconv leaves ndecimals untouched as in the input. iconv see below. iconv/oconv("[NUMBER,2]") Specified number of decimal places iconv/oconv("[NUMBER,BASE]") Decimal places as per BASEFMT iconv/oconv("[NUMBER,*]") Leave decimal places untouched as in the input iconv/oconv("[NUMBER,X]") Leave decimal places untouched as in the input iconv/oconv("[NUMBER,2Z]") Z (suppress zero) combined with any other code for oconv results in empty output "" instead of "0.00" in case of zero input. Empty input "" gives empty output "". All leading, trailing and internal spaces are removed from the input. A trailing currency or unit code is ignored and returned on output. An exodus number is an optional leading + or - followed by one or more decimal digits 0-9 with a single optional decimal point placed anywhere. If the input is non-numeric then "" is returned and STATUS set to 2. In the case of oconv with multiple fields or values each field or value is processed separately but STATUS is set to 2 if any are non-numeric. iconv removes and oconv adds thousand separator chars. The thousands separator is "," if BASEFMT starts with "MD" or "." if it starts with "MC". oconv: Add thousands separator chars and optionally standardise the number of decimal places. Multiple numbers in fields, values, subvalues etc. can be processed in one string. Any leading + character is preserved on output. Z suppresses zeros and returns empty string "" instead. Special format "[NUMBER,ndecs,move_ndecs]": move_ndecs causes decimal point to be shifted left if positive or right if negative.
iconv: Remove all thousands separator chars and optionally standardise the number of decimal places. If ndecs is not specified in the "[NUMBER]" pattern then ndecs is taken from the current RECORD using dictionary code NDECS if DICT is available otherwise it uses ndecs from BASEFMT. iconv only handles a single field/value. Optional prefix of "1/" or "/" causes the reciprocal of the number to be used. e.g. "1/100" or "/100" -> "0.01".
|
var= | amountunit(input0, out unitx) | Split amount+currency code/unit string into number and currency code/unit. var: "123.45USD" Returns: e.g. "123.45" unitx: [out] e.g. "USD" |
var= | amountunit(input0) |
Time/Date Utilities
Use | Function | Description |
---|---|---|
var= | timedate2() |
Returns: Text of date and time in users time zone e.g. "2MAR2025 11:52AM" Offset from UTC by TZ seconds. |
getdatetime(out user_date, out user_time, out system_date, out system_time, out UTC_date, out UTC_time) |
Returns: User, server and UTC date and time User date and time is determined by adding the environment variable TZ.f(1)'s TZ offset (in seconds) to UTC date/time obtained from the operating system. "system" date and time is normally the same as UTC date/time and is determined by adding the environment variable TZ.f(2)'s TZ offset (in seconds) to UTC date/time obtained from the operating system. | |
var= | elapsedtimetext() | Get text of elapsed time since environment variable TIMESTAMP was initialised with ostimestamp() at program/thread startup. TIMESTAMP can be updated using ostimestamp() as and when desired.
|
var= | elapsedtimetext(timestamp1, timestamp2) | Get text of elapsed time between two timestamps
|
Terminal I/O Utilities
Use | Function | Description |
---|---|---|
note(msg, options, io response) | If stdin is a terminal, output a message to stdout and optionally pause processing and request a response from the user, otherwise set the response to "" and continue. options: R = Response requested. C upper case response.
| |
note(msg) | Output a message to stdin and continue.
| |
var= | decide(question, options = "") | If stdin is a terminal, pause processing, list some given options to stdout and request the user to make a choice, otherwise set the response to "" and continue. Returns: The chosen option (value not number) or "" if the user cancelled. |
var= | decide(question, options, out reply, defaultreply = 1) | Same as decide() above but extended. defaultreply: A default option if the user presses Enter. reply: [out] The option number that the user chose or "" if they cancelled. |
if | esctoexit() | If stdin is a terminal, check if a key has been pressed and, if so, pause execution and ask the user to confirm if they want to escape/cancel or resume processing. Returns: True if a key has been pressed and the user confirms to escape/cancel. False if no key has been pressed or the user chooses to resume and not escape/cancel. |
var= | AT(code) | Get a string to control terminal operation. Returns: A string to be output to the terminal in order to accomplish the desired operation. The terminal protocol is xterminal. code: n Position the cursor at column number n 0 Position the cursor at column number 0 -1 Clear the screen and home the cursor -2 Position the cursor at the top left home (x,y = 0,0) -3 Clear from the cursor at the end of screen -4 Clear from cursor to end of line -40 Position the cursor at columnno 0 and clear to end of line |
var= | AT(x, y) | Get a terminal cursor positioning string. Returns: A string to be output to the terminal to position the cursor at the desired screen x and y position. The terminal protocol is xterminal. |
if | getcursor(out cursor, delayms = 3000, max_errors = 0) | Get the position of the terminal cursor. cursor: [out] If stdin is a terminal, an FM delimited string containing the x and y coordinates of the current terminal cursor. If stdin is not a terminatl then an empty string "" is returned. The cursor additionally contains a third field which contains the delay in ms from the terminal. The FM delimited string returned can be later passed to setcursor() to reposition the cursor back to its original position or it can be parsed and used accordingly. delayms: Default 3000ms. The maximum time to wait for terminal response. max_errors: Default is 0. If not zero, reset the number of times to error before automatically disabling getcursor(). max_errors is initialised to 3. If negative then max_errors has the the effect of disabling all future calls to getcursor(). In case the terminal fails to respond correctly within the required timeout, or is currently disabled due to too many failures, or has been specifically disabled then the returned "cursor" var contains a 4th field: TIMEOUT - The terminal failed to respond within the timeout. READ_ERROR - Failed to read terminal response. INVALID_RESPONSE - Terminal response invalid. SETUP_ERROR - Terminal setup failed. DISABLED - Terminal is disabled due to more errors than the maximum currently set.
|
var= | getcursor() | Get the position of the terminal cursor. For more info see the main getcursor() function above.
|
setcursor(cursor_coordinates) | If stdin is a terminal, position the cursor at x and y as per the given coordinates. cursor_coordinates: An FM delimited string containing the x and y coordinates of the terminal cursor as can be obtained by getcursor().
|
Array Utilities
Use | Function | Description |
---|---|---|
var= | invertarray(input, pad = false) | Dynamic array fields become values and vice versa Returns: The inverted dynamic array. pad: If true then on return, all fields will have the same number of values with superfluous trailing VMs where necessary.
|
sortarray(io array, fns = "", order = "") | Sorts fields of multivalues of dynamic arrays in parallel fns: VM separated list of field numbers to sort in parallel based on the first field number order: AL Ascending - Left Justified - Alphabetic DL Descending - Left Justfiied - Alphabetic AR Ascending - Right Justified - Numeric DR Descending - Right Justified - Numeric
|
Record Locking
Use | Function | Description |
---|---|---|
if | lockrecord(filename, io file, keyx, recordx, waitsecs = 0, allowduplicate = false) | Does not actually return record |
if | lockrecord(filename, io file, keyx) | |
if | unlockrecord(filename, io file, key) | |
if | unlockrecord() |