File: optionparse.py

package info (click to toggle)
terminator 0.93-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,672 kB
  • ctags: 980
  • sloc: python: 7,551; sh: 22; makefile: 12
file content (121 lines) | stat: -rwxr-xr-x 5,042 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/python
#    Terminator.optionparse - Parse commandline options
#    Copyright (C) 2006-2010  cmsj@tenshu.net
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation, version 2 only.
#
#  This program 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, write to the Free Software
#  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Terminator.optionparse - Parse commandline options"""

import sys
import os

from optparse import OptionParser, SUPPRESS_HELP
from util import dbg, err
import util
import config
import version

def execute_cb(option, opt, value, lparser):
    """Callback for use in parsing execute options"""
    assert value is None
    value = []
    while lparser.rargs:
        arg = lparser.rargs[0]
        value.append(arg)
        del(lparser.rargs[0])
    setattr(lparser.values, option.dest, value)

def parse_options():
    """Parse the command line options"""
    usage = "usage: %prog [options]"

    configobj = config.Config()
    parser = OptionParser(usage)

    parser.add_option('-v', '--version', action='store_true', dest='version',
            help='Display program version')
    parser.add_option('-m', '--maximise', action='store_true', dest='maximise',
            help='Maximise the window')
    parser.add_option('-f', '--fullscreen', action='store_true',
            dest='fullscreen', help='Make the window fill the screen')
    parser.add_option('-b', '--borderless', action='store_true',
            dest='borderless', help='Disable window borders')
    parser.add_option('-H', '--hidden', action='store_true', dest='hidden',
            help='Hide the window at startup')
    parser.add_option('-T', '--title', dest='forcedtitle', help='Specify a \
title for the window')
    parser.add_option('--geometry', dest='geometry', type='string', help='Set \
the preferred size and position of the window (see X man page)')
    parser.add_option('-e', '--command', dest='command', help='Specify a \
command to execute inside the terminal')
    parser.add_option('-x', '--execute', dest='execute', action='callback',
            callback=execute_cb, help='Use the rest of the command line as a \
command to execute inside the terminal, and its arguments')
    parser.add_option('--working-directory', metavar='DIR',
            dest='working_directory', help='Set the working directory')
    parser.add_option('-r', '--role', dest='role', help='Set a custom \
WM_WINDOW_ROLE property on the window')
    parser.add_option('-l', '--layout', dest='layout', help='Select a layout')
    parser.add_option('-d', '--debug', action='count', dest='debug',
            help='Enable debugging information (twice for debug server)')
    parser.add_option('--debug-classes', action='store', dest='debug_classes', 
            help='Comma separated list of classes to limit debugging to')
    parser.add_option('--debug-methods', action='store', dest='debug_methods',
            help='Comma separated list of methods to limit debugging to')
    for item in ['--sm-client-id', '--sm-config-prefix', '--screen', '-n',
    '--no-gconf', '-p', '--profile' ]:
        parser.add_option(item, dest='dummy', action='store',
                help=SUPPRESS_HELP)

    (options, args) = parser.parse_args()
    if len(args) != 0:
        parser.error('Additional unexpected arguments found: %s' % args)

    if options.version:
        print '%s %s' % (version.APP_NAME, version.APP_VERSION)
        sys.exit(0)

    if options.debug_classes or options.debug_methods:
        if not options.debug > 0:
            options.debug = 1

    if options.debug:
        util.DEBUG = True
        if options.debug > 1:
            util.DEBUGFILES = True
        if options.debug_classes:
            classes = options.debug_classes.split(',')
            for item in classes:
                util.DEBUGCLASSES.append(item.strip())
        if options.debug_methods:
            methods = options.debug_methods.split(',')
            for item in methods:
                util.DEBUGMETHODS.append(item.strip())

    if options.working_directory:
        if os.path.exists(os.path.expanduser(options.working_directory)):
            os.chdir(os.path.expanduser(options.working_directory))
        else:
            err('OptionParse::parse_options: %s does not exist' %
                    options.working_directory)
            options.working_directory = ''

    if options.layout is None:
        options.layout = 'default'

    configobj.options_set(options)

    if util.DEBUG == True:
        dbg('OptionParse::parse_options: command line options: %s' % options)

    return(options)