Rename modules in `./scripts/modules/` to use an underscore prefix to make it clear they aren't intended to be part of public API's. This also means there is no implication that these modules should be stable, allowing us to change them based on Blender's internal usage. The following modules have been marked as private: - `animsys_refactor` - `bl_console_utils` - `bl_i18n_utils` - `bl_previews_utils` - `bl_rna_utils` - `bl_text_utils` - `bl_ui_utils` - `bpy_restrict_state` - `console_python` - `console_shell` - `graphviz_export` - `keyingsets_utils` - `rna_info` - `rna_manual_reference` - `rna_xml` Note that we could further re-arrange these modules (under `_bpy_internal` in some cases), this change is mainly to mark them as private, further changes can be handed on a case-by-case basis. Ref !147773
77 lines
2.2 KiB
Python
77 lines
2.2 KiB
Python
# SPDX-FileCopyrightText: 2021-2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
__all__ = (
|
|
"property_definition_from_data_path",
|
|
"decompose_data_path",
|
|
)
|
|
|
|
|
|
class _TokenizeDataPath:
|
|
"""
|
|
Class to split up tokens of a data-path.
|
|
|
|
Note that almost all access generates new objects with additional paths,
|
|
with the exception of iteration which is the intended way to access the resulting data."""
|
|
__slots__ = (
|
|
"data_path",
|
|
)
|
|
|
|
def __init__(self, attrs):
|
|
self.data_path = attrs
|
|
|
|
def __getattr__(self, attr):
|
|
return _TokenizeDataPath(self.data_path + ((".{:s}".format(attr)),))
|
|
|
|
def __getitem__(self, key):
|
|
return _TokenizeDataPath(self.data_path + (("[{!r}]".format(key)),))
|
|
|
|
def __call__(self, *args, **kw):
|
|
value_str = ", ".join([
|
|
val for val in (
|
|
", ".join(repr(value) for value in args),
|
|
", ".join(["{:s}={!r}".format(key, value) for key, value in kw.items()]),
|
|
) if val])
|
|
return _TokenizeDataPath(self.data_path + ('({:s})'.format(value_str), ))
|
|
|
|
def __iter__(self):
|
|
return iter(self.data_path)
|
|
|
|
|
|
def decompose_data_path(data_path):
|
|
"""
|
|
Return the components of a data path split into a list.
|
|
"""
|
|
ns = {"base": _TokenizeDataPath(())}
|
|
return list(eval("base" + data_path, ns, ns))
|
|
|
|
|
|
def property_definition_from_data_path(base, data_path):
|
|
"""
|
|
Return an RNA property definition from an object and a data path.
|
|
|
|
In Blender this is often used with ``context`` as the base and a
|
|
path that it references, for example ``.space_data.lock_camera``.
|
|
"""
|
|
data = decompose_data_path(data_path)
|
|
while data and (not data[-1].startswith(".")):
|
|
data.pop()
|
|
|
|
if (not data) or (not data[-1].startswith(".")) or (len(data) < 2):
|
|
return None
|
|
|
|
data_path_head = "".join(data[:-1])
|
|
data_path_tail = data[-1]
|
|
|
|
value_head = eval("base" + data_path_head)
|
|
value_head_rna = getattr(value_head, "bl_rna", None)
|
|
if value_head_rna is None:
|
|
return None
|
|
|
|
value_tail = value_head.bl_rna.properties.get(data_path_tail[1:])
|
|
if not value_tail:
|
|
return None
|
|
|
|
return value_tail
|