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