Skip to content

utils

USD Addon utility functions.

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
18
19
20
21
22
23
24
25
26
27
28
29
30
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
33
34
35
36
37
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_pinning_file_path(instance)

Get the path to the pinning file.

Parameters:

Name Type Description Default
instance Instance

Instance to get the pinning file path for.

required

Returns:

Type Description
Path

pathlib.Path | None: Path to the pinning file.

Source code in client/ayon_usd/utils.py
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
def get_pinning_file_path(instance) -> pathlib.Path:
    """Get the path to the pinning file.

    Args:
        instance (pyblish.api.Instance): Instance to get the pinning
            file path for.

    Returns:
        pathlib.Path | None: Path to the pinning file.

    """
    return next(
        (
            pathlib.Path(rep["stagingDir"]) / rep["files"]
            for rep in instance.data["representations"]
            if rep["name"] == "usd_pinning"
        ),
        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
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
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"],
        "AYONLOGGERLOGLVL": resolver_settings["ayon_log_lvl"],
        "AYONLOGGERSFILELOGGING": resolver_settings["ayon_file_logger_enabled"],  # noqa
        "AYONLOGGERSFILEPOS": resolver_settings["file_logger_file_path"],
        "AYON_LOGGIN_LOGGIN_KEYS": resolver_settings["ayon_logger_logging_keys"],  # noqa
        "PXR_PLUGINPATH_NAME": pxr_pluginpath_name,
        "PYTHONPATH": python_path,
        ld_path_key: ld_library_path
    }

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
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
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"]
    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["lake_fs_path"]

    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"]
    resolver_lake_path = lake_fs_repo_uri + resolver["lake_fs_path"]
    return resolver_lake_path

get_usd_pinning_envs(instance)

Get USD pinning file path from published representations.

This sets the rootless path to the USD pinning file and enables the static global cache. It is not setting PROJECT_ROOTS because they are platform dependent and on farm they need to be set on task level.

Parameters:

Name Type Description Default
instance Instance

Published representations.

required

Returns:

Name Type Description
dict dict

environment variables needed for USD pinning.

Source code in client/ayon_usd/utils.py
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
def get_usd_pinning_envs(instance) -> dict:
    """Get USD pinning file path from published representations.

    This sets the rootless path to the USD pinning file and enables
    the static global cache. It is not setting ``PROJECT_ROOTS`` because
    they are platform dependent and on farm they need to be set on
    task level.

    Args:
        instance (pyblish.api.Instance): Published representations.

    Returns:
        dict: environment variables needed for USD pinning.

    """
    usd_pinning_rootless_file_path = None
    if not instance.data.get("published_representations"):
        usd_pinning_file_path = get_pinning_file_path(instance)
        anatomy = instance.context.data["anatomy"]
        usd_pinning_rootless_file_path = anatomy.find_root_template_from_path(
            usd_pinning_file_path,
        )[1]
    else:

        for repre_info in instance.data.get(
                "published_representations").values():
            rep = repre_info["representation"]

            if rep["name"] == "usd_pinning":
                usd_pinning_rootless_file_path = rep["attrib"]["path"]
                break

    if not usd_pinning_rootless_file_path:
        return {}

    return {
        "PINNING_FILE_PATH": usd_pinning_rootless_file_path,
        "ENABLE_STATIC_GLOBAL_CACHE": "1",
    }

is_usd_lib_download_needed(settings)

Return whether a USD libraries need (re-)download from the Lake FS repository.

This will be the case if it's the first time syncing, the timestamp on the server is newer or the local files have been removed.

Parameters:

Name Type Description Default
settings dict

Studio or Project settings.

required

Returns:

Name Type Description
bool bool

When true, a new download is required.

Source code in client/ayon_usd/utils.py
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
def is_usd_lib_download_needed(settings: dict) -> bool:
    """Return whether a USD libraries need (re-)download from the Lake FS
    repository.

    This will be the case if it's the first time syncing, the timestamp on the
    server is newer or the local files have been removed.

    Arguments:
        settings (dict): Studio or Project settings.

    Returns:
        bool: When true, a new download is required.

    """
    lake_fs_repo = settings["usd"]["distribution"]["server_repo"]
    usd_lib_dir = os.path.abspath(get_downloaded_usd_root(lake_fs_repo))
    if not os.path.exists(usd_lib_dir):
        return True

    with open(ADDON_DATA_JSON_PATH, "r") as data_json:
        addon_data_json = json.load(data_json)
    try:
        usd_lib_lake_fs_time_stamp_local = addon_data_json[
            "usd_lib_lake_fs_time_cest"
        ]
    except KeyError:
        return True

    lake_fs_usd_lib_path = config.get_lakefs_usdlib_path(settings)
    lake_fs = config.get_global_lake_instance(settings)
    lake_fs_timestamp = lake_fs.get_element_info(
        lake_fs_usd_lib_path).get("Modified Time")
    if (
        not lake_fs_timestamp
        or usd_lib_lake_fs_time_stamp_local != lake_fs_timestamp
    ):
        return True
    return False

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
 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
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)