execute
clean_envs_for_ayon_process(env=None)
Modify environments that may affect ayon-launcher process.
Main reason to implement this function is to pop PYTHONPATH which may be affected by in-host environments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
env | Optional[dict[str, str]] | Environment variables to modify. | None |
Returns:
Type | Description |
---|---|
dict[str, str]: Environment variables for ayon process. |
Source code in client/ayon_core/lib/execute.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
execute(args, silent=False, cwd=None, env=None, shell=None)
Execute command as process.
This will execute given command as process, monitor its output and log it appropriately.
.. seealso::
:mod:`subprocess` module in Python.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args | list | list of arguments passed to process. | required |
silent | bool | control output of executed process. | False |
cwd | str | current working directory for process. | None |
env | dict | environment variables for process. | None |
shell | bool | use shell to execute, default is no. | None |
Returns:
Name | Type | Description |
---|---|---|
int | return code of process |
Source code in client/ayon_core/lib/execute.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 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 |
|
get_ayon_launcher_args(*args)
Arguments to run AYON launcher process.
Arguments for subprocess when need to spawn new AYON launcher process.
Reasons
AYON launcher started from code has different executable set to virtual env python and must have path to script as first argument which is not needed for built application.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args | str | Any arguments that will be added after executables. | () |
Returns:
Type | Description |
---|---|
list[str]: List of arguments to run AYON launcher process. |
Source code in client/ayon_core/lib/execute.py
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
|
get_linux_launcher_args(*args)
Path to application mid process executable.
This function should be able as arguments are different when used from code and build.
It is possible that this function is used in AYON build which does not have yet the new executable. In that case 'None' is returned.
Todos
Replace by script in scripts for ayon-launcher.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args | iterable | List of additional arguments added after executable argument. | () |
Returns:
Name | Type | Description |
---|---|---|
list | Executables with possible positional argument to script when called from code. |
Source code in client/ayon_core/lib/execute.py
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 |
|
path_to_subprocess_arg(path)
Prepare path for subprocess arguments.
Returned path can be wrapped with quotes or kept as is.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path | str | Path to be converted. | required |
Returns:
Name | Type | Description |
---|---|---|
str | Converted path. |
Source code in client/ayon_core/lib/execute.py
317 318 319 320 321 322 323 324 325 326 327 328 |
|
run_ayon_launcher_process(*args, add_sys_paths=False, **kwargs)
Execute AYON process with passed arguments and wait.
Wrapper for 'run_process' which prepends AYON executable arguments before passed arguments and define environments if are not passed.
Values from 'os.environ' are used for environments if are not passed. They are cleaned using 'clean_envs_for_ayon_process' function.
Example:
run_ayon_process("run", "<path to .py script>")
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args | str | ayon-launcher cli arguments. | () |
**kwargs | Any | Keyword arguments for subprocess.Popen. | {} |
Returns:
Name | Type | Description |
---|---|---|
str | Full output of subprocess concatenated stdout and stderr. |
Source code in client/ayon_core/lib/execute.py
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 |
|
run_detached_process(args, **kwargs)
Execute process with passed arguments as separated process.
Example
run_detached_process("run", "./path_to.py")
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args | Iterable[str] | AYON cli arguments. | required |
**kwargs | dict | Keyword arguments for subprocess.Popen. | {} |
Returns:
Type | Description |
---|---|
subprocess.Popen: Pointer to launched process but it is possible that launched process is already killed (on linux). |
Source code in client/ayon_core/lib/execute.py
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
run_subprocess(*args, **kwargs)
Convenience method for getting output errors for subprocess.
Output logged when process finish.
Entered arguments and keyword arguments are passed to subprocess Popen.
On windows are 'creationflags' filled with flags that should cause ignore creation of new window.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args | Variable length argument list passed to Popen. | () | |
**kwargs | Arbitrary keyword arguments passed to Popen. Is possible to pass | {} |
Returns:
Name | Type | Description |
---|---|---|
str | Full output of subprocess concatenated stdout and stderr. |
Raises:
Type | Description |
---|---|
RuntimeError | Exception is raised if process finished with nonzero return code. |
Source code in client/ayon_core/lib/execute.py
72 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 104 105 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 136 137 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 |
|