14

Python の Cygwin ビルドで実行される Python スクリプトを使用して、ネイティブ Windows ユーティリティ (Cygwin 対応ではない) に対して発行されるコマンドを作成します。これには、コマンドを発行する前にパス パラメータを POSIX から WIN 形式に変換する必要があります。

cygwin を使用して目的を実行するため、cygpath ユーティリティを呼び出すのが最も適切な方法ですが、少し恐ろしい (そして遅い) ものでもあります。

私はすでに Python の Cygwin ビルドを実行しているので、変換を行うコードが存在します。まったく新しいプロセスを起動する必要なく、Python で直接この機能へのフックを提供する Cygwin/Python 固有の拡張機能が必要なようです。

4

4 に答える 4

6

これは、ctypes を使用して Cygwin API を呼び出すことで可能になります。以下のコードは私にとってはうまくいきます。私は Windows 2012 で 64 ビットの cygwin DLL バージョン 2.5.2 を使用しています。これは Python 2.7.10 と Python 3.4.3 の両方の Cygwin バージョンで動作します。

基本的にcygwin_create_pathfromを呼び出しcygwin1.dllてパス変換を実行します。mallocこの関数は、変換されたパスを含むメモリ バッファを ( を使用して) 割り当てます。freeそのため、 fromを使用しcygwin1.dllて、割り当てたバッファを解放する必要があります。

以下は、 6 (Python 2/3 互換ライブラリ)xunicodeの貧弱な代替案であることに注意してください。Python 2 と 3 の両方をサポートする必要がある場合は、6 の方がはるかに良い答えですが、バンドルされていないモジュールに依存しないようにサンプルを作成したかったため、このようにしました。

from ctypes import cdll, c_void_p, c_int32, cast, c_char_p, c_wchar_p
from sys import version_info

xunicode = str if version_info[0] > 2 else eval("unicode")

# If running under Cygwin Python, just use DLL name
# If running under non-Cygwin Windows Python, use full path to cygwin1.dll
# Note Python and cygwin1.dll must match bitness (i.e. 32-bit Python must
# use 32-bit cygwin1.dll, 64-bit Python must use 64-bit cygwin1.dll.)
cygwin = cdll.LoadLibrary("cygwin1.dll")
cygwin_create_path = cygwin.cygwin_create_path
cygwin_create_path.restype = c_void_p
cygwin_create_path.argtypes = [c_int32, c_void_p]

# Initialise the cygwin DLL. This step should only be done if using
# non-Cygwin Python. If you are using Cygwin Python don't do this because
# it has already been done for you.
cygwin_dll_init = cygwin.cygwin_dll_init
cygwin_dll_init.restype = None
cygwin_dll_init.argtypes = []
cygwin_dll_init()

free = cygwin.free
free.restype = None
free.argtypes = [c_void_p]

CCP_POSIX_TO_WIN_A = 0
CCP_POSIX_TO_WIN_W = 1
CCP_WIN_A_TO_POSIX = 2
CCP_WIN_W_TO_POSIX = 3

def win2posix(path):
    """Convert a Windows path to a Cygwin path"""
    result = cygwin_create_path(CCP_WIN_W_TO_POSIX,xunicode(path))
    if result is None:
        raise Exception("cygwin_create_path failed")
    value = cast(result,c_char_p).value
    free(result)
    return value

def posix2win(path):
    """Convert a Cygwin path to a Windows path"""
    result = cygwin_create_path(CCP_POSIX_TO_WIN_W,str(path))
    if result is None:
        raise Exception("cygwin_create_path failed")
    value = cast(result,c_wchar_p).value
    free(result)
    return value

# Example, convert LOCALAPPDATA to cygwin path and back
from os import environ
localAppData = environ["LOCALAPPDATA"]
print("Original Win32 path: %s" % localAppData)
localAppData = win2posix(localAppData)
print("As a POSIX path: %s" % localAppData)
localAppData = posix2win(localAppData)
print("Back to a Windows path: %s" % localAppData)
于 2016-07-20T03:46:56.297 に答える
1

cygpath sourceを参照すると、 cygpathの実装が自明ではなく、どのライブラリ バージョンも利用できないように見えます。

cygpath は、-fオプションを使用して (または stdin を使用して-f -) ファイルから入力を取得することをサポートし、複数のパスを取得して、毎回変換されたパスを吐き出すことができるため、おそらく単一の cygpath インスタンスを作成して開くことができます (Python のsubprocess.Popenを使用) 。毎回cygpathを再起動するのではなく。

于 2012-06-04T19:46:53.007 に答える
1

cygwinむしろ、 dllを使用するこの Python ヘルパーを書きたいと思います。

import errno
import ctypes
import enum
import sys

class ccp_what(enum.Enum):
    posix_to_win_a = 0 # from is char *posix, to is char *win32
    posix_to_win_w = 1 # from is char *posix, to is wchar_t *win32
    win_a_to_posix = 2 # from is char *win32, to is char *posix
    win_w_to_posix = 3 # from is wchar_t *win32, to is char *posix

    convtype_mask = 3

    absolute = 0          # Request absolute path (default).
    relative = 0x100      # Request to keep path relative.
    proc_cygdrive = 0x200 # Request to return /proc/cygdrive path (only with CCP_*_TO_POSIX)

class CygpathError(Exception):
    def __init__(self, errno, msg=""):
        self.errno = errno
        super(Exception, self).__init__(os.strerror(errno))

class Cygpath(object):
    bufsize = 512

    def __init__(self):
        if 'cygwin' not in sys.platform:
            raise SystemError('Not running on cygwin')

        self._dll = ctypes.cdll.LoadLibrary("cygwin1.dll")

    def _cygwin_conv_path(self, what, path, size = None):
        if size is None:
            size = self.bufsize
        out = ctypes.create_string_buffer(size)
        ret = self._dll.cygwin_conv_path(what, path, out, size)
        if ret < 0:
            raise CygpathError(ctypes.get_errno())
        return out.value

    def posix2win(self, path, relative=False):
        out = ctypes.create_string_buffer(self.bufsize)
        t = ccp_what.relative.value if relative else ccp_what.absolute.value
        what = ccp_what.posix_to_win_a.value | t
        return self._cygwin_conv_path(what, path)

    def win2posix(self, path, relative=False):
        out = ctypes.create_string_buffer(self.bufsize)
        t = ccp_what.relative.value if relative else ccp_what.absolute.value
        what = ccp_what.win_a_to_posix.value | t
        return self._cygwin_conv_path(what, path)
于 2017-03-24T11:02:30.737 に答える