X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/682dd5b6cc23a455766a7651e3e841257660b31c..f486405f195083289f543b5524c4059b01f49026:/services/fuse/arvados_fuse/fresh.py?ds=sidebyside diff --git a/services/fuse/arvados_fuse/fresh.py b/services/fuse/arvados_fuse/fresh.py index aeb8f737c5..2075741dbd 100644 --- a/services/fuse/arvados_fuse/fresh.py +++ b/services/fuse/arvados_fuse/fresh.py @@ -22,8 +22,39 @@ def use_counter(orig_func): self.dec_use() return use_counter_wrapper +def check_update(orig_func): + @functools.wraps(orig_func) + def check_update_wrapper(self, *args, **kwargs): + self.checkupdate() + return orig_func(self, *args, **kwargs) + return check_update_wrapper + class FreshBase(object): - """Base class for maintaining fresh/stale state to determine when to update.""" + """Base class for maintaining object lifecycle. + + Functions include: + + * Indicate if an object is up to date (stale() == false) or needs to be + updated sets stale() == True). Use invalidate() to mark the object as + stale. An object is also automatically stale if it has not been updated + in `_poll_time` seconds. + + * Record access time (atime) timestamp + + * Manage internal use count used by the inode cache ("inc_use" and + "dec_use"). An object which is in use cannot be cleared by the inode + cache. + + * Manage the kernel reference count ("inc_ref" and "dec_ref"). An object + which is referenced by the kernel cannot have its inode entry deleted. + + * Record cache footprint, cache priority + + * Record Arvados uuid at the time the object is placed in the cache + + * Clear the object contents (invalidates the object) + + """ def __init__(self): self._stale = True self._poll = False @@ -36,6 +67,8 @@ class FreshBase(object): self.cache_priority = None self.cache_size = 0 self.cache_uuid = None + self.allow_attr_cache = True + self.allow_dirent_cache = True # Mark the value as stale def invalidate(self): @@ -84,3 +117,6 @@ class FreshBase(object): def uuid(self): return None + + def finalize(self): + pass