Incorporate these files into Icon programs using the $include
preprocessor macro:
- This may be readily achieved by including this directory
in your
LPATH
environment variable. - This may be require less preparation and updating than would translating
to "ucode" and using the
link
directive.
development repo: https://chiselapp.com/user/eschen42/repository/aceincl
mirror and release repo: https://github.com/eschen42/aceincl
Except where otherwise noted, this code is created (with others' inspiration) by Art Eschenlauer (OrcID 0000-0002-2882-0508).
The usual Icon value type abbreviations apply on this page:
- cset(
c
) - file(
f
) - integer(
i
) - list(
L
) - null(
n
) - procedure(
p
) - real(
r
) - string(
s
) - co-expression(
C
) - record types(
R
) - set(
S
) - table(
T
)
with one addition:
- VNom(
V
)- see
vnom.icn
below.
- see
-
Testing program
runt.icn
and working examples- The
runt.icn
runs a selection of, or all, test programs in specified directories to validate their outputs: - In the
tests
directory are "working examples" of how to use the files in this directory. - In the
sl3tests
directory are sqlite3-dependent "working examples".
- The
-
- Procedure to coordinate passing data from one process to another via a file-based buffer.
-
baton_main.icn
- Procedures to use facilitate creation of processes that exchange data with current process via batons.
baton_main
Procedure for creating executable to interface between a batons and a stream.baton_flatware
Procedure to access batons without translating an additional executable.baton_crowbar
Procedure to handle programming error by terminating program exection whenbaton_flatware
is not linked.
-
- Invoke process using batons to exchange input and output
-
- Procedures to produce logical lines or fields from formatted data files.
-
- Procedures to manipulate files, directores, and their paths.
-
- Procedures to transform data structures into includable Icon declarations and statements.
-
- Procedures to parse and generate JSON, by Carl Sturtivant and Gregg Townsend.
-
- Procedures to suspend lists combining sequences.
-
- In-place delete or insert of a pseudo-section of L.
-
- Procedures to embed RPN-based (Forth-like) interpreter into Icon programs; can also be run in REPL.
-
- Support computing summary statistics for normally distributed data using "Welford's online algorithm".
-
selectRecordFromListByField.icn
- Procedure to produce records from a list of records (or a list of tables), matching specified criteria.
-
- Interface to exchange commands and results with
sqlite3
.
- Interface to exchange commands and results with
-
- "Nominal vector", i.e., a list whose elements may be accessed by rank (index) or name (key).
- This construct is supported by a Lua-inspired metatable.
-
- Procedure to produce a value that can be read globally but can be reset only by the co-expression that set it it initially.
Working examples, named test_*.icn
, are in the tests
directory:
test_*.std
captures the corresponding test's expected output.icon runt.icn tests
will run the tests and compare the results to their expected output.- usage:
icon runt.icn [--continue] [--verbose] [<zero or more dirs or test names>]
- Tests are not run unless an
.icn
file and a.std
file share exactly the same name; names must begin withtest_
. - Optional arguments may be:
- paths to directories in which to locate tests, or
- names of tests to run, without
test_
prefix;- if any nonexistent paths are present then only the named tests will be run.
- By default, tests are located and run in the current working directory.
- Otherwise, tests are located and run in the specified directory or directories.
- As usual, LPATH is required for
$include
dirctives to succeed.
- Use the
--continue
option to run all tests regardless of whether any fail. - Use the
--verbose
option to show both the expected output from the.std
file and the actual output produced by the test program.
- Tests are not run unless an
baton.icn
provides a serverless way to pass data between
processes using five files, one for the message transmitted and the others
for coordinating transfer.
Note well that nothing precludes locating the baton files on a remote filesystem to coordinate processes running on different nodes or operating systems.
Procedure baton
provides four distinct modes of action:
action buffer file Cwarn wait_secs
baton("write", buffer:s, file:f|C, warn:C, wait_secs:N) : s|fail
baton("read", buffer:s, file:f|C, warn:C, wait_secs:N) : s|fail
baton("close", buffer:s, file:f|C, warn:C, wait_secs:N) : s|fail
baton("select", buffer:s, file:n|x, warn:C, wait_secs:N) : n|fail
baton("clean", buffer:s, file:n|x, warn:C ) : fail
Usages:
baton("write", buffer:s, file:f|C, warn:n|C, wait_secs:N) : s|fail
baton("close", buffer:s, file:f|C, warn:n|C, wait_secs:N) : s|fail
"write": Copy input from file
to file named by buffer
"close": Send EOT (ASCII character 4) to file named by buffer
file
is optional; default is&input
file:f
is a file open for readingfile:C
is a co-expression producing string values,- e.g.:
file := create !&input
file:C
is permitted to produce values containing multiple newlines
- e.g.:
file
may best be&null
foraction == "close"
buffer
argument is requiredwarn
argument may be&null
or a co-expression that can handle transmitted warning strings, e.g.:create repeat @&source | @main # silence; is the default behavior
create repeat write(&errout, \@&source | "") | @main
wait_secs
argument may be&null
, integer, or real, specifying approximate number of seconds to wait for initial handshake- produces an error string only if unsuccessful (fails otherwise)
baton("read", buffer:s, file:f|C, warn:n|C, wait_secs:N) : s|fail
Copy output from file named by buffer
to file
file
is optional; default is&output
file:f
is a file open for writingfile:C
is a co-expression receiving string values,- e.g.:
@(file := create while write(&output, @&source))
- e.g.:
buffer
,warn
, andwait_secs
arguments as for "write".- produces an error string only if unsuccessful (fails otherwise)
baton("select", buffer:s, file:n|x, warn:n|C, wait_secs:N) : n|fail
- produces
&null
only when data are available for reading from buffer buffer
andwarn
arguments as for "write".- wait (approximately)
wait_secs
seconds for success. file
is ignored even if not&null
- This action is experimental and may be of no practical value.
baton("clean", buffer:s, file:n|x, warn:n|C) : fail
- cleans up coordination files that may be left behind when "write" or "read" is interrupted before they can delete these files
buffer
andwarn
arguments as abovefile
is ignored even if not&null
See "case two" in the example under baton_flatware
below for
a demonstration of use of "read" and "write" from within a program.
See below for notes regarding usage of these procedures.
This procedure provides an implementation for main
for a standalone
executable to interface a baton to or from a stream, as described below.
- Exit code 0 indicates ordinary termination
- Otherwise, exit code is 1.
Note that Icon does not catch SIGPIPE
.
Consequently, if baton("read",...)
is feeding a pipe,
and if the downstream process dies,
then the Icon process running baton("read",...)
will die as well!
This is the motivation for running an output pipe from a separate process
and coordiating data-passing using a baton.
Usage of baton program
baton read bufferfile [handshake_timeout_secs]
baton write bufferfile [handshake_timeout_secs]
baton close bufferfile [handshake_timeout_secs]
baton select bufferfile [success_timeout_secs]
baton clean bufferfile
'write' reads from standard input into bufferfile in coordination with
'read', which copies from bufferfile to standard output.
When supplied, handshake_timeout_secs specifies number of seconds
to wait for initial handshake.
'close' explicitly initiates
shutdown of 'baton read' when used independently of 'baton write';
it is NOT required when 'baton write' is used.
'select' returns a zero exit code only when data are
available to read.
When supplied, handshake_timeout_secs specifies number of seconds
to wait for success.
It is possible that this is not useful unless 'baton write' is not
paired with 'baton read'.
'clean' removes coordination files that may remain when
read or write experiences abnormal termination.
Building baton program (if desired)
You may create a file baton_main_build.icn
containing:
$define baton_main main
$include "baton_main.icn"
Then translate:
icont -u -o baton baton_main_build.icn # on Unix-like OSs
icont -u -o baton.exe baton_main_build.icn # on MS Windows
The resulting program can be used as in the following (trivial) example:
$include "fileDirIo.icn"
procedure main()
# Pass one line of data from output pipe to input pipe.
fsend := open("baton write buffer", "wp")
frecv := open("baton read buffer", "rp")
write(fsend, "hello world from " || &progname)
write(read(frecv))
close(fsend)
close(frecv)
end
However, the ordinary way to use this program is to have "baton write"
stream one baton to the standard input of a process and to have "baton read"
stream the standard output of a process to another baton,
as demonstrated in the example for baton_flatware
below.
This procedure facilitates creation of a "multi-entry binary"; specifically, it eliminates the necessity to create a distinct executable to use batons outside of the parent program's process.
See tests/test_baton_main.icn
for examples.
This procedure diverts the control to baton_main(args)
when:
*args = 3
args[1]
is"baton_main"
args[2]
is"read" | "write" | "select" | "clean"
args[3]
is a string (to name a buffer)
Otherwise, the procedure fails.
This allows an executable program to have two behaviors:
- Its "ordinary" behavior when not diverted to
baton_main
- The
baton_main
behavior, invoked by the "parent" instance of the executable.
The following exemple demonstrates invocation of baton_flatware(args)
from within main(args)
:
# example usage of baton_flatware; requires that sqlite3 is on PATH
$define BATON_TRACE if &fail then write
$define BATON_CWARN create repeat write(&errout, \@&source | "") | @&main
$define BATON_TIMEOUT_MS 200
$include "baton_main.icn" # implies include baton.icn and fileDirIo.icn
$define PLUGH "A hollow voice says \"plugh\"."
$define PLOVER "end of SQLite result list"
procedure main(args)
local baton_self # string to invoke child "flatware" via baton_flatware
local chunk # temporary holder for a string of data
local status # exit status of child process, captured from Cexit
local Cexit # co-expression producing exit code if child "flatware"
# has terminated; producing &null otherwise
local Crecv # co-expression to receive input from child "flatware"
local Csend # co-expression to send output to child "flatware"
# handle calls to baton_main; does not return; kind of like a fork...
baton_flatware(args)
# path to self is platform-specific; this has been minimally tested!
baton_self := &progname
if not (&features == "MS Windows" | path_separator() == baton_self[1])
then baton_self := "." || path_separator() || &progname
baton_self ||:= " baton_main "
# Exchange data with external process via batons.
# Launch process in background; if process dies, no SIGPIPE
# can reach us (see: https://unix.stackexchange.com/a/84828)
# which is good because Icon does not catch signals.
Cexit :=
system_nowait(
baton_self || " read buf_in | " ||
"sqlite3 -batch -json | " ||
baton_self || " write buf_out"
)
# Set up baton for standard output of process
Crecv := create baton("read", "buf_out", &main)
# Set up baton for standard input of process
# and activate baton so that it can receive a value
@( Csend := create baton("write", "buf_in", &main) )
# Send a command to SQLite, producing output
".show" @Csend
# Send a query to SQLite, not producing any output
"select 'plover' where 1 = 0;" @Csend
# Send a query to SQLite to mark end-of-output
"select 'plugh' as xyzzy;" @Csend
# Retrieve lines until end-of-output mark (or closed pipe)
while chunk := @Crecv
do
if chunk == "[{\"xyzzy\":\"plugh\"}]"
then break write(PLUGH)
else write(chunk)
# Send "[]" to SQLite to mark end-of-output
".print '[]'" @Csend
# Retrieve lines until end-of-output mark (or closed pipe)
while chunk := @Crecv
do
if chunk == "[]"
then break write(PLOVER)
else write(chunk)
# Close the output baton (has same effect as 'baton close')
char(4) @Csend
# Close the input baton to clean up coordination files.
@Crecv
# Wait (briefly) for process exit and retrieve exit code.
every 1 to 5
do {
write("SQLite exit code: ", image(status := @Cexit))
if /status
then delay(BATON_TIMEOUT_MS)
else break
}
end
You will find another example under sl3.icn
.
Kill the program when baton_flatware
is not linked (which is a
programming error) to avert "infinite forking" that consumes all slots
in the process table.
This approach is imperfect since one may circumvent it with
invocable all
or with
invocable baton_flatware
baton_system(basename, cmd, inC, outC) : BatonSys
(a VNom extension)
- This procedure is a VNom initializer producing a VNom that implements
BatonSys message handling; i.e., BatonSys extends VNom (from
vnom.icn
) such that BatonSys-specific messages are invoked via the vmsg procedure. - This procedure is supported by
VNomBatonSysCtor
andVNomBatonSysMesg
, neither of which need to be invoked directly. The BatonSys-specific VNom messages (handled byVNomBatonSysMesg
, as described below) are:create
send
receive
dispose
select
VNomBatonSysCtor(Original:T, Type:s, ID:s, Metatable:T, Disposable:n|x, Kind:s):BatonSys
(a VNom extension)
- This procedure provides the implementation for
baton_system
initialiaztion. VNom initializer producing a VNom that implements BatonSys message handling; i.e., BatonSys extends VNom (fromvnom.icn
) such that BatonSys-specific messages are invoked via the vmsg procedure. Original:T
- If not null, a plain table, or another VNom (or extension of VNom), from which values are copied.
Type:s
- "Type" property, if
&null
then Type of\Original
; default isKind || typecount
.
- "Type" property, if
ID:s
- "ID" property; this is required (in contrast to VNom, which synthesizes a default).
Metatable:T
- Table that maps message strings to message-handler procedures;
when
&null
, the metatable from Original is assigned, if available; otherwise, a default metatable is created; in any event, the BatonSys messages. are added to the metatable.
- Table that maps message strings to message-handler procedures;
when
Disposable:n?
- Disposability flag; when not
&null
, a "Disposable" property is added and set to "yes", to be switched to "done" when the VNom has been disposed.
- Disposability flag; when not
Kind:s
"Kind" property, defaults to "BatonSys".
VNomBatonSysMesg(args[]):x
- This procedure is a VNom message-handler extension for BatonSys messages.
- Extensions to VNom messages:
vmsg(V, "create", s, C, C ) : C # CreateProcess, producing result
# from system_nowait
# arg1: command string
# arg2: C providing stdin
# arg3: C receiving stdout
vmsg(V, "send", s ) : n # Send s to stdin of child pro-
# cess from system_nowait
vmsg(V, "receive" ) : s # Receive s from stdout of child
# process; not assignable
vmsg(V, "select" ) : n # Produce n if input is ever
# pending from stdout of child
# TODO determine when it's TRUE
vmsg(V, "dispose" ) : i # Terminate child process; produ-
# cing exit code
- Extensions to VNom state:
buf_in - base filename for baton handling data to child stdin
buf_out - base filename for baton handling data from child stdout
cmd - system_nowait command string, minus baton pipes
status - "running" | "closed" | &null (disposed)
whichme - path to current executable
Cexit - co-expression producing child's exit code; otherwise, &null
Csend - co-expression providing stdin to child
Crecv - co-expression receiving stdin from child
Procedures to produce logical lines or fields from formatted data files.
- See
vnom.icn
for format of list items returned bygetCSV
andgetTabular
.
Produce record holding two co-expression factories:
lines
=== csvLines | tabularLines | iniLinesfields
=== csvFields | tabularFields | iniFields
Produce a FieldedData
record for filePath
corresponding to format.
format == "csv"
- a comma-separated values fileformat == "tabular"
- a tab-separated values fileformat == "ini"
- a Microsoft Windows INI formatted file
Factory for a co-expression producing logical lines of a CSV file f
.
- This is actually a synonym for
tabularLines
.
Factory for a co-expression producing fields from a logical line of a CSV file:
line
is a logical line produced bycsvLines
.sep
is the field separator; if omitted or&null
, comma is used.
Produce L of VNom from a CSV file
typeName
: the string produced byvmsg(V, "type")
, scsvPath
: the path to the CSV data file, scolL
: (optional) columns to select, L of isep
: (optional) separators, c; default: commadflt
: (optional) default value for VNom fields, x
Factory for a co-expression producing logical lines of a tabular file f
.
Factory for a co-expression producing fields from a logical line of a tabular file:
line
is a logical line produced bytabularLines
.sep
is the field separator; if omitted or&null
, TAB is used.
Produce L of VNom from a tabular file
typeName
: the string produced byvmsg(V, "type")
, stsvPath
: the path to the tabular data file, scolL
: (optional) columns to select, L of isep
: (optional) separators, c; default: TABdflt
: (optional) default value for VNom fields, x
Factory for a co-expression producing logical lines of an INI file f
.
Factory for a co-expression producing fields from a logical line of an INI file
line
is a logical line produced byiniLines
.
Parse an INI file at path ini
into a table of tables
Procedures to manipulate files, directores, and their paths.
Generate modified fn
, substituting new_ex
for old_ex
- If
new_ex
is "", the trailing period will be removed.
Produce platform-specific command separator
Generate name(s) that name a directory
Produce platform-specific path to the HOME directory, if available
Generate root, subdirectories, filename for a directory path
Generate paths from sequences of results of exprs
exprs
are comma-separated and used to create a list of co-expressions.
Generate location then name from path qualname
Produce platform-specific path separator
Generate location then name of program file.
Produce platform-specific path to the current directory
Run command, but do not wait for exit, producing result C
command
, command to be passed to shelltitle
, title for background window, optional, for MS Windows@result
produces&null
before command exits; exit code, after termination.- Please invoke
@result
till it does not produce&null
to delete the file that holds the exit code.
- Please invoke
Produce platform-specific path to a tmp directory
Generate platform-specific temporary file path(s)
suffix
, suffix appended to path; default:"tmp"
len
, number of random digits inserted before suffix; default:8
dir
, path to a directory; default:tmppath()
Generate full path(s) for filename on PATH
- on Unix, results are first (or all when
\all
) forwhich -a
. - on Windows, results are first (or all when
\all
) forwhere
.
Procedures to transform data structures into includable Icon declarations and statements.
- Produce Icon code to reproduce value
x
, if possible
- Write Icon code to reproduce values in list
x
tof
if it is a file; otherwise to&errout
andf
is discarded.
Procedures to parse and generate JSON, adapted (to support VNom
tables, see vnom.icn
below) from work by
Carl Sturtivant (OrcID 0000-0003-1528-4504)
and Gregg Townsend.
Takes data (list|table|integer|string|real|&null
) and produces a JSON
string defining that data. See http://json.org/. It is an error
to use another type, even in substructures. To serialize other types,
see codeobj.icn
from the Icon Programming Library.
Works with Icon data structures constructed from tables and lists containing nulls, strings, integers and reals as well as values of those last four types. Note:
- Icon table default values are ignored on conversion to JSON.
- Circular structures are not supported.
- Lists or tables used more than once in a structure will be duplicated in the JSON generated.
- When the
VNOM
preprocessor symbol is defined, the order of the keys is preserved (otherwise keys are ordered alphabetically).
Takes a JSON string and produces the corresponding Icon value or structure. Tables in such a structure will have default values of null. JSON text containing true and false (booleans) will have those converted to the strings "true" and "false" respectively.
- When the
VNOM
preprocessor symbol is defined, the order of the keys of JSON hashes/objects is preserved because aVNom
is used rather than a simple Icon table (otherwise keys are ordered alphabetically).
Although these routines should work with UTF-8 strings, nothing is included here to ensure that UTF-8 is correctly supported.
The characters of an Icon string are an extension of ASCII codes to 256 characters obtained by including the additional characters defined by ISO/IEC 8859-1 (also called a Latin-1 string), which are the first 256 unicode code points. However here, those characters are encoded each as a single Icon character.
Quoted strings inside JSON text are always UTF-8 encoded, with all control characters escaped using the \uxxxx convention, where xxxx is a string of four hexadecimal digits indicating a unicode code point.
Note that (by design) conversion may not be completely symmetric when
the VNOM preprocessor symbol is defined before this file is included.
If VNOM is defined, then a "VNom table" (call it x
) will have a "Kind" of
"VNom", i.e.,
"VNom" == x[x, "Kind"]
"VNom" == vmsg(x, "kind")
The advantage of a VNom over an ordinary Icon table is that it preserves the order of the member keys in a JSON object (rather than reordering them alphabetically).
Procedures to suspend lists combining sequences.
- Suspend lists combining infinite sequences. LiP:
- evaluates in a "breadth first" manner to ensure that all values of finite sequences will eventually be produced even when some sequences are infinite.
- uses memoization to avert the need to evaluate each sequence more than once.
- uses wora(LiP) to determine whether to use LiFiniteP (the default) or nAltP to combine memoized results.
- requires that
wora.icn
be previously included, for wora(id)
- Recursively suspend lists combining finite seqs;
- does not enforce "breadth first" evaluation.
- Recurrently suspend lists combining finite seqs;
- does not enforce "breadth first" evaluation.
In-place delete or insert of a pseudo-section of L.
Delete indexes i
to j
from L
(in-place), producing L
Insert list Lins
into L
(in-place) before index i
, producing L
- use i = 0 when L is empty
Generate indices where x
appears in L
Procedures to embed RPN-based (Forth-like) interpreter into Icon programs; can also be run in a REPL.
This file may be used to embed RPN-scripted access to Icon procedures and operators, in a manner reminiscent of Forth.
- This needs full and user-friendly documentation, which deserves its own file.
- Words may be composed from existing words.
- Words could be composed to conform to Forth standards...
- New word definitions replace former definitions.
- There is no
forget
yet. - The colon in a definition goes after the string naming the new word, e.g.,
"hi" : "hello world" . cr ;
See the following to get started:
tests/test_rpn.icn
tests/test_rpn.rpn
rpn_core.rpn
rpn.icn
This work was inspired by Steve Wampler's "A (small) RPN calculator" example https://sourceforge.net/p/unicon/mailman/message/6144067/ and R. G. Loeliger's Threaded interprtive languages (1981, BYTE Books) https://lccn.loc.gov/80019392.
To run this "stand-alone" in a "read, evaluate, print, loop" (REPL),
I put the following in ~/bin/rpn
:
LPATH=~/src/aceincl icon -P '
# run rpn.icn
# Define procedure main(args) that imports:
# - ~/.rpn/*.rpn
# - any .rpn files specified as arguments
# and executes standard input if either:
# - *args = 0
# - "-" == !args
$define RPN_MAIN 1
$include "rpn.icn"
# required by rpn.icn
$include "fileDirIo.icn"
'
then I made it executable:
chmod +x ~/bin/rpn
so that I can run it with:
~/bin/rpn
If you have rlwrap (https://github.com/hanslub42/rlwrap) installed (or built), and you change the first line above to
LPATH=~/src/aceincl rlwrap icon -P '
then you can get proper interpretation of the arrow keys in the REPL loop.
These procedures support computing summary statistics for normally distributed data using "Welford's online algorithm", porting code from Wikipedia.
ref: https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_online_algorithm
- record accumulating online results without persisting raw data
- record of statistical results extracted from
welford_running
- produce an initialized
welford_running
record
- produce an updated
welford_running
recordW
awelford_running
recordx
the next value to add to the record
- produce
welford_cumulative
record summarizing normal statistics for the series of x provided towelford_add
welford_running
awelford_running
record updated bywelford_add
Procedure to produce records from a list of records (or a list of tables), matching specified criteria.
- This is currently NOT coded efficiently, so only use it on small lists or tables.
- Also, at present, the co-expression is refreshed and (as an apparent consequence) leaks memory.
- For a better way to do this, see fix_selectRecordFromListByField.icn, which I will eventually apply here instead.
- Even so, there is yet the need to incorporate a "fuzzy binary search" to speed things up immensely for larger lists or tables.
- Produce matching records (or tables)
X
- from list
Lfrom
(type(Lfrom[i]) == "record" | "table"
) - where
X[sField] @ Ctest
succeeds
- from list
- Produce matching records (or tables)
X
- from list
Lfrom
(type(Lfrom[i]) == "record" | "table"
) - where this succeeds:
L := []; every put(L, X[!sFieldL]); L @ Ctest
- from list
Interface to exchange commands and results with sqlite3
, which must be on PATH.
sl3.icn
defines an interface to the sqlite3 command line interface,
which is described in detail at https://sqlite.org/cli.html
No generalized process interface exists in the basic Icon implementation
and library that would allow access to both the standard input and the
standard output of a child process, this interface uses the baton
inteface via baton.icn
, baton_main.icn
, and batonsys.icn
to hand
data back and forth between Icon and sqlite3 without resorting to such
platform-specific devices such as FIFOs or named-pipes.
By default, baton files are created in the directory whose path is
returned by tmpdir()
in fileDirIo.icn
. To override
this behavior, assign a path string to the global variable
g_sl3_tmpdir
which is defined in sl3.icn
For convenience, if the preprocessor symbol sl3
is not defined by the
preprocessor before sl3.icn
is included, then it is defined as sl3Msg
:
$ifndef sl3
$define sl3msg sl3
$endif
sl3new(path, options, errC) : VNom
(a SQLite3 connection)
- This is a synonym for
sl3(&null, "open", path, options, errC)
- See below for details of the "open" message.
sl3Msg(conn:SQLite3, message, arg1, arg2, arg3) : x
- takes as its first argument, a "database connection" that is a
"SQLite3" VNom (or
&null
when the message is "open"). - takes as its second argument an operation message string, which is:
- either one of
"open" | "prepare" | "fetch" | "close"
- or "the default key", a prepared statement or SQL string.
- either one of
- The value produced depends on the signature invoked.
The signatures of sl3 messages are as follows:
sl3(&null, "open", path, options, errC ) : VNom (a SQLite3 conn)
sl3(conn, "prepare", stmt ) : VNom (a prep_stmt)
sl3(conn, stmt:s, parmL:L, errC ) : n|fail
sl3(conn, prep_stmt:V, &null|x, errC ) : n|fail
sl3(conn, "fetch" ) : VNom (a result row)
sl3(conn, "close", errC ) : &null
You can find some examples with (modest) error handling in sl3tests/test_sl3_02.icn
.
In lieu of a detailed description of each signature (which may be found the header of sl3.icn
), here is a working example, which emphasizes several ways of passing parameters to prepared statements.
$include "fileDirIo.icn"
$include "vnom.icn"
$include "jsonparse.icn"
$include "sl3.icn"
$define ERR_OFFSET [0, -1][2]
$define DISPOSE_ON_ERROR if write(trace_reset(err_off)) then dispose(cnxn, errC)
global g_exit_code
procedure main(args)
local cnxn, path_s, options_s, errC, chunk, err_off, prep_stmt
# don't forget this or infinite forks will fill the process space...
baton_flatware(args)
# set exit code for premature termination
g_exit_code := -1
# create co-expression to handle error strings
@(errC := create while write(@ &source))
# open sqlite and establish baton
path_s := ":memory:"
options_s := &null
# open database connection
# signature: sl3new(path, options, errC) : VNomSQLite3
# === sl3(connection, "open", path, options, errC) : VNomSQLite3
if not (cnxn := sl3new(path_s, options_s, errC))
then stop("failed to open connection")
err_off := ERR_OFFSET
# execute SQL immediately, without parameters
# signature: sl3(conn, stmt:s, &null, errC) : n|fail
sl3(cnxn,
"CREATE TABLE invent(desc text, number integer, amount float);", , errC)
DISPOSE_ON_ERROR
# execute dot command immediately
sl3(cnxn, ".dump", , errC)
DISPOSE_ON_ERROR
# show result lines, which are not rows from a SQL query
every chunk := sl3(cnxn, "fetch") do write_ordered_values(chunk)
# initialize first prepared statement, which has named parameters
# signature: sl3(conn, "prepare", stmt) : VNom (a prep_stmt)
prep_stmt := sl3(cnxn, "prepare",
"INSERT INTO invent VALUES(@desc, @number, @amount);")
DISPOSE_ON_ERROR
# set parameters for first prepared statement
vmsg(prep_stmt, "put", "@desc", "a description")
vmsg(prep_stmt, "put", "@number", 42)
vmsg(prep_stmt, "put", "@amount", 3.14159)
# execute first prepared statment
# signature: sl3(conn, prep_stmt:V, &null, errC ) : n|fail
if not sl3(cnxn, prep_stmt, , errC) then {
write("test one: execute prepared statement with named parameters failed")
dispose(cnxn, errC)}
# initialize second prepared statement, which has named and unnamed parameters
# signature: sl3(conn, "prepare", stmt) : VNom (a prep_stmt)
prep_stmt := sl3(cnxn, "prepare", "INSERT INTO invent VALUES(?, ?3, ?2);")
DISPOSE_ON_ERROR
# set parameters for second prepared statement
vmsg(prep_stmt, "put", "?1", "another description")
vmsg(prep_stmt, "put", "?2", 1066)
vmsg(prep_stmt, "put", "?3", 1.414214)
# execute second prepared statment
# signature: sl3(conn, prep_stmt:V, &null, errC) : n|fail
if not sl3(cnxn, prep_stmt, , errC)
then {
write("test two: execute prepared statement with unnamed parameters failed")
dispose(cnxn, errC)}
DISPOSE_ON_ERROR
# execute SQL with implicit prepared statement and with L of unnamed params
# signature: sl3(conn, stmt:s, parmL:L, errC) : n|fail
if not sl3(cnxn, "INSERT INTO invent VALUES(?, ?, ?);",
["foobar", 2401, 21.0/7], errC)
then { write("test three: execute implicit prepared statement failed")
dispose(cnxn, errC)}
DISPOSE_ON_ERROR
# execute SQL without params
# signature: sl3(conn, stmt:s, &null, errC) : n|fail
sl3(cnxn, "select * from invent;", , errC)
DISPOSE_ON_ERROR
# show results from previous SQL
write("---")
every chunk := sl3(cnxn, "fetch") do {
write_vnom_fields(chunk)
write("---")}
# set exit code for normal termination
g_exit_code := 0
&error := 0
# stop sqlite3 and shut down the batons
dispose(cnxn, errC)
end
procedure dispose(cnxn, errC)
# stop sqlite3 and shut down the batons
sl3(cnxn, "close", errC) | write("sl3 \"close\" failed")
write(" batonsys disposition: ", image(cnxn["disposition"]))
exit(g_exit_code)
end
procedure trace_reset(error_offset)
local result
result := ""
if &error = 0 then fail
if (&error < error_offset) then {
result ||:= "There were " || error_offset - &error || " errors; "
result ||:= "last error " || &errornumber || " - " || &errortext
&error := error_offset
return result
}
&error := error_offset
end
procedure write_vnom_fields(chunk, f)
local i
/f := &output
# row fields are ordered by VNom key
every i := vmsg(chunk, "key") do write(f, " ", i, ": ", chunk[i])
return
end
procedure write_ordered_values(chunk, f)
local i
/f := &output
# results of commands are ordered by a discardable integer key
every i := key(chunk) do if i ~=== chunk then write(f, " ", chunk[i])
return
end
which produces as output:
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE invent(desc text, number integer, amount float);
COMMIT;
---
desc: a description
number: 42
amount: 3.14159
---
desc: another description
number: 1.414214
amount: 1066.0
---
desc: foobar
number: 2401
amount: 3.0
---
batonsys disposition: 0
"Nominal vector", i.e., a list whose elements may be accessed by rank (index) or name (key).
A use case for this construct might a dynamically-defined record (i.e., an ordered list of key-value pairs), such as might be used to represent a row returned by an SQL query.
Through use of a Lua-inspired "metatable", operations on this structure may be defined or extended with a few message-handler-extension functions. Note that a metatable may be shared among several VNom instances to give them identical behavior; for this reason, the copy constructor copies a reference to the metatable rather than making a copy of the metatable. Thus, behavior of the set of instances may (even dynamically) be modified by changing a single structure.
Construct a new VNom instance.
Original:T
&null
|table
|VNom
Type:s
- Type property
ID:s
- ID property
Metatable:T
- table mapping message strings to message-handler procedures
- By design, when
Original
is another VNom,vnew
copies a reference to the metatable rather than the metatable itself.
Disposable:n?
- if not null, set Disposable property to "yes"
Kind:s
- Kind property
Send messages to update or interrogate the VNom instance.
vmsg(V, "!" ) : x1, ... # generate values in order keys in L
vmsg(V, "*" ) : i # produce number of values
vmsg(V, "get" | "pop" ) : x # pop value, discarding key
vmsg(V, "copy" ) : V # produce copy of V with same metatable
vmsg(V, "pull" ) : x # pull value, discarding key
vmsg(V, "push", xk, xv) : V # push (or replace) value x2 for key x1
vmsg(V, "put", xk, xv) : V # put (or replace) value x2 for key x1
vmsg(V, "key" ) : x1, ... # generate keys in order keys in L
vmsg(V, "keylist" ) : L # copy of L of ranked keys
vmsg(V, "bykey", x ) : s # value, assignable by key
vmsg(V, "byrank", i ) : s # value, assignable by rank (index)
vmsg(V, "delbykey", x ) : n # delete value by key
vmsg(V, "delbyrank", i ) : n # delete value by rank
vmsg(V, "strings" ) : s # generate string showing each KVP
vmsg(V, "disposable" ) : s # disposable property
vmsg(V, "id" ) : s # ID property, assignable
vmsg(V, "image" ) : s # image property
vmsg(V, "kind" ) : s # Kind property, assignable
vmsg(V, "metatable" ) : s # Metatable, assignable
vmsg(V, "strings" ) : s # generate a string to show each KVP
vmsg(V, "type" ) : s # Type property, assignable
Procedure to produce a value that can be read globally but can be reset only by the co-expression that set it it initially.
- Set or read a globally visible read-only value,
- which is resettable by the C that creates it.
id
identifies the value; it is a key to a static table.del
signifies that the value is to be deleted, but only when specified by the creator.- Otherwise, this argument is ignored.
If you are still using Git rather than the best thing since CVS, then you may need the following to recover from the mess that Git Submodule can create if you are not very careful.
Reference: http://openmetric.org/til/programming/git-pull-with-submodule/
- To add a submodule to a repo, do, e.g.:
git submodule add [email protected]:eschen42/aceincl.git
- For a repo with submodules, pull all submodules using
git submodule update --init --recursive
for the first time. All submodules will be pulled down locally. - To update submodules, use
git submodule update --recursive --remote
- To "commit" new changes in a submodule to the client project:
- Make sure that there are no unsaved changes in the submodule (are any files in the sandbox different from the committed code?). a. If so, commit and push.
- Next:
git submodule update --recursive --remote
- Now it's possible to add and commit changes to the client project.
- What's changed in the submodule? (or "Has the commit for the submodule changed?" or something):
git diff --submodule
Reference: https://www.loekvandenouweland.com/content/head-detached-from-origin-master.html
If a submodule is in a "detatched HEAD" state (and it is not 1789), there are two courses of action that to take, depending on whether commits require rescuing.
If there is no need to push commits to the submodule to a remote git repository, something like the following should work, e.g., to reattach origin/main from the remote for submodule aceincl:
cd aceincl
git branch -la
git checkout remotes/origin/main
git status
git pull
git status
If there are commits to preserve, the process is more involved; see the reference, the gist of which is something like:
- Put the commits onto a branch:
git branch fix-detached-HEAD $(git log | sed -n -e '/^commit/{s/commit[ ]*//; p; q}; d')
- Get the
main
ormaster
branch, as appropriate for your repo:
git checkout main
(orgit checkout master
) - Re-establish remote tracking:
git fetch
- Review changes if necessary:
git diff fix-detached-HEAD
- Merge the changes to the remote-tracking non-HEAD-less branch:
git merge fix-detached-HEAD
- Push changes to the remote:
git push --set-upstream origin master
orgit push --set-upstream origin main
- This file is deprecated; VNom is more useful.
Procedures to produce/manipulate record-like tables.
See also: vnom.icn
below for another, potentially more flexible approach.
Used by fieldedDataFile.icn
above because, when it was written, vnom.icn
had not yet been created.
Produce a table with record-like aspects:
rec_name_s
: the "type" of the RecTablerec_fields_L
: a list of the field namesrec_data_L
: an optional list of values to assign to the fieldsrec_col_iL
: an optional list of column numbers to choose; defaults to allrec_default_x
: default value for table members
For RecTable, produce:
- name
- set of all fields
- each field
For non-RecTable, return type(x).
Produce RecTable's field names.
- This will fail for a non-RecTable.
Return a list of the values produced by RecTableFields(x).
- This returns an empty list when x is not a RecTable instance.
Produce RecTable's field values.
- This will fail for a non-RecTable.
Return a list of the values produced by RecTableFieldVals(x).
- This returns an empty list when x is not a RecTable instance.
Return x, except abort when x is not instance of type_name
:
x
: value whose type is to be checkedtype_name
: expected string for RecTableType(x)col_name
: name of identifier-under-testpreamble
: initial string for error message; defaults to value of name RecTablePreamble.
Produce a C that, when receiving a transmitted list of values (of the
same length as rec_fields_L
), produces a RecTable instance:
rec_name_s
the "type" of the RecTablerec_fields_L
a list of the field namesrec_col_iL
an optional list of column numbers to choose; defaults to allrec_default_x
default value for table members