From eac9deb5f2a11997cc012856a235575f658d6d7a Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 24 Jan 2013 13:38:41 -0800 Subject: RepoConfigLoader: raise PermissionDenied more --- pym/portage/util/_path.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pym/portage/util/_path.py (limited to 'pym/portage/util') diff --git a/pym/portage/util/_path.py b/pym/portage/util/_path.py new file mode 100644 index 000000000..6fbcb438c --- /dev/null +++ b/pym/portage/util/_path.py @@ -0,0 +1,27 @@ +# Copyright 2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +import stat + +from portage import os +from portage.exception import PermissionDenied + +def exists_raise_eaccess(path): + try: + os.stat(path) + except OSError as e: + if e.errno == PermissionDenied.errno: + raise PermissionDenied("stat('%s')" % path) + return False + else: + return True + +def isdir_raise_eaccess(path): + try: + st = os.stat(path) + except OSError as e: + if e.errno == PermissionDenied.errno: + raise PermissionDenied("stat('%s')" % path) + return False + else: + return stat.S_ISDIR(st.st_mode) -- cgit v1.2.3-1-g7c22