X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f486405f195083289f543b5524c4059b01f49026..40241ad60283c3f34fb1157d063d23252a317e31:/services/fuse/arvados_fuse/fresh.py diff --git a/services/fuse/arvados_fuse/fresh.py b/services/fuse/arvados_fuse/fresh.py index 2075741dbd..ff548f29ee 100644 --- a/services/fuse/arvados_fuse/fresh.py +++ b/services/fuse/arvados_fuse/fresh.py @@ -1,14 +1,18 @@ -import time +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + import ciso8601 import calendar import functools +import time def convertTime(t): """Parse Arvados timestamp to unix time.""" if not t: return 0 try: - return calendar.timegm(ciso8601.parse_datetime_unaware(t).timetuple()) + return calendar.timegm(ciso8601.parse_datetime_as_naive(t).timetuple()) except (TypeError, ValueError): return 0 @@ -55,6 +59,10 @@ class FreshBase(object): * Clear the object contents (invalidates the object) """ + + __slots__ = ("_stale", "_poll", "_last_update", "_atime", "_poll_time", "use_count", + "ref_count", "cache_size", "cache_uuid", "allow_attr_cache") + def __init__(self): self._stale = True self._poll = False @@ -63,17 +71,20 @@ class FreshBase(object): self._poll_time = 60 self.use_count = 0 self.ref_count = 0 - self.dead = False - self.cache_priority = None self.cache_size = 0 self.cache_uuid = None + + # Can the kernel cache attributes? self.allow_attr_cache = True - self.allow_dirent_cache = True - # Mark the value as stale def invalidate(self): + """Indicate that object contents should be refreshed from source.""" self._stale = True + def kernel_invalidate(self): + """Indicate that an invalidation for this object should be sent to the kernel.""" + pass + # Test if the entries dict is stale. def stale(self): if self._stale: @@ -92,7 +103,7 @@ class FreshBase(object): def persisted(self): return False - def clear(self, force=False): + def clear(self): pass def in_use(self): @@ -112,6 +123,12 @@ class FreshBase(object): self.ref_count -= n return self.ref_count + def has_ref(self): + """Determine if there are any kernel references to this + object. + """ + return self.ref_count > 0 + def objsize(self): return 0 @@ -120,3 +137,16 @@ class FreshBase(object): def finalize(self): pass + + def child_event(self, ev): + pass + + def time_to_next_poll(self): + if self._poll: + t = (self._last_update + self._poll_time) - self._atime + if t < 0: + return 0 + else: + return t + else: + return self._poll_time