Tue, 19 Jan 2021 20:44:16 +0100
Added tag WORKING_BEFORE_UPGRADE_TO_GITMASTER for changeset f7e9bd735ce1
15 | 1 | #!/usr/bin/env python |
2 | ||
3 | # This file is part of the Printrun suite. | |
4 | # | |
5 | # Printrun is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU General Public License as published by | |
7 | # the Free Software Foundation, either version 3 of the License, or | |
8 | # (at your option) any later version. | |
9 | # | |
10 | # Printrun is distributed in the hope that it will be useful, | |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
14 | # | |
15 | # You should have received a copy of the GNU General Public License | |
16 | # along with Printrun. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
18 | import sys | |
19 | import traceback | |
20 | import logging | |
21 | from printrun.pronsole import pronsole | |
22 | import getopt | |
23 | ||
24 | if __name__ == "__main__": | |
25 | ||
26 | from printrun.printcore import __version__ as printcore_version | |
27 | ||
28 | usage = "Usage:\n"+\ | |
29 | " pronsole [OPTION]\n\n"+\ | |
30 | "Options:\n"+\ | |
31 | " -V, --version\t\t\tPrint program's version number and exit\n"+\ | |
32 | " -h, --help\t\t\tPrint this help message and exit\n"+\ | |
33 | " -c, --conf\t\t\tLoad this file on startup instead of .pronsolerc; you may chain config files, if so settings auto-save will use the last specified file\n"+\ | |
34 | " -e, --execute\t\t\tExecutes command after configuration/.pronsolerc is loaded; macros/settings from these commands are not autosaved" | |
35 | ||
36 | try: | |
37 | opts, args = getopt.getopt(sys.argv[1:], "hVce", ["help", "version", "conf", "execute"]) | |
38 | except getopt.GetoptError, err: | |
39 | print str(err) | |
40 | print usage | |
41 | sys.exit(2) | |
42 | for o, a in opts: | |
43 | if o in ('-V','--version'): | |
44 | print "printrun "+printcore_version | |
45 | sys.exit(0) | |
46 | elif o in ('-h', '--help'): | |
47 | print usage | |
48 | sys.exit(0) | |
49 | ||
50 | interp = pronsole() | |
51 | interp.parse_cmdline(sys.argv[1:]) | |
52 | try: | |
53 | interp.cmdloop() | |
54 | except SystemExit: | |
55 | interp.p.disconnect() | |
56 | except: | |
57 | logging.error(_("Caught an exception, exiting:") | |
58 | + "\n" + traceback.format_exc()) | |
59 | interp.p.disconnect() |