summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-04-13 21:25:21 +0000
committerZac Medico <zmedico@gentoo.org>2009-04-13 21:25:21 +0000
commit7750d490fb664bce00d2485d7514eccd2b288c1b (patch)
tree12d144c5a09ad3899997ef76caf7f75b71b8b19f /pym
parentf0cf5a75c49cc238be932e28e25a203ebbb42ce2 (diff)
downloadportage-7750d490fb664bce00d2485d7514eccd2b288c1b.tar.gz
portage-7750d490fb664bce00d2485d7514eccd2b288c1b.tar.bz2
portage-7750d490fb664bce00d2485d7514eccd2b288c1b.zip
Convert portage.bsd_chflags into a class with chflags() and lchflags() class
methods. svn path=/main/trunk/; revision=13343
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py82
1 files changed, 42 insertions, 40 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 520eb61d8..59f541058 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -43,35 +43,6 @@ except ImportError, e:
sys.stderr.write(" "+str(e)+"\n\n");
raise
-bsd_chflags = None
-if platform.system() in ["FreeBSD"]:
- def bsd_chflags():
- pass
- def _chflags(path, flags, opts=""):
- cmd = "chflags %s %o '%s'" % (opts, flags, path)
- status, output = commands.getstatusoutput(cmd)
- if os.WIFEXITED(status) and os.WEXITSTATUS(status) == os.EX_OK:
- return
- # Try to generate an ENOENT error if appropriate.
- if "h" in opts:
- os.lstat(path)
- else:
- os.stat(path)
- # Make sure the binary exists.
- if not portage.process.find_binary("chflags"):
- raise portage.exception.CommandNotFound("chflags")
- # Now we're not sure exactly why it failed or what
- # the real errno was, so just report EPERM.
- e = OSError(errno.EPERM, output)
- e.errno = errno.EPERM
- e.filename = path
- e.message = output
- raise e
- def _lchflags(path, flags):
- return _chflags(path, flags, opts="-h")
- bsd_chflags.chflags = _chflags
- bsd_chflags.lchflags = _lchflags
-
try:
from portage.cache.cache_errors import CacheError
import portage.proxy.lazyimport
@@ -149,6 +120,48 @@ except ImportError:
# END OF IMPORTS -- END OF IMPORTS -- END OF IMPORTS -- END OF IMPORTS -- END
# ===========================================================================
+def _shell_quote(s):
+ """
+ Quote a string in double-quotes and use backslashes to
+ escape any backslashes, double-quotes, dollar signs, or
+ backquotes in the string.
+ """
+ for letter in "\\\"$`":
+ if letter in s:
+ s = s.replace(letter, "\\" + letter)
+ return "\"%s\"" % s
+
+bsd_chflags = None
+
+if platform.system() in ('FreeBSD',):
+
+ class bsd_chflags(object):
+
+ @classmethod
+ def chflags(cls, path, flags, opts=""):
+ cmd = 'chflags %s %o %s' % (opts, flags, _shell_quote(path))
+ status, output = commands.getstatusoutput(cmd)
+ if os.WIFEXITED(status) and os.WEXITSTATUS(status) == os.EX_OK:
+ return
+ # Try to generate an ENOENT error if appropriate.
+ if 'h' in opts:
+ os.lstat(path)
+ else:
+ os.stat(path)
+ # Make sure the binary exists.
+ if not portage.process.find_binary('chflags'):
+ raise portage.exception.CommandNotFound('chflags')
+ # Now we're not sure exactly why it failed or what
+ # the real errno was, so just report EPERM.
+ e = OSError(errno.EPERM, output)
+ e.errno = errno.EPERM
+ e.filename = path
+ e.message = output
+ raise e
+
+ @classmethod
+ def lchflags(cls, path, flags):
+ return cls.chflags(path, flags, opts='-h')
def load_mod(name):
modname = ".".join(name.split(".")[:-1])
@@ -3156,17 +3169,6 @@ class config(object):
keys = __iter__
items = iteritems
-def _shell_quote(s):
- """
- Quote a string in double-quotes and use backslashes to
- escape any backslashes, double-quotes, dollar signs, or
- backquotes in the string.
- """
- for letter in "\\\"$`":
- if letter in s:
- s = s.replace(letter, "\\" + letter)
- return "\"%s\"" % s
-
# In some cases, openpty can be slow when it fails. Therefore,
# stop trying to use it after the first failure.
_disable_openpty = False