mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-04 19:49:01 +08:00
Old hash from cache (#16830)
* use not equal when comparing mtime * cache partial hash aka old hash Co-Authored-By: npc-riddlah <84955385+npc-riddlah@users.noreply.github.com> --------- Co-authored-by: npc-riddlah <84955385+npc-riddlah@users.noreply.github.com>
This commit is contained in:
parent
57e15ec9b5
commit
8c7bc08f60
@ -1,7 +1,7 @@
|
|||||||
import hashlib
|
import hashlib
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
from modules import shared
|
from modules import shared, errors
|
||||||
import modules.cache
|
import modules.cache
|
||||||
|
|
||||||
dump_cache = modules.cache.dump_cache
|
dump_cache = modules.cache.dump_cache
|
||||||
@ -32,7 +32,7 @@ def sha256_from_cache(filename, title, use_addnet_hash=False):
|
|||||||
cached_sha256 = hashes[title].get("sha256", None)
|
cached_sha256 = hashes[title].get("sha256", None)
|
||||||
cached_mtime = hashes[title].get("mtime", 0)
|
cached_mtime = hashes[title].get("mtime", 0)
|
||||||
|
|
||||||
if ondisk_mtime > cached_mtime or cached_sha256 is None:
|
if ondisk_mtime != cached_mtime or cached_sha256 is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return cached_sha256
|
return cached_sha256
|
||||||
@ -82,3 +82,31 @@ def addnet_hash_safetensors(b):
|
|||||||
|
|
||||||
return hash_sha256.hexdigest()
|
return hash_sha256.hexdigest()
|
||||||
|
|
||||||
|
|
||||||
|
def partial_hash_from_cache(filename, ignore_cache=False):
|
||||||
|
"""old hash that only looks at a small part of the file and is prone to collisions
|
||||||
|
kept for compatibility, don't use this for new things
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
filename = str(filename)
|
||||||
|
mtime = os.path.getmtime(filename)
|
||||||
|
hashes = cache('partial-hash')
|
||||||
|
cache_entry = hashes.get(filename, {})
|
||||||
|
cache_mtime = cache_entry.get("mtime", 0)
|
||||||
|
cache_hash = cache_entry.get("hash", None)
|
||||||
|
if mtime == cache_mtime and cache_hash and not ignore_cache:
|
||||||
|
return cache_hash
|
||||||
|
|
||||||
|
with open(filename, 'rb') as file:
|
||||||
|
m = hashlib.sha256()
|
||||||
|
file.seek(0x100000)
|
||||||
|
m.update(file.read(0x10000))
|
||||||
|
partial_hash = m.hexdigest()
|
||||||
|
hashes[filename] = {'mtime': mtime, 'hash': partial_hash}
|
||||||
|
return partial_hash[0:8]
|
||||||
|
|
||||||
|
except FileNotFoundError:
|
||||||
|
pass
|
||||||
|
except Exception:
|
||||||
|
errors.report(f'Error calculating partial hash for {filename}', exc_info=True)
|
||||||
|
return 'NOFILE'
|
||||||
|
@ -13,6 +13,7 @@ from urllib import request
|
|||||||
import ldm.modules.midas as midas
|
import ldm.modules.midas as midas
|
||||||
|
|
||||||
from modules import paths, shared, modelloader, devices, script_callbacks, sd_vae, sd_disable_initialization, errors, hashes, sd_models_config, sd_unet, sd_models_xl, cache, extra_networks, processing, lowvram, sd_hijack, patches
|
from modules import paths, shared, modelloader, devices, script_callbacks, sd_vae, sd_disable_initialization, errors, hashes, sd_models_config, sd_unet, sd_models_xl, cache, extra_networks, processing, lowvram, sd_hijack, patches
|
||||||
|
from modules.hashes import partial_hash_from_cache as model_hash # noqa: F401 for backwards compatibility
|
||||||
from modules.timer import Timer
|
from modules.timer import Timer
|
||||||
from modules.shared import opts
|
from modules.shared import opts
|
||||||
import tomesd
|
import tomesd
|
||||||
@ -87,7 +88,7 @@ class CheckpointInfo:
|
|||||||
self.name = name
|
self.name = name
|
||||||
self.name_for_extra = os.path.splitext(os.path.basename(filename))[0]
|
self.name_for_extra = os.path.splitext(os.path.basename(filename))[0]
|
||||||
self.model_name = os.path.splitext(name.replace("/", "_").replace("\\", "_"))[0]
|
self.model_name = os.path.splitext(name.replace("/", "_").replace("\\", "_"))[0]
|
||||||
self.hash = model_hash(filename)
|
self.hash = hashes.partial_hash_from_cache(filename)
|
||||||
|
|
||||||
self.sha256 = hashes.sha256_from_cache(self.filename, f"checkpoint/{name}")
|
self.sha256 = hashes.sha256_from_cache(self.filename, f"checkpoint/{name}")
|
||||||
self.shorthash = self.sha256[0:10] if self.sha256 else None
|
self.shorthash = self.sha256[0:10] if self.sha256 else None
|
||||||
@ -200,21 +201,6 @@ def get_closet_checkpoint_match(search_string):
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
def model_hash(filename):
|
|
||||||
"""old hash that only looks at a small part of the file and is prone to collisions"""
|
|
||||||
|
|
||||||
try:
|
|
||||||
with open(filename, "rb") as file:
|
|
||||||
import hashlib
|
|
||||||
m = hashlib.sha256()
|
|
||||||
|
|
||||||
file.seek(0x100000)
|
|
||||||
m.update(file.read(0x10000))
|
|
||||||
return m.hexdigest()[0:8]
|
|
||||||
except FileNotFoundError:
|
|
||||||
return 'NOFILE'
|
|
||||||
|
|
||||||
|
|
||||||
def select_checkpoint():
|
def select_checkpoint():
|
||||||
"""Raises `FileNotFoundError` if no checkpoints are found."""
|
"""Raises `FileNotFoundError` if no checkpoints are found."""
|
||||||
model_checkpoint = shared.opts.sd_model_checkpoint
|
model_checkpoint = shared.opts.sd_model_checkpoint
|
||||||
|
Loading…
x
Reference in New Issue
Block a user