factor/basis/command-line/command-line.factor

76 lines
1.7 KiB
Factor
Raw Normal View History

2008-07-28 23:03:13 -04:00
! Copyright (C) 2003, 2008 Slava Pestov.
2007-09-20 18:09:08 -04:00
! See http://factorcode.org/license.txt for BSD license.
2008-12-08 15:58:00 -05:00
USING: init continuations hashtables io io.encodings.utf8
io.files io.pathnames kernel kernel.private namespaces parser
sequences strings system splitting vocabs.loader ;
2008-04-26 12:28:08 -04:00
IN: command-line
2007-09-20 18:09:08 -04:00
2008-12-01 17:10:48 -05:00
SYMBOL: script
SYMBOL: command-line
: (command-line) ( -- args ) 10 getenv sift ;
: rc-path ( name -- path )
os windows? [ "." prepend ] unless
home prepend-path ;
2007-09-20 18:09:08 -04:00
: run-bootstrap-init ( -- )
"user-init" get [
"factor-boot-rc" rc-path ?run-file
2007-09-20 18:09:08 -04:00
] when ;
: run-user-init ( -- )
"user-init" get [
"factor-rc" rc-path ?run-file
2007-09-20 18:09:08 -04:00
] when ;
2008-12-01 17:10:48 -05:00
: load-vocab-roots ( -- )
"user-init" get [
"factor-roots" rc-path dup exists? [
utf8 file-lines [ add-vocab-root ] each
] [ drop ] if
] when ;
: var-param ( name value -- ) swap set-global ;
: bool-param ( name -- ) "no-" ?head not var-param ;
2007-09-20 18:09:08 -04:00
2008-12-01 17:10:48 -05:00
: param ( param -- )
"=" split1 [ var-param ] [ bool-param ] if* ;
2007-09-20 18:09:08 -04:00
2008-12-01 17:10:48 -05:00
: run-script ( file -- )
t "quiet" set-global run-file ;
2007-09-20 18:09:08 -04:00
2008-12-01 17:10:48 -05:00
: parse-command-line ( args -- )
[ command-line off script off ] [
unclip "-" ?head
[ param parse-command-line ]
[ script set command-line set ] if
] if-empty ;
2007-09-20 18:09:08 -04:00
SYMBOL: main-vocab-hook
: main-vocab ( -- vocab )
embedded? [
"alien.remote-control"
] [
main-vocab-hook get [ call ] [ "listener" ] if*
] if ;
2008-06-08 16:32:55 -04:00
: default-cli-args ( -- )
2007-09-20 18:09:08 -04:00
global [
"quiet" off
"script" off
"e" off
"user-init" on
embedded? "quiet" set
main-vocab "run" set
] bind ;
: ignore-cli-args? ( -- ? )
2008-04-02 19:25:33 -04:00
os macosx? "run" get "ui" = and ;
2007-09-20 18:09:08 -04:00
2008-12-01 17:10:48 -05:00
: script-mode ( -- ) ;
2007-09-20 18:09:08 -04:00
[ default-cli-args ] "command-line" add-init-hook