3.15. Miscellaneous |
3.15.0. Debug |
3.15.0.0. (symbols str) |
[DE] (sysenv.lsh) |
Prints all the symbols whose name contains the string
str . This is especially useful if you don't remember the
exact spelling of a function or variable.
3.15.0.1. ^S str |
[DMC] (sysenv.lsh) |
Macro-character for function symbols
3.15.0.2. (sizeof c_type) |
[DX] |
? (sizeof "double") = 8
? (sizeof "gptr") = 8
? (sizeof "short") = 2
This function is mainly used for formated I/O.
3.15.0.3. (used) |
[DX] |
3.15.0.4. (error [symb] string [l]) |
[DX] |
Example:
? (error 'myfunc "bad number" 4) *** myfunc : Bad number : 4 Debug toplevel [y/n] ?
3.15.0.5. (pause string) |
[DE] |
3.15.0.6. (debug l1 ... ln) |
[DY] |
Example:
? (debug (* (+ 3 4) a))) -> (* (+ 3 4) a) -> (+ 3 4) -> 3 <- 3 -> 4 <- 4 <- 7 -> a <- 8 <- 56 = 56
3.15.0.7. (nodebug l1 ... ln) |
[DY] |
3.15.0.8. (where) |
[DX] |
This function prints the entire evaluation stack. Called from a debug
toplevel, function where gives useful
hints for undertsanding what happened and when.
3.15.0.9. (trace-hook level line expr info) |
[DE] |
This function is called before and after each evaluation when the Lush
kernel runs in debug mode (see function debug
). Redefining this function allows interactive Lush debugger to execute
programs step by step.
If function trace-hook returns () , the evaluation will continue without calling trace-hook for recursive evaluations. The next call to trace-hook will occur after the current evaluation returns. If function trace-hook returns t , the recursive calls to the evaluator (calls performed while evaluating the current expression) will be traced.
If function trace-hook returns () , the remaining evaluations will continue without calling trace-hook until an evaluation with a smaller recursion level returns. If function trace-hook returns t , the next evaluations will be traced normally.
3.15.0.10. result |
[VAR] |
Example:
? (sqrt 81) = 9 ? (* result result) = 81
3.15.0.11. version |
[VAR] |
3.15.0.12. lushdir |
[VAR] |
3.15.0.13. (exit [n]) |
[DX] |
This functions exits the current toplevel, as if a
Ctrl-D had been typed. When the optional argument
n is given, function exit
quits the Lush process with return code n
.
3.15.0.14. (discard l1 ... ln) |
[DY] |
3.15.0.15. (startup ...argv...) |
[DE] (sysenv.lsh) |
Lush calls this function once during the startup procedure as soon as
the system library "stdenv.lsh" or
"stdenv.dump" has been loaded. The behavior of the default
startup procedure is explained in section "Lush Startup.".
The arguments argv are the command line arguments. Neither the executable name nor the magic first command line argument are passed to startup .
3.15.0.16. (toplevel) |
[DE] (sysenv.lsh) |
This function usually is defined by "sysenv.lsh"
and is called after function startup
during the startup process. This function is restarted whenever an error
occurs.
3.15.0.17. (on-error p l1 ... ln) |
[DM] |
This function evaluates lists l1 to
ln and returns the last result like function
progn . If however an errors occur during these evaluations,
the expression p is evaluated before
the usual error processing.
The function on-error does not stop the error processing, but allows for performing cleanup tasks, or for printing a custom error message.
3.15.0.18. (on-break p l1 ... ln) |
[DM] |
This function evaluates lists l1 to
ln and returns the last result like function
progn . If however the user interrupts the evaluation by
depressing Ctrl-C , the expression
p is evaluated before the usual interruption processing.
The function on-break does not stop the interruption processing, but allows for performing cleanup tasks, or for printing a custom error message.
3.15.0.19. (on-error-macro pm l1 ... ln) |
[DM] |
This function first evaluates list pm
and stores the result which is usually an expression to be evaluated if
an error occurs. It evaluates then lists l1
to ln and returns the last result like
function progn . If however an errors
occur during these evaluations, the result of the initial evaluation of
pm is evaluated before the usual error processing.
Actually, this function works like on-error , except the expression which will be executed in case of error is the result of the evaluation of pm in the call context of on-error-macro i.e. before l1 ... ln are evaluated.
This allows a safer behaviour than on-error , since the evaluation of pm is made in the call context instead of being made in the error context. Indeed, the error context may have values pushed on the stacks by functions called in l1 ... ln , therefore hiding the expected values.
(let* ((my-window (new windowobject 100 100 200 100 "Handler" (new string "processing..."))) (errq (new errorrequester my-window))) (on-error-macro `(==> ,errq popup (errname)) (let* ((errq ())) (error "this is is a programmed error\nused as test."))))
3.15.0.20. (errname) |
[DX] |
3.15.0.21. (debug-hook) |
[DE] (sysenv.lsh) |
This function is defined by "sysenv.lsh"
and is called whenever an error occurs. Use care when modifying this
function, since an incorrect debug-hook
function may result into a deadly infinite loop!.
3.15.0.22. (break-hook) |
[DE] (sysenv.lsh) |
3.15.1. System |
Some functions are not available under all operating systems:
3.15.1.0. (beep) |
[DX] |
3.15.1.1. (sleep n) |
[DX] |
3.15.1.2. (wait obj) |
[DE] |
#!/bin/sh exec lush "$0" "$@" !# (ogre) (wait (new autowindowobject 10 10 100 100 "Simple Lush GUI Demo" (new stdbutton " hit me " (lambda (c) (printf "OUCH\n")))))
3.15.1.3. (sys shellcmd) |
[DX] |
Executes the shell command defined in string
shellcmd .
Example (Unix):
? (sys "pwd") /home/toto/bip = 0
The implementation of function sys and of the pipe convention in filenames (see open-read and open-write ) is highly system dependent.
Function sys will always wait until the spawned process exits and return the process exit code.
If you are running the Console based version of Lush, function sys replicates as well as possible the behavior of the Unix version. The spawned process inherits the Lush console and may be controlled by the user. If you are running a MSDOS or WIN32 Console application, function sys returns when the application exits. If you are running a Windows 3.1 or WIN32 GUI application, function sys returns immediately.
If you are running the GUI based version of Lush, the spawned processed no longer inherit a MSDOS console. We have chosen to handle MSDOS and WIN32 Console application like a GUI application. Function sys will create a new console for the process and return immediately regardless of the application type.
Using pipes is reasonably reliable under the Console based version of Lush. It becomes very adventurous under the GUI version of Lush because we do not want to create a console and let the user interact with the program. Bugs in Windows 95 make pipes so dangerous that we just forbid them.
Please investigate function winsys to start a new process with a collection of refined options (redirecting standard handles, using the command interpreter, detaching the process, waiting until the process exits). You should nevertheless remember that these options do not work welle with all application types.
3.15.1.4. #$ shellcmd |
[DMC] (sysenv.lsh) |
? #$pwd /home/toto/bip = 0
3.15.1.5. (chdir [s]) |
[DX] |
If the string s is provided, this
function sets the current working directory to directory
s . This function returns the current working directory name.
The current directory specified with chdir is used by all shell commands launched with function sys . When accessing a file, Lush also searches the current directory before the directories specified by function path .
Example:
? (chdir) = "/home/leonb/lush/doc"
3.15.1.6. (getpid) |
[DX] |
Example:
? (getpid) = 22646
3.15.1.7. (getuid) |
[DX] |
Example:
? (getuid) = 1000
3.15.1.8. (getusername) |
[DX] |
Example:
? (getusername) = "leonb"
3.15.1.9. (edit file) |
[DE] (sysenv.lsh) |
Calls the standard editor on file file
. The editor name is stored in the symbol
edit-call , and is initialized by looking at the environment
variable EDITOR or
VISUAL .
3.15.1.10. ^E file |
[DMC] (sysenv.lsh) |
3.15.1.11. edit-call |
[VAR] (sysenv.lsh) |
3.15.1.12. (fedit func) |
[DE] (sysenv.lsh) |
Copies an indented definition version of func
in a temporary file and calls the function edit
on this file. When the editor returns, the edited definition of
func is loaded.
3.15.1.13. ^F func |
[DMC] (sysenv.lsh) |
3.15.1.14. (getconf varname) |
[DX] |
3.15.1.15. (getenv s) |
[DX] |
Example:
? (getenv "HOME") = "/home/leonb"
3.15.1.16. (getconf s) |
[DX] |
Example:
? (getconf "CC") = "gcc"
? (getconf "CFLAGS") = ""
3.15.1.17. (time) |
[DY] |
Note: The deprecated form
(time <l1...ln>)
is equivalent to function cputime but prints a warning message.
3.15.1.18. (cputime l1....ln) |
[DY] |
Example:
? (cputime (repeat 40000 (sqrt 2) )) = 0On uniprocessor systems, this is alway smaller than the real time since the processor might be also used for other tasks.
On multiprocessor systems, this function adds the times spent by each CPU. If the evaluation of l1 ... ln involves several threads, the returned value might be greater than the real time.
3.15.1.19. (realtime l1....ln) |
[DY] |
Example:
? (realtime (repeat 40000 (sqrt 2) )) = 0.004
3.15.1.20. (ctime) |
[DX] |
Example:
? (ctime) = "Thu Feb 10 22:55:24 2011"
3.15.1.21. (localtime) |
[DX] |
( tm_isdst <day light saving time> tm_yday <day of the year (0..365)> tm_wdat <day of the week (sunday=0)> tm_mon <month number (0..11)> tm_mday <day of the month (1..31)> tm_hour <hour (0..23)> tm_min <minutes (0..59)> tm_sec <seconds (0..59)> )
Example:
? (localtime) = (tm-isdst 0 tm-yday 40 tm-wday 4 tm-year 111 tm-mon 1 tm-mday 10 tm-hour 22 tm-min 55 tm-sec 24 )
3.15.1.22. (isatty filename) |
[DX] |
3.15.1.23. (bground s l1 ... ln) |
[DY] |
3.15.1.24. (lush-is-quiet [flag]) |
[DX] |
This function returns t if the Lush
interpreter runs in script mode and ()
if the Lush interpreter runs in interactive mode. This function is
useful to print less information when running in script mode.
Lush starts in script mode when arguments are passed on the command line. The initial banner is suppressed. The lush file named as first argument is loaded. Lush terminates as soon as it either reaches the end of file or encounters an error.
Lush starts in interactive mode when no arguments are passed on the command line. It displays a startup banner and generally prints more verbose messages. Then it enters the interactive toplevel loop (read-eval-print) and restarts the toplevel loop whenever an error occurs.
Switching mode changes the verbosity of the various messages. Switching to interactive mode also causes Lush to enter the interactive toplevel loop when it would otherwise exit (i.e. when reaching an end-of-file or encountering an error).
3.15.1.25. (winlushp) |
Examples:
;; You can test if you are running under windows as follows. (cond ((not winlushp) (printf "Not running under Windows\n") ) ((winlushp) (printf "Running WinLush (GUI version of Lush under WIN32)\n") ) (t (printf "Running Lush (Console version of Lush under WIN32)\n") ) )
3.15.1.26. (winedit filename [as-untitled]) |
Function winedit opens a text editor window for the file named filename . If the name filename ends with suffix ".lsh" , WinLush will allow syntax coloring and automatic indentation.
The optional flag as-untitled tells WinLush to open the file as an untitled window.
3.15.1.27. (winsys stdin stdout stderr commandp detachp waitp cmdline) |
This function is available when you are running Lush under Windows 95 or
NT.
Function winsys creates a process for the program specified by command line cmdline . The other arguments allow you to tune finely the process parameters.
The legal and reliable combinations depend on:
Arguments stdin , stdout and stderr allow you to define the standard input, output and error handles of the program. These argulents may be () , t or a variable name.
Flag commandp is used to determine how the command line is processed. If this flag is set, the command line is passed to the command interpreter. You can thus run the internal commands implemented by CMD.EXE (Windows NT) or COMMAND.COM (Windows 95 - an MSDOS program!!). If this flag is not set, the command line is directly interpreted by WIN32's CreateProcess function.
Flag detachp is used to run a process in the background. This flag should prevent Windows to create a console or inherit the console handles. It is rather buggy under Windows 95.
Flags waitp tells if function winsys must wait until termination of the process and return the process exit code. If this flag is unset, the function returns immeditely.
Examples:
;; Here is an alias for function SYS under WinLush (winsys () () () t () () cmdline) ;; Here is an alias for function SYS under Console Lush (winsys t t t t () t cmdline) ;; Here is a way to open a read pipe (winsys () 'readpipe t () t () cmdline)
3.15.1.28. (win-show-workbench flag) |
This function is available when you are running Lush under Windows 95 or
NT. This function controls the visibility of the graphical interface of
the GUI version Lush for Windows (WinLush). Calling this function does
nothing if you are running the console version of Lush for Windows.
When argument flag is the empty list, WinLush switches to ``hidden'' mode. The main WinLush window (containing the Lush console, the text editor windows, and possibly a few graphical windows) disappears from the computer screen.
WinLush reverts to normal mode when function win-show-workbench is called again with a non nil argument. There is also a safety feature that automatically reverts WinLush normal mode when some user input is required on the Lush console.
When WinLush runs in ``hidden'' mode, function wbm-window works like function wbm-toplevel-window . Instead of creating a child window of the invisible main WinLush window, wbm-window creates a toplevel window which directly appears on the Windows desktop.
It is possible to directly start WinLush in ``hidden'' mode by specifying option "-hide" as the first command line argument. The remaining argument are interpreted as usual. This command line argument allows for creating self contained WinLush applications.
You can for instance create a file "c:/calctoolapp.lsh" containing the following three lines:
(setq mainwnd (calctool)) (while mainwnd (waitevent) (process-pending-events)) (exit 0)
You can then start WinLush with the following command line:
winlush -hide stdenv c:/calctoolapp.lsh
This command starts WinLush in hidden mode ( "-hide" ). WinLush will first load the standard environment ( "stdenv" ) and then load our example file ( "c:/calctoolapp.lsh" ). This file will create a calculator window on the Windows desktop, processes graphical events, and terminates execution when the user closes the calculator window.
The user will only see the calculator window. The WinLush main window never appears on the screen because WinLush remains in ``hidden'' mode as long as there is no need for user input on the Lush console.
3.15.2. Special Numerical Values (IEEE754) |
Numerical computations may encounter three kinds of problems:
The special bit patterns representing infinities or NaNs are still Lush numbers and numberp will always return t when applyed on a NaN. However NaNs and Infinities do not behave like regular numbers.
Special bit patterns have no litteral representation for the Lush reader. Most machines however print them as "Nan" or "Inf" or "-Inf" . You should not save these bit patterns into ascii format files because the reader will not be able to read them back. You must save them into binary files.
According to IEEE specifications, testing the equality of two special bit patterns should always return false. Comparing two bit patterns should cause a floating exception. Major operating systems and compilers do not abide with this specification. For instance the Microsoft Visual C++ 4.2 compiler considers that NaNs are equal to anything. It is unclear if this is a bug or a speed compromise (comparisons of actual number are much more frequent).
These problems make us unable to comply fully with the standard. Portable programs can only rely on the following garantees:
NaNs and Infinities however can be safely manipulated and tested by the following functions:
3.15.2.0. (nan) |
[DX] |
When NaNs are not supported, this function returns (). This is the only way provided by Lush for checking if NaNs are supported by this machine.
3.15.2.1. (nanp x) |
[DX] |
3.15.2.2. (not-nan x) |
[DX] |
3.15.2.3. (infinity) |
[DX] |
3.15.2.4. (infinityp x) |
[DX] |
3.15.2.5. (progn-without-fpe l1...ln) |
[DY] |
Example
? (progn-without-fpe (log 0)) = -Inf