-
-
Notifications
You must be signed in to change notification settings - Fork 449
/
Copy pathwebui.py
390 lines (334 loc) · 15.1 KB
/
webui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
import io
import os
import sys
import time
import glob
import signal
import asyncio
import logging
import importlib
import contextlib
from threading import Thread
import modules.hashes
import modules.loader
from installer import log, git_commit, custom_excepthook
from modules import timer, paths, shared, extensions, gr_tempdir, modelloader
from modules.call_queue import queue_lock, wrap_queued_call, wrap_gradio_gpu_call # pylint: disable=unused-import
import modules.devices
import modules.sd_checkpoint
import modules.sd_samplers
import modules.lowvram
import modules.scripts
import modules.sd_models
import modules.sd_vae
import modules.sd_unet
import modules.model_te
import modules.progress
import modules.ui
import modules.txt2img
import modules.img2img
import modules.upscaler
import modules.extra_networks
import modules.ui_extra_networks
import modules.textual_inversion.textual_inversion
import modules.hypernetworks.hypernetwork
import modules.script_callbacks
import modules.api.middleware
if not modules.loader.initialized:
timer.startup.record("libraries")
import modules.sd_hijack # runs conditional load of ldm if not shared.native
timer.startup.record("ldm")
modules.loader.initialized = True
sys.excepthook = custom_excepthook
local_url = None
state = shared.state
backend = shared.backend
if shared.cmd_opts.server_name:
server_name = shared.cmd_opts.server_name
else:
server_name = "0.0.0.0" if shared.cmd_opts.listen else None
fastapi_args = {
"version": f'0.0.{git_commit}',
"title": "SD.Next",
"description": "SD.Next",
"docs_url": None,
"redoc_url": None,
# "docs_url": "/docs" if cmd_opts.docs else None, # custom handler in api.py
# "redoc_url": "/redocs" if cmd_opts.docs else None,
}
def initialize():
log.debug('Initializing')
modules.sd_checkpoint.init_metadata()
modules.hashes.init_cache()
log.debug(f'Huggingface cache: path="{shared.opts.hfcache_dir}"')
modules.sd_samplers.list_samplers()
timer.startup.record("samplers")
modules.sd_vae.refresh_vae_list()
timer.startup.record("vae")
modules.sd_unet.refresh_unet_list()
timer.startup.record("unet")
modules.model_te.refresh_te_list()
timer.startup.record("te")
modelloader.cleanup_models()
modules.sd_models.setup_model()
timer.startup.record("models")
if not shared.opts.lora_legacy:
import modules.lora.networks as lora_networks
lora_networks.list_available_networks()
timer.startup.record("lora")
shared.prompt_styles.reload()
timer.startup.record("styles")
import modules.postprocess.codeformer_model as codeformer
codeformer.setup_model(shared.opts.codeformer_models_path)
sys.modules["modules.codeformer_model"] = codeformer
import modules.postprocess.gfpgan_model as gfpgan
gfpgan.setup_model(shared.opts.gfpgan_models_path)
import modules.postprocess.yolo as yolo
yolo.initialize()
timer.startup.record("detailer")
extensions.list_extensions()
timer.startup.record("extensions")
log.info('Load extensions')
t_timer, t_total = modules.scripts.load_scripts()
timer.startup.record("extensions")
timer.startup.records["extensions"] = t_total # scripts can reset the time
log.debug(f'Extensions init time: {t_timer.summary()}')
modelloader.load_upscalers()
timer.startup.record("upscalers")
if shared.opts.hypernetwork_enabled:
shared.reload_hypernetworks()
timer.startup.record("hypernetworks")
modules.ui_extra_networks.initialize()
modules.ui_extra_networks.register_pages()
modules.extra_networks.initialize()
modules.extra_networks.register_default_extra_networks()
timer.startup.record("networks")
if shared.cmd_opts.tls_keyfile is not None and shared.cmd_opts.tls_certfile is not None:
try:
if not os.path.exists(shared.cmd_opts.tls_keyfile):
log.error("Invalid path to TLS keyfile given")
if not os.path.exists(shared.cmd_opts.tls_certfile):
log.error(f"Invalid path to TLS certfile: '{shared.cmd_opts.tls_certfile}'")
except TypeError:
shared.cmd_opts.tls_keyfile = shared.cmd_opts.tls_certfile = None
log.error("TLS setup invalid, running webui without TLS")
else:
log.info("Running with TLS")
timer.startup.record("tls")
# make the program just exit at ctrl+c without waiting for anything
def sigint_handler(_sig, _frame):
log.trace(f'State history: uptime={round(time.time() - shared.state.server_start)} jobs={len(shared.state.job_history)} tasks={len(shared.state.task_history)} latents={shared.state.latent_history} images={shared.state.image_history}')
log.info('Exiting')
try:
for f in glob.glob("*.lock"):
os.remove(f)
except Exception:
pass
sys.exit(0)
signal.signal(signal.SIGINT, sigint_handler)
def load_model():
if not shared.opts.sd_checkpoint_autoload and shared.cmd_opts.ckpt is None:
log.info('Model auto load disabled')
else:
shared.state.begin('Load')
thread_model = Thread(target=lambda: shared.sd_model)
thread_model.start()
thread_refiner = Thread(target=lambda: shared.sd_refiner)
thread_refiner.start()
thread_model.join()
thread_refiner.join()
shared.state.end()
timer.startup.record("checkpoint")
shared.opts.onchange("sd_model_checkpoint", wrap_queued_call(lambda: modules.sd_models.reload_model_weights(op='model')), call=False)
shared.opts.onchange("sd_model_refiner", wrap_queued_call(lambda: modules.sd_models.reload_model_weights(op='refiner')), call=False)
shared.opts.onchange("sd_model_dict", wrap_queued_call(lambda: modules.sd_models.reload_model_weights(op='dict')), call=False)
shared.opts.onchange("sd_vae", wrap_queued_call(lambda: modules.sd_vae.reload_vae_weights()), call=False)
shared.opts.onchange("sd_unet", wrap_queued_call(lambda: modules.sd_unet.load_unet(shared.sd_model)), call=False)
shared.opts.onchange("sd_text_encoder", wrap_queued_call(lambda: modules.sd_models.reload_text_encoder()), call=False)
shared.opts.onchange("sd_backend", wrap_queued_call(lambda: modules.sd_models.change_backend()), call=False)
shared.opts.onchange("temp_dir", gr_tempdir.on_tmpdir_changed)
timer.startup.record("onchange")
def create_api(app):
log.debug('API initialize')
from modules.api.api import Api
api = Api(app, queue_lock)
return api
def async_policy():
_BasePolicy = asyncio.WindowsSelectorEventLoopPolicy if sys.platform == "win32" and hasattr(asyncio, "WindowsSelectorEventLoopPolicy") else asyncio.DefaultEventLoopPolicy
class AnyThreadEventLoopPolicy(_BasePolicy):
def handle_exception(self, context):
msg = context.get("exception", context["message"])
log.error(f"AsyncIO loop: {msg}")
def get_event_loop(self) -> asyncio.AbstractEventLoop:
try:
self.loop = super().get_event_loop()
except (RuntimeError, AssertionError):
self.loop = self.new_event_loop()
self.set_event_loop(self.loop)
return self.loop
def __init__(self):
super().__init__()
self.loop = self.get_event_loop()
self.loop.set_exception_handler(self.handle_exception)
# log.debug(f"Event loop: {self.loop}")
asyncio.set_event_loop_policy(AnyThreadEventLoopPolicy())
def start_common():
log.debug('Entering start sequence')
if shared.cmd_opts.data_dir is not None and len(shared.cmd_opts.data_dir) > 0:
log.info(f'Using data path: {shared.cmd_opts.data_dir}')
if shared.cmd_opts.models_dir is not None and len(shared.cmd_opts.models_dir) > 0 and shared.cmd_opts.models_dir != 'models':
log.info(f'Models path: {shared.cmd_opts.models_dir}')
paths.create_paths(shared.opts)
async_policy()
initialize()
try:
from installer import diffusers_commit
if diffusers_commit != 'unknown':
shared.opts.diffusers_version = diffusers_commit # update installed diffusers version
except Exception:
pass
if shared.opts.clean_temp_dir_at_start:
gr_tempdir.cleanup_tmpdr()
timer.startup.record("cleanup")
def start_ui():
log.debug('UI start sequence')
modules.script_callbacks.before_ui_callback()
timer.startup.record("before-ui")
shared.demo = modules.ui.create_ui(timer.startup)
timer.startup.record("ui")
if shared.cmd_opts.disable_queue:
log.info('Server queues disabled')
shared.demo.progress_tracking = False
else:
shared.demo.queue(concurrency_count=64)
gradio_auth_creds = []
if shared.cmd_opts.auth:
gradio_auth_creds += [x.strip() for x in shared.cmd_opts.auth.strip('"').replace('\n', '').split(',') if x.strip()]
if shared.cmd_opts.auth_file:
if not os.path.exists(shared.cmd_opts.auth_file):
log.error(f"Invalid path to auth file: '{shared.cmd_opts.auth_file}'")
else:
with open(shared.cmd_opts.auth_file, 'r', encoding="utf8") as file:
for line in file.readlines():
gradio_auth_creds += [x.strip() for x in line.split(',') if x.strip()]
if len(gradio_auth_creds) > 0:
log.info(f'Authentication enabled: users={len(list(gradio_auth_creds))}')
global local_url # pylint: disable=global-statement
stdout = io.StringIO()
allowed_paths = [os.path.dirname(__file__)]
if shared.cmd_opts.data_dir is not None and os.path.isdir(shared.cmd_opts.data_dir):
allowed_paths.append(shared.cmd_opts.data_dir)
if shared.cmd_opts.allowed_paths is not None:
allowed_paths += [p for p in shared.cmd_opts.allowed_paths if os.path.isdir(p)]
shared.log.debug(f'Root paths: {allowed_paths}')
with contextlib.redirect_stdout(stdout):
app, local_url, share_url = shared.demo.launch( # app is FastAPI(Starlette) instance
share=shared.cmd_opts.share,
server_name=server_name,
server_port=shared.cmd_opts.port if shared.cmd_opts.port != 7860 else None,
ssl_keyfile=shared.cmd_opts.tls_keyfile,
ssl_certfile=shared.cmd_opts.tls_certfile,
ssl_verify=not shared.cmd_opts.tls_selfsign,
debug=False,
auth=[tuple(cred.split(':')) for cred in gradio_auth_creds] if gradio_auth_creds else None,
prevent_thread_lock=True,
max_threads=64,
show_api=False,
quiet=True,
favicon_path='html/favicon.svg',
allowed_paths=allowed_paths,
app_kwargs=fastapi_args,
_frontend=True and shared.cmd_opts.share,
)
if shared.cmd_opts.data_dir is not None:
gr_tempdir.register_tmp_file(shared.demo, os.path.join(shared.cmd_opts.data_dir, 'x'))
shared.log.info(f'Local URL: {local_url}')
if shared.cmd_opts.docs:
shared.log.info(f'API Docs: {local_url[:-1]}/docs') # pylint: disable=unsubscriptable-object
shared.log.info(f'API ReDocs: {local_url[:-1]}/redocs') # pylint: disable=unsubscriptable-object
if share_url is not None:
shared.log.info(f'Share URL: {share_url}')
# shared.log.debug(f'Gradio functions: registered={len(shared.demo.fns)}')
shared.demo.server.wants_restart = False
modules.api.middleware.setup_middleware(app, shared.cmd_opts)
if shared.cmd_opts.subpath:
import gradio
gradio.mount_gradio_app(app, shared.demo, path=f"/{shared.cmd_opts.subpath}")
shared.log.info(f'Redirector mounted: /{shared.cmd_opts.subpath}')
timer.startup.record("launch")
modules.progress.setup_progress_api(app)
shared.api = create_api(app)
timer.startup.record("api")
modules.ui_extra_networks.init_api(app)
modules.script_callbacks.app_started_callback(shared.demo, app)
timer.startup.record("app-started")
time_sorted = sorted(modules.scripts.time_setup.items(), key=lambda x: x[1], reverse=True)
time_script = [f'{k}:{round(v,3)}' for (k,v) in time_sorted if v > 0.01]
time_total = sum(modules.scripts.time_setup.values())
shared.log.debug(f'Scripts setup: time={time_total:.3f} {time_script}')
time_component = [f'{k}:{round(v,3)}' for (k,v) in modules.scripts.time_component.items() if v > 0.005]
if len(time_component) > 0:
shared.log.debug(f'Scripts components: {time_component}')
def webui(restart=False):
if restart:
modules.script_callbacks.app_reload_callback()
modules.script_callbacks.script_unloaded_callback()
start_common()
start_ui()
modules.script_callbacks.after_ui_callback()
modules.sd_models.write_metadata()
load_model()
shared.opts.save(shared.config_filename)
if shared.cmd_opts.profile:
for k, v in modules.script_callbacks.callback_map.items():
shared.log.debug(f'Registered callbacks: {k}={len(v)} {[c.script for c in v]}')
debug = log.trace if os.environ.get('SD_SCRIPT_DEBUG', None) is not None else lambda *args, **kwargs: None
debug('Trace: SCRIPTS')
for m in modules.scripts.scripts_data:
debug(f' {m}')
debug('Loaded postprocessing scripts:')
for m in modules.scripts.postprocessing_scripts_data:
debug(f' {m}')
modules.script_callbacks.print_timers()
if shared.cmd_opts.profile:
log.info(f"Launch time: {timer.launch.summary(min_time=0)}")
log.info(f"Installer time: {timer.init.summary(min_time=0)}")
log.info(f"Startup time: {timer.startup.summary(min_time=0)}")
else:
timer.startup.add('launch', timer.launch.get_total())
timer.startup.add('installer', timer.launch.get_total())
log.info(f"Startup time: {timer.startup.summary()}")
timer.startup.reset()
if not restart:
# override all loggers to use the same handlers as the main logger
for logger in [logging.getLogger(name) for name in logging.root.manager.loggerDict]: # pylint: disable=no-member
if logger.name.startswith('uvicorn') or logger.name.startswith('sd'):
continue
logger.handlers = log.handlers
# autolaunch only on initial start
if (shared.opts.autolaunch or shared.cmd_opts.autolaunch) and local_url is not None:
shared.cmd_opts.autolaunch = False
shared.log.info('Launching browser')
import webbrowser
webbrowser.open(local_url, new=2, autoraise=True)
else:
for module in [module for name, module in sys.modules.items() if name.startswith("modules.ui")]:
importlib.reload(module)
return shared.demo.server
def api_only():
start_common()
from fastapi import FastAPI
app = FastAPI(**fastapi_args)
modules.api.middleware.setup_middleware(app, shared.cmd_opts)
shared.api = create_api(app)
shared.api.wants_restart = False
modules.script_callbacks.app_started_callback(None, app)
modules.sd_models.write_metadata()
log.info(f"Startup time: {timer.startup.summary()}")
server = shared.api.launch()
return server
if __name__ == "__main__":
if shared.cmd_opts.api_only:
api_only()
else:
webui()