<srfi minus 98 at srfi dot schemers dot org>
. See
instructions here to subscribe to
the list. You can access previous messages via
the archive of the mailing list.
Most operating systems provide the mechanism of passing auxiliary parameters implicitly to child processes, namely called enviornment variables. Some applications rely on environment variables to modify their behavior according to the local settings.
Most implementations of common gateway interface (CGI) uses environment variables to pass Meta-Variables from the server to the script[1]. Providing the means to access to the environment variables is indispensable to write practical programs in Scheme.
In fact, most widely-used Scheme implementations provide the means of getting the value of the specified environment variable, usually called getenv.
Additionally, some implementations provide the means to get all environment variables.
For obtaining the value of the environment value, getenv may use locale-setting information to encode the name, and decode the value of the environment variable.
Conceptually, environment variables are mappings from string names to values.
For example, CGI programs may obtain the values of the Meta-Variables such as "QUERY_STRING", "CONTENT_LENGTH" and "REQUEST_METHOD", as the following examples:
(get-environment-variable "QUERY_STRING") => "foo=bar&huga=hige" (get-environment-variable "CONTENT_LENGTH") => "512" (get-environment-variable "REQUEST_METHOD") => "post"
Therefore, it is quite useful to define the environment-independent way to get environment variables.
[1] The Common Gateway Interface (CGI) Version 1.1, RFC3875, http://www.ietf.org/rfc/rfc3875.
R6RS library nameFollowing two procedures belong to the R6RS library named (system). This is a provisional library name until naming rules for SRFI library on R6RS are specified.
Function: get-environment-variable nameReturns the value of the named environment variable as a string, or #f if the named environment variable is not found.
(get-environment-variable "PATH") => "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
Function: get-environment-variablesReturns names and values of all the environment variables as an a-list.
(get-environment-variables) => (("PATH" . "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin") ("USERNAME" . "taro"))
(define (get-environment-variable . args) (if (null? args) (sys-environ->alist) (apply sys-get-env args))))
(define (get-environment-variable . args) (if (null? args) (environment-alist) (apply lookup-environment-variable args))))
Scheme implementation | get environment variable | get all the environment variables as an a-list |
---|---|---|
Bigloo | (getenv name) => (or string? false) name:string? | |
CHICKEN | (getenv name) => (or string? false) name:string? | |
Gambit | (getenv name . <default>) ->(or string? <default> <Unbound OS environment variable error>) name:string? | |
Gauche | (sys-getenv name) => (or string? false) name:string? | (sys-environ) |
Guile | (getenv name) => (or string? false) name:string? | |
PLT | (getenv name) => (or string? false) name:string? | |
Scheme48 | (lookup-environment-variable name) => (or string? false) name:string? | (environment-alist) |
SLIB | (getenv name) => (or string? false) name:string? | |
STk | (getenv name) => (or string? false) name:string? | |
STklos | (getenv name) => (or string? false) name:string? | (getenv) |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.