Skip to content

utils

USD Addon utility functions.

create_addon_data_json_file()

Ensure addon data JSON file exists and contains init metadata.

Source code in client/ayon_usd/utils.py
36
37
38
39
40
41
42
43
44
45
46
47
48
def create_addon_data_json_file():
    """Ensure addon data JSON file exists and contains init metadata."""
    os.makedirs(DOWNLOAD_DIR, exist_ok=True)
    addon_data = get_addon_data_json()
    if ADDON_FIRST_INIT_KEY in addon_data:
        return

    addon_data[ADDON_FIRST_INIT_KEY] = str(datetime.now().astimezone(
        timezone.utc
    ))

    with open(ADDON_DATA_JSON_PATH, "w") as json_file:
        json.dump(addon_data, json_file)

get_addon_data_json()

Get addon data JSON content as dict.

Source code in client/ayon_usd/utils.py
23
24
25
26
27
28
29
30
31
32
33
def get_addon_data_json() -> dict:
    """Get addon data JSON content as dict."""
    if os.path.exists(ADDON_DATA_JSON_PATH):
        try:
            with open(ADDON_DATA_JSON_PATH, "r") as json_file:
                data = json.load(json_file)
        except (json.JSONDecodeError, OSError, ValueError):
            return {}
        if isinstance(data, dict):
            return data
    return {}

get_download_dir(create_if_missing=True)

Dir path where files are downloaded.

Parameters:

Name Type Description Default
create_if_missing bool

Create dir if missing.

True

Returns:

Name Type Description
str

Path to download dir.

Source code in client/ayon_usd/utils.py
51
52
53
54
55
56
57
58
59
60
61
62
63
def get_download_dir(create_if_missing=True):
    """Dir path where files are downloaded.

    Args:
        create_if_missing (bool): Create dir if missing.

    Returns:
        str: Path to download dir.

    """
    if create_if_missing and not os.path.exists(DOWNLOAD_DIR):
        os.makedirs(DOWNLOAD_DIR, exist_ok=True)
    return DOWNLOAD_DIR

get_downloaded_usd_root(lake_fs_repo_uri)

Get downloaded USDLib os local root path.

Source code in client/ayon_usd/utils.py
66
67
68
69
70
def get_downloaded_usd_root(lake_fs_repo_uri) -> str:
    """Get downloaded USDLib os local root path."""
    target_usd_lib = config.get_lakefs_usdlib_name(lake_fs_repo_uri)
    filename_no_ext = os.path.splitext(os.path.basename(target_usd_lib))[0]
    return os.path.join(DOWNLOAD_DIR, filename_no_ext)

get_local_resolver_path(settings, app_name)

Check local_resolver_paths for a matching app + platform entry.

Parameters:

Name Type Description Default
settings dict

Project settings.

required
app_name str

Application name, e.g. "houdini/20-5".

required

Returns:

Type Description

str | None: Local filesystem path to the resolver directory, or None if no match found.

Source code in client/ayon_usd/utils.py
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
def get_local_resolver_path(settings, app_name: str):
    """Check local_resolver_paths for a matching app + platform entry.

    Args:
        settings (dict): Project settings.
        app_name (str): Application name, e.g. "houdini/20-5".

    Returns:
        str | None: Local filesystem path to the resolver directory,
            or None if no match found.

    """
    roots = settings["usd"]["distribution"]["local"]["roots"]
    local_paths = (
        settings["usd"]["distribution"]["local"]["asset_resolvers"]
    )
    current_platform = platform.system().lower()
    for entry in local_paths:
        if entry["platform"] != current_platform:
            continue
        if entry["name"] == app_name or app_name in entry.get(
            "app_alias_list", []
        ):
            template = StringTemplate(entry["path"])
            result = template.format(
                {root["name"]: root.get(current_platform) for root in roots}
            )
            return str(result)

    return None

get_resolver_setup_info(resolver_dir, settings, env=None)

Get the environment variables to load AYON USD setup.

Parameters:

Name Type Description Default
resolver_dir str

Directory of the resolver.

required
settings dict[str, Any]

Studio settings.

required
env dict[str, str]

Source environment to build on.

None

Returns:

Type Description
dict

dict[str, str]: The environment needed to load AYON USD correctly.

Source code in client/ayon_usd/utils.py
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
def get_resolver_setup_info(
        resolver_dir,
        settings,
        env=None) -> dict:
    """Get the environment variables to load AYON USD setup.

    Arguments:
        resolver_dir (str): Directory of the resolver.
        settings (dict[str, Any]): Studio settings.
        env (dict[str, str]): Source environment to build on.

    Returns:
        dict[str, str]: The environment needed to load AYON USD correctly.
    """

    resolver_root = pathlib.Path(resolver_dir) / "ayonUsdResolver"
    resolver_plugin_info_path = resolver_root / "resources" / "plugInfo.json"
    resolver_ld_path = resolver_root / "lib"
    resolver_python_path = resolver_root / "lib" / "python"

    if (
        not os.path.exists(resolver_python_path)
        or not os.path.exists(resolver_ld_path)
    ):
        raise RuntimeError(
            f"Cant start Resolver missing path "
            f"resolver_python_path: {resolver_python_path}, "
            f"resolver_ld_path: {resolver_ld_path}"
        )

    def _append(_env: dict, key: str, path: str):
        """Add path to key in env"""
        current: str = _env.get(key)
        if current:
            return os.pathsep.join([current, path])
        return path

    ld_path_key = "LD_LIBRARY_PATH"
    if platform.system().lower() == "windows":
        ld_path_key = "PATH"

    pxr_pluginpath_name = _append(
        env, "PXR_PLUGINPATH_NAME", resolver_plugin_info_path.as_posix()
    )
    ld_library_path = _append(
        env, ld_path_key, resolver_ld_path.as_posix()
    )
    python_path = _append(
        env, "PYTHONPATH", resolver_python_path.as_posix()
    )

    resolver_settings = settings["usd"]["ayon_usd_resolver"]
    return {
        "TF_DEBUG": settings["usd"]["usd"]["usd_tf_debug"],
        "AYON_USD_RESOLVER_LOG_LVL": resolver_settings["ayon_log_lvl"],
        "AYON_USD_RESOLVER_LOG_FILE_ENABLED": resolver_settings["ayon_file_logger_enabled"],  # noqa
        "AYON_USD_RESOLVER_LOG_FILE": resolver_settings["file_logger_file_path"],
        "AYON_USD_RESOLVER_LOGGING_KEYS": resolver_settings["ayon_logger_logging_keys"],  # noqa
        "PXR_PLUGINPATH_NAME": pxr_pluginpath_name,
        "PYTHONPATH": python_path,
        ld_path_key: ld_library_path,
        # Backwards compatibility (deprecated)
        "AYONLOGGERLOGLVL": resolver_settings["ayon_log_lvl"],
        "AYONLOGGERFILELOGGING": resolver_settings["ayon_file_logger_enabled"],
        "AYONLOGGERFILEPOS": resolver_settings["file_logger_file_path"],
        "AYON_LOGGIN_LOGGIN_KEYS": resolver_settings["ayon_logger_logging_keys"],
    }

get_resolver_to_download(settings, app_name)

Gets LakeFs path that can be used with copy element to download specific resolver, this will prioritize lake_fs_overrides over asset_resolvers entries.

Returns: str: LakeFs object path to be used with lake_fs_py wrapper

Source code in client/ayon_usd/utils.py
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
def get_resolver_to_download(settings, app_name: str) -> str:
    """
    Gets LakeFs path that can be used with copy element to download
    specific resolver, this will prioritize `lake_fs_overrides` over
    asset_resolvers entries.

    Returns: str: LakeFs object path to be used with lake_fs_py wrapper

    """
    distribution = settings["usd"]["distribution"]["lake_fs"]
    resolver_overwrite_list = distribution["lake_fs_overrides"]
    if resolver_overwrite_list:
        resolver_overwrite = next(
            (
                item
                for item in resolver_overwrite_list
                if item["app_name"] == app_name
                and item["platform"] == sys.platform.lower()
            ),
            None,
        )
        if resolver_overwrite:
            return resolver_overwrite["uri"]

    resolver_list = distribution["asset_resolvers"]
    if not resolver_list:
        return ""

    resolver = next(
        (
            item
            for item in resolver_list
            if (item["name"] == app_name or app_name in item["app_alias_list"])
            and item["platform"] == platform.system().lower()
        ),
        None,
    )
    if not resolver:
        return ""

    lake_fs_repo_uri = distribution["server_repo"]
    lake_fs_repo_uri = lake_fs_repo_uri.strip().rstrip("/")
    resolver_lake_path = f"{lake_fs_repo_uri}/{resolver['lake_fs_path']}"
    return resolver_lake_path

lakefs_download_and_extract(resolver_lake_fs_path, download_dir)

Download individual object based on the lake_fs_path and extracts the zip into the specific download_dir.

Args resolver_lake_fs_path (str): Lake FS Path for the resolver download_dir (str): Directory to download and unzip to.

Returns:

Name Type Description
str str

Result from the ZIP file extraction.

Source code in client/ayon_usd/utils.py
 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
def lakefs_download_and_extract(resolver_lake_fs_path: str,
                                download_dir: str) -> str:
    """Download individual object based on the lake_fs_path and extracts
    the zip into the specific download_dir.

    Args
        resolver_lake_fs_path (str): Lake FS Path for the resolver
        download_dir (str): Directory to download and unzip to.

    Returns:
        str: Result from the ZIP file extraction.

    """
    controller = worker.Controller()
    download_item = controller.construct_work_item(
        func=config.get_global_lake_instance().clone_element,
        args=[resolver_lake_fs_path, download_dir],
    )

    extract_zip_item = controller.construct_work_item(
        func=zip.extract_zip_file,
        args=[
            download_item.connect_func_return,
            download_dir,
        ],
        dependency_id=[download_item.get_uuid()],
    )

    controller.start()

    return str(extract_zip_item.func_return)