sapling/hgext/patchrmdir.pyx
Jun Wu cd91de7c43 codemod: use byte strings in cython files
Summary:
For some reason, buck cython build starts to treat unprefixed strings as
unicode strings. That breaks Mercurial where everything should be bytes.

Therefore add the b prefix to make them byte strings explicitly.

Reviewed By: DurhamG, ryanmce

Differential Revision: D9015176

fbshipit-source-id: 7a3ef9d735362e3ae02208ec19d0551bf0adaaa4
2018-07-26 09:53:23 -07:00

68 lines
1.8 KiB
Cython

# patchrmdir.py
#
# Copyright 2017 Facebook, Inc.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
"""patch rmdir
Check if a directory is empty before trying to call rmdir on it. This works
around some kernel issues.
Have no effect on Windows.
"""
IF UNAME_SYSNAME != "Windows":
from mercurial import (
extensions,
pycompat,
)
import os
import errno
cdef extern from "dirent.h":
ctypedef struct DIR
struct dirent:
pass
DIR *opendir(const char *)
dirent *readdir(DIR *)
int closedir(DIR *)
cdef int _countdir(const char *path):
"""return min(3, the number of entries inside a directory).
return -1 if the directory cannot be opened.
"""
cdef DIR *d = opendir(path)
if d == NULL:
return -1
cdef dirent *e
cdef int n = 0
while True:
e = readdir(d)
if e == NULL:
break
else:
n += 1
if n > 2:
break
closedir(d)
return n
def _rmdir(orig, path):
n = _countdir(path)
if n >= 3:
# The number 3 is because most systems have "." and "..". For systems
# without them, we fallback to the original rmdir, the behavior should
# still be correct.
# Choose a slightly different error message other than "Directory not
# empty" so the test could notice the difference.
raise OSError(errno.ENOTEMPTY, b'Non-empty directory: %r' % path)
else:
return orig(path)
def uisetup(ui):
extensions.wrapfunction(os, b'rmdir', _rmdir)