annotate src/parpg.py @ 180:59c4db30fe05

Created parpg.py and moved code from parpg\main.py to it.
author KarstenBock@gmx.net
date Mon, 10 Oct 2011 15:12:33 +0200
parents
children 54c4277ed905
rev   line source
180
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
1 #!/usr/bin/env python2
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
2 # This program is free software: you can redistribute it and/or modify
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
3 # it under the terms of the GNU General Public License as published by
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
4 # the Free Software Foundation, either version 3 of the License, or
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
5 # (at your option) any later version.
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
6
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
7 # This program is distributed in the hope that it will be useful,
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
10 # GNU General Public License for more details.
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
11
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
12 # You should have received a copy of the GNU General Public License
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
14
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
15 #TODO: Modularize this script
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
16 import sys
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
17 from optparse import OptionParser
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
18 from os import path
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
19
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
20 from parpg.main import main
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
21
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
22 usage = ('usage: %prog [options] settings_path [system_path user_path]\n\n'
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
23 'The settings_path argument is mandatory and is the directory in \n'
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
24 'which your parpg.cfg file is located. Optionally, you may \n'
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
25 'specify where data files are located (system_path), and where \n'
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
26 'the user settings and data files should be saved to (user_path)\n\n'
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
27 'Example: python %prog .')
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
28
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
29 parser = OptionParser(description='PARPG Launcher Script', usage=usage)
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
30 parser.add_option('-f', '--logfile',
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
31 help='Name of log file to save to')
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
32 parser.add_option('-l', '--loglevel', default='critical',
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
33 help='desired output level for log file')
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
34 opts, args = parser.parse_args()
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
35
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
36 if not args:
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
37 parser.print_help()
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
38 sys.exit(1)
59c4db30fe05 Created parpg.py and moved code from parpg\main.py to it.
KarstenBock@gmx.net
parents:
diff changeset
39 main(args, opts)