-
Notifications
You must be signed in to change notification settings - Fork 6
/
componentize_cpy.py
409 lines (337 loc) · 14.1 KB
/
componentize_cpy.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
import argparse
import base64
import json
import os
import re
import sys
import tempfile
import urllib.request, urllib.parse, urllib.error
import zipfile
from io import BytesIO
import clr
import System
import System.IO
SCRIPT_COMPONENT_GUID = System.Guid("c9b2d725-6f87-4b07-af90-bd9aefef68eb")
CPY_VER = "3.-1"
TEMPLATE_VER = re.compile("{{version}}")
TEMPLATE_NAME = re.compile("{{name}}")
TEMPLATE_GHUSER_NAME = re.compile("{{ghuser_name}}")
TYPES_MAP = dict(
none="6a184b65-baa3-42d1-a548-3915b401de53",
ghdoc="1c282eeb-dd16-439f-94e4-7d92b542fe8b",
float="9d51e32e-c038-4352-9554-f4137ca91b9a",
bool="d60527f5-b5af-4ef6-8970-5f96fe412559",
int="48d01794-d3d8-4aef-990e-127168822244",
complex="309690df-6229-4774-91bb-b1c9c0bfa54d",
str="3aceb454-6dbd-4c5b-9b6b-e71f8c1cdf88",
datetime="09bcf900-fe83-4efa-8d32-33d89f7a3e66",
guid="5325b8e1-51d7-4d36-837a-d98394626c35",
color="24b1d1a3-ab79-498c-9e44-c5b14607c4d3",
point="e1937b56-b1da-4c12-8bd8-e34ee81746ef",
vector="15a50725-e3d3-4075-9f7c-142ba5f40747",
plane="3897522d-58e9-4d60-b38c-978ddacfedd8",
interval="589748aa-e558-4dd9-976f-78e3ab91fc77",
uvinterval="74c906f3-db02-4cea-bd58-de375cb5ae73",
box="f29cb021-de79-4e63-9f04-fc8e0df5f8b6",
transform="c4b38e4c-21ff-415f-a0d1-406d282428dd",
line="f802a8cd-e699-4a94-97ea-83b5406271de",
circle="3c5409a1-3293-4181-a6fa-c24c37fc0c32",
arc="9c80ec18-b48c-41b0-bc6e-cd93d9c916aa",
polyline="66fa617b-e3e8-4480-9f1e-2c0688c1d21b",
rectangle="83da014b-a550-4bf5-89ff-16e54225bd5d",
curve="9ba89ec2-5315-435f-a621-b66c5fa2f301",
mesh="794a1f9d-21d5-4379-b987-9e8bbf433912",
surface="f4070a37-c822-410f-9057-100d2e22a22d",
subd="20f4ca9c-6c90-4fd6-ba8a-5bf9ca79db08",
brep="2ceb0405-fdfe-403d-a4d6-8786da45fb9d",
pointcloud="d73c9fb0-365d-458f-9fb5-f4141399311f",
geometrybase="c37956f4-d39c-49c7-af71-1e87f8031b26"
)
EXPOSURE = dict(valid=set([-1, 2, 4, 8, 16, 32, 64, 128]), default=2)
ACCESS = dict(valid=set([0, 1, 2]), map=dict(item=0, list=1, tree=2), default=0)
PARAM_TYPE = dict(
valid=set(TYPES_MAP.values()), map=TYPES_MAP, default=TYPES_MAP["ghdoc"]
)
WIRE_DISPLAY = dict(
valid=set([0, 1, 2]), map=dict(default=0, faint=1, hidden=2), default=0
)
def fetch_ghio_lib(target_folder="temp"):
"""Fetch the GH_IO.dll library from the NuGet packaging system."""
ghio_dll = "GH_IO.dll"
filename = "lib/net48/" + ghio_dll
response = urllib.request.urlopen("https://www.nuget.org/api/v2/package/Grasshopper/")
dst_file = os.path.join(target_folder, ghio_dll)
zip_file = zipfile.ZipFile(BytesIO(response.read()))
with zip_file.open(filename, "r") as zipped_dll:
with open(dst_file, "wb") as fp:
fp.write(zipped_dll.read())
return dst_file
def find_ghio_assembly(libdir):
for root, _dirs, files in os.walk(libdir):
for basename in files:
if basename.upper() == "GH_IO.DLL":
filename = os.path.join(root, basename)
return filename
def bitmap_from_image_path(image_path):
with open(image_path, "rb") as imageFile:
# Ensure img_string is a string, not a bytes object
img_string = base64.b64encode(imageFile.read())
if isinstance(img_string, bytes):
img_string = img_string.decode()
# Now you can pass img_string to the FromBase64String method
return System.Convert.FromBase64String(img_string)
# return System.Convert.FromBase64String(img_string)
def validate_source_bundle(source):
icon = os.path.join(source, "icon.png")
code = os.path.join(source, "code.py")
data = os.path.join(source, "metadata.json")
if not os.path.exists(icon):
raise ValueError(
"icon missing, make sure icon.png is present in the source bundle: {}".format(
source
)
)
if not os.path.exists(code):
raise ValueError(
"code missing, make sure code.py is present in the source bundle: {}".format(
source
)
)
if not os.path.exists(data):
raise ValueError(
"metadata missing, make sure metadata.json is present in the source bundle: {}".format(
source
)
)
icon = bitmap_from_image_path(icon)
with open(code, "r") as f:
python_code = f.read()
with open(data, "r") as f:
data = json.load(f)
if "exposure" not in data:
data["exposure"] = EXPOSURE["default"]
if data["exposure"] not in EXPOSURE["valid"]:
raise ValueError(
"Invalid exposure value. Accepted values are {}".format(
sorted(EXPOSURE["valid"])
)
)
ghpython = data.get("ghpython")
if r'"""' not in python_code:
python_code = r'"""{}"""{}{}'.format(
data.get("description", "Generated by Componentizer"),
os.linesep,
python_code,
)
return icon, python_code, data
def parse_param_access(access):
try:
access = int(access)
except ValueError:
# Maybe string?
access = ACCESS["map"].get(access)
if access not in ACCESS["valid"]:
raise ValueError(
"Invalid param access value. Valid values are {}".format(
sorted(ACCESS["valid"])
)
)
return access
def parse_wire_display(wire_display):
try:
wire_display = int(wire_display)
except ValueError:
wire_display = WIRE_DISPLAY["map"].get(wire_display)
if wire_display not in WIRE_DISPLAY["valid"]:
raise ValueError(
"Invalid wire display value. Valid values are {}".format(
sorted(WIRE_DISPLAY["valid"])
)
)
return wire_display
def parse_param_type_hint(type_hint_id):
type_hint_id = type_hint_id or PARAM_TYPE["default"]
if type_hint_id in TYPES_MAP:
type_hint_id = TYPES_MAP[type_hint_id]
if type_hint_id not in PARAM_TYPE["valid"]:
raise ValueError(
'Invalid param type hint ID ("{}"). Valid values are {}'.format(
type_hint_id, sorted(PARAM_TYPE["valid"])
)
)
try:
type_hint_id = System.Guid.Parse(type_hint_id)
except SystemError:
raise ValueError("Unable to parse type hint ID: {}".format(type_hint_id))
return type_hint_id
def replace_templates(code, version, name, ghuser_name):
if version:
code = TEMPLATE_VER.sub(version, code)
code = TEMPLATE_NAME.sub(name, code)
code = TEMPLATE_GHUSER_NAME.sub(ghuser_name, code)
return code
def create_ghuser_component(source, target, version=None, prefix=None):
from GH_IO.Serialization import GH_LooseChunk
icon, code, data = validate_source_bundle(source)
code = replace_templates(code, version, data["name"], os.path.basename(target))
instance_guid = data.get("instanceGuid")
if not instance_guid:
instance_guid = System.Guid.NewGuid()
else:
instance_guid = System.Guid.Parse(instance_guid)
prefix = prefix or ""
root = GH_LooseChunk("UserObject")
root.SetGuid("BaseID", SCRIPT_COMPONENT_GUID)
root.SetString("Name", prefix + data["name"])
root.SetString("NickName", data["nickname"])
root.SetString("Description", data.get("description", ""))
root.SetString("ToolTip", data.get("description", ""))
root.SetInt32("Exposure", data.get("exposure", EXPOSURE["default"]))
root.SetString("Category", data["category"])
root.SetString("SubCategory", data["subcategory"])
root.SetGuid("InstanceGuid", instance_guid)
root.SetByteArray("Icon", icon)
ghpython_data = data["ghpython"]
ghpython_root = GH_LooseChunk("UserObject")
ghpython_root.SetString("Description", data.get("description", ""))
bitmap_icon = System.Drawing.Bitmap.FromStream(System.IO.MemoryStream(icon))
ghpython_root.SetDrawingBitmap("IconOverride", bitmap_icon)
ghpython_root.SetBoolean("UsingLibraryInputParam", False)
ghpython_root.SetBoolean("UsingScriptInputParam", False)
ghpython_root.SetBoolean("UsingStandardOutputParam", False)
ghpython_root.SetInt32("IconDisplay", ghpython_data.get("iconDisplay", 0))
ghpython_root.SetString("Name", data["name"])
ghpython_root.SetString("NickName", data["nickname"])
ghpython_root.SetBoolean("MarshalGuids", ghpython_data.get("marshalGuids", True))
# ghpython_root.CreateChunk('Attributes')
# for mf in ('Bounds', 'Pivot', 'Selected'):
params = ghpython_root.CreateChunk("ParameterData")
inputParam = ghpython_data.get("inputParameters", [])
outputParam = ghpython_data.get("outputParameters", [])
params.SetInt32("InputCount", len(inputParam))
for i, _pi in enumerate(inputParam):
params.SetGuid(
"InputId", i, System.Guid.Parse("08908df5-fa14-4982-9ab2-1aa0927566aa")
)
params.SetInt32("OutputCount", len(outputParam))
for i, _po in enumerate(outputParam):
params.SetGuid(
"OutputId", i, System.Guid.Parse("08908df5-fa14-4982-9ab2-1aa0927566aa")
)
for i, pi in enumerate(inputParam):
input_instance_guid = System.Guid.NewGuid()
pi_chunk = params.CreateChunk("InputParam", i)
pi_chunk.SetString("Name", pi["name"])
pi_chunk.SetString("NickName", pi.get("nickname") or pi["name"])
pi_chunk.SetString("Description", pi.get("description"))
pi_chunk.SetBoolean("Optional", pi.get("optional", True))
pi_chunk.SetString("ToolTip", pi.get("description", ""))
pi_chunk.SetBoolean("AllowTreeAccess", pi.get("allowTreeAccess", True))
pi_chunk.SetBoolean("ShowTypeHints", pi.get("showTypeHints", True))
pi_chunk.SetInt32(
"ScriptParamAccess",
parse_param_access(pi.get("scriptParamAccess", ACCESS["default"])),
)
pi_chunk.SetInt32("SourceCount", pi.get("sourceCount", 0))
pi_chunk.SetGuid("InstanceGuid", input_instance_guid)
pi_chunk.SetGuid("TypeHintID", parse_param_type_hint(pi.get("typeHintID")))
pi_chunk.SetInt32(
"WireDisplay",
parse_wire_display(pi.get("wireDisplay", WIRE_DISPLAY["default"])),
)
pi_chunk.SetBoolean("ReverseData", pi.get("reverse", False))
pi_chunk.SetBoolean("SimplifyData", pi.get("simplify", False))
if pi.get("flatten", False):
pi_chunk.SetInt32("Mapping", 1)
elif pi.get("graft", False):
pi_chunk.SetInt32("Mapping", 2)
for i, po in enumerate(outputParam):
output_instance_guid = System.Guid.NewGuid()
po_chunk = params.CreateChunk("OutputParam", i)
po_chunk.SetString("Name", po["name"])
po_chunk.SetString("NickName", po.get("nickname") or po["name"])
po_chunk.SetString("Description", po.get("description"))
po_chunk.SetBoolean("Optional", po.get("optional", False))
po_chunk.SetString("ToolTip", po.get("description", ""))
po_chunk.SetInt32("SourceCount", po.get("sourceCount", 0))
po_chunk.SetGuid("InstanceGuid", output_instance_guid)
po_chunk.SetBoolean("ReverseData", po.get("reverse", False))
po_chunk.SetBoolean("SimplifyData", po.get("simplify", False))
if po.get("flatten", False):
po_chunk.SetInt32("Mapping", 1)
elif po.get("graft", False):
po_chunk.SetInt32("Mapping", 2)
script = ghpython_root.CreateChunk("Script")
code_base64 = base64.b64encode(code.encode("utf-8"))
code_base64 = str(code_base64)[2:-1]
script.SetString("Text", code_base64)
script.SetString("Title", "S")
language_spec = script.CreateChunk("LanguageSpec")
language_spec.SetString("Taxon", "*.*.python")
language_spec.SetString("Version", CPY_VER)
# xml_serialized = ghpython_root.Serialize_Xml()
root.SetByteArray("Object", ghpython_root.Serialize_Binary())
System.IO.File.WriteAllBytes(target, root.Serialize_Binary())
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Create GHUser components out of python code."
)
parser.add_argument(
"source",
type=str,
help="Source directory where code for all components is stored",
)
parser.add_argument("target", type=str, help="Target directory for ghuser files")
parser.add_argument(
"--ghio",
type=str,
required=False,
help="Folder where the GH_IO.dll assembly is located. Defaults to ./lib",
)
parser.add_argument(
"--version", type=str, required=False, help="Version to tag components"
)
parser.add_argument(
"--prefix",
type=str,
required=False,
help="Add this prefix to the name of each generated component",
)
args = parser.parse_args()
sourcedir = args.source
if not os.path.isabs(sourcedir):
sourcedir = os.path.abspath(sourcedir)
targetdir = args.target
if not os.path.isabs(targetdir):
targetdir = os.path.abspath(targetdir)
if args.ghio is None:
libdir = tempfile.mkdtemp("ghio")
fetch_ghio_lib(libdir)
else:
libdir = os.path.abspath(args.ghio)
gh_io = find_ghio_assembly(libdir)
source_bundles = [
d
for d in os.listdir(sourcedir)
if os.path.isdir(os.path.join(sourcedir, d))
and d not in ("__pycache__", ".git")
]
print("GHPython componentizer")
print("======================")
print("[x] Source: {} ({} components)".format(sourcedir, len(source_bundles)))
print("[ ] Target: {}\r".format(targetdir), end="")
if not os.path.exists(targetdir):
os.mkdir(targetdir)
print("[x]")
if not gh_io:
print("[-] Cannot find GH_IO Assembly! Aborting.")
sys.exit(-1)
clr.AddReference(os.path.splitext(gh_io)[0])
print("[x] GH_IO assembly: {}".format(gh_io))
print("Processing component bundles:")
for d in source_bundles:
source = os.path.join(sourcedir, d)
target = os.path.join(targetdir, d + ".ghuser")
print(" [ ] {}\r".format(d), end="")
create_ghuser_component(source, target, args.version, args.prefix)
print(" [x] {} => {}".format(d, target))