Skip to content

lib

Utility functions used for AYON - Harmony integration.

check_libs()

Check if OpenHarmony_ is available.

AYON expects either path in LIB_OPENHARMONY_PATH or openHarmony.js present in TOONBOOM_GLOBAL_SCRIPT_LOCATION.

Throws

RuntimeError: If openHarmony is not found.

.. _OpenHarmony: https://github.com/cfourney/OpenHarmony

Source code in client/ayon_harmony/api/lib.py
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
def check_libs():
    """Check if `OpenHarmony`_ is available.

    AYON expects either path in `LIB_OPENHARMONY_PATH` or `openHarmony.js`
    present in `TOONBOOM_GLOBAL_SCRIPT_LOCATION`.

    Throws:
        RuntimeError: If openHarmony is not found.

    .. _OpenHarmony:
        https://github.com/cfourney/OpenHarmony

    """
    if not os.getenv("LIB_OPENHARMONY_PATH"):

        if os.getenv("TOONBOOM_GLOBAL_SCRIPT_LOCATION"):
            if os.path.exists(
                os.path.join(
                    os.getenv("TOONBOOM_GLOBAL_SCRIPT_LOCATION"),
                    "openHarmony.js")):

                os.environ["LIB_OPENHARMONY_PATH"] = \
                    os.getenv("TOONBOOM_GLOBAL_SCRIPT_LOCATION")
                return

        else:
            log.error(("Cannot find OpenHarmony library. "
                       "Please set path to it in LIB_OPENHARMONY_PATH "
                       "environment variable."))
            raise RuntimeError("Missing OpenHarmony library.")

delete_node(node)

Physically delete node from scene.

Source code in client/ayon_harmony/api/lib.py
475
476
477
478
479
480
481
482
def delete_node(node):
    """ Physically delete node from scene. """
    send(
        {
            "function": "AyonHarmonyAPI.deleteNode",
            "args": node
        }
    )

find_backdrop_by_name(name)

Find backdrop by its name.

Parameters:

Name Type Description Default
name str

Name of the backdrop.

required

Returns:

Name Type Description
dict dict

Backdrop.

Source code in client/ayon_harmony/api/lib.py
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
def find_backdrop_by_name(name: str) -> dict:
    """Find backdrop by its name.

    Args:
        name (str): Name of the backdrop.

    Returns:
        dict: Backdrop.
    """
    backdrops = send(
        {"function": "Backdrop.backdrops", "args": ["Top"]}
    )["result"]
    for backdrop in backdrops:
        if backdrop["title"]["text"] == name:
            return backdrop

    return None

find_node_by_name(name, node_type)

Find node by its name.

Parameters:

Name Type Description Default
name str

Name of the Node. (without part before '/')

required
node_type str

Type of the Node. 'READ' - for loaded data with Loaders (background) 'GROUP' - for loaded data with Loaders (templates) 'WRITE' - render nodes

required

Returns:

Name Type Description
str

FQ Node name.

Source code in client/ayon_harmony/api/lib.py
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
def find_node_by_name(name, node_type):
    """Find node by its name.

    Args:
        name (str): Name of the Node. (without part before '/')
        node_type (str): Type of the Node.
            'READ' - for loaded data with Loaders (background)
            'GROUP' - for loaded data with Loaders (templates)
            'WRITE' - render nodes

    Returns:
        str: FQ Node name.

    """
    nodes = send(
        {"function": "node.getNodes", "args": [[node_type]]}
    )["result"]
    for node in nodes:
        node_name = node.split("/")[-1]
        if name == node_name:
            return node

    return None

get_all_top_names()

Get all top node and backdrop names in the scene.

Returns:

Name Type Description
set set

Set of top node names.

Source code in client/ayon_harmony/api/lib.py
484
485
486
487
488
489
490
491
492
493
494
495
def get_all_top_names() -> set:
    """Get all top node and backdrop names in the scene.

    Returns:
        set: Set of top node names.
    """
    return set(send({"function": "node.subNodes", "args": ["Top"]})["result"]) | {
        backdrop["title"]["text"]
        for backdrop in send({"function": "Backdrop.backdrops", "args": ["Top"]})[
            "result"
        ]
    }

get_local_harmony_path(filepath)

From the provided path get the equivalent local Harmony path.

Source code in client/ayon_harmony/api/lib.py
231
232
233
234
235
def get_local_harmony_path(filepath):
    """From the provided path get the equivalent local Harmony path."""
    basename = os.path.splitext(os.path.basename(filepath))[0]
    harmony_path = os.path.join(os.path.expanduser("~"), ".ayon", "harmony")
    return os.path.join(harmony_path, basename)

imprint(node_id, data, remove=False)

Write data to the node as json.

Parameters:

Name Type Description Default
node_id str

Path to node or id of object.

required
data dict

Dictionary of key/value pairs.

required
remove bool

Removes the data from the scene.

False
Example

from ayon_harmony.api import lib node = "Top/Display" data = {"str": "something", "int": 1, "float": 0.32, "bool": True} lib.imprint(layer, data)

Source code in client/ayon_harmony/api/lib.py
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
def imprint(node_id, data, remove=False):
    """Write `data` to the `node` as json.

    Arguments:
        node_id (str): Path to node or id of object.
        data (dict): Dictionary of key/value pairs.
        remove (bool): Removes the data from the scene.

    Example:
        >>> from ayon_harmony.api import lib
        >>> node = "Top/Display"
        >>> data = {"str": "something", "int": 1, "float": 0.32, "bool": True}
        >>> lib.imprint(layer, data)
    """
    scene_data = get_scene_data()

    if remove and (node_id in scene_data):
        scene_data.pop(node_id, None)
    else:
        if node_id in scene_data:
            scene_data[node_id].update(data)
        else:
            scene_data[node_id] = data

    set_scene_data(scene_data)

launch(application_path, *args)

Set Harmony for launch.

Launches Harmony and the server, then starts listening on the main thread for callbacks from the server. This is to have Qt applications run in the main thread.

Parameters:

Name Type Description Default
application_path str

Path to Harmony.

required
Source code in client/ayon_harmony/api/lib.py
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
def launch(application_path, *args):
    """Set Harmony for launch.

    Launches Harmony and the server, then starts listening on the main thread
    for callbacks from the server. This is to have Qt applications run in the
    main thread.

    Args:
        application_path (str): Path to Harmony.

    """
    from ayon_core.pipeline import install_host
    from ayon_harmony.api import HarmonyHost

    install_host(HarmonyHost())

    ProcessContext.port = random.randrange(49152, 65535)
    os.environ["AYON_HARMONY_PORT"] = str(ProcessContext.port)
    ProcessContext.application_path = application_path

    # Launch Harmony.
    setup_startup_scripts()
    check_libs()

    if not os.environ.get("AYON_HARMONY_WORKFILES_ON_LAUNCH", False):
        open_empty_workfile()
        return

    ProcessContext.workfile_tool = host_tools.get_tool_by_name("workfiles")
    host_tools.show_workfiles(save=False)
    ProcessContext.execute_in_main_thread(check_workfiles_tool)

launch_zip_file(filepath)

Launch a Harmony application instance with the provided zip file.

Parameters:

Name Type Description Default
filepath str

Path to file.

required
Source code in client/ayon_harmony/api/lib.py
238
239
240
241
242
243
244
245
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
def launch_zip_file(filepath):
    """Launch a Harmony application instance with the provided zip file.

    Args:
        filepath (str): Path to file.
    """
    print(f"Localizing {filepath}")

    temp_path = get_local_harmony_path(filepath)
    scene_name = os.path.basename(temp_path)
    if os.path.exists(os.path.join(temp_path, scene_name)):
        # unzipped with duplicated scene_name
        temp_path = os.path.join(temp_path, scene_name)

    scene_path = os.path.join(
        temp_path, scene_name + ".xstage"
    )

    unzip = False
    if os.path.exists(scene_path):
        # Check remote scene is newer than local.
        if os.path.getmtime(scene_path) < os.path.getmtime(filepath):
            try:
                shutil.rmtree(temp_path)
            except Exception as e:
                log.error(e)
                raise Exception("Cannot delete working folder") from e
            unzip = True
    else:
        unzip = True

    if unzip:
        with _ZipFile(filepath, "r") as zip_ref:
            zip_ref.extractall(temp_path)

        if os.path.exists(os.path.join(temp_path, scene_name)):
            # unzipped with duplicated scene_name
            temp_path = os.path.join(temp_path, scene_name)

    # Close existing scene.
    if ProcessContext.pid:
        os.kill(ProcessContext.pid, signal.SIGTERM)

    # Stop server.
    if ProcessContext.server:
        ProcessContext.server.stop()

    # Launch AYON server.
    ProcessContext.server = Server(ProcessContext.port)
    ProcessContext.server.start()
    # thread = threading.Thread(target=self.server.start)
    # thread.daemon = True
    # thread.start()

    # Save workfile path for later.
    ProcessContext.workfile_path = filepath

    # find any xstage files is directory, prefer the one with the same name
    # as directory (plus extension)
    xstage_files = []
    for _, _, files in os.walk(temp_path):
        for file in files:
            if os.path.splitext(file)[1] == ".xstage":
                xstage_files.append(file)

    if not os.path.basename("temp.zip"):
        if not xstage_files:
            ProcessContext.server.stop()
            print("no xstage file was found")
            return

    # try to use first available
    scene_path = os.path.join(
        temp_path, xstage_files[0]
    )

    # prefer the one named as zip file
    zip_based_name = "{}.xstage".format(
        os.path.splitext(os.path.basename(filepath))[0])

    if zip_based_name in xstage_files:
        scene_path = os.path.join(
            temp_path, zip_based_name
        )

    if not os.path.exists(scene_path):
        print("error: cannot determine scene file {}".format(scene_path))
        ProcessContext.server.stop()
        return

    print("Launching {}".format(scene_path))
    # QUESTION Could we use 'run_detached_process' from 'ayon_core.lib'?
    kwargs = {}
    if (
        platform.system().lower() == "windows"
        and not is_using_ayon_console()
    ):
        kwargs.update({
            "creationflags": subprocess.CREATE_NO_WINDOW,
            "stdout": subprocess.DEVNULL,
            "stderr": subprocess.DEVNULL
        })

    process = subprocess.Popen(
        [ProcessContext.application_path, scene_path],
        **kwargs
    )
    ProcessContext.pid = process.pid
    ProcessContext.process = process
    ProcessContext.stdout_broker.host_connected()

maintained_nodes_state(nodes)

Maintain nodes states during context.

Source code in client/ayon_harmony/api/lib.py
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
@contextlib.contextmanager
def maintained_nodes_state(nodes):
    """Maintain nodes states during context."""
    # Collect current state.
    states = send(
        {
            "function": "AyonHarmonyAPI.areEnabled", "args": nodes
        })["result"]

    # Disable all nodes.
    send(
        {
            "function": "AyonHarmonyAPI.disableNodes", "args": nodes
        })

    try:
        yield
    finally:
        send(
            {
                "function": "AyonHarmonyAPI.setState",
                "args": [nodes, states]
            })

on_file_changed(path, threaded=True)

Threaded zipping and move of the project directory.

This method is called when the .xstage file is changed.

Source code in client/ayon_harmony/api/lib.py
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
def on_file_changed(path, threaded=True):
    """Threaded zipping and move of the project directory.

    This method is called when the `.xstage` file is changed.
    """
    log.debug("File changed: " + path)

    if ProcessContext.workfile_path is None:
        return

    if threaded:
        thread = threading.Thread(
            target=zip_and_move,
            args=(os.path.dirname(path), ProcessContext.workfile_path)
        )
        thread.start()
    else:
        zip_and_move(os.path.dirname(path), ProcessContext.workfile_path)

read(node_id)

Read object metadata in to a dictionary.

Parameters:

Name Type Description Default
node_id str

Path to node or id of object.

required

Returns:

Type Description

dict

Source code in client/ayon_harmony/api/lib.py
447
448
449
450
451
452
453
454
455
456
457
458
459
460
def read(node_id):
    """Read object metadata in to a dictionary.

    Args:
        node_id (str): Path to node or id of object.

    Returns:
        dict
    """
    scene_data = get_scene_data()
    if node_id in scene_data:
        return scene_data[node_id]

    return {}

remove(node_id)

Remove node data from scene metadata.

Parameters:

Name Type Description Default
node_id str

full name (eg. 'Top/renderAnimation')

required
Source code in client/ayon_harmony/api/lib.py
463
464
465
466
467
468
469
470
471
472
def remove(node_id):
    """
        Remove node data from scene metadata.

        Args:
            node_id (str): full name (eg. 'Top/renderAnimation')
    """
    data = get_scene_data()
    del data[node_id]
    set_scene_data(data)

save_scene()

Save the Harmony scene safely.

The built-in (to AYON) background zip and moving of the Harmony scene folder, interferes with server/client communication by sending two requests at the same time. This only happens when sending "scene.saveAll()". This method prevents this double request and safely saves the scene.

Source code in client/ayon_harmony/api/lib.py
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
def save_scene():
    """Save the Harmony scene safely.

    The built-in (to AYON) background zip and moving of the Harmony scene
    folder, interferes with server/client communication by sending two requests
    at the same time. This only happens when sending "scene.saveAll()". This
    method prevents this double request and safely saves the scene.

    """
    # Need to turn off the background watcher else the communication with
    # the server gets spammed with two requests at the same time.
    scene_path = send(
        {"function": "AyonHarmonyAPI.saveScene"})["result"]

    # Manually update the remote file.
    on_file_changed(scene_path, threaded=False)

    # Re-enable the background watcher.
    send({"function": "AyonHarmonyAPI.enableFileWather"})

save_scene_as(filepath)

Save Harmony scene as filepath.

Source code in client/ayon_harmony/api/lib.py
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
def save_scene_as(filepath):
    """Save Harmony scene as `filepath`."""
    scene_dir = os.path.dirname(filepath)
    destination = os.path.join(
        os.path.dirname(ProcessContext.workfile_path),
        os.path.splitext(os.path.basename(filepath))[0] + ".zip"
    )

    if os.path.exists(scene_dir):
        try:
            shutil.rmtree(scene_dir)
        except Exception as e:
            log.error(f"Cannot remove {scene_dir}")
            raise Exception(f"Cannot remove {scene_dir}") from e

    send(
        {"function": "scene.saveAs", "args": [scene_dir]}
    )["result"]

    zip_and_move(scene_dir, destination)

    ProcessContext.workfile_path = destination

    send(
        {"function": "AyonHarmonyAPI.addPathToWatcher", "args": filepath}
    )

select_nodes(nodes)

Selects nodes in Node View

Source code in client/ayon_harmony/api/lib.py
530
531
532
533
534
535
536
537
def select_nodes(nodes):
    """ Selects nodes in Node View """
    _ = send(
        {
            "function": "AyonHarmonyAPI.selectNodes",
            "args": nodes
        }
    )

send(request)

Public method for sending requests to Harmony.

Source code in client/ayon_harmony/api/lib.py
525
526
527
def send(request):
    """Public method for sending requests to Harmony."""
    return ProcessContext.server.send(request)

set_scene_data(data)

Write scene data to metadata.

Parameters:

Name Type Description Default
data dict

Data to write.

required
Source code in client/ayon_harmony/api/lib.py
432
433
434
435
436
437
438
439
440
441
442
443
444
def set_scene_data(data):
    """Write scene data to metadata.

    Args:
        data (dict): Data to write.

    """
    # Write scene data.
    send(
        {
            "function": "AyonHarmonyAPI.setSceneData",
            "args": data
        })

setup_startup_scripts()

Manages installation of ayon's TB_sceneOpened.js for Harmony launch.

If a studio already has defined "TOONBOOM_GLOBAL_SCRIPT_LOCATION", copies the TB_sceneOpened.js to that location if the file is different. Otherwise, will set the env var to point to the ayon/harmony folder.

Admins should be aware that this will overwrite TB_sceneOpened in the "TOONBOOM_GLOBAL_SCRIPT_LOCATION", and that if they want to have additional logic, they will need to one of the following: * Create a Harmony package to manage startup logic * Use TB_sceneOpenedUI.js instead to manage startup logic * Add their startup logic to ayon/harmony/TB_sceneOpened.js

Source code in client/ayon_harmony/api/lib.py
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
def setup_startup_scripts():
    """Manages installation of ayon's TB_sceneOpened.js for Harmony launch.

    If a studio already has defined "TOONBOOM_GLOBAL_SCRIPT_LOCATION", copies
    the TB_sceneOpened.js to that location if the file is different.
    Otherwise, will set the env var to point to the ayon/harmony folder.

    Admins should be aware that this will overwrite TB_sceneOpened in the
    "TOONBOOM_GLOBAL_SCRIPT_LOCATION", and that if they want to have additional
    logic, they will need to one of the following:
        * Create a Harmony package to manage startup logic
        * Use TB_sceneOpenedUI.js instead to manage startup logic
        * Add their startup logic to ayon/harmony/TB_sceneOpened.js
    """
    ayon_dcc_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)),
                                  "api")
    startup_js = "TB_sceneOpened.js"

    if os.getenv("TOONBOOM_GLOBAL_SCRIPT_LOCATION"):

        ayon_harmony_startup = os.path.join(ayon_dcc_dir, startup_js)

        env_harmony_startup = os.path.join(
            os.getenv("TOONBOOM_GLOBAL_SCRIPT_LOCATION"), startup_js)

        if not filecmp.cmp(ayon_harmony_startup, env_harmony_startup):
            try:
                shutil.copy(ayon_harmony_startup, env_harmony_startup)
            except Exception as e:
                log.error(e)
                log.warning(
                    "Failed to copy {0} to {1}! "
                    "Defaulting to AYON TOONBOOM_GLOBAL_SCRIPT_LOCATION."
                    .format(ayon_harmony_startup, env_harmony_startup))

                os.environ["TOONBOOM_GLOBAL_SCRIPT_LOCATION"] = ayon_dcc_dir
    else:
        os.environ["TOONBOOM_GLOBAL_SCRIPT_LOCATION"] = ayon_dcc_dir

show(tool_name)

Call show on "module_name".

This allows to make a QApplication ahead of time and always "exec_" to prevent crashing.

Parameters:

Name Type Description Default
module_name str

Name of module to call "show" on.

required
Source code in client/ayon_harmony/api/lib.py
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
def show(tool_name):
    """Call show on "module_name".

    This allows to make a QApplication ahead of time and always "exec_" to
    prevent crashing.

    Args:
        module_name (str): Name of module to call "show" on.

    """
    # Requests often get doubled up when showing tools, so we wait a second for
    # requests to be received properly.
    time.sleep(1)

    kwargs = {}
    if tool_name == "loader":
        kwargs["use_context"] = True
    elif tool_name == "publisher":
        kwargs["tab"] = "publish"
    elif tool_name == "creator":
        tool_name = "publisher"
        kwargs["tab"] = "create"

    ProcessContext.execute_in_main_thread(
        lambda: host_tools.show_tool_by_name(tool_name, **kwargs)
    )

    # Required return statement.
    return "nothing"

signature(postfix='func')

Return random ECMA6 compatible function name.

Parameters:

Name Type Description Default
postfix str

name to append to random string.

'func'

Returns: str: random function name.

Source code in client/ayon_harmony/api/lib.py
60
61
62
63
64
65
66
67
68
69
def signature(postfix="func") -> str:
    """Return random ECMA6 compatible function name.

    Args:
        postfix (str): name to append to random string.
    Returns:
        str: random function name.

    """
    return "f{}_{}".format(str(uuid4()).replace("-", "_"), postfix)

zip_and_move(source, destination)

Zip a directory and move to destination.

Parameters:

Name Type Description Default
source str

Directory to zip and move to destination.

required
destination str

Destination file path to zip file.

required
Source code in client/ayon_harmony/api/lib.py
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
def zip_and_move(source, destination):
    """Zip a directory and move to `destination`.

    Args:
        source (str): Directory to zip and move to destination.
        destination (str): Destination file path to zip file.

    """
    os.chdir(os.path.dirname(source))
    shutil.make_archive(os.path.basename(source), "zip", source)
    with _ZipFile(os.path.basename(source) + ".zip") as zr:
        if zr.testzip() is not None:
            raise Exception("File archive is corrupted.")
    shutil.move(os.path.basename(source) + ".zip", destination)
    log.debug(f"Saved '{source}' to '{destination}'")