global: Global variables with command-line interaction
(require global) | package: global |
Usage: Use define-global to define global variables (possibly in different modules) with cross-module getters and setters. globals->command-line automatically generates a command line parser for all the globals defined in modules that are transitively required, and globals-interact generates and textual interaction for reading and writing globals.
Globals can be used without a command-line parser.
"burger.rkt"
#lang racket/base (require global) (define-global *burgers* ; name 1 ; initial value "Number of burgers" ; help string for the command line exact-nonnegative-integer? ; validation string->number) ; conversion from input string (void (globals->command-line)) (printf "You ordered ~a burgers.\n" (*burgers*))
racket burger.rkt --help
racket burger.rkt --burgers 10
racket burger.rkt --burgers a
racket -l global/examples/minimal -- --help
racket -l global/examples/example -- --help
Additional remarks:
A global variable defined with define-global in a module A is shared between all modules that require A.
Note that a global defined in module A that is transitively required by module B can be fully accessed in module B even if A does not export any identifier. Globals can be removed from the command line with (globals->command-line (remove *my-global* (get-globals))).
By convention, globalsβ identifiers are surrounded by *. The value of a global *my-global* can be retrieved with (*my-global*) and set with (*my-global* some-new-value).
always have a single value at any time,
are not thread safe.
Suggestions, questions or issues? File an issue.
1 Globals
procedure
(make-global name init help valid? string->value [ more-commands]) β global? name : symbol? init : any/c help : (or/c string? (listof string?)) valid? : (-> any/c any/c) string->value : (-> any/c any/c) more-commands : (listof string?) = '()
The procedure valid? is used when setting or updating the value of the global to check if the new value is valid. Note that valid? is not used on init: this can be useful to set the initial value to #f for example while only allowing certain values when set by the user.
The procedure string->value is used to convert command line arguments to values that are checked with valid? before setting the corresponding global to this value. (They could also be used for example in text-field% in GUI applications.)
more-commands is an optional list of additional command-line flags, which can be used in particular to specify short flags.
syntax
(define-global var init help valid? string->value [more-commands])
syntax
(define-global:boolean id init help maybe-more-commands)
syntax
(define-global:string id init help maybe-more-commands)
syntax
(define-global:natural0 id init help maybe-more-commands)
syntax
(define-global:natural1 id init help maybe-more-commands)
syntax
(define-global:integer id init help maybe-more-commands)
syntax
(define-global:real id init help maybe-more-commands)
syntax
(define-global:rational id init help maybe-more-commands)
syntax
(define-global:category id init vals help maybe-more-commands)
vals = (list expr ...)
procedure
g : any/c (global-name g) β symbol? g : global? (global-help g) β (or/c string? (listof string?)) g : global? (global-valid? g) β (-> any/c boolean?) g : global? (global-string->value g) β (-> string? any/c) g : global? (global-more-commands g) β (listof string?) g : global?
procedure
g : global? (global-set! g v) β void? g : global? v : any/c (global-update! g updater) β void? g : global? updater : (-> any/c any/c)
procedure
(global-unsafe-set! g v) β void?
g : global? v : any? (global-unsafe-update! g updater) β void? g : global? updater : (-> any/c any/c)
procedure
(global-set-from-string! g str) β void?
g : global? str : string?
procedure
(get-globals) β (listof global?)
procedure
(globals->assoc [globals]) β (listof (cons/c symbol? any/c))
globals : (listof global?) = (get-globals)
procedure
(string->boolean s) β boolean?
s : string?
(and (member (string-downcase (string-trim s)) '("#f" "#false" "false")) #t)
syntax
(with-globals ([g v] ...) body ...)
2 Command line
procedure
(globals->command-line [ #:globals globals #:name->string name->string #:boolean-valid? bool? #:boolean-no-prefix no-prefix #:mutex-groups mutex-groups #:argv argv #:program program #:usage-help usage] trailing-arg-name ...) β any globals : (listof global?) = (get-globals) name->string : (-> symbol? string?) = default-name->string bool? : (-> any/c any/c) = boolean? no-prefix : string? = "--no-~a" mutex-groups : (listof (listof global?)) = '()
argv : (vectorof (and/c string? immutable?)) = (current-command-line-arguments) program : string? = "<prog>" usage : (listof string?) = '() trailing-arg-name : string?
See parse-command-line for general information. Each list of globals within mutex-groups are placed in a separate once-any group in parse-command-line. Multi flags are not supported by globals.
See global->cmd-line-rule for some of the keywords and for more information about boolean flags.
See also the note in (get-globals).
procedure
(global->cmd-line-rule g #:name->string name->string #:boolean-valid? bool? #:boolean-no-prefix no-prefix) β list? g : global? name->string : default-name->string bool? : boolean? no-prefix : "--no-~a"
(define-global:boolean *abool* #t "a boolean")
(define-global:boolean *abool* #f "a boolean")
3 Text interaction
procedure
(globals-interact [globals]) β void?
globals : (listof global?) = (get-globals)