mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
relax mtime check
This commit is contained in:
parent
93970a1001
commit
13a78d7365
1 changed files with 22 additions and 13 deletions
|
@ -95,15 +95,21 @@ class Storage(
|
||||||
def _analyse_mtime(self):
|
def _analyse_mtime(self):
|
||||||
# calculate and display mtime resolution
|
# calculate and display mtime resolution
|
||||||
path = os.path.join(self._filesystem_folder, ".Radicale.mtime_test")
|
path = os.path.join(self._filesystem_folder, ".Radicale.mtime_test")
|
||||||
|
logger.debug("Storage item mtime resolution test with file: %r", path)
|
||||||
try:
|
try:
|
||||||
with open(path, "w") as f:
|
with open(path, "w") as f:
|
||||||
f.write("mtime_test")
|
f.write("mtime_test")
|
||||||
f.close
|
f.close
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("Storage item mtime resolution test not possible, cannot write file: %r (%s)", path, e)
|
logger.warning("Storage item mtime resolution test not possible, cannot write file: %r (%s)", path, e)
|
||||||
raise
|
raise
|
||||||
# set mtime_ns for tests
|
# set mtime_ns for tests
|
||||||
os.utime(path, times=None, ns=(MTIME_NS_TEST, MTIME_NS_TEST))
|
try:
|
||||||
|
os.utime(path, times=None, ns=(MTIME_NS_TEST, MTIME_NS_TEST))
|
||||||
|
except Exception as e:
|
||||||
|
logger.warning("Storage item mtime resolution test not possible, cannot set utime on file: %r (%s)", path, e)
|
||||||
|
os.remove(path)
|
||||||
|
raise
|
||||||
logger.debug("Storage item mtime resoultion test set: %d" % MTIME_NS_TEST)
|
logger.debug("Storage item mtime resoultion test set: %d" % MTIME_NS_TEST)
|
||||||
mtime_ns = os.stat(path).st_mtime_ns
|
mtime_ns = os.stat(path).st_mtime_ns
|
||||||
logger.debug("Storage item mtime resoultion test get: %d" % mtime_ns)
|
logger.debug("Storage item mtime resoultion test get: %d" % mtime_ns)
|
||||||
|
@ -147,17 +153,20 @@ class Storage(
|
||||||
logger.info("Storage cache subfolder usage for 'history': %s", self._use_cache_subfolder_for_history)
|
logger.info("Storage cache subfolder usage for 'history': %s", self._use_cache_subfolder_for_history)
|
||||||
logger.info("Storage cache subfolder usage for 'sync-token': %s", self._use_cache_subfolder_for_synctoken)
|
logger.info("Storage cache subfolder usage for 'sync-token': %s", self._use_cache_subfolder_for_synctoken)
|
||||||
logger.info("Storage cache use mtime and size for 'item': %s", self._use_mtime_and_size_for_item_cache)
|
logger.info("Storage cache use mtime and size for 'item': %s", self._use_mtime_and_size_for_item_cache)
|
||||||
(precision, precision_unit, unit) = self._analyse_mtime()
|
try:
|
||||||
if precision >= 100000000:
|
(precision, precision_unit, unit) = self._analyse_mtime()
|
||||||
# >= 100 ms
|
if precision >= 100000000:
|
||||||
logger.warning("Storage item mtime resolution test result: %d %s (VERY RISKY ON PRODUCTION SYSTEMS)" % (precision_unit, unit))
|
# >= 100 ms
|
||||||
elif precision >= 10000000:
|
logger.warning("Storage item mtime resolution test result: %d %s (VERY RISKY ON PRODUCTION SYSTEMS)" % (precision_unit, unit))
|
||||||
# >= 10 ms
|
elif precision >= 10000000:
|
||||||
logger.warning("Storage item mtime resolution test result: %d %s (RISKY ON PRODUCTION SYSTEMS)" % (precision_unit, unit))
|
# >= 10 ms
|
||||||
else:
|
logger.warning("Storage item mtime resolution test result: %d %s (RISKY ON PRODUCTION SYSTEMS)" % (precision_unit, unit))
|
||||||
logger.info("Storage item mtime resolution test result: %d %s" % (precision_unit, unit))
|
else:
|
||||||
if self._use_mtime_and_size_for_item_cache is False:
|
logger.info("Storage item mtime resolution test result: %d %s" % (precision_unit, unit))
|
||||||
logger.info("Storage cache using mtime and size for 'item' may be an option in case of performance issues")
|
if self._use_mtime_and_size_for_item_cache is False:
|
||||||
|
logger.info("Storage cache using mtime and size for 'item' may be an option in case of performance issues")
|
||||||
|
except:
|
||||||
|
logger.warning("Storage item mtime resolution test result not successful")
|
||||||
logger.debug("Storage cache action logging: %s", self._debug_cache_actions)
|
logger.debug("Storage cache action logging: %s", self._debug_cache_actions)
|
||||||
if self._use_cache_subfolder_for_item is True or self._use_cache_subfolder_for_history is True or self._use_cache_subfolder_for_synctoken is True:
|
if self._use_cache_subfolder_for_item is True or self._use_cache_subfolder_for_history is True or self._use_cache_subfolder_for_synctoken is True:
|
||||||
logger.info("Storage cache subfolder: %r", self._get_collection_cache_folder())
|
logger.info("Storage cache subfolder: %r", self._get_collection_cache_folder())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue