chiark / gitweb /
Start doing logging properly
[fdroidserver.git] / fdroid
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # fdroid.py - part of the FDroid server tools
5 # Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
6 # Copyright (C) 2013 Daniel Martí <mvdan@mvdan.cc>
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU Affero General Public License for more details.
17 #
18 # You should have received a copy of the GNU Affero General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 import sys
22 import logging
23
24 commands = [
25         "build",
26         "init",
27         "install",
28         "update",
29         "publish",
30         "verify",
31         "checkupdates",
32         "import",
33         "rewritemeta",
34         "lint",
35         "scanner",
36         "stats",
37         "server"]
38
39 def print_help():
40     print "Valid commands are:"
41     for command in commands:
42         print "  " + command
43     print "Use '%s <command> --help' for more info about that command."%sys.argv[0]
44
45 def main():
46
47     if len(sys.argv) <= 1:
48         print_help()
49         sys.exit(0)
50
51     command = sys.argv[1]
52     if not command in commands:
53         if command not in ('-h', '--help'):
54             print "Command '" + command + "' not recognised.\n"
55         print_help()
56         sys.exit(1)
57
58     verbose = any(s in sys.argv for s in ['-v', '--verbose'])
59
60     logging.basicConfig(format='%(levelname)s: %(message)s',
61             level=logging.DEBUG if verbose else logging.INFO)
62
63     # Trick optparse into displaying the right usage when --help is used.
64     sys.argv[0] += ' ' + command
65
66     del sys.argv[1]
67     mod = __import__('fdroidserver.' + command, None, None, [command])
68     mod.main()
69     sys.exit(0)
70
71 if __name__ == "__main__":
72     main()
73