mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ff0b54f0da
--HG-- extra : rebase_source : 2e33d054a13824d1a7e527777383820946684c3f
122 lines
4.0 KiB
Python
122 lines
4.0 KiB
Python
# Copyright 2009, Google Inc.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are
|
|
# met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# * Redistributions in binary form must reproduce the above
|
|
# copyright notice, this list of conditions and the following disclaimer
|
|
# in the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
# contributors may be used to endorse or promote products derived from
|
|
# this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
"""Web Sockets utilities.
|
|
"""
|
|
|
|
|
|
import StringIO
|
|
import os
|
|
import re
|
|
import traceback
|
|
|
|
|
|
def get_stack_trace():
|
|
"""Get the current stack trace as string.
|
|
|
|
This is needed to support Python 2.3.
|
|
TODO: Remove this when we only support Python 2.4 and above.
|
|
Use traceback.format_exc instead.
|
|
"""
|
|
|
|
out = StringIO.StringIO()
|
|
traceback.print_exc(file=out)
|
|
return out.getvalue()
|
|
|
|
|
|
def prepend_message_to_exception(message, exc):
|
|
"""Prepend message to the exception."""
|
|
|
|
exc.args = (message + str(exc),)
|
|
return
|
|
|
|
|
|
def __translate_interp(interp, cygwin_path):
|
|
"""Translate interp program path for Win32 python to run cygwin program
|
|
(e.g. perl). Note that it doesn't support path that contains space,
|
|
which is typically true for Unix, where #!-script is written.
|
|
For Win32 python, cygwin_path is a directory of cygwin binaries.
|
|
|
|
Args:
|
|
interp: interp command line
|
|
cygwin_path: directory name of cygwin binary, or None
|
|
Returns:
|
|
translated interp command line.
|
|
"""
|
|
if not cygwin_path:
|
|
return interp
|
|
m = re.match("^[^ ]*/([^ ]+)( .*)?", interp)
|
|
if m:
|
|
cmd = os.path.join(cygwin_path, m.group(1))
|
|
return cmd + m.group(2)
|
|
return interp
|
|
|
|
|
|
def get_script_interp(script_path, cygwin_path=None):
|
|
"""Gets #!-interpreter command line from the script.
|
|
|
|
It also fixes command path. When Cygwin Python is used, e.g. in WebKit,
|
|
it could run "/usr/bin/perl -wT hello.pl".
|
|
When Win32 Python is used, e.g. in Chromium, it couldn't. So, fix
|
|
"/usr/bin/perl" to "<cygwin_path>\perl.exe".
|
|
|
|
Args:
|
|
script_path: pathname of the script
|
|
cygwin_path: directory name of cygwin binary, or None
|
|
Returns:
|
|
#!-interpreter command line, or None if it is not #!-script.
|
|
"""
|
|
fp = open(script_path)
|
|
line = fp.readline()
|
|
fp.close()
|
|
m = re.match("^#!(.*)", line)
|
|
if m:
|
|
return __translate_interp(m.group(1), cygwin_path)
|
|
return None
|
|
|
|
def wrap_popen3_for_win(cygwin_path):
|
|
"""Wrap popen3 to support #!-script on Windows.
|
|
|
|
Args:
|
|
cygwin_path: path for cygwin binary if command path is needed to be
|
|
translated. None if no translation required.
|
|
"""
|
|
__orig_popen3 = os.popen3
|
|
def __wrap_popen3(cmd, mode='t', bufsize=-1):
|
|
cmdline = cmd.split(' ')
|
|
interp = get_script_interp(cmdline[0], cygwin_path)
|
|
if interp:
|
|
cmd = interp + " " + cmd
|
|
return __orig_popen3(cmd, mode, bufsize)
|
|
os.popen3 = __wrap_popen3
|
|
|
|
|
|
# vi:sts=4 sw=4 et
|