mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
596 lines
18 KiB
Python
596 lines
18 KiB
Python
import os
|
|
import re
|
|
import json
|
|
import copy
|
|
from pype.settings.constants import (
|
|
M_OVERRIDEN_KEY,
|
|
M_ENVIRONMENT_KEY,
|
|
M_DYNAMIC_KEY_LABEL
|
|
)
|
|
from queue import Queue
|
|
|
|
|
|
class DefaultsNotDefined(Exception):
|
|
def __init__(self, obj):
|
|
msg = "Default values for object are not set. {}".format(obj.path)
|
|
super(DefaultsNotDefined, self).__init__(msg)
|
|
|
|
|
|
WRAPPER_TYPES = ["form", "collapsible-wrap"]
|
|
NOT_SET = type("NOT_SET", (), {"__bool__": lambda obj: False})()
|
|
METADATA_KEY = type("METADATA_KEY", (), {})()
|
|
OVERRIDE_VERSION = 1
|
|
|
|
key_pattern = re.compile(r"(\{.*?[^{0]*\})")
|
|
|
|
|
|
def convert_gui_data_with_metadata(data, ignored_keys=None):
|
|
if not data or not isinstance(data, dict):
|
|
return data
|
|
|
|
if ignored_keys is None:
|
|
ignored_keys = tuple()
|
|
|
|
output = {}
|
|
if METADATA_KEY in data:
|
|
metadata = data.pop(METADATA_KEY)
|
|
for key, value in metadata.items():
|
|
if key in ignored_keys or key == "groups":
|
|
continue
|
|
|
|
if key == "environments":
|
|
output[M_ENVIRONMENT_KEY] = value
|
|
elif key == "dynamic_key_label":
|
|
output[M_DYNAMIC_KEY_LABEL] = value
|
|
else:
|
|
raise KeyError("Unknown metadata key \"{}\"".format(key))
|
|
|
|
for key, value in data.items():
|
|
output[key] = convert_gui_data_with_metadata(value, ignored_keys)
|
|
return output
|
|
|
|
|
|
def convert_data_to_gui_data(data, first=True):
|
|
if not data or not isinstance(data, dict):
|
|
return data
|
|
|
|
output = {}
|
|
if M_ENVIRONMENT_KEY in data:
|
|
data.pop(M_ENVIRONMENT_KEY)
|
|
|
|
if M_DYNAMIC_KEY_LABEL in data:
|
|
if METADATA_KEY not in data:
|
|
data[METADATA_KEY] = {}
|
|
data[METADATA_KEY]["dynamic_key_label"] = data.pop(M_DYNAMIC_KEY_LABEL)
|
|
|
|
for key, value in data.items():
|
|
output[key] = convert_data_to_gui_data(value, False)
|
|
|
|
return output
|
|
|
|
|
|
def convert_gui_data_to_overrides(data, first=True):
|
|
if not data or not isinstance(data, dict):
|
|
return data
|
|
|
|
output = {}
|
|
if first:
|
|
output["__override_version__"] = OVERRIDE_VERSION
|
|
data = convert_gui_data_with_metadata(data)
|
|
|
|
if METADATA_KEY in data:
|
|
metadata = data.pop(METADATA_KEY)
|
|
for key, value in metadata.items():
|
|
if key == "groups":
|
|
output[M_OVERRIDEN_KEY] = value
|
|
else:
|
|
raise KeyError("Unknown metadata key \"{}\"".format(key))
|
|
|
|
for key, value in data.items():
|
|
output[key] = convert_gui_data_to_overrides(value, False)
|
|
return output
|
|
|
|
|
|
def convert_overrides_to_gui_data(data, first=True):
|
|
if not data or not isinstance(data, dict):
|
|
return data
|
|
|
|
if first:
|
|
data = convert_data_to_gui_data(data)
|
|
|
|
output = {}
|
|
if M_OVERRIDEN_KEY in data:
|
|
groups = data.pop(M_OVERRIDEN_KEY)
|
|
if METADATA_KEY not in output:
|
|
output[METADATA_KEY] = {}
|
|
output[METADATA_KEY]["groups"] = groups
|
|
|
|
for key, value in data.items():
|
|
output[key] = convert_overrides_to_gui_data(value, False)
|
|
|
|
return output
|
|
|
|
|
|
def _fill_schema_template_data(
|
|
template, template_data, required_keys=None, missing_keys=None
|
|
):
|
|
first = False
|
|
if required_keys is None:
|
|
first = True
|
|
required_keys = set()
|
|
missing_keys = set()
|
|
|
|
_template = []
|
|
default_values = {}
|
|
for item in template:
|
|
if isinstance(item, dict) and "__default_values__" in item:
|
|
default_values = item["__default_values__"]
|
|
else:
|
|
_template.append(item)
|
|
template = _template
|
|
|
|
for key, value in default_values.items():
|
|
if key not in template_data:
|
|
template_data[key] = value
|
|
|
|
if not template:
|
|
output = template
|
|
|
|
elif isinstance(template, list):
|
|
output = []
|
|
for item in template:
|
|
output.append(_fill_schema_template_data(
|
|
item, template_data, required_keys, missing_keys
|
|
))
|
|
|
|
elif isinstance(template, dict):
|
|
output = {}
|
|
for key, value in template.items():
|
|
output[key] = _fill_schema_template_data(
|
|
value, template_data, required_keys, missing_keys
|
|
)
|
|
|
|
elif isinstance(template, str):
|
|
# TODO find much better way how to handle filling template data
|
|
for replacement_string in key_pattern.findall(template):
|
|
key = str(replacement_string[1:-1])
|
|
required_keys.add(key)
|
|
if key not in template_data:
|
|
missing_keys.add(key)
|
|
continue
|
|
|
|
value = template_data[key]
|
|
if replacement_string == template:
|
|
# Replace the value with value from templates data
|
|
# - with this is possible to set value with different type
|
|
template = value
|
|
else:
|
|
# Only replace the key in string
|
|
template = template.replace(replacement_string, value)
|
|
output = template
|
|
|
|
else:
|
|
output = template
|
|
|
|
if first and missing_keys:
|
|
raise SchemaTemplateMissingKeys(missing_keys, required_keys)
|
|
|
|
return output
|
|
|
|
|
|
def _fill_schema_template(child_data, schema_collection, schema_templates):
|
|
template_name = child_data["name"]
|
|
template = schema_templates.get(template_name)
|
|
if template is None:
|
|
if template_name in schema_collection:
|
|
raise KeyError((
|
|
"Schema \"{}\" is used as `schema_template`"
|
|
).format(template_name))
|
|
raise KeyError("Schema template \"{}\" was not found".format(
|
|
template_name
|
|
))
|
|
|
|
# Default value must be dictionary (NOT list)
|
|
# - empty list would not add any item if `template_data` are not filled
|
|
template_data = child_data.get("template_data") or {}
|
|
if isinstance(template_data, dict):
|
|
template_data = [template_data]
|
|
|
|
output = []
|
|
for single_template_data in template_data:
|
|
try:
|
|
filled_child = _fill_schema_template_data(
|
|
template, single_template_data
|
|
)
|
|
|
|
except SchemaTemplateMissingKeys as exc:
|
|
raise SchemaTemplateMissingKeys(
|
|
exc.missing_keys, exc.required_keys, template_name
|
|
)
|
|
|
|
for item in filled_child:
|
|
filled_item = _fill_inner_schemas(
|
|
item, schema_collection, schema_templates
|
|
)
|
|
if filled_item["type"] == "schema_template":
|
|
output.extend(_fill_schema_template(
|
|
filled_item, schema_collection, schema_templates
|
|
))
|
|
else:
|
|
output.append(filled_item)
|
|
return output
|
|
|
|
|
|
def _fill_inner_schemas(schema_data, schema_collection, schema_templates):
|
|
if schema_data["type"] == "schema":
|
|
raise ValueError("First item in schema data can't be schema.")
|
|
|
|
children_key = "children"
|
|
object_type_key = "object_type"
|
|
for item_key in (children_key, object_type_key):
|
|
children = schema_data.get(item_key)
|
|
if not children:
|
|
continue
|
|
|
|
if object_type_key == item_key:
|
|
if not isinstance(children, dict):
|
|
continue
|
|
children = [children]
|
|
|
|
new_children = []
|
|
for child in children:
|
|
child_type = child["type"]
|
|
if child_type == "schema":
|
|
schema_name = child["name"]
|
|
if schema_name not in schema_collection:
|
|
if schema_name in schema_templates:
|
|
raise KeyError((
|
|
"Schema template \"{}\" is used as `schema`"
|
|
).format(schema_name))
|
|
raise KeyError(
|
|
"Schema \"{}\" was not found".format(schema_name)
|
|
)
|
|
|
|
filled_child = _fill_inner_schemas(
|
|
schema_collection[schema_name],
|
|
schema_collection,
|
|
schema_templates
|
|
)
|
|
|
|
elif child_type == "schema_template":
|
|
for filled_child in _fill_schema_template(
|
|
child, schema_collection, schema_templates
|
|
):
|
|
new_children.append(filled_child)
|
|
continue
|
|
|
|
else:
|
|
filled_child = _fill_inner_schemas(
|
|
child, schema_collection, schema_templates
|
|
)
|
|
|
|
new_children.append(filled_child)
|
|
|
|
if item_key == object_type_key:
|
|
if len(new_children) != 1:
|
|
raise KeyError((
|
|
"Failed to fill object type with type: {} | name {}"
|
|
).format(
|
|
child_type, str(child.get("name"))
|
|
))
|
|
new_children = new_children[0]
|
|
|
|
schema_data[item_key] = new_children
|
|
return schema_data
|
|
|
|
|
|
class SchemaTemplateMissingKeys(Exception):
|
|
def __init__(self, missing_keys, required_keys, template_name=None):
|
|
self.missing_keys = missing_keys
|
|
self.required_keys = required_keys
|
|
if template_name:
|
|
msg = f"Schema template \"{template_name}\" require more keys.\n"
|
|
else:
|
|
msg = ""
|
|
msg += "Required keys: {}\nMissing keys: {}".format(
|
|
self.join_keys(required_keys),
|
|
self.join_keys(missing_keys)
|
|
)
|
|
super(SchemaTemplateMissingKeys, self).__init__(msg)
|
|
|
|
def join_keys(self, keys):
|
|
return ", ".join([
|
|
f"\"{key}\"" for key in keys
|
|
])
|
|
|
|
|
|
class SchemaMissingFileInfo(Exception):
|
|
def __init__(self, invalid):
|
|
full_path_keys = []
|
|
for item in invalid:
|
|
full_path_keys.append("\"{}\"".format("/".join(item)))
|
|
|
|
msg = (
|
|
"Schema has missing definition of output file (\"is_file\" key)"
|
|
" for keys. [{}]"
|
|
).format(", ".join(full_path_keys))
|
|
super(SchemaMissingFileInfo, self).__init__(msg)
|
|
|
|
|
|
class SchemeGroupHierarchyBug(Exception):
|
|
def __init__(self, invalid):
|
|
full_path_keys = []
|
|
for item in invalid:
|
|
full_path_keys.append("\"{}\"".format("/".join(item)))
|
|
|
|
msg = (
|
|
"Items with attribute \"is_group\" can't have another item with"
|
|
" \"is_group\" attribute as child. Error happened for keys: [{}]"
|
|
).format(", ".join(full_path_keys))
|
|
super(SchemeGroupHierarchyBug, self).__init__(msg)
|
|
|
|
|
|
class SchemaDuplicatedKeys(Exception):
|
|
def __init__(self, invalid):
|
|
items = []
|
|
for key_path, keys in invalid.items():
|
|
joined_keys = ", ".join([
|
|
"\"{}\"".format(key) for key in keys
|
|
])
|
|
items.append("\"{}\" ({})".format(key_path, joined_keys))
|
|
|
|
msg = (
|
|
"Schema items contain duplicated keys in one hierarchy level. {}"
|
|
).format(" || ".join(items))
|
|
super(SchemaDuplicatedKeys, self).__init__(msg)
|
|
|
|
|
|
class SchemaDuplicatedEnvGroupKeys(Exception):
|
|
def __init__(self, invalid):
|
|
items = []
|
|
for key_path, keys in invalid.items():
|
|
joined_keys = ", ".join([
|
|
"\"{}\"".format(key) for key in keys
|
|
])
|
|
items.append("\"{}\" ({})".format(key_path, joined_keys))
|
|
|
|
msg = (
|
|
"Schema items contain duplicated environment group keys. {}"
|
|
).format(" || ".join(items))
|
|
super(SchemaDuplicatedEnvGroupKeys, self).__init__(msg)
|
|
|
|
|
|
def validate_is_group_is_unique_in_hierarchy(
|
|
schema_data, any_parent_is_group=False, keys=None
|
|
):
|
|
is_top = keys is None
|
|
if keys is None:
|
|
keys = []
|
|
|
|
keyless = "key" not in schema_data
|
|
|
|
if not keyless:
|
|
keys.append(schema_data["key"])
|
|
|
|
invalid = []
|
|
is_group = schema_data.get("is_group")
|
|
if is_group and any_parent_is_group:
|
|
invalid.append(copy.deepcopy(keys))
|
|
|
|
if is_group:
|
|
any_parent_is_group = is_group
|
|
|
|
children = schema_data.get("children")
|
|
if not children:
|
|
return invalid
|
|
|
|
for child in children:
|
|
result = validate_is_group_is_unique_in_hierarchy(
|
|
child, any_parent_is_group, copy.deepcopy(keys)
|
|
)
|
|
if not result:
|
|
continue
|
|
|
|
invalid.extend(result)
|
|
|
|
if invalid and is_group and keys not in invalid:
|
|
invalid.append(copy.deepcopy(keys))
|
|
|
|
if not is_top:
|
|
return invalid
|
|
|
|
if invalid:
|
|
raise SchemeGroupHierarchyBug(invalid)
|
|
|
|
|
|
def validate_keys_are_unique(schema_data, keys=None):
|
|
children = schema_data.get("children")
|
|
if not children:
|
|
return
|
|
|
|
is_top = keys is None
|
|
if keys is None:
|
|
keys = [schema_data["key"]]
|
|
else:
|
|
keys.append(schema_data["key"])
|
|
|
|
child_queue = Queue()
|
|
for child in children:
|
|
child_queue.put(child)
|
|
|
|
child_inputs = []
|
|
while not child_queue.empty():
|
|
child = child_queue.get()
|
|
if "key" not in child:
|
|
_children = child.get("children") or []
|
|
for _child in _children:
|
|
child_queue.put(_child)
|
|
else:
|
|
child_inputs.append(child)
|
|
|
|
duplicated_keys = set()
|
|
child_keys = set()
|
|
for child in child_inputs:
|
|
key = child["key"]
|
|
if key in child_keys:
|
|
duplicated_keys.add(key)
|
|
else:
|
|
child_keys.add(key)
|
|
|
|
invalid = {}
|
|
if duplicated_keys:
|
|
joined_keys = "/".join(keys)
|
|
invalid[joined_keys] = duplicated_keys
|
|
|
|
for child in child_inputs:
|
|
result = validate_keys_are_unique(child, copy.deepcopy(keys))
|
|
if result:
|
|
invalid.update(result)
|
|
|
|
if not is_top:
|
|
return invalid
|
|
|
|
if invalid:
|
|
raise SchemaDuplicatedKeys(invalid)
|
|
|
|
|
|
def validate_environment_groups_uniquenes(
|
|
schema_data, env_groups=None, keys=None
|
|
):
|
|
is_first = False
|
|
if env_groups is None:
|
|
is_first = True
|
|
env_groups = {}
|
|
keys = []
|
|
|
|
my_keys = copy.deepcopy(keys)
|
|
key = schema_data.get("key")
|
|
if key:
|
|
my_keys.append(key)
|
|
|
|
env_group_key = schema_data.get("env_group_key")
|
|
if env_group_key:
|
|
if env_group_key not in env_groups:
|
|
env_groups[env_group_key] = []
|
|
env_groups[env_group_key].append("/".join(my_keys))
|
|
|
|
children = schema_data.get("children")
|
|
if not children:
|
|
return
|
|
|
|
for child in children:
|
|
validate_environment_groups_uniquenes(
|
|
child, env_groups, copy.deepcopy(my_keys)
|
|
)
|
|
|
|
if is_first:
|
|
invalid = {}
|
|
for env_group_key, key_paths in env_groups.items():
|
|
if len(key_paths) > 1:
|
|
invalid[env_group_key] = key_paths
|
|
|
|
if invalid:
|
|
raise SchemaDuplicatedEnvGroupKeys(invalid)
|
|
|
|
|
|
def validate_schema(schema_data):
|
|
return
|
|
# validate_all_has_ending_file(schema_data)
|
|
# validate_is_group_is_unique_in_hierarchy(schema_data)
|
|
# validate_keys_are_unique(schema_data)
|
|
# validate_environment_groups_uniquenes(schema_data)
|
|
|
|
|
|
def gui_schema(subfolder, main_schema_name):
|
|
dirpath = os.path.join(
|
|
os.path.dirname(__file__),
|
|
"schemas",
|
|
subfolder
|
|
)
|
|
loaded_schemas = {}
|
|
loaded_schema_templates = {}
|
|
for root, _, filenames in os.walk(dirpath):
|
|
for filename in filenames:
|
|
basename, ext = os.path.splitext(filename)
|
|
if ext != ".json":
|
|
continue
|
|
|
|
filepath = os.path.join(root, filename)
|
|
with open(filepath, "r") as json_stream:
|
|
try:
|
|
schema_data = json.load(json_stream)
|
|
except Exception as exc:
|
|
raise Exception((
|
|
f"Unable to parse JSON file {filepath}\n{exc}"
|
|
)) from exc
|
|
if isinstance(schema_data, list):
|
|
loaded_schema_templates[basename] = schema_data
|
|
else:
|
|
loaded_schemas[basename] = schema_data
|
|
|
|
main_schema = _fill_inner_schemas(
|
|
loaded_schemas[main_schema_name],
|
|
loaded_schemas,
|
|
loaded_schema_templates
|
|
)
|
|
validate_schema(main_schema)
|
|
return main_schema
|
|
|
|
|
|
class OverrideStateItem:
|
|
values = set()
|
|
|
|
def __init__(self, value, name):
|
|
self.name = name
|
|
if value in self.__class__.values:
|
|
raise ValueError(
|
|
"Implementation bug: Override State with same value as other."
|
|
)
|
|
self.__class__.values.add(value)
|
|
self.value = value
|
|
|
|
def __repr__(self):
|
|
return "<object {}> {} {}".format(
|
|
self.__class__.__name__, self.value, self.name
|
|
)
|
|
|
|
def __eq__(self, other):
|
|
"""Defines behavior for the equality operator, ==."""
|
|
if isinstance(other, OverrideStateItem):
|
|
return self.value == other.value
|
|
return self.value == other
|
|
|
|
def __gt__(self, other):
|
|
"""Defines behavior for the greater-than operator, >."""
|
|
if isinstance(other, OverrideStateItem):
|
|
return self.value > other.value
|
|
return self.value > other
|
|
|
|
def __lt__(self, other):
|
|
"""Defines behavior for the less-than operator, <."""
|
|
if isinstance(other, OverrideStateItem):
|
|
return self.value < other.value
|
|
return self.value < other
|
|
|
|
def __le__(self, other):
|
|
"""Defines behavior for the less-than-or-equal-to operator, <=."""
|
|
if isinstance(other, OverrideStateItem):
|
|
return self.value == other.value or self.value < other.value
|
|
return self.value == other or self.value < other
|
|
|
|
def __ge__(self, other):
|
|
"""Defines behavior for the greater-than-or-equal-to operator, >=."""
|
|
if isinstance(other, OverrideStateItem):
|
|
return self.value == other.value or self.value > other.value
|
|
return self.value == other or self.value > other
|
|
|
|
|
|
class OverrideState:
|
|
"""Enumeration of override states.
|
|
|
|
Each state should have unique value.
|
|
"""
|
|
NOT_DEFINED = OverrideStateItem(-1, "Not defined")
|
|
DEFAULTS = OverrideStateItem(0, "Defaults")
|
|
STUDIO = OverrideStateItem(1, "Studio overrides")
|
|
PROJECT = OverrideStateItem(2, "Project Overrides")
|