barrier/hm.py

190 lines
4.7 KiB
Python
Raw Normal View History

2009-10-26 07:54:37 +00:00
#! /usr/bin/env python
2010-06-20 17:38:51 +00:00
# synergy-plus -- mouse and keyboard sharing utility
# Copyright (C) 2009 The Synergy+ Project
#
# This package is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# found in the file COPYING that should have accompanied this file.
#
# This package is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# hm.py: 'Help Me', is a simple wrapper for all build tools.
2009-10-26 07:54:37 +00:00
#
# This script was created for the Synergy+ project.
# http://code.google.com/p/synergy-plus
#
# The idea behind this is to simplify the build system,
# however, it's not a dependancy of building Synergy+.
# In other words, you don't need to use this script!
2009-10-26 07:54:37 +00:00
#
# If you don't wish to run this script, simply run:
# cmake .
# make
# This will create an in-source UNIX Makefile.
import sys, os
from build import commands
from getopt import gnu_getopt
2010-06-15 22:29:32 +00:00
# options used by all commands
global_options = 'g:v'
2010-06-20 02:30:45 +00:00
global_options_long = ['no-prompts', 'generator=', 'verbose', 'make-gui']
2010-06-15 22:29:32 +00:00
# options used by build related commands
build_options = 'dr'
build_options_long = ['debug', 'release']
2009-10-26 07:54:37 +00:00
# list of valid commands as keys. the values are optarg strings, but most
# are None for now (this is mainly for extensibility)
2010-06-15 22:29:32 +00:00
cmd_opt_dict = {
'about' : ['', []],
'setup' : ['', []],
'configure' : ['', []],
'build' : [build_options, build_options_long],
'clean' : [build_options, build_options_long],
'update' : ['', []],
'install' : ['', []],
'dist' : ['', ['ftp-host=', 'ftp-user=', 'ftp-pass=', 'ftp-dir=']],
2010-06-15 22:29:32 +00:00
'kill' : ['', []],
'usage' : ['', []],
'revision' : ['', []],
'reformat' : ['', []],
'open' : ['', []],
}
2009-10-26 07:54:37 +00:00
# aliases to valid commands
cmd_alias_dict = {
'info' : 'about',
'help' : 'usage',
'package' : 'dist',
'make' : 'build',
'cmake' : 'configure',
2009-10-26 07:54:37 +00:00
}
def complete_command(arg):
completions = []
2009-10-26 07:54:37 +00:00
2010-06-15 22:29:32 +00:00
for cmd, optarg in cmd_opt_dict.iteritems():
if cmd.startswith(arg):
completions.append(cmd)
2009-10-26 07:54:37 +00:00
for alias, cmd in cmd_alias_dict.iteritems():
if alias.startswith(arg):
completions.append(alias)
2009-10-26 07:54:37 +00:00
return completions
2009-10-26 07:54:37 +00:00
def start_cmd(argv):
cmd_arg = ''
2009-10-26 07:54:37 +00:00
if len(argv) > 1:
cmd_arg = argv[1]
# change common help args to help command
if cmd_arg in ('--help', '-h', '--usage', '-u', '/?'):
cmd_arg = 'usage'
2009-10-26 07:54:37 +00:00
completions = complete_command(cmd_arg)
if cmd_arg and len(completions) > 0:
2009-10-26 07:54:37 +00:00
if len(completions) == 1:
# get the only completion (since in this case we have 1)
2009-10-26 07:54:37 +00:00
cmd = completions[0]
# build up the first part of the map (for illustrative purposes)
cmd_map = list()
if cmd_arg != cmd:
cmd_map.append(cmd_arg)
cmd_map.append(cmd)
# map an alias to the command, and build up the map
if cmd in cmd_alias_dict.keys():
alias = cmd
if cmd_arg == cmd:
cmd_map.append(alias)
cmd = cmd_alias_dict[cmd]
cmd_map.append(cmd)
# show command map to avoid confusion
if len(cmd_map) != 0:
print 'Mapping command: %s' % ' -> '.join(cmd_map)
2010-05-31 11:39:28 +00:00
run_cmd(cmd, argv[2:])
return 0
2009-10-26 07:54:37 +00:00
else:
print (
'Command `%s` too ambiguous, '
2009-10-26 07:54:37 +00:00
'could mean any of: %s'
) % (cmd_arg, ', '.join(completions))
2009-10-26 07:54:37 +00:00
else:
if len(argv) == 1:
print 'No command specified, showing usage.\n'
else:
print 'Command not recognised: %s\n' % cmd_arg
2010-05-31 11:39:28 +00:00
run_cmd('usage')
2009-11-02 21:17:45 +00:00
# generic error code if not returned sooner
return 1
2010-05-31 11:39:28 +00:00
2010-06-15 22:29:32 +00:00
def run_cmd(cmd, argv = []):
verbose = False
try:
options_pair = cmd_opt_dict[cmd]
options = global_options + options_pair[0]
options_long = []
options_long.extend(global_options_long)
options_long.extend(options_pair[1])
opts, args = gnu_getopt(argv, options, options_long)
for o, a in opts:
if o in ('-v', '--verbose'):
verbose = True
# pass args and optarg data to command handler, which figures out
# how to handle the arguments
handler = commands.CommandHandler(argv, opts, args, verbose)
# use reflection to get the function pointer
cmd_func = getattr(handler, cmd)
2010-06-15 22:29:32 +00:00
cmd_func()
except:
2010-06-15 22:29:32 +00:00
if not verbose:
# print friendly error for users
sys.stderr.write('Error: ' + sys.exc_info()[1].__str__() + '\n')
exit(1)
2010-06-15 22:29:32 +00:00
else:
# if user wants to be verbose let python do it's thing
raise
2010-05-31 11:39:28 +00:00
def main(argv):
2009-11-02 21:17:45 +00:00
if sys.version_info < (2, 4):
print 'Python version must be at least: 2.4'
sys.exit(1)
2009-11-02 21:17:45 +00:00
try:
start_cmd(argv)
except KeyboardInterrupt:
print '\n\nUser aborted, exiting.'
2009-12-27 20:12:41 +00:00
2009-10-26 07:54:37 +00:00
# Start the program.
main(sys.argv)