Spaces:
Runtime error
Runtime error
File size: 8,051 Bytes
c19ca42 | 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 | #!/usr/bin/env python
#pylint: disable=redefined-outer-name
"""
helper methods that creates HTTP session with managed connection pool
provides async HTTP get/post methods and several helper methods
"""
import io
import os
import sys
import ssl
import base64
import asyncio
import logging
import aiohttp
import requests
import urllib3
from PIL import Image
from util import Map, log
from rich import print # pylint: disable=redefined-builtin
sd_url = os.environ.get('SDAPI_URL', "http://127.0.0.1:7860") # api url root
sd_username = os.environ.get('SDAPI_USR', None)
sd_password = os.environ.get('SDAPI_PWD', None)
use_session = True
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
ssl.create_default_context = ssl._create_unverified_context # pylint: disable=protected-access
timeout = aiohttp.ClientTimeout(total = None, sock_connect = 10, sock_read = None) # default value is 5 minutes, we need longer for training
sess = None
quiet = False
BaseThreadPolicy = asyncio.WindowsSelectorEventLoopPolicy if sys.platform == "win32" and hasattr(asyncio, "WindowsSelectorEventLoopPolicy") else asyncio.DefaultEventLoopPolicy
class AnyThreadEventLoopPolicy(BaseThreadPolicy):
def get_event_loop(self) -> asyncio.AbstractEventLoop:
try:
return super().get_event_loop()
except (RuntimeError, AssertionError):
loop = self.new_event_loop()
self.set_event_loop(loop)
return loop
asyncio.set_event_loop_policy(AnyThreadEventLoopPolicy())
def authsync():
if sd_username is not None and sd_password is not None:
return requests.auth.HTTPBasicAuth(sd_username, sd_password)
return None
def auth():
if sd_username is not None and sd_password is not None:
return aiohttp.BasicAuth(sd_username, sd_password)
return None
async def result(req):
if req.status != 200:
if not quiet:
log.error({ 'request error': req.status, 'reason': req.reason, 'url': req.url })
if not use_session and sess is not None:
await sess.close()
return Map({ 'error': req.status, 'reason': req.reason, 'url': req.url })
else:
json = await req.json()
if isinstance(json, list):
res = json
elif json is None:
res = {}
else:
res = Map(json)
log.debug({ 'request': req.status, 'url': req.url, 'reason': req.reason })
return res
def resultsync(req: requests.Response):
if req.status_code != 200:
if not quiet:
log.error({ 'request error': req.status_code, 'reason': req.reason, 'url': req.url })
return Map({ 'error': req.status_code, 'reason': req.reason, 'url': req.url })
else:
json = req.json()
if isinstance(json, list):
res = json
elif json is None:
res = {}
else:
res = Map(json)
log.debug({ 'request': req.status_code, 'url': req.url, 'reason': req.reason })
return res
async def get(endpoint: str, json: dict = None):
global sess # pylint: disable=global-statement
sess = sess if sess is not None else await session()
try:
async with sess.get(url=endpoint, json=json, verify_ssl=False) as req:
res = await result(req)
return res
except Exception as err:
log.error({ 'session': err })
return {}
def getsync(endpoint: str, json: dict = None):
try:
req = requests.get(f'{sd_url}{endpoint}', json=json, verify=False, auth=authsync()) # pylint: disable=missing-timeout
res = resultsync(req)
return res
except Exception as err:
log.error({ 'session': err })
return {}
async def post(endpoint: str, json: dict = None):
global sess # pylint: disable=global-statement
# sess = sess if sess is not None else await session()
if sess and not sess.closed:
await sess.close()
sess = await session()
try:
async with sess.post(url=endpoint, json=json, verify_ssl=False) as req:
res = await result(req)
return res
except Exception as err:
log.error({ 'session': err })
return {}
def postsync(endpoint: str, json: dict = None):
req = requests.post(f'{sd_url}{endpoint}', json=json, verify=False, auth=authsync()) # pylint: disable=missing-timeout
res = resultsync(req)
return res
async def interrupt():
res = await get('/sdapi/v1/progress?skip_current_image=true')
if 'state' in res and res.state.job_count > 0:
log.debug({ 'interrupt': res.state })
res = await post('/sdapi/v1/interrupt')
await asyncio.sleep(1)
return res
else:
log.debug({ 'interrupt': 'idle' })
return { 'interrupt': 'idle' }
def interruptsync():
res = getsync('/sdapi/v1/progress?skip_current_image=true')
if 'state' in res and res.state.job_count > 0:
log.debug({ 'interrupt': res.state })
res = postsync('/sdapi/v1/interrupt')
return res
else:
log.debug({ 'interrupt': 'idle' })
return { 'interrupt': 'idle' }
async def progress():
res = await get('/sdapi/v1/progress?skip_current_image=false')
try:
if res is not None and res.get('current_image', None) is not None:
res.current_image = Image.open(io.BytesIO(base64.b64decode(res['current_image'])))
except Exception:
pass
log.debug({ 'progress': res })
return res
def progresssync():
res = getsync('/sdapi/v1/progress?skip_current_image=true')
log.debug({ 'progress': res })
return res
def get_log():
res = getsync('/sdapi/v1/log')
for line in res:
log.debug(line)
return res
def get_info():
import time
t0 = time.time()
res = getsync('/sdapi/v1/system-info/status?full=true&refresh=true')
t1 = time.time()
print({ 'duration': 1000 * round(t1-t0, 3), **res })
return res
def options():
opts = getsync('/sdapi/v1/options')
flags = getsync('/sdapi/v1/cmd-flags')
return { 'options': opts, 'flags': flags }
def shutdown():
try:
postsync('/sdapi/v1/shutdown')
except Exception as e:
log.info({ 'shutdown': e })
async def session():
global sess # pylint: disable=global-statement
time = aiohttp.ClientTimeout(total = None, sock_connect = 10, sock_read = None) # default value is 5 minutes, we need longer for training
sess = aiohttp.ClientSession(timeout = time, base_url = sd_url, auth=auth())
log.debug({ 'sdapi': 'session created', 'endpoint': sd_url })
"""
sess = await aiohttp.ClientSession(timeout = timeout).__aenter__()
try:
async with sess.get(url = f'{sd_url}/') as req:
log.debug({ 'sdapi': 'session created', 'endpoint': sd_url })
except Exception as e:
log.error({ 'sdapi': e })
await asyncio.sleep(0)
await sess.__aexit__(None, None, None)
sess = None
return sess
"""
return sess
async def close():
if sess is not None:
await asyncio.sleep(0)
await sess.close()
await sess.__aexit__(None, None, None)
log.debug({ 'sdapi': 'session closed', 'endpoint': sd_url })
if __name__ == "__main__":
sys.argv.pop(0)
log.setLevel(logging.DEBUG)
if 'interrupt' in sys.argv:
asyncio.run(interrupt())
elif 'progress' in sys.argv:
asyncio.run(progress())
elif 'progresssync' in sys.argv:
progresssync()
elif 'options' in sys.argv:
opt = options()
log.debug({ 'options' })
import json
print(json.dumps(opt['options'], indent = 2))
log.debug({ 'cmd-flags' })
print(json.dumps(opt['flags'], indent = 2))
elif 'log' in sys.argv:
get_log()
elif 'info' in sys.argv:
get_info()
elif 'shutdown' in sys.argv:
shutdown()
else:
res = getsync(sys.argv[0])
print(res)
asyncio.run(close(), debug=True)
asyncio.run(asyncio.sleep(0.5))
|