This file is indexed.

/usr/lib/python2.7/dist-packages/asrun/parser.py is in code-aster-run 1.13.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# -*- coding: utf-8 -*-

# ==============================================================================
# COPYRIGHT (C) 1991 - 2003  EDF R&D                  WWW.CODE-ASTER.ORG
# 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; EITHER VERSION 2 OF THE LICENSE, OR
# (AT YOUR OPTION) ANY LATER VERSION.
#
# 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 EDF R&D CODE_ASTER,
#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
# ==============================================================================

"""
This class define a 'light' modified parser :
    - change exit method which exits using run.Sortie method
    - add an action 'store_const_once' to the parser.
"""

import os
from optparse import OptionParser, SUPPRESS_HELP, Option, OptionError, OptionValueError

from asrun.common.i18n  import _
from asrun.__pkginfo__  import version, copyright
from asrun.mystring     import print3, convert
from asrun.core         import magic


class AsRunOption(Option):
    """Add 'store_const_once' action, it works like 'store_const' except that
    a value can be stored only once, next occurences will raise an error.
    """
    ACTIONS = Option.ACTIONS + ("store_const_once",)
    STORE_ACTIONS = Option.STORE_ACTIONS + ("store_const_once",)
    TYPED_ACTIONS = Option.TYPED_ACTIONS + ("store_const_once",)

    def take_action (self, action, dest, opt, value, values, parser):
        """Uses 'store_const_once' or standard actions.
        """
        if action == "store_const_once":
            # ----- store_const_once
            if not hasattr(values, dest) or not getattr(values, dest):
                setattr(values, dest, getattr(self, 'const'))
            else:
                raise OptionValueError("%r is invalid because '%s' previously occurs" \
                        % (getattr(self, 'const'), dest))
        else:
            # ----- standard actions
            Option.take_action(self, action, dest, opt, value, values, parser)

    def _check_const (self):
        if self.action != "store_const" and self.action != "store_const_once" \
                and getattr(self, 'const') is not None:
            raise OptionError(
                    "'const' must not be supplied for action %r" % self.action, self)

    # ----- because of changes to private method _check_conf
    CHECK_METHODS = [Option._check_action,
                    Option._check_type,
                    Option._check_choice,
                    Option._check_dest,
                    _check_const,
                    Option._check_nargs,
                    Option._check_callback]


class AsRunParser(OptionParser):
    """Modify lightly the standard parser.
    """
    def __init__(self, run, *args, **kwargs):
        """Initialization."""
        self.run = run
        # set option_class = AsRunOption here
        OptionParser.__init__(self, option_class=AsRunOption, *args, **kwargs)


    def exit(self, status=0, msg=None):
        """Call 'run.Sortie' method instead of 'sys.exit'."""
        if msg:
            magic.get_stderr().write(convert(msg))
        self.run.PrintExitCode = False
        self.run.Sortie(status)


    #def get_usage(self):
        #return to_unicode(OptionParser.get_usage(self))
    def print_usage(self, file=magic.get_stdout()):
        """Print the usage message for the current program"""
        if self.usage:
            print3(self.get_usage(), file=file)


# values used if arguments are not parsed (when using AsRunFactory for example)
default_options = {
    'verbose' : False,
    'silent'  : False,
    'num_job' : str(os.getpid()),
}


def define_parser(run):
    """Build argument parser.
    """
    p = AsRunParser(run,
        usage=u"""%prog action [options] [arguments]

  Functions :
""",
        version="""as_run %s
%s""" % (version, copyright))
    p.add_option('-v', '--verbose',
        action='store_true', dest='verbose', default=default_options['verbose'],
        help=_(u'increase verbosity'))
    p.add_option('--silent',
        action='store_true', dest='silent', default=default_options['silent'],
        help=_(u'run as silent as possible'))
    p.add_option('-g', '--debug',
        action='store_true', dest='debug', default=False,
        help=_(u'print debugging information'))
    p.add_option('--stdout',
        action='store', dest='stdout', default=None, metavar='FILE',
        help=_(u'allow to redirect messages usually written on sys.stdout'))
    p.add_option('--stderr',
        action='store', dest='stderr', default=None, metavar='FILE',
        help=_(u'allow to redirect messages usually written on sys.stderr '
                '(only asrun messages)'))
    p.add_option('--log_progress',
        action='store', dest='log_progress', default=None, metavar='FILE',
        help=_(u'redirect progress informations to a file instead of sys.stderr'))
    p.add_option('--nodebug_stderr',
        action='store_false', dest='debug_stderr', default=True,
        help=_(u'disable printing of debugging information to stderr'))
    p.add_option('-f', '--force',
        action='store_true', dest='force', default=False,
        help=_(u'force operations which can be cached (download, ' \
             'compilation...)'))
    p.add_option('--num_job',
        action='store', dest='num_job', default=default_options['num_job'],
        help=SUPPRESS_HELP)
    p.add_option('--display',
        action='store', dest='display', default=None,
        help=_(u'value of DISPLAY variable (NOTE : some functions read it from a file)'))
    p.add_option('--rcdir',
        action='store', dest='rcdir', default=None, metavar='DIR',
        help=_(u"use resources directory $HOME/'DIR' (default is .astkrc). "
            "Avoid absolute path because it will be passed to remote servers."))
    # options which override the server configuration
    #XXX howto to merge with SSHServer and co ?
    p.add_option('--remote_shell_protocol',
        action='store', dest='remote_shell_protocol', default='SSH',
        help=_(u'remote protocol used for shell commands'))
    p.add_option('--remote_copy_protocol',
        action='store', dest='remote_copy_protocol', default='SCP',
        help=_(u'remote protocol used to copy files and directories'))

    return p


def get_option_value(args_list, opt, default=None, action="store"):
    """Parse the arguments 'args_list' and return value of the option named 'opt'."""
    def fpass(err, *args, **kwargs):
        """do not exit"""
        raise
    if not type(opt) in (list, tuple):
        opt = [opt,]
    kwargs = { "dest" : "var", "action" : action }
    parser = OptionParser()
    parser.error = fpass
    parser.add_option(*opt, **kwargs)
    value = None
    if action == "store_true":
        value = False
    l_args = []
    # --help would raise print_help of the working parser
    if "-h" not in args_list and "--help" not in args_list:
        for arg in args_list:
            l_args.append(arg)
            try:
                options, args = parser.parse_args(l_args)
                value = options.var
            except Exception:
                l_args.pop(-1)
    if value is None:
        value = default
    return value