191 lines
4.7 KiB
Python
191 lines
4.7 KiB
Python
#! /usr/bin/env python
|
|
|
|
# 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.
|
|
#
|
|
# 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!
|
|
#
|
|
# 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 getopt
|
|
|
|
# options used by all commands
|
|
global_options = 'g:v'
|
|
global_options_long = ['no-prompts', 'generator=', 'verbose', 'make-gui']
|
|
|
|
# options used by build related commands
|
|
build_options = 'dr'
|
|
build_options_long = ['debug', 'release']
|
|
|
|
# list of valid commands as keys. the values are optarg strings, but most
|
|
# are None for now (this is mainly for extensibility)
|
|
cmd_opt_dict = {
|
|
'about' : ['', []],
|
|
'setup' : ['', []],
|
|
'configure' : ['', []],
|
|
'build' : [build_options, build_options_long],
|
|
'clean' : [build_options, build_options_long],
|
|
'update' : ['', []],
|
|
'install' : ['', []],
|
|
'package' : ['', []],
|
|
'kill' : ['', []],
|
|
'usage' : ['', []],
|
|
'revision' : ['', []],
|
|
'reformat' : ['', []],
|
|
'open' : ['', []],
|
|
}
|
|
|
|
# aliases to valid commands
|
|
cmd_alias_dict = {
|
|
'info' : 'about',
|
|
'help' : 'usage',
|
|
'dist' : 'package',
|
|
'make' : 'build',
|
|
'cmake' : 'configure',
|
|
}
|
|
|
|
def complete_command(arg):
|
|
completions = []
|
|
|
|
for cmd, optarg in cmd_opt_dict.iteritems():
|
|
if cmd.startswith(arg):
|
|
completions.append(cmd)
|
|
|
|
for alias, cmd in cmd_alias_dict.iteritems():
|
|
if alias.startswith(arg):
|
|
completions.append(alias)
|
|
|
|
return completions
|
|
|
|
def start_cmd(argv):
|
|
|
|
cmd_arg = ''
|
|
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'
|
|
|
|
completions = complete_command(cmd_arg)
|
|
|
|
if cmd_arg and len(completions) > 0:
|
|
|
|
if len(completions) == 1:
|
|
|
|
# get the only completion (since in this case we have 1)
|
|
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)
|
|
|
|
run_cmd(cmd, argv[2:])
|
|
|
|
return 0
|
|
|
|
else:
|
|
print (
|
|
'Command `%s` too ambiguous, '
|
|
'could mean any of: %s'
|
|
) % (cmd_arg, ', '.join(completions))
|
|
else:
|
|
|
|
if len(argv) == 1:
|
|
print 'No command specified, showing usage.\n'
|
|
else:
|
|
print 'Command not recognised: %s\n' % cmd_arg
|
|
|
|
run_cmd('usage')
|
|
|
|
# generic error code if not returned sooner
|
|
return 1
|
|
|
|
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 = 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)
|
|
handler.verbose = verbose
|
|
|
|
# use reflection to get the function pointer
|
|
cmd_func = getattr(handler, cmd)
|
|
|
|
cmd_func()
|
|
except:
|
|
if not verbose:
|
|
# print friendly error for users
|
|
sys.stderr.write('Error: ' + sys.exc_info()[1].__str__())
|
|
exit(1)
|
|
else:
|
|
# if user wants to be verbose let python do it's thing
|
|
raise
|
|
|
|
def main(argv):
|
|
|
|
if sys.version_info < (2, 4):
|
|
print 'Python version must be at least: 2.4'
|
|
sys.exit(1)
|
|
|
|
try:
|
|
start_cmd(argv)
|
|
except KeyboardInterrupt:
|
|
print '\n\nUser aborted, exiting.'
|
|
|
|
# Start the program.
|
|
main(sys.argv)
|