-
Notifications
You must be signed in to change notification settings - Fork 12
/
camendurucolab3.py
239 lines (209 loc) · 10.4 KB
/
camendurucolab3.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
import os, subprocess, shlex, pickle, re, shutil
debugmode = False
curdir = '/'
linetoexecute_part1, linetoexecute_part2, linetoexecute_part2_1, linetoexecute_part2_2, linetoexecute_part3 = [], [], [], [], []
startcapture = False
afteraria = False
currentpart = 'part1'
parttoexecute = 'part1'
currentbranch = 'stable'
emptymodel = False
gradio_client_ver = "0.2.10"
filename = 'stable_diffusion_1_5_webui_colab.ipynb'
vclvarpath = '/content/vclvariables'
def pickleload(prevvalue, inputfile):
inputpath = os.path.join(vclvarpath, inputfile + '.pkl')
if os.path.exists(inputpath):
with open(inputpath, 'rb') as f:
vartopass = pickle.load(f)
return vartopass
else:
return prevvalue
# def printdebug(toprint):
# if debugmode:
# print(toprint)
# Dumped from the main colab
colaboptions = pickleload(None, 'colaboptions')
if colaboptions:
currentbranch = colaboptions["branch"]
parttoexecute = colaboptions["part"]
filename = colaboptions["filename"]
emptymodel = colaboptions["empty_model"]
colabpath = f"/content/camendurus/{currentbranch}/{filename}"
if debugmode==True:
colabpath = r"C:\Users\Ethereal\Downloads\526_mix_webui_colab.ipynb"
print("[1;32mGathering code from " + colabpath + "...")
print('[0m')
camendururepo = 'camenduru/stable-diffusion-webui'
with open(colabpath, 'r', encoding='utf-8') as f:
for line in f:
stripped_line = line.strip()
if stripped_line.startswith(r'"%cd /content'):
startcapture = True
if startcapture:
if stripped_line.startswith('"'):
stripped_line = stripped_line[1:]
if stripped_line.startswith('!'):
stripped_line = stripped_line[1:]
if stripped_line.endswith('\\n",'):
stripped_line = stripped_line[:-4]
if stripped_line.startswith('apt -y install'):
currentpart = 'part2'
# print("[1;33mprepare " + currentpart + "[0m: " + stripped_line)
elif stripped_line.startswith("git clone") and "https://github.com" in stripped_line:
if stripped_line.endswith(camendururepo):
currentpart = 'part2'
else:
currentpart = 'part2_1'
# print("[1;33mprepare " + currentpart + "[0m: " + stripped_line)
elif stripped_line.startswith("%cd /content/stable-diffusion-webui"):
currentpart = "part2_2"
# print("[1;33mprepare " + currentpart + "[0m: " + stripped_line)
elif stripped_line.startswith('sed'):
currentpart = 'part3'
# print("[1;33mprepare " + currentpart + "[0m: " + stripped_line)
#camendururepo = 'camenduru/stable-diffusion-webui'
if camendururepo in stripped_line and not '/content/volatile-concentration-localux' in stripped_line:
# Attempt to fix `TypeError: kill() missing 1 required positional argument: 'self'` issue
if "-b v2.4" in stripped_line:
stripped_line = stripped_line.replace("-b v2.4", "-b v2.7")
if (stripped_line.find(camendururepo) + len(camendururepo) == len(stripped_line) or stripped_line[stripped_line.find(camendururepo) + len(camendururepo)] in [' ', '\n']):
stripped_line += ' /content/volatile-concentration-localux'
# if currentbranch == "lite":
# if "https://download.pytorch.org/whl/cu116" in stripped_line and not "torchmetrics==0.11.4" in stripped_line:
# line_parts = stripped_line.partition("--extra-index-url")
# stripped_line = line_parts[0].strip() + " torchmetrics==0.11.4 " + line_parts[1] + line_parts[2]
# if "gradio_client" in stripped_line:
# importedverpattern = r'(gradio_client==)(\S+)'
# importedvermatch = re.search(importedverpattern, stripped_line)
# if importedvermatch.group(2) != gradio_client_ver:
# changedverpattern = r'(gradio_client==)\S+'
# stripped_line = re.sub(changedverpattern, rf'\g<1>{gradio_client_ver}', stripped_line)
if stripped_line:
if stripped_line.startswith('aria2c') and not '4x-UltraSharp.pth' in stripped_line:
pass
elif stripped_line.startswith(r'%env'):
pass
elif stripped_line.startswith('python launch.py'):
pass
elif stripped_line=='rm *.deb':
pass
else:
commandtoappend = stripped_line.replace('/content/stable-diffusion-webui', '/content/volatile-concentration-localux')
if currentpart == 'part1':
linetoexecute_part1.append(commandtoappend)
elif currentpart == 'part2':
linetoexecute_part2.append(commandtoappend)
# print(f"appended to part2: {commandtoappend}")
elif currentpart == 'part2_1':
linetoexecute_part2_1.append(commandtoappend)
# print(f"appended to part2_1: {commandtoappend}")
elif currentpart == 'part2_2':
linetoexecute_part2_2.append(commandtoappend)
elif currentpart == 'part3':
linetoexecute_part3.append(commandtoappend)
if stripped_line.startswith('python launch.py'):
startcapture = False
def debugline(codetodebug):
if codetodebug:
# print(linetoexecute)
for line in codetodebug:
print(line)
def rulesbroken(codetoexecute, sedlines=None):
global curdir
for line in codetoexecute:
line = line.strip()
if line.startswith('!'):
line = line[1:]
if not line == '':
if line.startswith(r'%cd'):
curdir = line.replace(r'%cd', '').strip()
else:
try:
if curdir:
print("[1;32m" + line)
print('[0m')
splittedcommand = shlex.split(line)
if sedlines:
# escapedcommand = line.replace(r'\"', r'\\"')
# quotedcommand = shlex.quote(line)
# print("commmand before: " + line)
commandafter = line.replace('\\\\', '\\').replace('\\"', '"')
# print("commmand after: " + commandafter)
subprocess.run(commandafter, shell=True)
else:
process = subprocess.Popen(splittedcommand, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True, cwd=curdir)
while True:
nextline = process.stdout.readline()
if nextline == '' and process.poll() is not None:
break
else:
if "%" in nextline.strip():
stripnext = nextline.strip()
print("\r", end="")
print(f"\r{stripnext}", end='')
else:
print(nextline, end='')
except Exception as e:
print("Exception: " + str(e))
# List of git clone lines
extensionlines = pickleload(linetoexecute_part2_1, 'extensions')
# Dumped from the main colab, where it compares every extensions to those chosen by user
# ... resulting extensions to be removed/blacklisted
extensiontoremove = pickleload(None, 'removedextensions')
extensionrequirements = pickleload(None, 'extrequirements')
installextensions = []
for ext_line in extensionlines:
def addlineandcheck(name, line):
installextensions.append(line)
if name in extensionrequirements:
if extensionrequirements[name].startswith(name):
extensionrequirements[name] = extensionrequirements[name].lstrip(name)
installextensions.append(extensionrequirements[name])
pattern = r"https://github.com/\S+/(\S+)"
match = re.search(pattern, ext_line)
if match:
ext_name = match.group(1)
if extensiontoremove:
if not ext_name in extensiontoremove:
addlineandcheck(ext_name, ext_line)
else:
addlineandcheck(ext_name, ext_line)
# for x in ("linetoexecute_part1", "linetoexecute_part2", "linetoexecute_part2_1", "linetoexecute_part2_2", "linetoexecute_part3"):
# print(f"[1;33m{x}[0m = {str(eval(x))}")
# if debugmode==True:
# debugline(linetoexecute_part1)
# else:
# if parttoexecute == 'part1':
# # print("[1;33m" + parttoexecute + "[0m")
# rulesbroken(linetoexecute_part1)
# elif parttoexecute == 'part2':
# print("[1;33m" + "part2" + "[0m")
# print("linetoexecute_part2: " + str(linetoexecute_part2))
# print("installextensions: " + str(installextensions))
# print("linetoexecute_part2_2: " + str(linetoexecute_part2_2))
# print("linetoexecute_part3: " + str(linetoexecute_part3))
rulesbroken(linetoexecute_part2)
# rulesbroken(linetoexecute_part2_1) # Do not use this, installextensions is linetoexecute_part2_1
# print("[1;33m" + "part2_1" + "[0m")
rulesbroken(installextensions)
# print("[1;33m" + "part2_2" + "[0m")
rulesbroken(linetoexecute_part2_2)
rulesbroken(linetoexecute_part3, "sedlines")
# elif parttoexecute == 'part3':
# # print("[1;33m" + parttoexecute + "[0m")
# rulesbroken(linetoexecute_part3, "sedlines")
if extensiontoremove:
for removed_ext in extensiontoremove:
pattern = r"https://github.com/\S+/(\S+)"
match = re.search(pattern, ext_line)
if match:
ext_name = match.group(1)
if not ext_name in extensiontoremove:
installextensions.append(ext_line)
if not emptymodel:
for ext in extensiontoremove:
extpath = os.path.join('/content/volatile-concentration-localux/extensions', ext)
if os.path.exists(extpath):
shutil.rmtree(extpath)
print(f"removed {ext} extension")