summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-12-30 21:14:51 -0700
committerJason Gerard DeRose <jderose@redhat.com>2008-12-30 21:14:51 -0700
commit57dae28d9c4eb90d49f98cd528f85d203c8cbc94 (patch)
tree2f3939a39f7f2498f692760d76f82118acf58234 /ipalib
parente9be796950070790543ca0cfaf5182958aee5dd6 (diff)
downloadfreeipa-57dae28d9c4eb90d49f98cd528f85d203c8cbc94.tar.gz
freeipa-57dae28d9c4eb90d49f98cd528f85d203c8cbc94.tar.xz
freeipa-57dae28d9c4eb90d49f98cd528f85d203c8cbc94.zip
Added base.lock() and base.islocked() functions; added corresponding unit tests
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/base.py55
1 files changed, 55 insertions, 0 deletions
diff --git a/ipalib/base.py b/ipalib/base.py
index 1651b01d1..e427b747e 100644
--- a/ipalib/base.py
+++ b/ipalib/base.py
@@ -130,6 +130,61 @@ class ReadOnly(object):
return object.__delattr__(self, name)
+def lock(instance):
+ """
+ Lock an instance of the `ReadOnly` class or similar.
+
+ This function can be used to lock instances of any class that implements
+ the same locking API as the `ReadOnly` class. For example, this function
+ can lock instances of the `config.Env` class.
+
+ So that this function can be easily used within an assignment, ``instance``
+ is returned after it is locked. For example:
+
+ >>> readonly = ReadOnly()
+ >>> readonly is lock(readonly)
+ True
+ >>> readonly.attr = 'This wont work'
+ Traceback (most recent call last):
+ ...
+ AttributeError: locked: cannot set ReadOnly.attr to 'This wont work'
+
+ Also see the `islocked()` function.
+
+ :param instance: The instance of `ReadOnly` (or similar) to lock.
+ """
+ assert instance.__islocked__() is False, 'already locked: %r' % instance
+ instance.__lock__()
+ assert instance.__islocked__() is True, 'failed to lock: %r' % instance
+ return instance
+
+
+def islocked(instance):
+ """
+ Return ``True`` if ``instance`` is locked.
+
+ This function can be used on an instance of the `ReadOnly` class or an
+ instance of any other class implemented the same locking API.
+
+ For example:
+
+ >>> readonly = ReadOnly()
+ >>> islocked(readonly)
+ False
+ >>> readonly.__lock__()
+ >>> islocked(readonly)
+ True
+
+ Also see the `lock()` function.
+
+ :param instance: The instance of `ReadOnly` (or similar) to interrogate.
+ """
+ assert (
+ hasattr(instance, '__lock__') and callable(instance.__lock__)
+ ), 'no __lock__() method: %r' % instance
+ return instance.__islocked__()
+
+
def check_name(name):
"""
Verify that ``name`` is suitable for a `NameSpace` member name.