posix.py
718 lines
| 22.7 KiB
| text/x-python
|
PythonLexer
/ mercurial / posix.py
Martin Geisler
|
r8226 | # posix.py - Posix utility function implementations for Mercurial | ||
# | ||||
# Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Matt Mackall
|
r7890 | |||
Gregory Szorc
|
r25967 | from __future__ import absolute_import | ||
import errno | ||||
import fcntl | ||||
import getpass | ||||
import grp | ||||
import os | ||||
import pwd | ||||
import re | ||||
Pierre-Yves David
|
r25420 | import select | ||
Gregory Szorc
|
r25967 | import stat | ||
import sys | ||||
import tempfile | ||||
import unicodedata | ||||
from .i18n import _ | ||||
from . import ( | ||||
encoding, | ||||
Augie Fackler
|
r33724 | error, | ||
Matt Harbison
|
r35527 | policy, | ||
Pulkit Goyal
|
r30612 | pycompat, | ||
Gregory Szorc
|
r25967 | ) | ||
Matt Mackall
|
r7890 | |||
Matt Harbison
|
r35527 | osutil = policy.importmod(r'osutil') | ||
Matt Mackall
|
r7890 | normpath = os.path.normpath | ||
samestat = os.path.samestat | ||||
Augie Fackler
|
r27236 | try: | ||
oslink = os.link | ||||
except AttributeError: | ||||
# Some platforms build Python without os.link on systems that are | ||||
# vaguely unix-like but don't have hardlink support. For those | ||||
# poor souls, just say we tried and that it failed so we fall back | ||||
# to copies. | ||||
def oslink(src, dst): | ||||
raise OSError(errno.EINVAL, | ||||
'hardlinks not supported: %s to %s' % (src, dst)) | ||||
Matt Harbison
|
r39940 | readlink = os.readlink | ||
Adrian Buehlmann
|
r13280 | unlink = os.unlink | ||
Adrian Buehlmann
|
r9549 | rename = os.rename | ||
FUJIWARA Katsunori
|
r24692 | removedirs = os.removedirs | ||
Matt Mackall
|
r8614 | expandglobs = False | ||
Matt Mackall
|
r7890 | |||
umask = os.umask(0) | ||||
os.umask(umask) | ||||
Augie Fackler
|
r42778 | if not pycompat.ispy3: | ||
def posixfile(name, mode=r'r', buffering=-1): | ||||
fp = open(name, mode=mode, buffering=buffering) | ||||
# The position when opening in append mode is implementation defined, so | ||||
# make it consistent by always seeking to the end. | ||||
if r'a' in mode: | ||||
fp.seek(0, os.SEEK_END) | ||||
return fp | ||||
else: | ||||
# The underlying file object seeks as required in Python 3: | ||||
# https://github.com/python/cpython/blob/v3.7.3/Modules/_io/fileio.c#L474 | ||||
posixfile = open | ||||
Bryan O'Sullivan
|
r17560 | def split(p): | ||
Remy Blank
|
r18288 | '''Same as posixpath.split, but faster | ||
>>> import posixpath | ||||
Yuya Nishihara
|
r34133 | >>> for f in [b'/absolute/path/to/file', | ||
... b'relative/path/to/file', | ||||
... b'file_alone', | ||||
... b'path/to/directory/', | ||||
... b'/multiple/path//separators', | ||||
... b'/file_at_root', | ||||
... b'///multiple_leading_separators_at_root', | ||||
... b'']: | ||||
Remy Blank
|
r18288 | ... assert split(f) == posixpath.split(f), f | ||
''' | ||||
Bryan O'Sullivan
|
r17560 | ht = p.rsplit('/', 1) | ||
if len(ht) == 1: | ||||
return '', p | ||||
nh = ht[0].rstrip('/') | ||||
if nh: | ||||
return nh, ht[1] | ||||
Remy Blank
|
r18288 | return ht[0] + '/', ht[1] | ||
Bryan O'Sullivan
|
r17560 | |||
Matt Mackall
|
r7890 | def openhardlinks(): | ||
'''return true if it is safe to hold open file handles to hardlinks''' | ||||
return True | ||||
Adrian Buehlmann
|
r13375 | def nlinks(name): | ||
'''return number of hardlinks for the given file''' | ||||
return os.lstat(name).st_nlink | ||||
Adrian Buehlmann
|
r14231 | def parsepatchoutput(output_line): | ||
timeless
|
r8761 | """parses the output produced by patch and returns the filename""" | ||
Matt Mackall
|
r7890 | pf = output_line[14:] | ||
Pulkit Goyal
|
r30642 | if pycompat.sysplatform == 'OpenVMS': | ||
Matt Mackall
|
r7890 | if pf[0] == '`': | ||
pf = pf[1:-1] # Remove the quotes | ||||
else: | ||||
Peter Arrenbrecht
|
r8219 | if pf.startswith("'") and pf.endswith("'") and " " in pf: | ||
Matt Mackall
|
r7890 | pf = pf[1:-1] # Remove the quotes | ||
return pf | ||||
def sshargs(sshcmd, host, user, port): | ||||
'''Build argument list for ssh''' | ||||
args = user and ("%s@%s" % (user, host)) or host | ||||
Jun Wu
|
r33732 | if '-' in args[:1]: | ||
Augie Fackler
|
r33724 | raise error.Abort( | ||
_('illegal ssh hostname or username starting with -: %s') % args) | ||||
Jun Wu
|
r33732 | args = shellquote(args) | ||
if port: | ||||
args = '-p %s %s' % (shellquote(port), args) | ||||
return args | ||||
Matt Mackall
|
r7890 | |||
Adrian Buehlmann
|
r14273 | def isexec(f): | ||
Matt Mackall
|
r7890 | """check whether a file is executable""" | ||
Gregory Szorc
|
r25658 | return (os.lstat(f).st_mode & 0o100 != 0) | ||
Matt Mackall
|
r7890 | |||
Adrian Buehlmann
|
r14232 | def setflags(f, l, x): | ||
Koen Van Hoof
|
r32721 | st = os.lstat(f) | ||
s = st.st_mode | ||||
Matt Mackall
|
r7890 | if l: | ||
if not stat.S_ISLNK(s): | ||||
# switch file to link | ||||
Pulkit Goyal
|
r36321 | fp = open(f, 'rb') | ||
Dan Villiom Podlaski Christiansen
|
r13400 | data = fp.read() | ||
fp.close() | ||||
Ryan McElroy
|
r31537 | unlink(f) | ||
Matt Mackall
|
r7890 | try: | ||
os.symlink(data, f) | ||||
Idan Kamara
|
r14004 | except OSError: | ||
Matt Mackall
|
r7890 | # failed to make a link, rewrite file | ||
Pulkit Goyal
|
r36321 | fp = open(f, "wb") | ||
Dan Villiom Podlaski Christiansen
|
r13400 | fp.write(data) | ||
fp.close() | ||||
Matt Mackall
|
r7890 | # no chmod needed at this point | ||
return | ||||
if stat.S_ISLNK(s): | ||||
# switch link to file | ||||
data = os.readlink(f) | ||||
Ryan McElroy
|
r31537 | unlink(f) | ||
Pulkit Goyal
|
r36321 | fp = open(f, "wb") | ||
Dan Villiom Podlaski Christiansen
|
r13400 | fp.write(data) | ||
fp.close() | ||||
Gregory Szorc
|
r25658 | s = 0o666 & ~umask # avoid restatting for chmod | ||
Matt Mackall
|
r7890 | |||
Gregory Szorc
|
r25658 | sx = s & 0o100 | ||
Koen Van Hoof
|
r32721 | if st.st_nlink > 1 and bool(x) != bool(sx): | ||
# the file is a hardlink, break it | ||||
with open(f, "rb") as fp: | ||||
data = fp.read() | ||||
unlink(f) | ||||
with open(f, "wb") as fp: | ||||
fp.write(data) | ||||
Matt Mackall
|
r7890 | if x and not sx: | ||
# Turn on +x for every +r bit when making a file executable | ||||
# and obey umask. | ||||
Gregory Szorc
|
r25658 | os.chmod(f, s | (s & 0o444) >> 2 & ~umask) | ||
Matt Mackall
|
r7890 | elif not x and sx: | ||
# Turn off all +x bits | ||||
Gregory Szorc
|
r25658 | os.chmod(f, s & 0o666) | ||
Matt Mackall
|
r7890 | |||
Boris Feld
|
r41325 | def copymode(src, dst, mode=None, enforcewritable=False): | ||
Adrian Buehlmann
|
r15011 | '''Copy the file mode from the file at path src to dst. | ||
If src doesn't exist, we're using mode instead. If mode is None, we're | ||||
using umask.''' | ||||
try: | ||||
Gregory Szorc
|
r25658 | st_mode = os.lstat(src).st_mode & 0o777 | ||
Gregory Szorc
|
r25660 | except OSError as inst: | ||
Adrian Buehlmann
|
r15011 | if inst.errno != errno.ENOENT: | ||
raise | ||||
st_mode = mode | ||||
if st_mode is None: | ||||
st_mode = ~umask | ||||
Gregory Szorc
|
r25658 | st_mode &= 0o666 | ||
Boris Feld
|
r41325 | |||
new_mode = st_mode | ||||
if enforcewritable: | ||||
new_mode |= stat.S_IWUSR | ||||
os.chmod(dst, new_mode) | ||||
Adrian Buehlmann
|
r15011 | |||
Adrian Buehlmann
|
r13879 | def checkexec(path): | ||
""" | ||||
Check whether the given path is on a filesystem with UNIX-like exec flags | ||||
Requires a directory (like /foo/.hg) | ||||
""" | ||||
# VFAT on some Linux versions can flip mode but it doesn't persist | ||||
# a FS remount. Frequently we can detect it if files are created | ||||
# with exec bit on. | ||||
try: | ||||
EXECFLAGS = stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH | ||||
Boris Feld
|
r40703 | basedir = os.path.join(path, '.hg') | ||
Boris Feld
|
r40823 | cachedir = os.path.join(basedir, 'wcache') | ||
Boris Feld
|
r40703 | storedir = os.path.join(basedir, 'store') | ||
if not os.path.exists(cachedir): | ||||
try: | ||||
# we want to create the 'cache' directory, not the '.hg' one. | ||||
# Automatically creating '.hg' directory could silently spawn | ||||
# invalid Mercurial repositories. That seems like a bad idea. | ||||
os.mkdir(cachedir) | ||||
if os.path.exists(storedir): | ||||
copymode(storedir, cachedir) | ||||
else: | ||||
copymode(basedir, cachedir) | ||||
except (IOError, OSError): | ||||
# we other fallback logic triggers | ||||
pass | ||||
Mads Kiilerich
|
r30446 | if os.path.isdir(cachedir): | ||
checkisexec = os.path.join(cachedir, 'checkisexec') | ||||
checknoexec = os.path.join(cachedir, 'checknoexec') | ||||
try: | ||||
m = os.stat(checkisexec).st_mode | ||||
except OSError as e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
# checkisexec does not exist - fall through ... | ||||
else: | ||||
# checkisexec exists, check if it actually is exec | ||||
if m & EXECFLAGS != 0: | ||||
# ensure checkisexec exists, check it isn't exec | ||||
try: | ||||
m = os.stat(checknoexec).st_mode | ||||
except OSError as e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
Augie Fackler
|
r31505 | open(checknoexec, 'w').close() # might fail | ||
Mads Kiilerich
|
r30446 | m = os.stat(checknoexec).st_mode | ||
if m & EXECFLAGS == 0: | ||||
# check-exec is exec and check-no-exec is not exec | ||||
return True | ||||
# checknoexec exists but is exec - delete it | ||||
Ryan McElroy
|
r31537 | unlink(checknoexec) | ||
Mads Kiilerich
|
r30446 | # checkisexec exists but is not exec - delete it | ||
Ryan McElroy
|
r31537 | unlink(checkisexec) | ||
Mads Kiilerich
|
r30446 | |||
# check using one file, leave it as checkisexec | ||||
checkdir = cachedir | ||||
else: | ||||
# check directly in path and don't leave checkisexec behind | ||||
checkdir = path | ||||
checkisexec = None | ||||
Yuya Nishihara
|
r38182 | fh, fn = pycompat.mkstemp(dir=checkdir, prefix='hg-checkexec-') | ||
Adrian Buehlmann
|
r13879 | try: | ||
os.close(fh) | ||||
Mads Kiilerich
|
r30445 | m = os.stat(fn).st_mode | ||
Mads Kiilerich
|
r30446 | if m & EXECFLAGS == 0: | ||
os.chmod(fn, m & 0o777 | EXECFLAGS) | ||||
if os.stat(fn).st_mode & EXECFLAGS != 0: | ||||
if checkisexec is not None: | ||||
os.rename(fn, checkisexec) | ||||
fn = None | ||||
return True | ||||
Adrian Buehlmann
|
r13879 | finally: | ||
Mads Kiilerich
|
r30446 | if fn is not None: | ||
Ryan McElroy
|
r31537 | unlink(fn) | ||
Adrian Buehlmann
|
r13879 | except (IOError, OSError): | ||
# we don't care, the user probably won't be able to commit anyway | ||||
return False | ||||
Adrian Buehlmann
|
r13890 | def checklink(path): | ||
"""check whether the given path is on a symlink-capable filesystem""" | ||||
# mktemp is not racy because symlink creation will fail if the | ||||
# file already exists | ||||
Matt Mackall
|
r26883 | while True: | ||
Boris Feld
|
r40823 | cachedir = os.path.join(path, '.hg', 'wcache') | ||
Mads Kiilerich
|
r30448 | checklink = os.path.join(cachedir, 'checklink') | ||
# try fast path, read only | ||||
if os.path.islink(checklink): | ||||
return True | ||||
Mads Kiilerich
|
r30447 | if os.path.isdir(cachedir): | ||
checkdir = cachedir | ||||
else: | ||||
checkdir = path | ||||
cachedir = None | ||||
Yuya Nishihara
|
r38184 | name = tempfile.mktemp(dir=pycompat.fsdecode(checkdir), | ||
Augie Fackler
|
r31506 | prefix=r'checklink-') | ||
name = pycompat.fsencode(name) | ||||
Augie Fackler
|
r22946 | try: | ||
Martijn Pieters
|
r30555 | fd = None | ||
if cachedir is None: | ||||
Yuya Nishihara
|
r38184 | fd = pycompat.namedtempfile(dir=checkdir, | ||
prefix='hg-checklink-') | ||||
target = os.path.basename(fd.name) | ||||
Martijn Pieters
|
r30555 | else: | ||
# create a fixed file to link to; doesn't matter if it | ||||
# already exists. | ||||
target = 'checklink-target' | ||||
Augie Fackler
|
r32393 | try: | ||
Augie Fackler
|
r36966 | fullpath = os.path.join(cachedir, target) | ||
open(fullpath, 'w').close() | ||||
Augie Fackler
|
r32393 | except IOError as inst: | ||
if inst[0] == errno.EACCES: | ||||
# If we can't write to cachedir, just pretend | ||||
# that the fs is readonly and by association | ||||
# that the fs won't support symlinks. This | ||||
# seems like the least dangerous way to avoid | ||||
# data loss. | ||||
return False | ||||
raise | ||||
Matt Mackall
|
r26883 | try: | ||
Martijn Pieters
|
r30555 | os.symlink(target, name) | ||
Mads Kiilerich
|
r30448 | if cachedir is None: | ||
Ryan McElroy
|
r31537 | unlink(name) | ||
Mads Kiilerich
|
r30448 | else: | ||
try: | ||||
os.rename(name, checklink) | ||||
except OSError: | ||||
Ryan McElroy
|
r31537 | unlink(name) | ||
Matt Mackall
|
r26883 | return True | ||
except OSError as inst: | ||||
# link creation might race, try again | ||||
Augie Fackler
|
r37953 | if inst.errno == errno.EEXIST: | ||
Matt Mackall
|
r26883 | continue | ||
Matt Mackall
|
r26889 | raise | ||
Matt Mackall
|
r26883 | finally: | ||
Martijn Pieters
|
r30555 | if fd is not None: | ||
fd.close() | ||||
Matt Mackall
|
r26883 | except AttributeError: | ||
return False | ||||
Matt Mackall
|
r26889 | except OSError as inst: | ||
# sshfs might report failure while successfully creating the link | ||||
Augie Fackler
|
r37953 | if inst.errno == errno.EIO and os.path.exists(name): | ||
Ryan McElroy
|
r31537 | unlink(name) | ||
Matt Mackall
|
r26889 | return False | ||
Adrian Buehlmann
|
r13890 | |||
Adrian Buehlmann
|
r13916 | def checkosfilename(path): | ||
'''Check that the base-relative path is a valid filename on this platform. | ||||
Returns None if the path is ok, or a UI string describing the problem.''' | ||||
Augie Fackler
|
r34382 | return None # on posix platforms, every path is ok | ||
Adrian Buehlmann
|
r13916 | |||
Matt Harbison
|
r35531 | def getfsmountpoint(dirpath): | ||
'''Get the filesystem mount point from a directory (best-effort) | ||||
Returns None if we are unsure. Raises OSError on ENOENT, EPERM, etc. | ||||
''' | ||||
return getattr(osutil, 'getfsmountpoint', lambda x: None)(dirpath) | ||||
Matt Harbison
|
r35527 | def getfstype(dirpath): | ||
'''Get the filesystem type name from a directory (best-effort) | ||||
Returns None if we are unsure. Raises OSError on ENOENT, EPERM, etc. | ||||
''' | ||||
return getattr(osutil, 'getfstype', lambda x: None)(dirpath) | ||||
Adrian Buehlmann
|
r14233 | def setbinary(fd): | ||
Matt Mackall
|
r7890 | pass | ||
def pconvert(path): | ||||
return path | ||||
def localpath(path): | ||||
return path | ||||
Siddharth Agarwal
|
r10218 | def samefile(fpath1, fpath2): | ||
"""Returns whether path1 and path2 refer to the same file. This is only | ||||
guaranteed to work for files, not directories.""" | ||||
return os.path.samefile(fpath1, fpath2) | ||||
def samedevice(fpath1, fpath2): | ||||
"""Returns whether fpath1 and fpath2 are on the same device. This is only | ||||
guaranteed to work for files, not directories.""" | ||||
st1 = os.lstat(fpath1) | ||||
st2 = os.lstat(fpath2) | ||||
return st1.st_dev == st2.st_dev | ||||
Matt Mackall
|
r15488 | # os.path.normcase is a no-op, which doesn't help us on non-native filesystems | ||
def normcase(path): | ||||
return path.lower() | ||||
Siddharth Agarwal
|
r24594 | # what normcase does to ASCII strings | ||
normcasespec = encoding.normcasespecs.lower | ||||
# fallback normcase function for non-ASCII strings | ||||
normcasefallback = normcase | ||||
Jun Wu
|
r34648 | if pycompat.isdarwin: | ||
Matt Mackall
|
r15551 | |||
def normcase(path): | ||||
Matt Mackall
|
r19131 | ''' | ||
Normalize a filename for OS X-compatible comparison: | ||||
- escape-encode invalid characters | ||||
- decompose to NFD | ||||
- lowercase | ||||
Augie Fackler
|
r23597 | - omit ignored characters [200c-200f, 202a-202e, 206a-206f,feff] | ||
Matt Mackall
|
r19131 | |||
Yuya Nishihara
|
r34133 | >>> normcase(b'UPPER') | ||
Matt Mackall
|
r19131 | 'upper' | ||
Augie Fackler
|
r34196 | >>> normcase(b'Caf\\xc3\\xa9') | ||
Matt Mackall
|
r19131 | 'cafe\\xcc\\x81' | ||
Augie Fackler
|
r34196 | >>> normcase(b'\\xc3\\x89') | ||
Matt Mackall
|
r19131 | 'e\\xcc\\x81' | ||
Augie Fackler
|
r34196 | >>> normcase(b'\\xb8\\xca\\xc3\\xca\\xbe\\xc8.JPG') # issue3918 | ||
Matt Mackall
|
r19131 | '%b8%ca%c3\\xca\\xbe%c8.jpg' | ||
''' | ||||
Matt Mackall
|
r15551 | try: | ||
Siddharth Agarwal
|
r22781 | return encoding.asciilower(path) # exception for non-ASCII | ||
Mads Kiilerich
|
r18501 | except UnicodeDecodeError: | ||
Siddharth Agarwal
|
r24595 | return normcasefallback(path) | ||
normcasespec = encoding.normcasespecs.lower | ||||
def normcasefallback(path): | ||||
Mads Kiilerich
|
r18501 | try: | ||
Matt Mackall
|
r15551 | u = path.decode('utf-8') | ||
except UnicodeDecodeError: | ||||
Matt Mackall
|
r19131 | # OS X percent-encodes any bytes that aren't valid utf-8 | ||
s = '' | ||||
Matt Mackall
|
r26876 | pos = 0 | ||
Matt Mackall
|
r27380 | l = len(path) | ||
Matt Mackall
|
r26876 | while pos < l: | ||
try: | ||||
c = encoding.getutf8char(path, pos) | ||||
pos += len(c) | ||||
except ValueError: | ||||
Augie Fackler
|
r34198 | c = '%%%02X' % ord(path[pos:pos + 1]) | ||
Matt Mackall
|
r26876 | pos += 1 | ||
s += c | ||||
Matt Mackall
|
r19131 | |||
Matt Mackall
|
r15551 | u = s.decode('utf-8') | ||
# Decompose then lowercase (HFS+ technote specifies lower) | ||||
Augie Fackler
|
r34199 | enc = unicodedata.normalize(r'NFD', u).lower().encode('utf-8') | ||
Augie Fackler
|
r23597 | # drop HFS+ ignored characters | ||
return encoding.hfsignoreclean(enc) | ||||
Matt Mackall
|
r15551 | |||
Pulkit Goyal
|
r30641 | if pycompat.sysplatform == 'cygwin': | ||
FUJIWARA Katsunori
|
r15711 | # workaround for cygwin, in which mount point part of path is | ||
# treated as case sensitive, even though underlying NTFS is case | ||||
# insensitive. | ||||
# default mount points | ||||
cygwinmountpoints = sorted([ | ||||
"/usr/bin", | ||||
"/usr/lib", | ||||
"/cygdrive", | ||||
], reverse=True) | ||||
# use upper-ing as normcase as same as NTFS workaround | ||||
def normcase(path): | ||||
pathlen = len(path) | ||||
Pulkit Goyal
|
r30614 | if (pathlen == 0) or (path[0] != pycompat.ossep): | ||
FUJIWARA Katsunori
|
r15711 | # treat as relative | ||
Adrian Buehlmann
|
r17203 | return encoding.upper(path) | ||
FUJIWARA Katsunori
|
r15711 | |||
# to preserve case of mountpoint part | ||||
for mp in cygwinmountpoints: | ||||
if not path.startswith(mp): | ||||
continue | ||||
mplen = len(mp) | ||||
if mplen == pathlen: # mount point itself | ||||
return mp | ||||
Pulkit Goyal
|
r30614 | if path[mplen] == pycompat.ossep: | ||
Adrian Buehlmann
|
r17203 | return mp + encoding.upper(path[mplen:]) | ||
FUJIWARA Katsunori
|
r15711 | |||
Adrian Buehlmann
|
r17203 | return encoding.upper(path) | ||
FUJIWARA Katsunori
|
r15711 | |||
Siddharth Agarwal
|
r24596 | normcasespec = encoding.normcasespecs.other | ||
normcasefallback = normcase | ||||
A. S. Budden
|
r16240 | # Cygwin translates native ACLs to POSIX permissions, | ||
# but these translations are not supported by native | ||||
# tools, so the exec bit tends to be set erroneously. | ||||
# Therefore, disable executable bit access on Cygwin. | ||||
def checkexec(path): | ||||
return False | ||||
Matt Mackall
|
r16241 | # Similarly, Cygwin's symlink emulation is likely to create | ||
# problems when Mercurial is used from both Cygwin and native | ||||
# Windows, with other native tools, or on shared volumes | ||||
def checklink(path): | ||||
return False | ||||
FUJIWARA Katsunori
|
r23683 | _needsshellquote = None | ||
Matt Mackall
|
r7890 | def shellquote(s): | ||
Pulkit Goyal
|
r30642 | if pycompat.sysplatform == 'OpenVMS': | ||
Matt Mackall
|
r7890 | return '"%s"' % s | ||
FUJIWARA Katsunori
|
r23683 | global _needsshellquote | ||
if _needsshellquote is None: | ||||
Pulkit Goyal
|
r31491 | _needsshellquote = re.compile(br'[^a-zA-Z0-9._/+-]').search | ||
Yuya Nishihara
|
r24108 | if s and not _needsshellquote(s): | ||
FUJIWARA Katsunori
|
r23683 | # "s" shouldn't have to be quoted | ||
return s | ||||
Matt Mackall
|
r7890 | else: | ||
return "'%s'" % s.replace("'", "'\\''") | ||||
Yuya Nishihara
|
r36433 | def shellsplit(s): | ||
"""Parse a command string in POSIX shell way (best-effort)""" | ||||
return pycompat.shlexsplit(s, posix=True) | ||||
Matt Mackall
|
r7890 | def quotecommand(cmd): | ||
return cmd | ||||
def testpid(pid): | ||||
'''return False if pid dead, True if running or not sure''' | ||||
Pulkit Goyal
|
r30642 | if pycompat.sysplatform == 'OpenVMS': | ||
Matt Mackall
|
r7890 | return True | ||
try: | ||||
os.kill(pid, 0) | ||||
return True | ||||
Gregory Szorc
|
r25660 | except OSError as inst: | ||
Matt Mackall
|
r7890 | return inst.errno != errno.ESRCH | ||
Martin Geisler
|
r8657 | def isowner(st): | ||
"""Return True if the stat object st is from the current user.""" | ||||
Matt Mackall
|
r7890 | return st.st_uid == os.getuid() | ||
Adrian Buehlmann
|
r14271 | def findexe(command): | ||
Matt Mackall
|
r7890 | '''Find executable for command searching like which does. | ||
If command is a basename then PATH is searched for command. | ||||
PATH isn't searched if command is an absolute or relative path. | ||||
If command isn't found None is returned.''' | ||||
Pulkit Goyal
|
r30641 | if pycompat.sysplatform == 'OpenVMS': | ||
Matt Mackall
|
r7890 | return command | ||
def findexisting(executable): | ||||
'Will return executable if existing file' | ||||
Marc-Antoine Ruel
|
r15499 | if os.path.isfile(executable) and os.access(executable, os.X_OK): | ||
Matt Mackall
|
r7890 | return executable | ||
return None | ||||
Pulkit Goyal
|
r30614 | if pycompat.ossep in command: | ||
Matt Mackall
|
r7890 | return findexisting(command) | ||
Pulkit Goyal
|
r30641 | if pycompat.sysplatform == 'plan9': | ||
Steven Stallion
|
r16383 | return findexisting(os.path.join('/bin', command)) | ||
Pulkit Goyal
|
r30634 | for path in encoding.environ.get('PATH', '').split(pycompat.ospathsep): | ||
Matt Mackall
|
r7890 | executable = findexisting(os.path.join(path, command)) | ||
if executable is not None: | ||||
Marc-Antoine Ruel
|
r15499 | return executable | ||
Matt Mackall
|
r7890 | return None | ||
Adrian Buehlmann
|
r14237 | def setsignalhandler(): | ||
Matt Mackall
|
r7890 | pass | ||
Martin von Zweigbergk
|
r32291 | _wantedkinds = {stat.S_IFREG, stat.S_IFLNK} | ||
Bryan O'Sullivan
|
r18017 | |||
Matt Mackall
|
r7890 | def statfiles(files): | ||
Bryan O'Sullivan
|
r18017 | '''Stat each file in files. Yield each stat, or None if a file does not | ||
exist or has a type we don't care about.''' | ||||
Matt Mackall
|
r7890 | lstat = os.lstat | ||
Bryan O'Sullivan
|
r18017 | getkind = stat.S_IFMT | ||
Matt Mackall
|
r7890 | for nf in files: | ||
try: | ||||
st = lstat(nf) | ||||
Bryan O'Sullivan
|
r18017 | if getkind(st.st_mode) not in _wantedkinds: | ||
st = None | ||||
Gregory Szorc
|
r25660 | except OSError as err: | ||
Matt Mackall
|
r7890 | if err.errno not in (errno.ENOENT, errno.ENOTDIR): | ||
raise | ||||
st = None | ||||
yield st | ||||
def getuser(): | ||||
'''return name of current user''' | ||||
Pulkit Goyal
|
r32129 | return pycompat.fsencode(getpass.getuser()) | ||
Matt Mackall
|
r7890 | |||
def username(uid=None): | ||||
"""Return the name of the user with the given uid. | ||||
If uid is None, return the name of the current user.""" | ||||
if uid is None: | ||||
uid = os.getuid() | ||||
try: | ||||
Pulkit Goyal
|
r38271 | return pycompat.fsencode(pwd.getpwuid(uid)[0]) | ||
Matt Mackall
|
r7890 | except KeyError: | ||
Pulkit Goyal
|
r38271 | return b'%d' % uid | ||
Matt Mackall
|
r7890 | |||
def groupname(gid=None): | ||||
"""Return the name of the group with the given gid. | ||||
If gid is None, return the name of the current group.""" | ||||
if gid is None: | ||||
gid = os.getgid() | ||||
try: | ||||
Pulkit Goyal
|
r41993 | return pycompat.fsencode(grp.getgrgid(gid)[0]) | ||
Matt Mackall
|
r7890 | except KeyError: | ||
Pulkit Goyal
|
r41993 | return pycompat.bytestr(gid) | ||
Patrick Mezard
|
r10237 | |||
Patrick Mezard
|
r11138 | def groupmembers(name): | ||
"""Return the list of members of the group with the given | ||||
name, KeyError if the group does not exist. | ||||
""" | ||||
Pulkit Goyal
|
r41664 | name = pycompat.fsdecode(name) | ||
return pycompat.rapply(pycompat.fsencode, list(grp.getgrnam(name).gr_mem)) | ||||
Patrick Mezard
|
r11138 | |||
Patrick Mezard
|
r10237 | def spawndetached(args): | ||
return os.spawnvp(os.P_NOWAIT | getattr(os, 'P_DETACH', 0), | ||||
args[0], args) | ||||
Patrick Mezard
|
r10239 | def gethgcmd(): | ||
return sys.argv[:1] | ||||
Patrick Mezard
|
r11010 | |||
Adrian Buehlmann
|
r14908 | def makedir(path, notindexed): | ||
os.mkdir(path) | ||||
Adrian Buehlmann
|
r14909 | |||
Adrian Buehlmann
|
r14910 | def lookupreg(key, name=None, scope=None): | ||
return None | ||||
Adrian Buehlmann
|
r14911 | |||
def hidewindow(): | ||||
"""Hide current shell window. | ||||
Used to hide the window opened when starting asynchronous | ||||
child process under Windows, unneeded on other systems. | ||||
""" | ||||
pass | ||||
Adrian Buehlmann
|
r14926 | |||
Idan Kamara
|
r14927 | class cachestat(object): | ||
def __init__(self, path): | ||||
self.stat = os.stat(path) | ||||
def cacheable(self): | ||||
return bool(self.stat.st_ino) | ||||
Martin Geisler
|
r15791 | __hash__ = object.__hash__ | ||
Idan Kamara
|
r14927 | def __eq__(self, other): | ||
try: | ||||
Siddharth Agarwal
|
r18442 | # Only dev, ino, size, mtime and atime are likely to change. Out | ||
# of these, we shouldn't compare atime but should compare the | ||||
# rest. However, one of the other fields changing indicates | ||||
# something fishy going on, so return False if anything but atime | ||||
# changes. | ||||
return (self.stat.st_mode == other.stat.st_mode and | ||||
self.stat.st_ino == other.stat.st_ino and | ||||
self.stat.st_dev == other.stat.st_dev and | ||||
self.stat.st_nlink == other.stat.st_nlink and | ||||
self.stat.st_uid == other.stat.st_uid and | ||||
self.stat.st_gid == other.stat.st_gid and | ||||
self.stat.st_size == other.stat.st_size and | ||||
Augie Fackler
|
r36799 | self.stat[stat.ST_MTIME] == other.stat[stat.ST_MTIME] and | ||
self.stat[stat.ST_CTIME] == other.stat[stat.ST_CTIME]) | ||||
Idan Kamara
|
r14927 | except AttributeError: | ||
return False | ||||
def __ne__(self, other): | ||||
return not self == other | ||||
Bryan O'Sullivan
|
r18868 | def statislink(st): | ||
'''check whether a stat result is a symlink''' | ||||
return st and stat.S_ISLNK(st.st_mode) | ||||
def statisexec(st): | ||||
'''check whether a stat result is an executable file''' | ||||
Gregory Szorc
|
r25658 | return st and (st.st_mode & 0o100 != 0) | ||
Gregory Szorc
|
r22245 | |||
Pierre-Yves David
|
r25420 | def poll(fds): | ||
"""block until something happens on any file descriptor | ||||
This is a generic helper that will check for any activity | ||||
(read, write. exception) and return the list of touched files. | ||||
In unsupported cases, it will raise a NotImplementedError""" | ||||
try: | ||||
Yuya Nishihara
|
r30654 | while True: | ||
try: | ||||
res = select.select(fds, fds, fds) | ||||
break | ||||
except select.error as inst: | ||||
if inst.args[0] == errno.EINTR: | ||||
continue | ||||
raise | ||||
Pierre-Yves David
|
r25420 | except ValueError: # out of range file descriptor | ||
raise NotImplementedError() | ||||
return sorted(list(set(sum(res, [])))) | ||||
Gregory Szorc
|
r22245 | def readpipe(pipe): | ||
"""Read all available data from a pipe.""" | ||||
Gregory Szorc
|
r22246 | # We can't fstat() a pipe because Linux will always report 0. | ||
# So, we set the pipe to non-blocking mode and read everything | ||||
# that's available. | ||||
flags = fcntl.fcntl(pipe, fcntl.F_GETFL) | ||||
flags |= os.O_NONBLOCK | ||||
oldflags = fcntl.fcntl(pipe, fcntl.F_SETFL, flags) | ||||
Gregory Szorc
|
r22245 | |||
Gregory Szorc
|
r22246 | try: | ||
chunks = [] | ||||
while True: | ||||
try: | ||||
s = pipe.read() | ||||
if not s: | ||||
break | ||||
chunks.append(s) | ||||
except IOError: | ||||
break | ||||
return ''.join(chunks) | ||||
finally: | ||||
fcntl.fcntl(pipe, fcntl.F_SETFL, oldflags) | ||||
Yuya Nishihara
|
r29530 | |||
def bindunixsocket(sock, path): | ||||
"""Bind the UNIX domain socket to the specified path""" | ||||
# use relative path instead of full path at bind() if possible, since | ||||
# AF_UNIX path has very small length limit (107 chars) on common | ||||
# platforms (see sys/un.h) | ||||
dirname, basename = os.path.split(path) | ||||
bakwdfd = None | ||||
if dirname: | ||||
bakwdfd = os.open('.', os.O_DIRECTORY) | ||||
os.chdir(dirname) | ||||
sock.bind(basename) | ||||
if bakwdfd: | ||||
os.fchdir(bakwdfd) | ||||
os.close(bakwdfd) | ||||