mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-04 19:49:01 +08:00
diskcache for config_states
This commit is contained in:
parent
57e15ec9b5
commit
8e300d5c4a
@ -3,8 +3,8 @@ Supports saving and restoring webui and extensions from a known working set of c
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import json
|
|
||||||
import tqdm
|
import tqdm
|
||||||
|
import diskcache
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import git
|
import git
|
||||||
@ -13,31 +13,20 @@ from modules import shared, extensions, errors
|
|||||||
from modules.paths_internal import script_path, config_states_dir
|
from modules.paths_internal import script_path, config_states_dir
|
||||||
|
|
||||||
all_config_states = {}
|
all_config_states = {}
|
||||||
|
config_states_cache = diskcache.Cache(config_states_dir, size_limit=2**20) # 1 MB
|
||||||
|
|
||||||
|
|
||||||
def list_config_states():
|
def list_config_states():
|
||||||
global all_config_states
|
global all_config_states
|
||||||
|
|
||||||
all_config_states.clear()
|
all_config_states.clear()
|
||||||
os.makedirs(config_states_dir, exist_ok=True)
|
|
||||||
|
|
||||||
config_states = []
|
config_states = []
|
||||||
for filename in os.listdir(config_states_dir):
|
|
||||||
if filename.endswith(".json"):
|
|
||||||
path = os.path.join(config_states_dir, filename)
|
|
||||||
try:
|
|
||||||
with open(path, "r", encoding="utf-8") as f:
|
|
||||||
j = json.load(f)
|
|
||||||
assert "created_at" in j, '"created_at" does not exist'
|
|
||||||
j["filepath"] = path
|
|
||||||
config_states.append(j)
|
|
||||||
except Exception as e:
|
|
||||||
print(f'[ERROR]: Config states {path}, {e}')
|
|
||||||
|
|
||||||
config_states = sorted(config_states, key=lambda cs: cs["created_at"], reverse=True)
|
for key in list(config_states_cache):
|
||||||
|
config_states.append(config_states_cache[key])
|
||||||
|
|
||||||
for cs in config_states:
|
for cs in config_states:
|
||||||
timestamp = datetime.fromtimestamp(cs["created_at"]).strftime('%Y-%m-%d %H:%M:%S')
|
timestamp = datetime.fromtimestamp(cs["created_at"]).strftime("%Y-%m-%d %H:%M:%S")
|
||||||
name = cs.get("name", "Config")
|
name = cs.get("name", "Config")
|
||||||
full_name = f"{name}: {timestamp}"
|
full_name = f"{name}: {timestamp}"
|
||||||
all_config_states[full_name] = cs
|
all_config_states[full_name] = cs
|
||||||
@ -92,7 +81,7 @@ def get_extension_config():
|
|||||||
"commit_hash": ext.commit_hash,
|
"commit_hash": ext.commit_hash,
|
||||||
"commit_date": ext.commit_date,
|
"commit_date": ext.commit_date,
|
||||||
"branch": ext.branch,
|
"branch": ext.branch,
|
||||||
"have_info_from_repo": ext.have_info_from_repo
|
"have_info_from_repo": ext.have_info_from_repo,
|
||||||
}
|
}
|
||||||
|
|
||||||
ext_config[ext.name] = entry
|
ext_config[ext.name] = entry
|
||||||
@ -100,6 +89,10 @@ def get_extension_config():
|
|||||||
return ext_config
|
return ext_config
|
||||||
|
|
||||||
|
|
||||||
|
def save_config(filename, config_state):
|
||||||
|
config_states_cache[filename] = config_state
|
||||||
|
|
||||||
|
|
||||||
def get_config():
|
def get_config():
|
||||||
creation_time = datetime.now().timestamp()
|
creation_time = datetime.now().timestamp()
|
||||||
webui_config = get_webui_config()
|
webui_config = get_webui_config()
|
||||||
@ -108,7 +101,7 @@ def get_config():
|
|||||||
return {
|
return {
|
||||||
"created_at": creation_time,
|
"created_at": creation_time,
|
||||||
"webui": webui_config,
|
"webui": webui_config,
|
||||||
"extensions": ext_config
|
"extensions": ext_config,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -196,3 +189,21 @@ def restore_extension_config(config):
|
|||||||
print(f" + {ext.name}: {prev_commit} -> {result}")
|
print(f" + {ext.name}: {prev_commit} -> {result}")
|
||||||
else:
|
else:
|
||||||
print(f" ! {ext.name}: FAILURE ({result})")
|
print(f" ! {ext.name}: FAILURE ({result})")
|
||||||
|
|
||||||
|
|
||||||
|
def convert_old_cached_data():
|
||||||
|
for file in os.listdir(config_states_dir):
|
||||||
|
if not file.endswith(".json"):
|
||||||
|
continue
|
||||||
|
|
||||||
|
import json
|
||||||
|
|
||||||
|
with open(os.path.join(config_states_dir, file)) as config:
|
||||||
|
config_state = json.load(config)
|
||||||
|
|
||||||
|
filename = os.path.splitext(file)[0]
|
||||||
|
config_states_cache[filename] = config_state
|
||||||
|
os.replace(os.path.join(config_states_dir, file), os.path.join(script_path, "tmp", file))
|
||||||
|
|
||||||
|
|
||||||
|
convert_old_cached_data()
|
||||||
|
@ -13,7 +13,6 @@ import shutil
|
|||||||
import errno
|
import errno
|
||||||
|
|
||||||
from modules import extensions, shared, paths, config_states, errors, restart
|
from modules import extensions, shared, paths, config_states, errors, restart
|
||||||
from modules.paths_internal import config_states_dir
|
|
||||||
from modules.call_queue import wrap_gradio_gpu_call
|
from modules.call_queue import wrap_gradio_gpu_call
|
||||||
|
|
||||||
available_extensions = {"extensions": []}
|
available_extensions = {"extensions": []}
|
||||||
@ -64,10 +63,9 @@ def save_config_state(name):
|
|||||||
|
|
||||||
current_config_state["name"] = name
|
current_config_state["name"] = name
|
||||||
timestamp = datetime.now().strftime('%Y_%m_%d-%H_%M_%S')
|
timestamp = datetime.now().strftime('%Y_%m_%d-%H_%M_%S')
|
||||||
filename = os.path.join(config_states_dir, f"{timestamp}_{name}.json")
|
filename = f"{timestamp}_{name}"
|
||||||
print(f"Saving backup of webui/extension state to {filename}.")
|
print(f"Saving backup of webui/extension state to {filename}.")
|
||||||
with open(filename, "w", encoding="utf-8") as f:
|
config_states.save_config(filename, current_config_state)
|
||||||
json.dump(current_config_state, f, indent=4, ensure_ascii=False)
|
|
||||||
config_states.list_config_states()
|
config_states.list_config_states()
|
||||||
new_value = next(iter(config_states.all_config_states.keys()), "Current")
|
new_value = next(iter(config_states.all_config_states.keys()), "Current")
|
||||||
new_choices = ["Current"] + list(config_states.all_config_states.keys())
|
new_choices = ["Current"] + list(config_states.all_config_states.keys())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user