public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-portage-dev] [PATCH 1/2] Make atomic_ofstream a Context Manager
@ 2020-12-18 18:46 Florian Schmaus
  2020-12-18 18:46 ` [gentoo-portage-dev] [PATCH 2/2] env_update: use "with statement" on atomic_ofstream Florian Schmaus
  2020-12-31  2:21 ` [gentoo-portage-dev] [PATCH 1/2] Make atomic_ofstream a Context Manager Zac Medico
  0 siblings, 2 replies; 3+ messages in thread
From: Florian Schmaus @ 2020-12-18 18:46 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Florian Schmaus

This allows using a "with statement" together with instances of
atomic_ofstream. Allowing for more readable, less error prone and
shorter code.

Signed-off-by: Florian Schmaus <flo@geekplace.eu>
---
 lib/portage/util/__init__.py | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/lib/portage/util/__init__.py b/lib/portage/util/__init__.py
index 0412b2b5911f..bedcbcfe6fcc 100644
--- a/lib/portage/util/__init__.py
+++ b/lib/portage/util/__init__.py
@@ -11,6 +11,7 @@ __all__ = ['apply_permissions', 'apply_recursive_permissions',
 	'stack_dicts', 'stack_lists', 'unique_array', 'unique_everseen', 'varexpand',
 	'write_atomic', 'writedict', 'writemsg', 'writemsg_level', 'writemsg_stdout']
 
+from contextlib import AbstractContextManager
 from copy import deepcopy
 import errno
 import io
@@ -1246,7 +1247,7 @@ def apply_secpass_permissions(filename, uid=-1, gid=-1, mode=-1, mask=-1,
 		stat_cached=stat_cached, follow_links=follow_links)
 	return all_applied
 
-class atomic_ofstream(ObjectProxy):
+class atomic_ofstream(AbstractContextManager, ObjectProxy):
 	"""Write a file atomically via os.rename().  Atomic replacement prevents
 	interprocess interference and prevents corruption of the target
 	file when the write is interrupted (for example, when an 'out of space'
@@ -1287,6 +1288,13 @@ class atomic_ofstream(ObjectProxy):
 				encoding=_encodings['fs'], errors='strict'),
 				mode=mode, **kargs))
 
+	def __exit__(self, exc_type, exc_val, exc_tb):
+		if exc_type is not None:
+			self.abort()
+		else:
+			self.close()
+		return None
+
 	def _get_target(self):
 		return object.__getattribute__(self, '_file')
 
-- 
2.26.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-12-31  2:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-18 18:46 [gentoo-portage-dev] [PATCH 1/2] Make atomic_ofstream a Context Manager Florian Schmaus
2020-12-18 18:46 ` [gentoo-portage-dev] [PATCH 2/2] env_update: use "with statement" on atomic_ofstream Florian Schmaus
2020-12-31  2:21 ` [gentoo-portage-dev] [PATCH 1/2] Make atomic_ofstream a Context Manager Zac Medico

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox