OpenSecurity/bin/cygwin.py
author dyle@opensecurity.d03.arc.local
Mon, 27 Jan 2014 15:12:33 +0000
changeset 52 1238895dc6b6
parent 50 1f4ba6a6ecf5
child 53 01839f13cef3
permissions -rwxr-xr-x
working on installment and console-less
     1 #!/bin/env python
     2 # -*- coding: utf-8 -*-
     3 
     4 # ------------------------------------------------------------
     5 # cygwin command
     6 # 
     7 # executes a cygwin command inside the opensecurity project
     8 #
     9 # Autor: Oliver Maurhart, <oliver.maurhart@ait.ac.at>
    10 #
    11 # Copyright (C) 2013 AIT Austrian Institute of Technology
    12 # AIT Austrian Institute of Technology GmbH
    13 # Donau-City-Strasse 1 | 1220 Vienna | Austria
    14 # http://www.ait.ac.at
    15 #
    16 # This program is free software; you can redistribute it and/or
    17 # modify it under the terms of the GNU General Public License
    18 # as published by the Free Software Foundation version 2.
    19 # 
    20 # This program is distributed in the hope that it will be useful,
    21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    23 # GNU General Public License for more details.
    24 # 
    25 # You should have received a copy of the GNU General Public License
    26 # along with this program; if not, write to the Free Software
    27 # Foundation, Inc., 51 Franklin Street, Fifth Floor, 
    28 # Boston, MA  02110-1301, USA.
    29 # ------------------------------------------------------------
    30 
    31 
    32 # ------------------------------------------------------------
    33 # imports
    34 
    35 import os
    36 import subprocess
    37 import sys
    38 
    39 # local
    40 from environment import Environment
    41 
    42 
    43 # ------------------------------------------------------------
    44 # code
    45 
    46 
    47 class Cygwin(object):
    48 
    49     """Some nifty methods working with Cygwin"""
    50     
    51     def __call__(self, command, stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.PIPE):
    52         """make an instance of this object act as a function"""
    53         return self.execute(command, stdin, stdout, stderr)
    54 
    55         
    56     @staticmethod
    57     def root():
    58         """get the path to our local cygwin installment"""
    59         home_drive = os.path.expandvars("%HOMEDRIVE%") + os.sep
    60         path_hint = [ 
    61             os.path.abspath(os.path.join(Environment('OpenSecurity').prefix_path, '..', 'cygwin')), 
    62             os.path.abspath(os.path.join(Environment('OpenSecurity').prefix_path, '..', 'cygwin64')), 
    63             os.path.abspath(os.path.join(home_drive, 'cygwin')),
    64             os.path.abspath(os.path.join(home_drive, 'cygwin64'))
    65         ]
    66         path_valid = [ p for p in path_hint if os.path.exists(p) ]
    67         return path_valid[0]
    68 
    69 
    70     def execute(self, command, stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.PIPE, dos_window = False):
    71         """execute a cygwin shell command
    72         
    73         command is list of arguments like ['/bin/ls', '-al', '-h']
    74         
    75         a Popen object is returned"""
    76         command_path = os.sep.join([Cygwin.root()] + command[0].split('/')[1:])
    77         command = [command_path] + command[1:]
    78 
    79         # with or without DOS window
    80         if not dos_window:
    81             run_command = os.sep.join([Cygwin.root()] + ['bin', 'run']) 
    82             command = [run_command] + command
    83 
    84         try:
    85             print('cygwin: ' + ' '.join(command))
    86             return subprocess.Popen(command, shell = False, stdin = stdin, stdout = stdout, stderr = stderr)
    87         except:
    88             sys.stderr.write('Failed to execute cygwin command.\n\tcommand="' + ' '.join(command) + '"\n')
    89         
    90         
    91     @staticmethod
    92     def is_X11_running():
    93         """check if we can connect to a X11 running instance"""
    94         p = Cygwin()(['/bin/bash', '-c', 'DISPLAY=:0 /usr/bin/xset -q'])
    95         stdout, stderr = p.communicate()
    96         return p.returncode == 0
    97         
    98         
    99     @staticmethod
   100     def start_X11():
   101         """start X11 in the background (if not already running) on DISPLAY=:0"""
   102         
   103         # do not start if already running
   104         if Cygwin.is_X11_running():
   105             return
   106             
   107         # launch X11 (forget output and return immediately)
   108         p = Cygwin()(['/bin/bash', '--login', '-i', '-c', ' X :0 -multiwindow'], stdin = None, stdout = None, stderr = None)
   109         
   110     
   111 # start
   112 if __name__ == "__main__":
   113 
   114     print(Cygwin.root())
   115     sys.exit(1)
   116 
   117     # execute what is given on the command line
   118     c = Cygwin()
   119     p = c(sys.argv[1:])
   120     
   121     # wait until the process finished and grab the output
   122     stdout, stderr = p.communicate()
   123     print('=== call result on stdout: ===\n' + stdout)
   124     print('=== call result on stderr: ===\n' + stderr)
   125