Salome HOME
Add the test command first version
[tools/sat.git] / commands / shell.py
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3 #  Copyright (C) 2010-2012  CEA/DEN
4 #
5 #  This library is free software; you can redistribute it and/or
6 #  modify it under the terms of the GNU Lesser General Public
7 #  License as published by the Free Software Foundation; either
8 #  version 2.1 of the License.
9 #
10 #  This library 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 GNU
13 #  Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public
16 #  License along with this library; if not, write to the Free Software
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18
19 import subprocess
20
21 import src
22
23 # Define all possible option for the shell command :  sat shell <options>
24 parser = src.options.Options()
25 parser.add_option('c', 'command', 'string', 'command',
26     _('The shell command to execute.'), "")
27
28 def description():
29     '''method that is called when salomeTools is called with --help option.
30     
31     :return: The text to display for the shell command description.
32     :rtype: str
33     '''
34     return _("Executes the shell command passed as argument")
35   
36 def run(args, runner, logger):
37     '''method that is called when salomeTools is called with shell parameter.
38     '''
39     
40     # Parse the options
41     (options, args) = parser.parse_args(args)
42       
43     res = subprocess.call(options.command,
44                           shell=True,
45                           stdout=logger.logTxtFile,
46                           stderr=subprocess.STDOUT)
47     
48     # Format the result to be 0 (success) or 1 (fail)
49     if res != 0:
50         res = 1
51     
52     return res