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
|
'''
====================================================================
Copyright (c) 2003-2011 Barry A Scott. All rights reserved.
This software is licensed as described in the file LICENSE.txt,
which you should have received as part of this distribution.
====================================================================
wb_shell_win32_commands.py
'''
import win32process
import win32con
import win32api
import os
import string
import subprocess
import wb_platform_specific
import tempfile
def setupCommands():
pass
def getTerminalProgramList():
return ['CMD']
def getFileBrowserProgramList():
return ['Explorer']
def EditFile( app, project_info, filename ):
p = app.prefs.getEditor()
if p.editor_image:
if p.editor_options:
command_line = (u'"%s" %s "%s"' %
(p.editor_image, p.editor_options, filename))
else:
command_line = (u'"%s" "%s"' %
(p.editor_image, filename))
else:
command_line = (u'"notepad.exe" "%s"' %
(filename,))
app.log.info( command_line )
CreateProcess( app, command_line, project_info.getWorkingDir() )
def GuiDiffFiles( app, options ):
cmd_line = '"%s" %s' % (app.prefs.getDiffTool().gui_diff_tool, options)
app.log.info( cmd_line )
CreateProcess( app, cmd_line, os.path.curdir )
def ShellDiffFiles( app, options ):
cmd_line = (u'"%s" %s' %
(app.prefs.getDiffTool().shell_diff_tool
,options))
app.log.info( cmd_line )
return __run_command_with_output( cmd_line )
def ShellOpen( app, project_info, filename ):
app.log.info( T_('Open %s') % filename )
try:
win32api.ShellExecute( 0, 'open',
filename, '',
project_info.getWorkingDir(),
win32con.SW_SHOWNORMAL )
except win32api.error, e:
if e[0] == 31:
app.log.error( T_('Unable to shell open %s\n'
'Is an application associated with this file type?') % filename )
else:
app.log.error( T_('Unable to shell open %(filename)s - %(error)s') %
{'filename': filename
,'error': e[2]} )
def CommandShell( app, project_info ):
p = app.prefs.getShell()
working_dir = project_info.getWorkingDir()
# calc a title that is leaf to root so that the leaf shows up in a task bar first
title = []
pi = project_info
while pi:
title.append( pi.project_name )
pi = pi.parent
cmd_lines = [
u"@title %s\n" % (' '.join( title ),),
u"@set PYTHONPATH=\n",
u'@cd %s\n' % (working_dir,),
u'@echo on\n',
]
if len( p.shell_init_command ) > 0:
cmd_lines.append( u'call %s\n' % (p.shell_init_command,) )
f = tempfile.NamedTemporaryFile( mode='w', delete=False, prefix='tmp-wb-shell', suffix='.cmd' )
app.all_temp_files.append( f.name )
for line in cmd_lines:
f.write( line.encode( 'utf-8' ) )
f.close()
command_line = u'"%s" /k "%s"' % (os.environ['ComSpec'], f.name)
app.log.info( command_line )
CreateProcess( app, command_line, working_dir )
def FileBrowser( app, project_info ):
command_line = (u'explorer.exe /e,%s' %
(project_info.getWorkingDir(),))
app.log.info( command_line )
CreateProcess( app, command_line, project_info.getWorkingDir() )
def CreateProcess( app, command_line, current_dir ):
if not ensureDirectory( app, current_dir ):
return
try:
import ctypes
old_value = ctypes.c_long( 0 )
try:
ctypes.windll.kernel32.Wow64DisableWow64FsRedirection( ctypes.byref( old_value ) )
except:
pass
si = win32process.STARTUPINFO()
h_process, h_thread, process_id, thread_id = win32process.CreateProcess(
None,
command_line,
None, # processAttributes
None, # threadAttributes ,
0, # bInheritHandles ,
win32con.CREATE_NEW_CONSOLE, # dwCreationFlags ,
None, # newEnvironment ,
current_dir, # currentDirectory ,
si # startupinfo
)
try:
ctypes.windll.kernel32.Wow64RevertWow64FsRedirection( old_value )
except:
pass
except win32process.error, detail:
app.log.error( T_('Create process failed for command - %(command)s\n'
'Reason %(reason)s') %
{'command': command_line
,'reason': detail} )
def ensureDirectory( app, current_dir ):
if not wb_platform_specific.uPathExists( current_dir ):
try:
os.makedirs( current_dir )
app.log.info( T_('Created directory %s') % current_dir )
except IOError, e:
app.log.error( T_('Create directory %(dir)s - %(error)s') %
{'dir': current_dir
,'error': e} )
return 0
elif not wb_platform_specific.uPathIsdir( current_dir ):
app.log.error( T_('%s is not a directory') % current_dir )
return 0
return 1
def __run_command_with_output( command_line ):
err_prefix = 'error running %s' % command_line
try:
proc = subprocess.Popen(
command_line,
bufsize=-1,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
)
all_output = proc.stdout.read()
proc.wait()
return all_output
except EnvironmentError, e:
return '%s - %s' % (err_prefix, str(e))
|