Error Handling
When to Use
Use this skill when the user asks about error handling, checking errors, debugging ovrtx failures, or troubleshooting.
Inputs
Resolve inputs in this order: existing repository files and referenced snippets, explicit user request, then broader agent context.
- Target API surface: Python, C/C++, or both.
- Language and failure point: Python sync call, Python async wait/fetch, C enqueue, C wait, C fetch, or C map/unmap.
- Error signal available to the caller: exception text,
ovrtx_status_t, operation index, result handle, or ovrtx_get_last_error().
- Operation being debugged and whether the caller needs recovery, logging, or propagation guidance.
- Repository source snippets referenced below. Treat these snippets as the API source of truth.
Prerequisites
- Use an ovrtx checkout that contains the referenced examples and docs tests.
- Read the relevant
> **Source:** snippet before writing or explaining API usage.
- Determine where errors surface for the operation before adding checks; enqueue success does not guarantee async completion success.
Instructions
- Identify whether the failure path is Python synchronous, Python async, C enqueue, C wait, C fetch, or C map/unmap.
- In Python, catch
RuntimeError around the API call or around wait() for async operations, depending on where the operation surfaces errors.
- In C, check every returned
ovrtx_result_t.status or enqueue status before using output values.
- After C wait calls, inspect operation errors before fetching results, and call
ovrtx_get_last_error() immediately when a status indicates failure.
- When changing code, run the narrow example or docs test that exercises the failing operation whenever practical.
Output Format
- For explanations, cite the relevant API names, source snippets, and caveats.
- For code changes, summarize the files changed, snippets affected, and validation run.
Scripts
This skill has no scripts.
Limitations
- The referenced snippets remain the source of truth; update or add tested snippets before documenting new API usage.
Overview
In Python, ovrtx raises RuntimeError with descriptive messages on failure. In C, every API call returns a status code that must be checked, and error details are retrieved with ovrtx_get_last_error().
Python
Automatic error handling
All Python API methods raise RuntimeError on failure. The minimal step
example shows the synchronous call shape to wrap in user code:
Source: tests/docs/python/test_error_handling.py snippet doc-python-sync-runtime-error
The test demonstrates the synchronous Python error surface pattern.
Async operation errors
Errors from async operations surface when you call wait():
Source: tests/docs/python/test_error_handling.py snippet doc-python-async-operation-error
Step errors
Source: examples/python/minimal/main.py snippet step
Wrap in try/except RuntimeError to handle step failures.
C
Check every return value
Source: examples/c/minimal/main.cpp snippet create-renderer
Followed by: examples/c/minimal/main.cpp snippet load-usd-and-wait
Every API call returns a status code. Check with the check-error-helper snippet pattern.
check_and_print_error helper function
From the minimal C example -- a template helper that checks the status, prints to std::cerr, and returns whether an error occurred. Works with both ovrtx_result_t and ovrtx_enqueue_result_t:
Source: examples/c/minimal/main.cpp snippet check-error-helper
Per-operation errors from wait
Asynchronous errors (e.g., file not found during USD load) are reported through ovrtx_wait_op:
Source: examples/c/minimal/main.cpp snippet load-usd-and-wait
Check wait_result.num_error_ops and iterate wait_result.error_op_ids after ovrtx_wait_op.
Log callback (C)
Set a process-global callback to receive log messages, with severity filtering and per-channel rules:
Source: tests/docs/c/test_logging.cpp snippet doc-log-callback-prefix-filter-c
Log severity levels follow carb's numeric ordering: OVRTX_LOG_INFO (-1), OVRTX_LOG_WARNING (0), OVRTX_LOG_ERROR (1), OVRTX_LOG_FATAL (2); the unexposed verbose level is -2. The callback is process-global: its lifetime is ovrtx_initialize to ovrtx_shutdown, so it observes messages emitted before the first renderer is created and after the last one is destroyed (e.g. plugin-load and asset-eviction messages). The callback may be invoked from any thread but invocations are serialized for the process. Message strings are only valid during the callback.
channel_filter syntax
channel_filter is a comma-separated list of <channel_prefix>=<level> entries (RUST_LOG-style). The channel prefix is matched against carb's dotted source name; longest matching prefix wins. Channels not matched by any explicit rule fall back to the severity parameter. Accepted level names (case-insensitive): verbose (alias debug), info, warn (alias warning), error, fatal. Whitespace around tokens and trailing commas are tolerated; malformed entries (missing =, unknown level, empty channel) cause ovrtx_set_log_callback to return OVRTX_API_ERROR with a descriptive ovrtx_get_last_error() string and leave the previously installed callback state unchanged.
Examples:
"" (or NULL): every channel uses severity as its threshold.
"omni.usd=error": omni.usd* is admitted at error+, every other channel uses severity.
"carb=warn,carb.tasking=verbose": carb.tasking is admitted at verbose+, other carb.* channels at warn+, everything else uses severity.
Key Types / Functions
| Python |
C |
RuntimeError |
result.status == OVRTX_API_ERROR |
| exception message |
ovrtx_get_last_error() |
async error on wait() |
ovrtx_get_last_op_error(op_id) |
| (not exposed) |
ovrtx_set_log_callback(severity, channel_filter, callback, user_data) |
| (not exposed) |
ovrtx_flush_log(timeout) |
C status codes:
OVRTX_API_SUCCESS (0) -- success
OVRTX_API_ERROR (1) -- error, call ovrtx_get_last_error() for details
OVRTX_API_TIMEOUT (2) -- timeout reached
Troubleshooting
- On Linux systems with no display, repeatedly creating and destroying renderers may result in a native crash with the stack trace pointing into
libEGL.so when shared graphics resources are torn down between renderers. This can happen if keep_system_alive is configured to false, or if ovrtx_initialize() is not called before the multi-renderer lifecycle. In the implicit-initialization pattern (when ovrtx_initialize() is not called), the keep_system_alive config setting is effectively ignored. Avoid this by both configuring keep_system_alive to true (RendererConfig(keep_system_alive=True) in Python, ovrtx_config_entry_keep_system_alive(true) in C) and calling ovrtx_initialize() before creating renderers. If this is not possible, or the crash persists, a further workaround is to set the environment variable VK_LOADER_DISABLE_DYNAMIC_LIBRARY_UNLOADING=1.
- Error strings from
ovrtx_get_last_error() live in thread-local storage and are invalidated by the next API call on the same thread. Copy the string if you need to keep it.
ovrtx_get_last_op_error() strings are valid only until the next ovrtx_wait_op call.
- In C error paths, clean up explicitly: destroy step results if alive, destroy renderer if created, and call
ovrtx_shutdown() if ovrtx_initialize() was called.
- In C, some enqueue operations (like
ovrtx_open_usd_from_file) may succeed at enqueue time but fail during async execution. Always check wait_result.error_op_ids after waiting.
- In Python, some errors during
__del__ cleanup are printed to stderr rather than raised (since Python does not allow exceptions in destructors).
References
- Use the
> **Source:** directives in this skill to locate tested snippets before reusing API patterns.
- Keep related skills, docs, and snippets synchronized when changing the workflow.
1---2name: error-handling3description: Error checking patterns for both C and Python. Use when user asks about error handling, checking errors, debugging ovrtx failures, or troubleshooting.4license: LicenseRef-NvidiaProprietary5---67# Error Handling89## When to Use1011Use this skill when the user asks about error handling, checking errors, debugging ovrtx failures, or troubleshooting.1213## Inputs1415Resolve inputs in this order: existing repository files and referenced snippets, explicit user request, then broader agent context.1617- Target API surface: Python, C/C++, or both.18- Language and failure point: Python sync call, Python async wait/fetch, C enqueue, C wait, C fetch, or C map/unmap.19- Error signal available to the caller: exception text, `ovrtx_status_t`, operation index, result handle, or `ovrtx_get_last_error()`.20- Operation being debugged and whether the caller needs recovery, logging, or propagation guidance.21- Repository source snippets referenced below. Treat these snippets as the API source of truth.2223## Prerequisites2425- Use an ovrtx checkout that contains the referenced examples and docs tests.26- Read the relevant `> **Source:**` snippet before writing or explaining API usage.27- Determine where errors surface for the operation before adding checks; enqueue success does not guarantee async completion success.2829## Instructions30311. Identify whether the failure path is Python synchronous, Python async, C enqueue, C wait, C fetch, or C map/unmap.322. In Python, catch `RuntimeError` around the API call or around `wait()` for async operations, depending on where the operation surfaces errors.333. In C, check every returned `ovrtx_result_t.status` or enqueue status before using output values.344. After C wait calls, inspect operation errors before fetching results, and call `ovrtx_get_last_error()` immediately when a status indicates failure.355. When changing code, run the narrow example or docs test that exercises the failing operation whenever practical.3637## Output Format3839- For explanations, cite the relevant API names, source snippets, and caveats.40- For code changes, summarize the files changed, snippets affected, and validation run.4142## Scripts4344This skill has no scripts.4546## Limitations4748- The referenced snippets remain the source of truth; update or add tested snippets before documenting new API usage.4950## Overview5152In Python, ovrtx raises `RuntimeError` with descriptive messages on failure. In C, every API call returns a status code that must be checked, and error details are retrieved with `ovrtx_get_last_error()`.5354## Python5556### Automatic error handling5758All Python API methods raise `RuntimeError` on failure. The minimal step59example shows the synchronous call shape to wrap in user code:6061> **Source:** `tests/docs/python/test_error_handling.py` snippet `doc-python-sync-runtime-error`62>63> The test demonstrates the synchronous Python error surface pattern.6465### Async operation errors6667Errors from async operations surface when you call `wait()`:6869> **Source:** `tests/docs/python/test_error_handling.py` snippet `doc-python-async-operation-error`7071### Step errors7273> **Source:** `examples/python/minimal/main.py` snippet `step`74>75> Wrap in `try/except RuntimeError` to handle step failures.7677## C7879### Check every return value8081> **Source:** `examples/c/minimal/main.cpp` snippet `create-renderer`82>83> Followed by: `examples/c/minimal/main.cpp` snippet `load-usd-and-wait`84>85> Every API call returns a status code. Check with the `check-error-helper` snippet pattern.8687### check_and_print_error helper function8889From the minimal C example -- a template helper that checks the status, prints to `std::cerr`, and returns whether an error occurred. Works with both `ovrtx_result_t` and `ovrtx_enqueue_result_t`:9091> **Source:** `examples/c/minimal/main.cpp` snippet `check-error-helper`9293### Per-operation errors from wait9495Asynchronous errors (e.g., file not found during USD load) are reported through `ovrtx_wait_op`:9697> **Source:** `examples/c/minimal/main.cpp` snippet `load-usd-and-wait`98>99> Check `wait_result.num_error_ops` and iterate `wait_result.error_op_ids` after `ovrtx_wait_op`.100101### Log callback (C)102103Set a process-global callback to receive log messages, with severity filtering and per-channel rules:104105> **Source:** `tests/docs/c/test_logging.cpp` snippet `doc-log-callback-prefix-filter-c`106107Log severity levels follow carb's numeric ordering: `OVRTX_LOG_INFO` (-1), `OVRTX_LOG_WARNING` (0), `OVRTX_LOG_ERROR` (1), `OVRTX_LOG_FATAL` (2); the unexposed verbose level is -2. The callback is process-global: its lifetime is `ovrtx_initialize` to `ovrtx_shutdown`, so it observes messages emitted before the first renderer is created and after the last one is destroyed (e.g. plugin-load and asset-eviction messages). The callback may be invoked from any thread but invocations are serialized for the process. Message strings are only valid during the callback.108109#### channel_filter syntax110111`channel_filter` is a comma-separated list of `<channel_prefix>=<level>` entries (RUST_LOG-style). The channel prefix is matched against carb's dotted source name; longest matching prefix wins. Channels not matched by any explicit rule fall back to the `severity` parameter. Accepted level names (case-insensitive): `verbose` (alias `debug`), `info`, `warn` (alias `warning`), `error`, `fatal`. Whitespace around tokens and trailing commas are tolerated; malformed entries (missing `=`, unknown level, empty channel) cause `ovrtx_set_log_callback` to return `OVRTX_API_ERROR` with a descriptive `ovrtx_get_last_error()` string and leave the previously installed callback state unchanged.112113Examples:114115- `""` (or `NULL`): every channel uses `severity` as its threshold.116- `"omni.usd=error"`: `omni.usd*` is admitted at error+, every other channel uses `severity`.117- `"carb=warn,carb.tasking=verbose"`: `carb.tasking` is admitted at verbose+, other `carb.*` channels at warn+, everything else uses `severity`.118119## Key Types / Functions120121| Python | C |122|--------|---|123| `RuntimeError` | `result.status == OVRTX_API_ERROR` |124| exception message | `ovrtx_get_last_error()` |125| async error on `wait()` | `ovrtx_get_last_op_error(op_id)` |126| (not exposed) | `ovrtx_set_log_callback(severity, channel_filter, callback, user_data)` |127| (not exposed) | `ovrtx_flush_log(timeout)` |128129C status codes:130- `OVRTX_API_SUCCESS` (0) -- success131- `OVRTX_API_ERROR` (1) -- error, call `ovrtx_get_last_error()` for details132- `OVRTX_API_TIMEOUT` (2) -- timeout reached133134## Troubleshooting135136- On Linux systems with no display, repeatedly creating and destroying renderers may result in a native crash with the stack trace pointing into `libEGL.so` when shared graphics resources are torn down between renderers. This can happen if `keep_system_alive` is configured to `false`, or if `ovrtx_initialize()` is not called before the multi-renderer lifecycle. In the implicit-initialization pattern (when `ovrtx_initialize()` is not called), the `keep_system_alive` config setting is effectively ignored. Avoid this by both configuring `keep_system_alive` to `true` (`RendererConfig(keep_system_alive=True)` in Python, `ovrtx_config_entry_keep_system_alive(true)` in C) and calling `ovrtx_initialize()` before creating renderers. If this is not possible, or the crash persists, a further workaround is to set the environment variable `VK_LOADER_DISABLE_DYNAMIC_LIBRARY_UNLOADING=1`.137- Error strings from `ovrtx_get_last_error()` live in thread-local storage and are invalidated by the next API call on the same thread. Copy the string if you need to keep it.138- `ovrtx_get_last_op_error()` strings are valid only until the next `ovrtx_wait_op` call.139- In C error paths, clean up explicitly: destroy step results if alive, destroy renderer if created, and call `ovrtx_shutdown()` if `ovrtx_initialize()` was called.140- In C, some enqueue operations (like `ovrtx_open_usd_from_file`) may succeed at enqueue time but fail during async execution. Always check `wait_result.error_op_ids` after waiting.141- In Python, some errors during `__del__` cleanup are printed to stderr rather than raised (since Python does not allow exceptions in destructors).142143## References144145- Use the `> **Source:**` directives in this skill to locate tested snippets before reusing API patterns.146- Keep related skills, docs, and snippets synchronized when changing the workflow.