/usr/lib/python2.7/dist-packages/asrun/main.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 | # -*- 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 is the main file to access to astk services through as_run
"""
import os
import sys
from asrun.common.i18n import _
# ----- check Python version
if sys.hexversion < 0x020400F0:
print "This script requires Python 2.4 or higher, sorry !"
sys.exit(4)
from asrun.core import magic
from asrun.mystring import print3
from asrun.run import AsterRun
from asrun.system import AsterSystem
from asrun.common.sysutils import local_full_host
def start():
# ----- divers
os.stat_float_times(True)
# ----- backward compatibility
from asrun.backward_compatibility import change_argv
sys.argv = change_argv(sys.argv)
# ----- initialisation
run = AsterRun()
magic.run = run
# ----- retrieve options and arguments
opts, args = run.ParseArgs()
# init magic
magic.set_stdout(run['stdout'])
magic.set_stderr(run['stderr'])
magic.init_logger(filename=run['log_progress'], debug=run['debug'])
run.current_action = opts.action
if run.current_action == None:
# if symbolic link "action" -> "as_run --action"
alias = os.path.basename(sys.argv[0])
if alias in run.actions_info.keys():
run.current_action = alias
else:
# default to 'run'
run.current_action = 'run'
#run.parser.error(_(u'you must specify an action'))
# ----- get system commands
run.DBG("Command line run on '%s'" % local_full_host,
"using python executable '%s' :" % sys.executable,
sys.argv)
run.system = AsterSystem(run)
run.PostConf()
# ----- debug information
if run['debug']:
run.PrintConfig()
print3(_(u'Arguments :'), repr(args))
print3()
# ----- start 'current_action'
try :
act = run.current_action
if run.options['proxy'] is True:
act = 'call_proxy'
meth = run.actions_info[act]['method']
except KeyError:
run.Mess(_(u'dictionnary bad defined :')+' actions_info', '<F>_PROGRAM_ERROR')
else:
# trap <Control+C>
try:
meth(run, *args)
except KeyboardInterrupt:
run.Mess(_(u"'--%s' stopped by user") % run.current_action, '<F>_INTERRUPT')
run.Sortie(0)
def main():
if len(sys.argv) > 1 and sys.argv[1] == '--pdb':
del sys.argv[1]
import pdb
pdb.run('start()')
else:
start()
|