Skip to content
Snippets Groups Projects
Commit f0d6a38a authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Added completion for shell commands

Slow implementation, calls scripts everytime
parent 3677cd1f
No related branches found
No related tags found
No related merge requests found
...@@ -75,6 +75,7 @@ do ...@@ -75,6 +75,7 @@ do
(--list-engines|-l) test -n "$action" && multiple_actions=yes ; action=list ;; (--list-engines|-l) test -n "$action" && multiple_actions=yes ; action=list ;;
(--info|-i) test -n "$action" && multiple_actions=yes ; action=info ;; (--info|-i) test -n "$action" && multiple_actions=yes ; action=info ;;
(--new=*) test -n "$action" && multiple_actions=yes ; action=new ; newpatch="${prefix_option#--new=}" ;; (--new=*) test -n "$action" && multiple_actions=yes ; action=new ; newpatch="${prefix_option#--new=}" ;;
(--options) test -n "$action" && multiple_actions=yes ; action=options ;;
(--description) echo "patch an MD engine" ; exit ;; (--description) echo "patch an MD engine" ; exit ;;
(--engine=*) engine="${prefix_option#--engine=}" ;; (--engine=*) engine="${prefix_option#--engine=}" ;;
(--mdroot=*) mdroot="${prefix_option#--mdroot=}" ;; (--mdroot=*) mdroot="${prefix_option#--mdroot=}" ;;
...@@ -114,6 +115,11 @@ if [ -z "$action" ] ; then ...@@ -114,6 +115,11 @@ if [ -z "$action" ] ; then
exit exit
fi fi
if [ "$action" = options ] ; then
echo "--help -h --patch -p --save -s --save-originals --revert -R -r --list-engines -l --info -i --new --options --description --engine --mdroot --mode --diff --engine -e --mdroot --root --diff -d --mode -m --new -n --static --shared --runtime --force -f --quiet -q"
exit 0
fi
test -n "$quiet" || echo "PLUMED patching tool" test -n "$quiet" || echo "PLUMED patching tool"
test -n "$quiet" || echo test -n "$quiet" || echo
if [ -z "$PLUMED_ROOT" ] if [ -z "$PLUMED_ROOT" ]
......
...@@ -40,6 +40,10 @@ do ...@@ -40,6 +40,10 @@ do
echo "inquire plumed about how it was configure" echo "inquire plumed about how it was configure"
exit 0 exit 0
;; ;;
(--options)
echo "--help -h --description --options --quiet -q --version -v show has module"
exit 0
;;
(--quiet|-q) quiet=yes ;; (--quiet|-q) quiet=yes ;;
(--version|-v) action=version ;; (--version|-v) action=version ;;
(show) (show)
......
...@@ -7,6 +7,11 @@ if [ "$1" = --description ] ; then ...@@ -7,6 +7,11 @@ if [ "$1" = --description ] ; then
exit 0 exit 0
fi fi
if [ "$1" = --options ] ; then
echo "--description"
exit 0
fi
if [ $# != 1 ] || [[ "$1" != *.cpp ]] ; if [ $# != 1 ] || [[ "$1" != *.cpp ]] ;
then then
echo "ERROR" echo "ERROR"
......
...@@ -5,6 +5,11 @@ if [ "$1" = --description ] ; then ...@@ -5,6 +5,11 @@ if [ "$1" = --description ] ; then
exit 0 exit 0
fi fi
if [ "$1" = --options ] ; then
echo "--description"
exit 0
fi
if [ $# != 2 ] ; if [ $# != 2 ] ;
then then
echo "ERROR" echo "ERROR"
......
...@@ -4,6 +4,11 @@ if [ "$1" = --description ] ; then ...@@ -4,6 +4,11 @@ if [ "$1" = --description ] ; then
exit 0 exit 0
fi fi
if [ "$1" = --options ] ; then
echo "--description --gromacs4 --help -h"
exit 0
fi
if [ "$1" = --help ] || [ "$1" = -h ] ; then if [ "$1" = --help ] || [ "$1" = -h ] ; then
cat <<EOF cat <<EOF
Usage: Usage:
......
...@@ -7,6 +7,11 @@ if [ "$1" = --description ] ; then ...@@ -7,6 +7,11 @@ if [ "$1" = --description ] ; then
exit 0 exit 0
fi fi
if [ "$1" = --options ] ; then
echo "--description --options --annotate-syntax --pdf --crop --fs --colors"
exit 0
fi
if [ "$1" = --help ] ; then if [ "$1" = --help ] ; then
cat << EOF cat << EOF
Usage: Usage:
......
...@@ -117,6 +117,33 @@ int Completion::main(FILE* in, FILE*out,Communicator& pc) { ...@@ -117,6 +117,33 @@ int Completion::main(FILE* in, FILE*out,Communicator& pc) {
fprintf(out,"\"\n"); fprintf(out,"\"\n");
} }
for(unsigned j=0; j<tmp.size(); j++) {
std::string s=tmp[j];
// handle - sign (convert to underscore)
for(;;) {
size_t n=s.find("-");
if(n==std::string::npos) break;
s[n]='_';
}
fprintf(out,"local cmd_keys_%s=\"",s.c_str());
std::string cmd=config::getEnvCommand()+" \""+config::getPlumedRoot()+"/scripts/"+s+".sh\" --options";
FILE *fp=popen(cmd.c_str(),"r");
std::string line,manual;
while(Tools::getline(fp,line))manual+=line;
pclose(fp);
std::vector<std::string> keys=Tools::getWords(manual);
for(unsigned k=0; k<keys.size(); k++) {
// handle --help/-h
std::string s=keys[k];
for(;;) {
size_t n=s.find("/");
if(n==std::string::npos) break;
s[n]=' ';
}
fprintf(out," %s",s.c_str());
}
fprintf(out,"\"\n");
}
fprintf(out,"%s\n",completion); fprintf(out,"%s\n",completion);
std::string name=config::getPlumedProgramName(); std::string name=config::getPlumedProgramName();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment