summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-06 15:07:43 +0000
committerGerrit Code Review <review@openstack.org>2013-06-06 15:07:43 +0000
commit5231a786f2b0be11a1abda2f0a7f595586837b3c (patch)
tree9cf2ac4b8de982626b2aa1efd74c32320506c0f6 /openstack
parent35f90d719f2941fb6f2b660c18980bc9a93d2754 (diff)
parent21ee25f07ad06c12150b2321d494eab641ef9ac2 (diff)
downloadoslo-5231a786f2b0be11a1abda2f0a7f595586837b3c.tar.gz
oslo-5231a786f2b0be11a1abda2f0a7f595586837b3c.tar.xz
oslo-5231a786f2b0be11a1abda2f0a7f595586837b3c.zip
Merge "Add common code for fileutils."
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/fileutils.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/openstack/common/fileutils.py b/openstack/common/fileutils.py
index bb2ef61..0c967da 100644
--- a/openstack/common/fileutils.py
+++ b/openstack/common/fileutils.py
@@ -16,9 +16,11 @@
# under the License.
+import contextlib
import errno
import os
+from openstack.common import excutils
from openstack.common.gettextutils import _
from openstack.common import log as logging
@@ -65,3 +67,32 @@ def read_cached_file(filename, force_reload=False):
cache_info['mtime'] = mtime
reloaded = True
return (reloaded, cache_info['data'])
+
+
+def delete_if_exists(path):
+ """Delete a file, but ignore file not found error.
+
+ :param path: File to delete
+ """
+
+ try:
+ os.unlink(path)
+ except OSError as e:
+ if e.errno == errno.ENOENT:
+ return
+ else:
+ raise
+
+
+@contextlib.contextmanager
+def remove_path_on_error(path):
+ """Protect code that wants to operate on PATH atomically.
+ Any exception will cause PATH to be removed.
+
+ :param path: File to work with
+ """
+ try:
+ yield
+ except Exception:
+ with excutils.save_and_reraise_exception():
+ delete_if_exists(path)