1:- module( upsh, [upsh_make/0,upsh_make/1,upsh_version/1,upsh_version/2] ). 2 3:- ensure_loaded( '../src/upsh_version' ). 4 5upsh_make_defaults( Defs ) :- 6 current_prolog_flag( home, SwiHome ), 7 % 1st place to look: ../../bin/swipl relative to flag home 8 file_directory_name( SwiHome, SwiLib ), 9 file_directory_name( SwiLib, BaseD ), 10 directory_file_path( BaseD, bin, BinD ), 11 Exec = upsh, 12 ( exists_directory(BinD) -> 13 Defs = [exec(Exec),bin_dir(BinD)] 14 ; 15 write( unable_to_locate_bin_dir_for_upsh__use_option(bin_dir) ), nl, 16 Defs = [exec(Exec)] 17 ).
Opts
current_prolog_flag( home, Home )
.122upsh_make :- 123 upsh_make( [] ). 124 125upsh_make( ArgS ) :- 126 \+ var(ArgS), 127 ( is_list(ArgS) -> Args = ArgS; Args = [ArgS] ), 128 upsh_make_defaults( Defs ), 129 append( Args, Defs, Opts ), 130 multifile( upsh_built_call/1 ), 131 dynamic( upsh_built_call/1 ), 132 asserta( upsh_built_call(true) ), 133 load_files( pack('upsh/src/upsh') ), 134 memberchk( exec(Exec), Opts ), 135 memberchk( bin_dir(BinD), Opts ), 136 directory_file_path( BinD, Exec, AbsExec ), 137 qsave_program( AbsExec, [init_file(none_what_noever),goal(upsh_exec:upsh)] ), 138 abolish( upsh_built_call/1 ). 139 140/* pre 18.12.10: 141upsh_make( ArgS ) :- 142 \+ var(ArgS), 143 ( is_list(ArgS) -> Args = ArgS; Args = [ArgS] ), 144 upsh_make_defaults( Defs ), 145 append( Args, Defs, Opts ), 146 % delete_local_exec, 147 once( absolute_file_name( pack(upsh), UpshD ) ), 148 % working_directory( Old, UpshD ), 149 % Shell ='swipl -f upsh_create.pl -g upsh_create', 150 debug( upsh, 'Shelling: ~w', Shell ), 151 shell( Shell ), 152 memberchk( exec(Exec), Opts ), 153 memberchk( bin_dir(BinD), Opts ), 154 directory_file_path( BinD, Exec, PathTo ), 155 % rename_file( 'bin/upsh', PathTo ), 156 atom_concat( 'mv bin/upsh ', PathTo, MvTo ), 157 shell( MvTo ), 158 debug( upsh, 'Moved to: ~p', PathTo ), 159 working_directory( _, Old ), 160 debug( upsh, 'Done', true ). 161 */ 162 163delete_local_exec :- 164 Loc = 'bin/upsh', 165 exists_file( Loc ), 166 !, 167 delete_file( Loc ). 168delete_local_exec
Unix to Prolog shell.
Upsh 2.5
Upsh stands for Unix to Prolog shell. It is a Prolog program which can be used to run Prolog programs from the command line or as scripts.
It origianlly ran on three prolog engines without changes to the source code. Current versions are only tested on SWI-Prolog.
With version 2.*, Upsh has all the features I had envisaged and many which I just thought of on the way. It is also fairly stable.
The development has now been switched to SWI and upsh is also provided as an easy to install SWI pack.<br>
It is unlikely there will be any major releases in the future. I will of course get fixes on reported bugs or add features that are interesting.
For reporting a bug or feature requests contact me:
http://stoics.org.uk/~nicos/sware/contact.html
If you use Upsh for a while I would appreciate an email with the kind of scripts you using it with.
The pack has a single main predicate which creates an executable state that provides a convenient way of executing prolog scripts for the command line.
The state can be invoked by calling the created executable (upsh) on command line.
By default the upsh binary is placed in same directory as the swipl executable. Only tested on linux.
The executable will look into three places for scripts.
Upsh will also convert os friendly arguments to Prolog terms:
The executable takes a number of one letter flags:
By default the executable looks into script
say.pl
for main/0, main/1, main/n, say/0, say/1, say/n and calls it with the appropriate number of arguments.*/