Carbonite Changelog#
All customer facing changes to Carbonite are documented in this file.
The format is roughly based on Keep a Changelog. Read this file for inspiration and remain consistent with the style that is used here.
Carbonite has an official release cadence. At the beginning of every two-week sprint we increment the hundred-based version number. When we need to patch an existing release, we use the fractional (starting at 1) for each patch release. When adding entries to this log, add them under the top most version section in this file. You should never have to change the version number - that is done by the release managers of Carbonite.
Style guide:
iAmCode
/i/am/a/filename.txt
‘/settings/registry/path’
202.2#
Added#
OMPE-37776: omni.log: Explicit GIL acquisition and release in ILog bindings.
OMPE-37776: omni.bind: Added support for
no_gil
attribute, which can be used on functions and attributes to inform omni.bind that the generated Python bindings should release the Global Interpreter Lock (GIL).
202.1#
Added#
OVCC-1812: carb.extras: Introduce new
isNullOrEmpty
function for checking if a char* string is nullptr or an empty string
202.0#
Added#
OVCC-1797: omni.kit.app: Added additional Kit version tokens
${kit_version_major}
,${kit_version_minor}
, and${kit_version_patch}
.OMPE-35008: omni.ext: add support for
"filter:os"
and"filter:arch"
OVCC-1791: omni.kit.app: Added
ensure_runloop
function to allow Python to create runloops.OVCC-1652: omni.kit.app: Log events have now been converted to Events 2.0.
OVCC-1787: Added
manylinux_2_35-x86_64
andmanylinux_2_35-aarch64
builds.OMPE-27294: Updated all carbonite plugins and dependencies built for
manylinux_2_35-x86_64
to use the C++ string ABI (_GLIBCXX_USE_CXX11_ABI=1
), includingabseil
andbreakpad
.OMPE-15823: carb.eventdispatcher: Added
removeAllObserversFor
function to “shut down” events.OMPE-1757: The Carbonite Framework now supports register hooks for when a plugin is registered.
OVCC-1801: carb.eventdispatcher:
IEventDispatcher
now supports event aliasing.OVCC-1806: carb.events:
IEventsAdapter
has a new adapter typeeFullAlias
that supports aliased event streams for generic event streams (likemessageBus
) to aid conversion from Events 1.0 to 2.0.
Changed#
OVCC-1791: omni.kit.app: Functions to get Events 1.0 update streams from runloops are now deprecated.
OMPE-27294: Fixed licensing for the
manylinux_2_35_ARCH
package.OVCC-1810:
carb::cpp::string_view
now accepts a null pointer in theunsafe_length
constructor.OMPE-36904: Updated python to
3.10.16+nv3
and3.11.11+nv3
.
Fixed#
OVCC-1792: carb.eventdispatcher: Modules that unload prior to releasing their event observers will now log an error on shutdown instead of crashing.
OMPE-35817: omni.kit.app: Fixed a warning on startup about acquiring IDictionary as non-optional.
OVCC-1807: Updated omni.bind to add
defines
to the clang parser commandline. This fixes issues like a missingNOMINMAX
definition causing parse errors.
201.0#
Added#
OMPE-15823: Added
carb::eventdispatcher::kDefaultOrder
, and anOrder
typedef.OMPE-15823:
carb::ObjectPtr
gainedrelease()
andreset()
functions with the same meaning asstd::unique_ptr
. TheInitPolicy
is now in the namespace instead of within theObjectPtr
to allow less verbose specification.
Changed#
POSSIBLY BREAKING CHANGE OVCC-1652: omni.kit.app: RunLoops now use Events 2.0. The
IEventStream
instances remain inRunLoop
, but these are adapters. It is now more efficient to subscribe throughIEventDispatcher
. See docs/Kernel/Events.rst.BREAKING CHANGE OVCC-1713: Security enhancing changes for
carb::cpp::string_view
.OVCC-1652: carb.events: Previously the order in which subscriptions at the same
order
value were called was undefined. This has now been clarified so that subscribers at the same order value are called in the order in which they subscribed.OVCC-1652 / OMPE-33000: carb.eventdispatcher: Previously new observers added during an event would not be called by other threads until the event that added them had completed. In order to be more compatible with carb.events these observers are now available immediately to be called by other threads.
OMPE-29354: carb.log: Reverted the interface version for
carb::logging::ILogging
to the previous version to aid transition.OVCC-1763: carb: added support for adding extra fields to each log message. Extra fields can be added either globally for the process or per-thread and can be set either by adding a key/value pair to the
/log/extraFields/
settings branch before launch, or by callingcarb::logging::ILogging::*ExtraField*()
.OMPE-34397: omni.ext: write exact versions of sub-dependencies to the version lock.
Fixed#
OVCC-1647: Fix
warning #128-D: loop is not reachable
warning in ScratchBuffer.h when compiling with nvcc.OMPE-33790: carb.log: Fixed an issue introduced in v200.0 where
ILogging::addLoggerOld
andILogging::removeLoggerOld
would not work properly when provided with the default logger fromILogging::getDefaultLoggerOld
.OMPE-33790: omni.kit.app.plugin: Fixed an issue introduced in v200.0 where
replayLogMessagesOld()
was required even thoughcarb::logging::ILogging
was using a version prior to 1.3.OMPE-33790: carb.log: Fixed an issue introduced in v200.0 where
carb.logging.ILogging.add_logger()
would call the given callback function with an incorrect number of arguments.OVCC-1770 / OMPE-33612:
carb::extras::startsWith
: Fixed an invalid memory access flagged by ASAN.OVCC-1770:
carb::extras::startsWith/endsWith
: added missing overloads.OMPE-32970: carb.settings / carb.dictionary: Subscriptions receiving
ChangeEventType::eDestroyed
notification no longer receive a dangling pointer to the destroyedItem
; theItem
will be valid and can be queried. However, it is removed from the tree and will no longer have a parent (that is,IDictionary::getItemParent()
will return NULL).OMPE-32970: carb.settings / carb.dictionary: Subscription callbacks are no longer called recursively. If a subscription callback causes further changes, those change notifications are queued and will be delivered only after already pending change notifications have been delivered.
OVCC-1775:
carb::extras::EnvironmentVariableParser
/carb::cpp::string_view
: Fixed an issue where using MSVC debug builds when creating astring_view
from iterators of an empty string would result in an assert.
Removed#
OVCC-1750: Removed carb/cpp17 and carb/cpp20 deprecated include files.
200.0#
Added#
OVCC-1709: carb.tasking: Implemented a parallel map/reduce algorithm as
carb::tasking::ITasking::parallelReduce
.OVCC-1710: carb.tasking: Implemented a parallel sorting algorithm in include/carb/tasking/ParallelSort.h.
OVCC-1724: omni.kit.app.plugin: redacted some potential secrets when printing the command line to the log. The new
/app/commandLinefilterPatterns
setting provides a list of semicolon separated regex patterns that control what is redacted on the printed command line. Note that this does not actually modify the stored command line, just redacts potentially sensitive values when printing it to the log. The default patterns arenvapi-.*;AK.*
. Semicolons in the pattern itself may be escaped as needed.OMPE-31962: omni.kit.app.plugin: added
omni::kit::IApp::reportAlive()
to tick the hang detector outside of omni.kit.app.plugin.OMPE-29354: omni.log:
ILogMessageConsumer2
has been added. Instead of passing all logging parameters as discrete arguments, a reference to a version-awarecarb::logging::LogMessage
struct is passed. This adds support for OmniTrace’s traceparent ID.OMPE-29354: carb.log:
carb::logging::Logger2
has been added which now passes a reference to a version-awarecarb::logging::LogMessage
struct instead of discrete arguments such as in the oldcarb::logging::Logger
. New fields include the process and thread IDs emitting the log, the timestamp, and the OmniTrace traceparent ID.OMPE-29354: carb.log: the standard logger can now output the current OmniTrace traceparent ID (if any) for the emitting thread. This can be enabled with the
/log/includeTraceId
setting and is disabled by default. There will be no change in the logging output if this setting is enabled but OmniTrace is not enabled.
Changed#
BREAKING CHANGE OVCC-1713: Security enhancing changes for
carb::cpp::string_view
(proposed to SG23 in P3566).BREAKING CHANGE OMPE-31894: Carbonite now requires at least C++17.
POSSIBLY BREAKING CHANGE OMPE-31562: Dropped support for Python 3.8 and 3.9.
OVCC-1734: carb.tasking.plugin: Threads will become quiescent more reliably in high-CPU-load situations.
OVCC-1724 / OMPE-32930: Update python versions to 3.10.16+nv1, 3.11.11+nv1.
OVCC-1731: omni.bind and omni.structuredlog now import python from
deps/python.packman.xml
rather than specifying it separately. This should not have any external effects.OMPE-28605: carb.windowing: Fixed a crash that could occur if non-RGBA images were passed to
create_cursor
orset_window_icon
.OMPE-30506: omni.ext.plugin: Disable supported targets check by default.
OVCC-1736:
carb::cpp::variant
is now ABI-safe and standard-layout, if all the types it holds are likewise.OVCC-1756: Python profiler: Fixed an issue in the Carbonite framework that led to a container growing with duplicates every transition to or from an asyncio task.
Removed#
OMPE-31562: Dropped support for Python 3.8 and 3.9
OMPE-31894: Removed obsolete C++17 compatibility features (from
carb::cpp
)Features that must be replaced with their
std::
counterpart:void_t
,is_void
(<type_traits>
)is_convertible
(<type_traits>
)is[_nothrow]_swappable[_with]
(<type_traits>
)conjunction
,disjunction
,negation
,bool_constant
(<type_traits>
)in_place*
(<utility>
)gcd
(<numeric>
)
Include files carb/cpp/Utility.h, carb/cpp17/Utility.h, and carb/cpp/Numeric.h have been removed
void_t
,is_void
(from<type_traits>
)is_convertible
(from<type_traits>
)is[_nothrow]_swappable[_with]
(from<type_traits>
)conjunction
,disjunction
,negation
,bool_constant
(from<type_traits>
)in_place*
(from<utility>
)gcd
(from<numeric>
)uncaught_exceptions
(from<exception>
)apply
(from<tuple>
)
Includes removed: carb/cpp/Utility.h carb/cpp/Numeric.h carb/cpp/Exception.h carb/cpp/Tuple.h carb/cpp17/Utility.h carb/cpp17/Exception.h carb/cpp17/Tuple.h
OVCC-1752: Removed
carb::cpp::char_traits
Fixed#
POSSIBLY BREAKING CHANGE OVCC-1652: omni.kit.app: Fixed an issue where awaiting
next_update_async()
could wake coroutines out of order.OVCC-1719:
carb::scripting::IPythonThreading
: Fixed a race condition where a thread callingcheckLoaded()
could be terminated by Python if Python was finalizing in another thread.OMPE-9580: omni.core: fixed the registration of omni.log channels in Carbonite plugins.
OMPE-28177: omni.structuredlog.plugin: invalidated new event buffers during shutdown to avoid error messages.
OVCC-1739: added missing comparison operators for
carb::cpp::string_view
.OMPE-22139: omni.ext.plugin: Do not load extensions with a wrong versions and dependencies formats.
OMPE-31033: omni.ext.plugin: fixed the solver using incorrect dependencies when there are multiple suitable packages.
OVCC-1749: Fix a bug in
carb::cpp::string_view
where it would silently ignorechar_traits
fromstd::basic_string
OVCC-1758: carb.launcher.plugin: fixed the handling of long paths on Windows when launching a child process. Also fixed a potential security issue when launching batch files on Windows.
OVCC-1761: Fix a bug in
DictionaryHandler
’s methodString
ignoringlen
when reading a string.OVCC-1762: prevent
carb::cpp::basic_string_view<>(const basic_string<>&)
from acceptingCharT*
OVCC-1765: carb.profiler Python bindings: Fix module names not appearing in profiler output.
OVCC-1766: fix UB in
constexpr basic_string_view(It first, It last)
when the range is empty
180.0#
Added#
OVCC-1693: carb::extras::HandleDatabase: Added
debugGetRefCount()
function.tryAddRef()
andaddRef()
also now optionally return the reference count. A newgetSharedState()
function will query a handle for the types of sharing in use.OMPE-24897: carb.windowing: v1.5 adds
translateKey
to translate a physical key to the mapped key of the current keyboard layout. Also available in Python ascarb.windowing.IWindowing.translate_key
. (v1.4 remains the default; to use this, definecarb_windowing_IWindowing=CARB_HEXVERSION(1,5)
before building).
Changed#
OVCC-1693: carb::extras::HandleDatabase: Optimized early allocations to be less contentious and use less memory.
OMPE-23302: omni.kit.app:
IApp::replayLogMessages
now erases all stored log messages. Log messages recorded during startup are also automatically erased once the app becomes ready and the script passed to--exec
has executed.
Fixed#
OVCC-1588: carb.tasking: Improved performance of
ITasking::applyRange
slightly.OVCC-1716: omni.bind: Fixed some SonarQube warnings produced by generated Python bindings.
OMPE-25991: carb.variant bindings: Fixed an error message that could appear if
import carb.variant
was performed before the carb.variant.plugin module was registered.OMPE-23302: omni.kit.app: Fixed an issue where logging would be endlessly cached consuming memory unless the Kit Console extension (or a different extension) was loaded to turn it off.
179.0#
Added#
OMPE-20107: carb.assert: The assert message will now be added to crash metadata.
OVCC-410: Added
omni::move_only_function
– an implementation ofstd::move_only_function
.
Changed#
OVCC-1697: Framework ReleaseHooks added by a plugin for its own interfaces will now be called after the plugin terminates. This also affects getCachedInterface since it is implemented with ReleaseHooks.
Fixed#
OVCC-1654: omni.bind: updated the
clang-mini
package to remove some unnecessary debug logging.OVCC-1700: carb.crashreporter-breakpad.plugin: ensured the standard streams are flushed when a crash occurs.
OVCC-1702: omni.bind: Fixed a bug where a stale
cfg.platform
variable in omni.bind.lua was accessed, resulting inUbuntu22-aarch64
include paths being used inCentOS7-x86_64
builds. Typically these would report that they were missing the<cinttypes>
header.OMPE-25022: omni.kit.app: fix omni.kit.deprecated decorator for classes not working correctly with isinstance.
OVCC-1566: Fixed an issue with
carb::cpp::counting_semaphore
wheretry_acquire_for
would sometimes wait too long.OVCC-1566: Fixed an issue with
carb::cpp::counting_semaphore
whererelease
would sometimes not wake threads.OMPE-24869: omni.telemetry.transmitter: updated libcurl to fix CVE-2024-6197.
178.0#
Added#
OVCC-1688: Added
char_traits<T>::length_s()
, a secure alternative tochar_traits<T>::length()
.OMPE-20821: Flush stdout and stderr on fatal asserts to maximize information.
Changed#
OVCC-1677: deprecated several functions from
carb::extras::PrivacySettings
that returnconst char*
due to thread safety issues and addedstd::string
alternatives.OVCC-1691: Upgraded to latest Python packages: 3.8.20+nv1, 3.9.20+nv1, 3.10.15+nv1, 3.11.10+nv1.
OVCC-1692: Updated carb.profiler-tracy.plugin to use Tracy 0.11.1. NOTE: Older Tracy viewers will not be able to read the new data. Please upgrade viewers to 0.11.1 as well.
OVCC-1677:
carb::settings::walkSettings()
now uses acarb::settings::ScopedRead
internally for thread safety.OVCC-1688: Added
carb::cpp::char_traits
which overrideslength()
and has extension functionlength_s()
to be more secure about literal string and char array length. This is now the default traits parameter forcarb::cpp::basic_string_view
and used byomni::string
.OMPE-22904: omni.ext: do not ignore optional dependencies constraints, unless extension doesn’t exist at all.
OVCC-1654: Updated omni.bind to use Clang 18. This will cause some changes to generated code which should not result in functional changes to the generated code.
OMPE-22974: omni.kit.app: Changed
terminateRunLoop()
so that it actually removes the run-loop now.OVCC-1267: added
inline
to the functions in omni.bind generated python bindings headers.
Fixed#
OVCC-1672: omni.structuredlog.plugin: Fixed a thread-safety issue where
setEventQueueSize()
was potentially unstable when events were being recorded by other threads, including automatic resizes as configured.OVCC-1687: carb.profiler-tracy.plugin and carb.profiler-nvtx.plugin: Reduced contention and locking, and improved performance for these profilers.
OVCC-1690:
omni::string
: Fix for a previous change that altered the alignment requirements, breaking ABI.OVCC-1688: Fixed
carb::cpp::basic_string_view
using the wrong length on some character arrays. Also fixed a compilation issue for non-const character arrays.OMPE-22983: omni.kit.app: Fixed
omni.kit.app:script_[*]
events not being properly bridged between Events 1.0 and 2.0.OMPE-23122: omni.ext: Fixed a bug where yanked extension can still be selected in some cases.
OMPE-22974: omni.kit.app: Fixed a rare crash that could occur if multiple threads called
getRunLoop()
simultaneously for the same non-existing run-loop.OMPE-21321: carb.events: Fixed a use-after-free bug that could cause memory corruption in rare circumstances.
OVCC-1677:
carb::settings::walkSettings()
now holds acarb::settings::ScopedRead
while performing the walk to ensure thread safety. Code that writes to settings or waits on another thread from awalkSettings()
callback should review their usage.OVCC-1677: Added
carb::settings::ScopedRead
andcarb::settings::ScopedWrite
to many dictionary transactions internally. This may affect timing. This should not cause bugs unless external code waits on threads while holding aScopedRead
orScopedWrite
.
177.0#
Added#
OVCC-1668:
carb::container::ConcurrentUnorderedMap
andcarb::container::ConcurrentUnorderedMultimap
in include/carb/container/ConcurrentUnorderedMap.h. These classes are similar to TBB and Microsoft implementations based on a split-order list. Insert, Find and Iteration operations may occur concurrently, but must be serialized with operations that Erase, Extract or iterate buckets.OMPE-9631: omni.kit.app: Omnitrace is now started at the same time as profilers, if so configured.
Changed#
OVCC-1668: carb.eventdispatcher.plugin: Greatly reduced mutex contention resulting in a 40+% improvement in threaded event dispatching.
OVCC-1654: omni.bind: updated the
omni.bind
tool to use clang 18 instead of clang 12.
Fixed#
OVCC-1686: carb.settings.plugin: Fixed a thread-safety issue with
ISettings::createStringBufferFromItemValue
andISettings::destroyStringBuffer
.OMPE-19970: fix @omni.kit.app.deprecate to print callstack correctly
176.0#
Added#
OVCC-1652: Kit Kernel: Began transitioning to Events 2.0, using
IEventDispatcher
instead ofIEventStream
. All legacy event streams still exist, but as an adapter interface that listens toIEventDispatcher
.RunLoop
event streams have not yet changed.OVCC-1652: Python:
carb.breakpoint()
andcarb.wait_for_native_debugger()
are now available as static functions as well as member functions ofcarb.Framework
.OVCC-1677:
carb::settings::getStringOpt()
andcarb::settings::getStringAtOpt()
which are similar to their non-Opt-suffixed counterparts except they return acarb::cpp::optional<std::string>
.
Changed#
NOTE: Linux: Modules that include omni/kit/IApp.h or omni/ext/IExtensions.h will now need to link against librt.so.
OVCC-1677:
carb::settings::getString()
andcarb::settings::getStringAt()
now lock the settings registry while loading the C string buffer into thestd::string
to prevent race conditions.OVCC-1677: deprecated
carb::crashreporter::getCrashMetadataValue()
due to thread safety and addedcarb::crashreporter::getCrashMetadataString
to replace it.
Fixed#
OVCC-1656: carb.events.plugin: Fixed an issue with
IEventsAdapter
streams where dangling events were left if the last subscriber removed itself during event handling.OVCC-1652: Fixed a compilation issue if
omni::expected
is used without exceptions.OVCC-1676: Fixed the
--repo-root
argument passed to omni.bind and omni.structuredlog so that it points to the correct directory. The invalid root could cause build failures when combined with newer versions ofrepo_format
.OMPE-18870: Prevent
ILimitedMemoryInfo
from returning values for total physical memory or total swap that exceed the amount the physical system has. This was occurring on Ubuntu 20.04 with the default settings.OVCC-1662: Windows: Worked around a rare hang that could occur when profiling.
175.0#
Added#
OVCC-1626: Added
omni::structuredlog::IStructuredLogSettings3
to improve structuredlog message source tag functionality.OVCC-1593: omni.platforminfo.plugin: added
omni::platforminfo::ICGroupMemoryInfo
andomni::platforminfo::ICGroupCpuInfo
interfaces to retrieve control group information about memory and CPU accessibility. These interfaces also exist on Windows but all functions will simply fail immediately.OVCC-1426: Added the ability for omni.structuredlog to resize its queue when it becomes too full.
OVCC-1665:
omni.structuredlog
andomni.bind
will attempt to use the host project’s repo-deps.packman.xml if it’s available in$OMNI_REPO_ROOT/deps/
. This should prevent projects from using multiplerepo_man
versions.OMPE-17745: carb.events.plugin: new API to have more control over subscriptions (enable/disable, order, get all).
OVCC-1656: carb.eventdispatcher.plugin: Added support for changing order and enabled state of observers.
OVCC-1656: carb.events.plugin now exports a new
IEventsAdapter
interface that can be used to create specializedIEventStream
instances that can adapt IEvents 1.0 carb.events usage to IEvents 2.0 carb.eventdispatcher.
Changed#
OVCC-1656: POSSIBLY BREAKING CHANGE: When using the latest version of carb.eventdispatcher.plugin, event observers now require an observer name for profiling and debugging purposes.
POSSIBLY BREAKING CHANGE
omni/compiletime/CompileTime.h
has been removed.string_view
(fromcarb/cpp/StringView.h
) is recommended as a replacement.OVCC-1658: Update libcurl to 8.9.0 for security.
OMPE-16067: Removing
/app/file/ignoreUnsavedOnExit
fromkit-core.json
OVCC-1650:
/structuredLog/enableJsonStdout
will now cause the crash reporter’s logger to output JSON as well.OMPE-16227: MacOS support was removed from all headers (MacOS libraries have not been distributed since 162.0).
Fixed#
OVCC-1659: Fixed a crash bug that could affect ONI plugins shutting down caused by previous fixes to OVCC-1653 in release 174.0.
OVCC-1631: Fixed a compilation error with
int128_t
that could occur if GNU CXX extensions were enabled.OMPE-14320: Fix an issue where ONI modules are unnecessarily unloaded and then reloaded when registered.
OMPE-16545: Fixed an issue that would prevent kit-kernel-based pip packages from starting with non-NVIDIA-built distributions of Python.
OVCC-1629: The structuredlog process lifetime exit event will now be called on Windows when
exit()
is called from a module linked with a static CRT or_exit()
is called.OVCC-1661: Fix crash in carb.dictionary.serializer-json when serializing a value where an object or array was not at the root, as well as when a parse error occurred inside of nested objects/arrays.
OVCC-1656: carb.eventdispatcher.plugin: Fixed event ordering not always matching documentation, and an issue where a hang could occur if a thread was attempting to stop observing while a different thread was dispatching.
OMPE-15477: carb.tasking.plugin: Fixed a hang that could occur with timed waits.
174.0#
Added#
OVCC-1631: Cross-platform
int128_t
anduint128_t
support in thecarb::math
namespace, found in include/carb/math/Int128.h.OVCC-1631:
carb::math::mulDiv()
functions efficiently multiply two 64-bit numbers to a temporary 128-bit number (to reduce the risk of overflow), and then divides the temporary by a third 64-bit number.
Changed#
OVCC-1631:
carb::extras::hash128_t
functions now usecarb::math::uint128_t
math to simplify operations.OVCC-1635:
CARB_ABI
no longer needs__cdecl
and it has been removed.
Fixed#
OMPE-14118: omni.ext: Adjusted
ExtensionManager::getRegistryExtensionDict
to only fetch extension data when not found in the current database.OVCC-1646: omni.bind: it was discovered that any ONI header that pulls in
carb/RString.h
when using a recent carb version will result in compile errors from clang (used byomni.bind
internally) aboutoffsetof()
not being constexpr safe. This fix switches theoffsetof()
macro on Windows to use__builtin_offsetof()
foromni.bind
builds instead the default macro implementation that usesreinterpret_cast
. The MSVC compiler seems to not have an issue with this non-constexpr-safe usage of the macro.OVCC-1648: carb.profiler-cpu.plugin: Fixed a rare shutdown debug assert. Now uses
carb::clock::tsc_clock
internally.OMPE-15376: omni.bind and omni.structuredlog: updated repo_man dependency to pull in a write guard for Python dependency fetching via
uv
due to a bug inuv
on Windows.OVCC-1609: Fixed a rare memory leak in
carb::dictionary::saveFileFromDictionary()
that would occur if the file failed to open for writing.OVCC-1653: Fixed an issue where quick shutdown was making unnecessary changes that might have affected other threads’ use of the Framework, sometimes leading to instability.
173.0#
Added#
OVCC-1593: omni.platforminfo.plugin: added the
omni::platforminfo::ILimitedMemoryInfo
interface to allow for the collection of VM or container limited system memory resources on Linux. This interface also works on Windows but will simply return the same information asomni::platforminfo::IMemoryInfo
does. If no memory limitations are set, this new interface will also return the same information asomni::platforminfo::IMemoryInfo
.OVCC-1593: omni.platforminfo.plugin: added the
omni::platforminfo::ILimitedCpuInfo
interface to all for the collection of VM or container limited CPU resources on Linux. This interface also works on Windows but will simply return the same information asomni::platforminfo::ICpuInfo
does. If no CPU limitations are set, this new interface will also return the same information asomni::platforminfo::ICpuInfo
. This interface supports retrieveing information about both CPU sets and CPU usage quotas on Linux.
Changed#
OMPE-11146: omni.structuredlog.plugin: enabled the ‘JSON on stdout’ logging functionality by default when running under a CoreAPI service. This is specifically enabled if
/app/coreapi/alpha/enabled
is also enabled.OVCC-1629: omni.structuredlog will tag message source as “(dev)” when a debugger is detected or the application is running in portable mode. Additionally, “(test)” will be tagged if it is detected (via environment variables) that the application is running on CI.
Fixed#
OMPE-14399: omni.structuredlog.plugin: fixed a potential deadlock or assertion failure when the structured logging log consumer is enabled and certain internal operations that emit log messages are triggered.
OMPE-14939: carb.input.plugin: Fixed an erroneous error log when unsubscribing from an action event that has already been deleted through the settings system.
OVCC-1636: Fixed a rare race condition in
IMessageQueue::stop()
that could lead to a message not being processed when the queue was stopped.
172.0#
Added#
OVCC-1613: carb.crashreporter-breakpad.plugin: added structured log events around crash report uploading behavior. These include whether the report was uploaded successfully and information about the uploading settings and current status.
OMPE-13415: omni.ext: version agnostic loading of kit extensions for better local dev experience
OVCC-1615: omni.structuredlog.plugin: added the
/structuredLog/enableJsonStdout
setting (boolean) to redirect log messages to stdout as JSON formatted messages instead of the normal standard logger output.OVCC-1625: Added
carb::cpp::chrono::high_resolution_clock
in include/carb/cpp/Chrono.h which is guaranteed to be a monotonic clock (unlike the requirements forstd::chrono::high_resolution_clock
).
Changed#
OVCC-1132: carb.audio-forge has been moved to https://gitlab-master.nvidia.com/omniverse/carbonite-audio-plugins with a corresponding
carb_audio
package.OVCC-1605: (Windows) Changed
IFileSystem::forEachDirectoryItem[Recursive]
to useFIND_FIRST_EX_LARGE_FETCH
in a simple effort to improve performance.
Fixed#
OMPE-12077: Refactored and fixed the omni.kit.app Hang Detector system:
Hang Detector will no longer take 100% of one CPU core due to a time computation error.
Hang Detector now listens for settings changes:
/app/hangDetector/enabled
and/app/hangDetector/timeout
changes are now reflected at runtime.Fixed thread-safety issues with Hang Detector.
omni.kit.app: Setting
/app/runWithoutRunLoop
totrue
(default:false
) will keep the application running even without a RunLoopRunner registered. A minimalmain
run loop will be created as a fallback.OMPE-8259: (Linux only) Worked around a rare issue where running on some versions of GLIBC prior to 2.28 could cause a hang due to a GLIBC bug when carb.dictionary and carb.settings locks were used.
OVCC-1610: (Windows) MSVC prior to 2022 update 17.9 has a bug where
std::this_thread::sleep_X
functions use the system clock and are subject to the clock changing due to time sync issues. Addedcarb::cpp::this_thread::sleep_X
functions that will correctly use a steady clock.OVCC-1610: (Windows) The
NativeFutex
system (that underlies nearly all thread waiting) was also using a system clock for absolute time. This has been changed to use a steady clock instead.OVCC-1613: carb.crashreporter-breakpad.plugin: fixed some unnecessary allocations at crash time in the crash reporter.
OVCC-1604:
carb::thread::ThreadLocal
: speculative fix for an issue that could occur at shutdown where an internal mutex has already been destroyed.OVCC-1621: Python bindings: Fixed an issue where handling an exception from Python could cause another exception that was unhandled and could terminate the application.
OVCC-1608:
omni::string
: Fixed broken usage of InputIterators (they were expected to be ForwardIterators).OVCC-1628: carb.tasking.plugin: Fixed an issue where
Priority::eMain
tasks could run in worker threads instead of the main thread.
171.0#
Added#
OVCC-1583: Add carb.profiler interface to inject a frame marker with an RGBA image -
carb::profiler::IProfiler::frameWithImage()
/CARB_PROFILE_FRAME_WITH_IMAGE()
.OVCC-1552: Build: added support for building with clang 18 on Linux. Run the build with the
--compiler-toolset=clang
on Windows or Linux to use clang for the build.OMPE-8259: Added
carb::scripting::IPythonThreading
interface that is built-in with the Carbonite Framework. This interface enables acquiring and releasing the GIL without needing to link against Python, pybind, or acquire carb.scripting-python.plugin.
Changed#
OVCC-1342: carb.tasking.plugin:
TaskingDesc.fiberCount
is now ignored. Fibers are created and destroyed in a more concurrency-friendly manner.OVCC-1577: carb.input.plugin: Multiple action mappings will now be triggered if they map to the same input combination. Previously only the single best match would be triggered.
OVCC-1577: carb.input.plugin:
ActionMappingSet
objects can be created without providing a settings key, in which case they are not linked to settings and are managed by API calls only.
Fixed#
OVCC-1559: carb.profiler-cpu.plugin: Fix for broken Python
asyncio
profiling if carb.tasking.plugin was also running.OVCC-1577: carb.input.plugin: Fixed an issue where clearing action mappings with
clearActionMappings()
or by deleting the settings key did not properly clear the action mappings, preventing new action mappings from receiving events.OVCC-1528: Use a case-insensitive equality operator when comparing paths on Windows
OMPE-9484: carb.events.plugin: Fixed a memory corruption issue that could occur if a subscription was being destroyed or unsubscribed while a notification of that subscription was taking place in another thread. Unsubscribing will now wait for the notification to complete before returning as required by Basic Callback Hygiene.
OMPE-8259: carb.dictionary.plugin: Fixed an issue where a deadlock could occur if the GIL was held while carb.dictionary.plugin was called from non-Python code.
OVCC-1606: Fixed some Linux GCC-7 compilation warnings with
omni::string
.
170.0#
Added#
OVCC-416: Implemented
IMessageQueue
as part of the “IEvents 2.0” initiative to replaceIEvents
.Uses
variant::Variant
for message payloads, similar toIEventDispatcher
.Python bindings fully support
asyncio
.Though reference-counted, has a distinct
stop()
call to terminate the message queue in a thread-safe manner.A global database of uniquely-named message queues is maintained, negating the need to pass by pointer.
OVCC-416: Additional
omni::core::Result
codes:kResultTimedOut
andkResultWouldBlock
.OVCC-1569: Added include/carb/Coro.h and
carb::coro::Task<>
classes to provide initial support for C++20 coroutines.
Changed#
OVCC-1558: “Module X remained loaded after unload request” message has been downgraded to
info
instead ofwarn
.OVCC-1580: omni.telemetry.transmitter: programmatically configured the telemetry transmitter instead of depending on a config file.
OVCC-1571: Include refactoring - this might require some include changes on downstream applications.
OVCC-1342: carb.tasking.plugin: Fibers are now allocated and freed in a more concurrency-friendly method. The limit of fibers is no longer an artificial requirement.
Fixed#
Various compile fixes for
omni::expected
comparisons.OVCC-1342: carb.tasking.plugin: Task threads can become quiescent sooner when out of work.
OVCC-1578: carb.tasking.plugin: The
batchHint
parameter toapplyRangeBatch
is once again taken into account.OMPE-7913: Linux: Speculative workaround for crash during logging when rogue code rug-pulls
pthread_key_t
0 out from underneath the logging system.OVCC-1559: carb.profiler Python bindings: fixed issues with
CARB_PROFILING_PYTHON
to profile all Python functions and conflicts withasyncio
resulting in error messages about zones not being ended properly.OVCC-1564: Plugins found and registered by wildcard are now registered in a deterministic order by sorting.
169.0#
Added#
OVCC-1542: Build: added clang-cl (16) for windows.
OVCC-1544: Build: added CLANG ASAN support for Windows.
OVCC-1133: Add support for
omni::extras::isRunningInContainer()
detecting Kubernetes.OM-122306: carb.audio-forge.plugin: improved the documentation and functionality in the audio Python bindings.
OVCC-1538: Python:
carb.profiler
now has cProfile-like support for profiling Python functions in Carbonite profilers. To enable useIProfiler.set_python_profiling_enabled()
function from Python, or set env varCARB_PROFILING_PYTHON
to1
before importingcarb.profiler
.OVCC-1538: Python:
carb.Framework
has added functions:wait_for_native_debugger()
to wait for a native debugger to attach, andbreakpoint()
to issue a hardware breakpoint. See documentation for more details.OVCC-1539: carb.profiler-tracy.plugin: Now supports a new boolean setting (default=
true
):/plugins/carb.profiler-tracy.plugin/fibersAsThreads
to display fibers as threads.OVCC-1548: added
CARB_OFFSETOF2
.OVCC-1550: added
CARB_CONSTEVAL
.
Changed#
Possibly breaking change Made several python bindings source files private (only binaries are packaged with Carbonite) instead of public.
OM-83850: Updated nvtx to 3.1.0, header-only.
OVCC-748: Delete move constructor and move assignment operator in ScratchBuffer.
OM-122306: carb.audio-forge.plugin: improved the functionality of the audio Python bindings..
Fixed#
OVCC-1544: Build: Fixed MSVC ASAN.
OM-124268: Acquiring builtin plugins (such as
carb::logging::ILogging
) will no longer warn if the plugin was not listed as a dependency.OVCC-1549 / OM-124323: (Windows only) Fixed a hang introduced with
carb::thread::mutex
changes in previous version.OM-122306: carb.audio-forge.plugin: fixed some context management bugs in the audio Python bindings.
OVCC-1555: Prevent omni::string_view constructor from working with reverse iterators.
OVCC-1353: changed documentation on Unicode to advise against using
u8"..."
string literals in all cases. This also changed theUnicode.md
toUnicode.rst
in support of our gradual documentation migration to RST.
Removed#
OM-123755: Since Python 3.7 is past end-of-life, support for it was removed.
168.0#
Added#
OM-121544: Build: added support for unity builds. Individual projects can opt into unity builds using the
unitybuildenabled(true)
API in premake scripts. This can decrease build times in larger projects that are well suited to unity builds. Theomni.structuredlog.plugin
project has been opted into unity builds as an initial example.OVCC-1497: Implemented
carb::cpp::atomic_flag
which has C++20test()
,wait()
,notify_one()
andnotify_all()
functions.OVCC-1356: Added
OMNI_MODULE_ON_MODULE_LAST_CHANCE_SHUTDOWN
to add a handler to ONI plugins that will be called during shutdown when a plugin will not be unloaded normally. This occurs during quick shutdown and also during regular shutdown if a plugin never reports that it’s able to unload.OVCC-1536: added
CARB_UNREACHABLE()
(to express that the code is never executed) andCARB_ASSUME(b)
(to express that the conditionb
is always met).
Changed#
OVCC-1497:
tsc_clock
was moved from thecarb::time
namespace tocarb::clock
, though it is also available from within thetime
namespace for historical consistency. Thetime
namespace was conflicting in some cases with thetime()
function.OM-122864: update freetype to version 2.13.2.
OVCC-1525: carb.crashreporter-breakpad.plugin: added default settings for
/crashreporter/url
,/crashreporter/product
, and/crashreporter/version
so that crash reports can always be uploaded even in apps that have not been fully configured.
Fixed#
OVCC-1497:
tsc_clock::sample()
now acts as a compiler barrier to prevent compiler reordering of sampling.OVCC-1513: address UB in omni::string. Replace the union with a struct to avoid accessing an inactive member.
OVCC-1497: Significantly improved performance of
carb::thread::mutex
(now ~70% faster thanstd::mutex
) andcarb::tasking::Mutex
(about ~70% faster than the previous implementation).OM-123447: add module docstring for carb.settings, carb.tokens, omni.kit.app, omni.ext.
OM-121493: Python: Using
carb.profiler
decorators and profiling will now work properly withasync
functions.
167.0#
Added#
OVCC-1472: Added
CARB_PLUGIN_INTERFACE_EX
which allows interfaces to have a default version that is distinct from the latest version. This allows modules to opt-in to interface changes rather than always getting the latest.OMPE-1332: omni.ext: apply ext dict filters for remote extensions and include them when publishing.
OVCC-1504: carb.audio-forge.plugin: added a
playFilePaused
command to theexample.audio.playback
app. This plays a sound on a voice that is initially paused. It is unpaused after a few seconds then plays to completion. The--input
option is used to provide the path to the sound to play. The--interactive
option is optionally used to print the play cursor position during playback. Various other common options such as--format
,--frame-rate
,--decoded
,--memory-stream
,--disk-stream
, etc will also affect the behavior of this new command.OVCC-1524: carb.crashreporter-breakpad.plugin: added a new volatile metadata type that allows a file blob in memory to be written to file. The crash reporter will then include the written file in the crash report. This is useful as a way of including arbitrarily large metadata values in the crash report as files instead of directly as metadata values. Each metadata value itself has a limit of 32KB on the OmniCrashes side. This provides a way to work around this limit. Currently OmniCrashes will discard any metadata values that are beyond this size limit.
OM-123294: omni.structuredlog.plugin: added a setting that can be used to enable ‘anonymous data’ mode. This forces all user and login information to be cleared out and all consent levels approved. This modified information will also be picked up by external systems that interact with or use these settings. This includes passing the user and consent information along to the telemetry transmitter.
OM-123459: omni.structuredlog.plugin: added the
omni::structuredlog::IStructuredLogControl2
interface. This new interface contains theemitProcessLifetimeExitEvent()
function to force the process lifetime exit event to be emitted early and with a custom reason. This is only intended to be used at process shutdown time.
Changed#
OM-122864: Upgrade python dependencies to fix security issues.
OM-117408: omni.ext: print/log registry sync status.
OVCC-1523: framework: Made assertion failures also log to all of the currently configured standard logger destinations. This includes the main log file, standard streams, and the debug console (on Windows at least). These messages will only be explicitly written by the
IAssert
interface to the standard streams and debug console destinations if the standard logger has not already written to those destinations as well.
Fixed#
OVCC-1504: carb.audio-forge.plugin: fixed a bug in
carb.audio
that caused voices that were started in a paused state to potentially accumulate position information from previous voices. This was only an issue if the previous voice did not play to completion of its sound and following uses of the same bus were started in a paused state.OM-123140: omni.ext: fix kit sdk extensions exclusion when generating version lock.
166.0#
Added#
OVCC-1506: carb.tasking.plugin: Added
/carb.tasking.plugin/suppressTaskException
setting for debugging task exceptions.OVCC-1509: carb.tasking.plugin: Added
/carb.tasking.plugin/debugAlwaysContextSwitch
setting which is a debug/test mode that will greatly increase the number of context switches to shake out issues.
Changed#
OM-121332: omni.kit.app.plugin: /app/fastShutdown defaults to true
OVCC-1503: Increased buffer given to
omniGetModuleExports
from 1k to 4k.OVCC-1512:
carb::cpp::bit_cast
will beconstexpr
if the compiler supports it, even prior to C++20.OVCC-1512: The bit operations library (carb/Bit.h) will fall back to C++20 definitions (i.e. from
) if C++20 is available. OM-116009: flush prints to
stdout
after loading the extensions.
Fixed#
OVCC-1510: carb.input.plugin: Fixed a regression with hashability of device types.
OVCC-1511: Fixed compilation issues when built with TSAN (
-fsanitize=thread
) on newer versions of GCC.OVCC-1512: Fixed compilation issues when building with older versions of MSVC 2017.
OM-122114: Updated omni.bind testing dependencies.
OVCC-1494: Linux: Logging to an ANSI console now issues an explicit reset to fix issues with text coloring.
165.0#
Added#
OM-120782: omni.ext: add deprecation warning param for extensions
OM-120782: omni.ext: make deprecation warning a developer-only warning
OVCC-1428: Carbonite now packages tools/premake-deps.lua–a library of Premake functions to build with various Carbonite dependencies.
Changed#
OM-120985: updated to zlib 1.3.1
OM-120985: omni.telemetry.transmitter: updated to zlib 1.3.1 and libcurl v8.6.0 to get a fix for CVE-2024-0853
Fixed#
OM-120831: Fix CARB_PROFILE_FRAME crash on Kit shutdown (emitting event after Tracy shutdown)
OVCC-1502: Carbonite headers should now compile under C++20.
OVCC-1500: carb.tasking.plugin: Fixed a rare race that could manifest when very short tasks return a value via a
Future
.OM-120313: carb.crashreporter-breakpad.plugin: launched the user story GUI child process with its working directory set to the location that the parent (ie: crashing) process loaded its own carb.dll/libcarb.so library from. This allows the child process to find the carb module on startup since it is a static dependency of the tool.
OMPRW-707: cache more acquire interface calls for omni.kit.app and omni.ext
OM-120581: carb.crashreporter-breakpad.plugin: added some thread safety fixes around accessing the metadata and file tables in the crash reporter and improved some logging output around the crash report upload.
OVCC-1499: carb.input Python bindings: Fixed an issue with
get_modifier_flags
andget_global_modifier_flags
that would not properly distinguish between empty arrays andNone
. Also added several functions that were available in thecarb::input::IInput
API but not available in the Python bindings.OVCC-1493: omni.app.plugin:
/app/fastShutdown
will no longer hijack the exit code.OM-120581: Build: took initial steps to get Carbonite building with the GCC 11 toolchain.
fixed an issue in
omni.bind
that hardcoded the paths to the include folders for GCC 7.fixed some new warning that have shown up with GCC 11.
fixed a change in the
cpuid.h
header under GCC 11’s headers that added a__cpuidex()
function. This conflicted with a version that was explicitly implemented inomni.platforminfo.plugin
.fixed some deprecations in GCC 11’s libraries.
called
__gcov_dump()
instead of__gcov_flush()
since the latter has been both deprecated and removed in GCC 11.added passthrough replacements for the
__*_finite()
math functions since they were removed in a more recent GCC/glibc. This could also be fixed later by rebuildingforgeaudio
under a newer GCC version as well.
164.0#
Added#
OVCC-1488: Added
carb::this_thread::spinTryWaitWithBackoff()
, similar tospinWaitWithBackoff()
but will give up in high contention cases, informing the caller that waiting in the kernel is likely a good idea.OVCC-1492: carb.scripting-python.plugin and Python bindings: Added support for Python 3.11.
Changed#
OM-119706: omni.telemetry.transmitter: improved some logging in the telemetry transmitter.
OM-119706: omni.telemetry.transmitter: changed the default transmission limits for each event processing protocol to match the limits for each default endpoint.
OVCC-1441: framework: changed the
carb::StartupFrameworkDesc
struct to include acarb::PluginLoadingDesc
member. This allows apps to programmatically control which plugins are loaded during framework init instead of having to specify it either on the command line or in the ‘/PluginsToLoad’ setting in a config file for the app.OVCC-1492: pybind11 for Python 3.8+ has been upgraded to 2.11. Debug builds will throw exceptions in cases where the GIL is not held when it should be.
Fixed#
OVCC-1491: Linux: Improved
carb::this_thread::getId()
performance by about 97% in most cases.OVCC-1488: aarch64: Fixed a potential rare hang that could occur in the futex system, affecting all synchronization primitives. As a result of the fix, aarch64 futex operations are much faster, with a contended test executing nearly 90% faster.
OVCC-1488: Linux: Improved
carb::thread::mutex
andcarb::thread::recursive_mutex
substantially by fixing a performance regression: in the contended case they are ~98% faster executing in a mere 2% of the previous time. In contended tests they are about ~54% faster thanstd::mutex
andstd::recursive_mutex
, respectively.OM-119240: omni.ext: Fix non-deterministic import order when using fast_importer
OVCC-1473: Windows: Console applications will no longer hang or crash when CTRL+C is pressed to end the application. Note: Applications that desire different CTRL+C behavior should install their own handler after initializing the Carbonite framework.
OVCC-1478: carb.tasking with omni.job: Fixed a rare hang that could occur when calling
ITasking::reloadFiberEvents()
.OM-119706: omni.telemetry.transmitter: reworked the transmitter’s retry policy for failed endpoints. A failed transmission will now be retried a configurable number of times before removing the endpoint for the session. This fixes a potential situation where the transmitter could effectively hang under certain configurations.
OM-87381: Fixed issues where carb.crashreporter-breakpad would crash inside the crash handler when
NtCreateThreadEx
was used to inject a thread to crash the process.
163.0#
Added#
OVCC-1480: kit-kernel: added the
OMNI_ENABLE_CRASHREPORTER_ON_FAST_SHUTDOWN
environment variable to allow the crash reporter to remain enabled during a fast shutdown in Kit. Set this environment variable to1
to keep the crash reporter enabled. Set to any other value to use the default behavior of disabling the crash reporter during a fast shutdown. If the environment variable is not present, the default behavior is to leave the crash reporter enabled when running under TeamCity or GitLab, and to disable it on fast shutdown otherwise.OVCC-1295: Added documentation for
carb::tokens::ITokens
and Python bindings.
Changed#
OM-111557: Reworked Python exceptions handling to call
sys.excepthook
instead of just loggingOVCC-1481: carb.tasking: Implemented an optimization that can execute tasks within a
TaskGroup
orCounter
when waiting on theTaskGroup
orCounter
, which allows tasks to resolve quicker. Improves performance of the ‘skynet:TaskGroup’ test by about 28% on Windows and makes it runnable on Linux.
Fixed#
OVCC-1474: Fixed a rare crash that could occur in carb.tasking.
OVCC-1475: Fixed a hang in carb.crashreporter-breakpad if a crash occurred in the logging system.
OVCC-1476: Linux: Reduced calls to
getenv()
as it cannot be called safely if any other thread may also be performing any change to the environment due to deficiencies in GLIBC.OVCC-1474: Fixed a rare crash that could occur in carb.tasking in certain
applyRange
subtasks.OVCC-1478: Fixed a rare crash that could occur in carb.tasking if the main thread calls
executeMainTasks
and happens to context switch while another thread is callingreloadFiberEvents
.OVCC-1486 / OM-118579: carb.profiler:
g_carbProfiler
is now atomic and many of the macros in include/carb/profiler/Profile.h were cleaned up to prevent cases where the variable could be set tonullptr
between testing and calling.
162.0#
Added#
OVCC-1434: Added
carb::tasking::Delegate<>
, which is the same ascarb::delegate::Delegate<>
, but is tasking-aware.OVCC-411: Added
omni::vector<>
, an ABI-safe implementation ofstd::vector<>
. This class adheres to the C++ standard vector excepting thatAllocator
is not a template parameter;omni::vector<>
always usescarb::Allocator<>
, which uses Carbonite’scarb::allocate
andcarb::deallocate
functions (and require carb.dll or libcarb.so).OVCC-1467: omni.telemetry.transmitter: output the transmitter version and log file location(s) to its log during startup.
Changed#
OM-117489: omni.ext.plugin: target.kit now takes kit patch part of the version into account too.
OVCC-1352: carb.tasking has received various performance improvements:
applyRange
/parallelFor
are significantly faster; the skynet test runs 21x faster on Windows and 7x faster on Linux due to algorithmic changes. The new algorithm is better able to sense system overload and adapt.Waking threads has been found to take about 10 µs (microseconds) on Linux and 50 µs on Windows, which is very slow. The changes try to lessen the impact of waking threads by preferring deferred wake (chain reaction) and keeping threads active while the system has work available.
Algorithms and task queues have changed to utilize multiple lanes to reduce contention.
Pinning, while still not recommended, is much more efficient and will no longer log warnings.
omni.kit.app, omni.ext: Replace most std map/set containers with carb RH version.
OVCC-1054: carb.tokens: Warning/error logs will now include the entire token stack with the issue. Token names and values longer than 256 characters will be truncated.
OVCC-1440: Windows: The omni.kit.app / kit.exe CTRL+C behavior now matches Linux: a quit is posted to the app and it will shutdown gracefully on the next frame.
OVCC-1470:
carb::container::LocklessStack
uses a common algorithm between Windows and Linux and is once again lock- free on Linux. All operations on Linux are now ~99% faster in the uncontended case and ~95% faster in the contended case. Windows operations are ~20% faster in the uncontended case and ~10% faster in the contended case.OVCC-1468: On Windows, Carbonite executables and libraries now implement Control Flow Guard excepting carb.tasking.plugin for performance concerns.
OM-118678: omni.telemetry.transmitter: updated to libcurl v8.5.0 to get a fix for CVE-2023-46218.
Fixed#
OVCC-1235: Linux/GCC: Warnings in public includes from
-Wconversion
and-Wno-float-conversion
have been fixed.OVCC-1352: Fixed issues with
CARB_PROFILE_BEGIN
andCARB_PROFILE_END
not respecting profiler channels properly.OVCC-1464/OVCC-1420: Further fix to a deadlock that could occur if Python bindings are loaded simultaneously with Carbonite plugins in separate threads. This resolves on old versions of GLIBC that have problems with internal locking and are in use on CentOS7 (i.e. GLIBC 2.17).
OM-108121: Fixed test for keyboard-modifier-down transitioning after up.
OM-118059: omni.telemetry.transmitter: fixed a bug that prevented the transmitter from automatically pulling down the latest schema ID for use on the non-OVE open endpoint.
OVCC-1069: Fixed carb.dictionary python bindings does not handle bool correctly.
OVCC-1450: Improved tracy profiler backtracing performance and fixed symbol resolution for dynamically loaded shared libraries on linux.
OVCC-1469: Fixed a race condition that could lead to a hang when carb.tasking was used with omni.job as the underlying thread pool.
161.0#
Added#
OVCC-1431: For Linux x86-64, Carbonite now publishes
carb_sdk+tsan
andcarb_sdk+plugins+tsan
packages that have Thread Sanitizer enabled (-fsanitize=thread
), allowing those modules to report to Thread Sanitizer. Suppressions are located in the include/tsan-suppressions.txt file.
Changed#
OM-114023: omni.kit.app: Rework
--vulkan
, addapp/vulkan
setting to control Vulkan
Fixed#
OVCC-1164: Fixed ScratchBuffer move and copy constructors to correctly initialize data.
OVCC-1444: omni.ext.plugin: fix ext linking bug when using non-English OS language on Windows
OVCC-1420: Fixed a deadlock that could occur if Python bindings are loaded simultaneously with Carbonite plugins in separate threads.
OVCC-1427: Log consumers and Loggers will no longer be called recursively. If a Logger does something that would recursively log, other Loggers will still receive the log message but the offending Logger will be ignored.
OVCC-1427: Logs that occur on a thread with either the Framework or PluginManager (OVCC-948) mutexes locked are now deferred until both of these mutexes are unlocked to prevent unsafe recursive calling into the Framework.
160.0#
Added#
OM-113541: Linux: omni.kit.app.gcov.plugin was added and kit-gcov uses this to ensure that the fast shutdown code path also calls
__gcov_flush
.OVCC-1438: Added
runningInContainer
crash metadata, indicating if the process is running inside a container.OVCC-1438: Added
runningInContainer
crash metadata, indicating if the process is running inside a containerOVCC-1263: omni.kit.app.plugin: added the
OMNI_TRACK_SETTINGS
environment variable to allow all changes to a given list of settings to be reported as warning messages. If a debugger is attached, a sofware breakpoint will also be triggered for each change to the tracked setting. Multiple settings may be monitored by separating their paths with a comma (‘,’), pipe (‘|’), colon (‘:’), or semicolon (‘;’),
Fixed#
OVCC-1432: carb.dictionary.plugin: Added a missing mutex in subscribeToNodeChangeEventsImpl that otherwise led to data corruption
OVCC-1397: carb.input.plugin: Fixed an issue from 159.0 that caused action mapping hooks to not work properly.
OM-115009: Fixed carbReallocate not freeing memory when using mimalloc.
OVCC-1436: Fixed missing quotes for Windows in omni.structuredlog.lua.
OVCC-1442: carb.crashreporter-breakpad.plugin: prevented upload retry attempts for crash reports that previously failed with most 4xx HTTP status codes. These crash report files will remain on disk locally but will never attempt to be uploaded again. The user can attempt to modify the crash report’s metadata manually to allow it to be tried again, or they can delete the report.
OVCC-1442: carb.crashreporter-breakpad.plugin: fixed an issue that could cause the crash reporter to become disabled if its interface was acquired early on Kit startup but the settings registry wasn’t present yet.
159.0#
Added#
OVCC-1209: omni.platforminfo.plugin: added a function to
omni::platforminfo::IOsInfo2
to retrieve a machine ID that can be used as an anonymous user ID in telemetry.OVCC-1209: set the structured logging user ID to an anonymous machine ID if
/structuredLog/anonymousUserIdMode
is set to “machine”.OMFP-3389: kit-kernel: scanned the command line on startup for extension and integration test commands. When found, kit puts omni.structuredlog.plugin into ‘test’ mode automatically so that structured log events generated during test runs do not interfere with production telemetry analysis.
OVCC-1415: carb.crashreporter-breakpad.plugin: added a check for the
CARB_DISABLE_ABORT_HANDLER
environment variable before installing the SIGABRT handler on Windows for plugins and executables that are statically linked to the Windows CRT. If this environment variable is set to “1”, the SIGABRT handler will not be installed. If it is undefined or set to any other value, the SIGABRT handler will be installed by default. This is a temporary workaround to allow the Nsight debugger to still work with newer Omniverse apps that include this Carbonite functionality.OVCC-1422: carb.crashreporter-breakpad.plugin: added a check for the
OMNI_CRASHREPORTER_CRASHREPORTBASEURL
environment variable to override the ‘/crashreporter/crashReportBaseUrl’ setting.OVCC-1286: Fix a bug where omni.structuredlog would generate a pure python module with invalid
send_event()
functions when the event properties had characters other than[a-zA-Z_]
.OM-113393: [omni.ext.plugin] package yanking support
OVCC-1414: Added additional Python binding documentation.
OVCC-1411: The environment variable
CARB_USE_SYSTEM_ALLOC
, if defined and set to a value other than0
at the time of the first request, will causecarb::allocate
,carb::deallocate
andcarb::reallocate
to use the system default heap instead of using Mimalloc.OVCC-1418: carb.crashreproter-breakpad.plugin: added the
/crashreporter/metadataToEmit
setting. This is expected to be an array of regular expression strings that identify the names of crash metadata values that should also be emitted as telemetry events any time they are modified. A single event will be emitted when any metadata value is added or modified. If the metadata is set again to its current value, no event will be emitted.OM-114420: omni.ext.plugin: add support for filter:setting to be able to change extension dependencies based on setting
OM-113920: omni.ext.plugin: updated packman link code to sync closely with changes in packman 7.10.1 which fixes issues creating symbolic links / junctions.
OM-114145: omni.ext.plugin add support for different version ranges (~, >, <, =, ^ operators)
OVCC-1358: Try to allow structuredlog.sh/structuredlog.bat to find packman from the CWD.
OVCC-1358: Add
repo structuredlog
to launch structuredlog from repo tools. This avoids issues around having structuredlog find packman and other resources.
Changed#
OVCC-1204: POSSIBLY BREAKING CHANGE Now that Packman 7.10 can support aliases through the
<filter ... as="" />
tag, the previous change for CC-1204 has been undone and Carbonite’s target-deps.packman.xml chain no longer includes apython
dependency. All Python dependencies are now tagged with their version, such aspython-3.10
.OVCC-1368:
Framework::releaseInterface
will now allow plugins to unload that are only referenced by themselves.OVCC-1397: carb.input.plugin has been made thread-safe. The
IInput
interface and associatedcarb::input
namespace have also been documented.
Fixed#
OVCC-1407: Python: Fixed an issue where creating a carb.dictionary with an empty value (i.e.
{ "payload": {} }
) would produce an empty dictionary (without the"payload"
).OMFP-3353: omni.ext.plugin: Fix core.reloadable=False not propagating correctly to all dependencies
OVCC-1368:
carb::getCachedInterface
will work properly if a plugin restarts even if a module fails to unload.OMFP-3389: kit-kernel: fixed the ‘normal’ shutdown path for kit so that it properly shuts down omni.structuredlog.plugin. Previously this path was force unloading the plugin without notifying it of the unload.
OM-113843: carb.crashreporter-breakpad.plugin: fixed an issue with the recent crash reporter changes that caused the Nsight system profiler to stop working with Carbonite based apps on Windows. The issue was tracked down to the new SIGABRT handler using a
thread_local
global variable.OVCC-1423: omni.bind now correctly produces a Python binding to
__init__()
that allows for casting between interfaces.OVCC-1416: fix temp folder not being removed on fast shutdown
OVCC-1380: Linux: Fixes a crash that can occur when carb.crashreporter-breakpad.plugin is shut down when running on older versions of GLIBC, such as on CentOS-7.
OVCC-1371: include/carb/thread/RecursiveSharedMutex.h: Fix compilation error if
CARB_ASSERT_ENABLED
was forced on.
158.0#
Added#
OVCC-1254: carb.settings.plugin: Added
carb::settings::ScopedWrite
andcarb::settings::ScopedRead
RAII lock classes.OVCC-1408: Added include/carb/time/Util.h which has platform-independent versions of time utility functions
asctime_r()
,ctime_r()
,gmtime_r()
andlocaltime_r()
.OMFP-901: Linux: kit-gcov was added. This is a kit binary that is compiled with gcov support and calls
__gcov_flush()
before exiting. This can be used for downstream projects that want to collect code coverage information.
Changed#
Fixed#
OMFP-2683: Upgrade Python packages to fix BDSA-2022-3544 (CVE-2022-46908)
OVCC-1406: Fixed the handling of assertion failures so they can now generate a crash report if not ignored by the user (in debug builds on Windows). This allows the process lifetime ‘crash’ structured logging event to still be emitted in cases of an assertion failure.
OVCC-1254: carb.settings.plugin: Documented
ISettings
and fixed some thread safety issues.OVCC-1408: Linux: locations that were using non-thread-safe
gmtime()
andlocaltime()
have been changed to usegmtime_r()
andlocaltime_r()
respectively. The biggest issue was logging timestamps, but it also affected carb.crashreporter-breakpad.plugin timestamps and carb.profiler-cpu.plugin file names.OVCC-1410: carb.tasking.plugin: Fixed a very rare case where
ITasking::addSubTask
would never return.OVCC-1399: Windows: Fixed an issue where
_exit()
was attempting to shutdown the Carbonite Framework even though atexit callbacks were not run. NOTE: This solution requires Carbonite executables to either dynamically link the CRT, or to start the framework from the executable with eithercarb::acquireFrameworkAndRegisterBuiltins()
,OMNI_CORE_START()
orOMNI_CORE_INIT()
.
157.0#
Added#
carb.profiler-tracy.plugin:
Added tracy profiler plugin option
/plugins/carb.profiler-tracy.plugin/memoryTraceStackCaptureDepth
to capture callstacks on memory event operations in order to benefit from tracy views where it uses callstack info for grouping [defaults to 0].Added tracy profiler plugin option
/plugins/carb.profiler-tracy.plugin/instantEventsAsMessages
to inject “instant” events via tracy profiler messages instead of the current “fake zones” [defaults to false].Added tracy profiler plugin option
/plugins/carb.profiler-tracy.plugin/skipEventsOnShutdown
to skip injecting profile events after tracy plugin shutdown has been requested [default to false].
Changed#
Fixed#
OVCC-1392: Logging performance with
/log/async
on has been greatly improved.OVCC-1393: Fixed an issue where
/log/async
on at shutdown could cause the last few log messages to be skipped.OMFP-2562: omni.telemetry.transmitter: updated to
libcurl
version 8.4.0 andopenssl
version 3.0.11 to address CVE-2023-38545.OMFP-1262: Fix for passing nullptr as text when setting clipboard crashes on Linux.
OM-112381: omni.ext.plugin: Fix exact=true to match exactly one version
OMFP-2353 / OMFP-2356: omni.kit.app: (Linux only) Fixed a crash that could occur sometimes when
SIGTERM
orSIGINT
(CTRL+C) was received.OVCC-1315: Visual Studio: Fix compilation warning 4668 on include/carb/Defines.h.
OVCC-1371: include/carb/thread/SharedMutex.h: Fix compilation error if
CARB_ASSERT_ENABLED
was forced on.OVCC-1398 / OMFP-2908: carb.crashreporter-breakpad.plugin: Heap usage and
fork()
can cause hanging inside the crash handler. These have been eliminated in the crash handler.
156.0#
Added#
OVCC-1372: Added a
carb::logging::StandardLogger2
sub-interface that is accessible fromcarb::logging::ILogging
. This interface has functions that can be used to override the log level for the current thread only.OVCC-1372: Added
carb::logging::ScopedLevelThreadOverride
, a RAII class that can be used to override the log level for a givenStandardLogger2
while in scope.OVCC-1325: carb.events.plugin:
carb::IEvent
now hasattachObject()
andretrieveObject()
functions that can be used to attach descendants ofcarb::IObject
to an event.OMFP-1450: omni.telemetry.transmitter: added support to the transmitter to pull down the latest Kratos schema IDs for use on open endpoints. The transmitter now attempts to download the latest schema IDs file from the same base URLs as the schemas packages are downloaded from. It then reads the appropriate schema ID for the current run environment and replaces the value of the given extra field automatically. This allows the transmitter to automatically add the extra field to each message that Kratos requires on open endpoints instead of requiring each kit session to manually add it.
Changed#
OVCC-1369: carb.crashreporter-breakpad.plugin now has a companion tool called crashreport.gui. If shipped along with carb.crashreporter-breakpad.plugin, it will be invoked in the event of a crash for the user to provide a story of what they were doing when the crash occurred.
OVCC-1372: BREAKING CHANGE
carb::logging::StandardLogger
is deprecated;carb::logging::StandardLogger2
inherits all of its functionality as a pure virtual interface. The oldILogging::getDefaultLogger()
,ILogging::createStandardLogger()
andILogging::destroyStandardLogger()
functions have gained anOld
suffix, breaking the API, but not the ABI. The newILogging::getDefaultLogger()
andILogging::createStandardLogger()
functions work withStandardLogger2
.StandardLogger2
is ref-counted and can be destroyed withrelease()
.BREAKING CHANGE The
carb::logging::ScopedFilePause
class has moved to carb/logging/LoggingUtils.h.
Fixed#
OVCC-1373: Code that uses carb/profile/Profile.h macros will now compile if profiling is disabled at compile time by setting
CARB_PROFILING=0
.OVCC-1379: carb.crashreporter-breakpad.plugin: fixed the abort/termination handlers for all plugins that are statically linked to the Windows CRT.
OVCC-1381: carb.events.plugin: Fixed slow
IEventStream
and subscription creation times when a name is not provided. The generated name will be very simple unless/plugins/carb.events.plugin/nameFromCaller
setting key istrue
, in which case symbol lookup will take place to determine a more descriptive generated name.OVCC-1367: omni.structuredlog.plugin: fixed how the early
privacy.toml
fields are loaded to avoid a bad user ID from being used. When the user ID value in theprivacy.toml
file is present and points to a non-existent environment variable, this would previously incorrectly insert the full$env{}
tag as the user name. This fixes that behavior so that even the early loading of the file handles resolving environment variables too.OM-111167: fix an explicit python3.dll load from python
OMFP-1450: omni.bind: fixed a crash in the
omni.bind
tool due to a diff of C++ code being passed tof""
while writing out an error message for a--fail-on-write
failure.OMFP-1977: Fixed a performance regression on Windows with logging.
OVCC-1387: omni.structuredlog.plugin: fixed some bad early loading of consent settings in standalone mode. This does not effect Kit or Carbonite based uses of structured logging however since the consent settings are loaded again through
ISettings
later during startup.
155.0#
Added#
OM-101243: carb.crashreporter-breakpad.plugin: added a helper tool called
hang.crasher
for Windows that is used to intentionally crash a Carbonite based app that has hung. This is intended to be used in CI/CD with unit test child processes that run beyond their expected timeout.OVCC-1363: Adds type hints for omni.bind python code
OVCC-1166: omni.bind’s input/output filenames now correctly resolve
%{cfg.buildcfg}
and%{config}
in premake5.lua.OVCC-1364: omni.telemetry.transmitter: added support to the telemetry transmitter to add specific extra fields to each message instead of having to add them only at the time each message is produced. The ‘/telemetry/extraFieldsToAdd’ setting controls which extra fields from ‘/structuredLog/extraFields/’ will be added to each message. The ‘/telemetry/replaceExtraFields’ setting controls whether any existing extra fields will be replaced with the new values (true) or just be left as-is (false).
OMFP-583: omni.crashreporter-breakpad.plugin: added the crash report metadata file to compressed crash report files.
OM-108908: carb.windowing: Exposed monitor functions to python.
OM-108791: Added support for default values for arguments passed through ONI / omni.bind
Changed#
OVCC-1375: cleaned up
omni.bind.util.Lazy
; replaced with python’sfunctools.cache
OVCC-1377: Tweaked
CARB_HARDWARE_PAUSE()
to be more correct on x86_64 with non-Microsoft compilers, and aarch64.
Fixed#
OVCC-1374: A built-in plugin that was released before the framework was shutdown could cause a crash during framework shutdown.
OVCC-1376: An assertion could happen in debug builds if
Framework::tryAcquireInterfaceFromLibrary
orFramework::loadPlugin
was called prior toIFileSystem
being instantiated. This would only happen in certain “lightweight” instantiations of the Carbonite framework asOMNI_CORE_START()
oracquireFrameworkAndRegisterBuiltins()
would not exhibit this problem.OM-109545: fix omni::ext::getExtensionPath not to crash when can’t find an extension
154.0#
Added#
OVATUEQI-35: Adds functionality to enable extra security checks when opening an archive based on the trust level of the registry from where the extension originates. By default, registries are trusted.
OM-101243: carb.crashreporter-breakpad.plugin: added a helper tool called
hang.crasher
for Windows that is used to intentionally crash a Carbonite based app that has hung. This is intended to be used in CI/CD with unit test child processes that run beyond their expected timeout.OVCC-1363: Adds type hints for omni.bind python code
OVCC-1166: omni.bind’s input/output filenames now correctly resolve
%{cfg.buildcfg}
and%{config}
in premake5.lua.OM-108121: carb.input.plugin: API to query modifier state of input devices.
Changed#
OM-108121: carb.input.plugin: Added ability to query number of keys pressed.
OVCC-1347:
carb::cpp::countl_one()
andcarb::cpp::countr_one()
have been implemented as C++14-compatible equivalents tostd::countl_one()
andstd::countr_one()
respectively.OVCC-1347: All non-
constexpr
functions in the carb/cpp/Bit.h library now haveconstexpr
extensions with a_constexpr
suffix. Within thecarb::cpp
namespace the new functions are:popcount_constexpr
,countl_zero_constexpr
,countr_zero_constexpr
,countl_one_constexpr
, andcountr_one_constexpr
.OVCC-1347: Added
carb::UseCarbAllocatorAligned
, which allows overridingnew
anddelete
on a per-class basis while specifying an overriding alignment.OVCC-1340: Linux/Mac: Futex performance was further improved, especially contended wake-up situations where no waiters are present.
OVCC-1347: Added
carb::thread::AtomicBackoff
, a helper class for providing a back-off in spin-wait loops.OVCC-1347:
carb::Allocator<>
now has an optionalAlign
parameter that is used as an alignment hint.OVCC-1347: Several minor performance improvements for carb.tasking.plugin:
The futex system has received the same improvements from OVCC-1340.
Spurious wake-ups of co-routines and threads that wait on tasking objects have been eliminated.
Allocations are cacheline-aligned to reduce false-sharing.
Linux: Thread IDs are now cached as the syscall to obtain them was very slow.
Linux: Handle slab allocations are now larger to reduce the total number of slow
mmap
syscalls.
Fixed#
OM-99583: bump python to 3.10.13+nv2 (CVE)
153.0#
Added#
OM-93636: added documentation on how to configure an app in a container to support telemetry.
OVCC-1344: Adds
IWeakObject
andWeakPtr
. Interfaces implementingIWeakObject
will support non-owning references.WeakPtr
is similar in functionality tostd::weak_ptr
. Implementations are encouraged to useImplementsWeak
to add support for weak pointers in their implementations. Consumers of weak pointers must add the following to their premake5.lua projects to enable weak pointer support on OSX:filter { "system:macosx" } linkoptions { "-Wl,-U,_omniWeakObjectGetOrCreateControlBlock" } linkoptions { "-Wl,-U,_omniWeakObjectControlBlockOp" }
OVCC-1350: string_view: Add std::string to carb::string_view implicit conversion
Changed#
OVCC-1340: Linux/Mac: Futex performance was improved, which has a knock-on effect for all synchronization primitives. Four-byte futexes now use the ParkingLot as opposed going directly to the system futex, which saves ~97% on no-op cases. Waking 8 threads has improved about 55%, and the threads wake about 20% faster due to less contention.
OVCC-1340:
carb::thread::futex
: thewake
,wake_one
andwake_all
functions are deprecated in favor of respective replacement functions:notify
,notify_one
andnotify_all
. These new names better match the standard and are more distinct from “wait”.OVCC-1341:
carb::allocate
,carb::deallocate
andcarb::reallocate
are now based on Microsoft’s Mimalloc allocator for improved performance, especially in multi-threaded contentious environments. Most allocations in carb.tasking have switched to using these allocation functions for performance, as well as carb.dictionary.plugin and carb.events.plugin. On Windows, single-threaded alloc/dealloc is 54% faster; contended alloc/dealloc is 219% faster. On Linux (GLIBC 2.35), single-threaded alloc/dealloc is 23% faster; contended alloc/dealloc is 864% faster.OVCC-1348: Fixed a performance regression in Linux carb.profiler-cpu.plugin.
OVCC-1355: carb.crashreporter-breakpad.plugin: Python tracebacks are now reported with full filenames.
Fixed#
OM-106256: fix supported targets check on registry 2.0
OM-100519: [omni.ext.plugin] fix crash on shutdown when extension was removed
OM-106907: fix not all ext summaries are included in registry v2
152.0#
Added#
OVCC-1284: omni.structuredlog.plugin: added an interface to allow extra fields to be added to each structured log message. Extra fields may be provided programmatically with the omni::structuredlog::IStructuredLogExtraFields interface or by adding a key/value pair to the ‘/structuredLog/extraFields/’ settings branch on framework startup.
OVCC-1323: carb.crashreporter-breakpad.plugin: improved some logging and metadata from the crash reporter. This includes:
printed an info message indicating that the crash reporter successfully started up.
printed info messages any time the crash reporter or upload setting is toggled.
renamed some existing CI metadata keys to be more clear what they are collecting.
added several more GitLab and TC specific metadata values.
added a metadata value that indicates whether TC or GitLab is being used to run the crashing job.
tried to collect the app name and version from multiple settings.
added a GMT timestamp indicating when the crash occurred.
OM-93636: omni.telemetry.transmitter: added a new message processing protocol (called ‘defaultWithList’) to the telemetry transmitter. This will batch up events in a JSON array and deliver them to the endpoint as a JSON batch object.
OVCC-1320: Added carb/time/TscClock.h, a CPU time-stamp counter sampling “clock” for super-high-performance profiling and timing purposes.
OVCC-1320: Added carb/cpp/Numeric.h with an implementation of
std::gcd
:carb::cpp::gcd
.OVCC-1320:
HandleDatabase
has changed to using aLocklessQueue
for free-list instead ofLocklessStack
as this proved to perform better due to less contention, especially on Linux.OVCC-1343: Added
hash
field tocarb::datasource::ItemInfo
Changed#
OVCC-1316: unified the parsing of the command line options in kit-kernel so that parameters for other options are parsed consistently in all cases. All options now support providing their parameter either after an equals sign in the same command line argument or in the following argument.
OM-93335: omni.kit.app revert “python” token change to include python version in the path
OVCC-1324/OM-96947: The carb.tasking setting
debugTaskBacktrace
is now off by default in release builds.OVCC-1320: Greatly improved carb.tasking handle allocation speeds. Created a Fibers-vs-Threads document with history and current performance times. The maximum number of fibers was increased to support the new “skynet” benchmark unit test.
Fixed#
OVCC-1294: Fixed a performance issue with using omni.log from Python
OVCC-1313: Fixed a crash fix that could occur with
carb::settings::appendToStringArray()
OVCC-1310: carb.crashreporter-breakpad.plugin: Fixed an issue where a deadlock could occur when a crash occurred.
OM-103625: omni.ext extensions packing does not preserve file symlinks on linux
OVCC-1318: carb.crashreporter-breakpad.plugin: Fixed an issue where a crash in multiple threads simultaneously would likely cause the process to exit without writing crash information.
OVCC-1298: Worked around issues with
carb::thread::recursive_shared_mutex
when used with Link-Time Code GenerationOM-100518: Load and Release hooks that are not unregistered when a module is unloaded will now log an error instead of causing a crash when called. Note that this is a workaround in attempt to diagnose libraries that are not unregistering Load and Release hooks.
151.0#
Added#
omni.ext.plugin: add support for the registry v2 with incremental index loading
OVCC-414: Adds
omni::expected<T, E>
andomni::unexpected<E>
class templates, which are ABI-stable implementations of theirstd
counterparts. These monads are useful in representing potential error conditions when exceptions are not desired or not enabled. The API for these types is compatible with thestd
version, with a few minor changes:error_type
for both class templates is allowed to bevoid
to match parity with other languages with result monads (e.g.: Rust allowsResult<T, ()>
)The
omni
implementation is lessconstexpr
-friendly that thestd
implementation, mainly due to requiring C++14 compatibility.Cases where the C++ Standard leaves things as implementation-defined will generally result in program termination (e.g.: calling
expected.error()
whenexpected.has_value()
will hit an assertion).
OVCC-1301, OVCC-1303, OVCC-1306: Created gdb pretty-printers for
carb::extras::HandleDatabase
,carb::RString
and several carb.tasking types. Additionally commands were created fortask list
(lists all carb.tasking tasks),task bt <task>
(gives the current backtrace of a carb.tasking task), etc.
Changed#
OVCC-414: Changes the C++17 utility type backports (e.g.:
carb::cpp17::in_place_t
) to alias theirstd
counterparts when C++17 is enabled instead of being distinct types. This has the potential to break APIs where there is an overload for both thecarb
andstd
versions, which can be fixed by deleting one of them. Keep thecarb::cpp17
overload if you need support for pre-C++17; keep thestd
overload if you only support C++17 and beyond.OVCC-1293:
omni.structuredlog
: changed theomni.structuredlog
tool to include the event name in generated struct and enum names. This allows the same field name for an object to be used across multiple events within a schema.OVCC-1264: The
carb::cpp17
andcarb::cpp20
namespaces have been merged intocarb::cpp
. Likewise, the carb/cpp17 and carb/cpp20 include directories have been merged into carb/cpp. For backwards compatibility, the previous carb/cpp17 and carb/cpp20 directories have files (marked as deprecated) that pull thecarb::cpp
symbols into their respective namespaces (carb::cpp17
orcarb::cpp20
).OVCC-1311:
carb::extras::HandleDatabase::makeScopedRef
(theconst
variant) now returns aConstHandleRef
which can only be used for const access to mapped items.
Fixed#
OVCC-1288: Carbonite uses a new
doctest
package that fixes a build issue on glibc 2.34+ whereSIGSTKSZ
is not a constant.OVCC-1311: Fixed a compilation error in
carb::extras::HandleDatabase::makeScopedRef
(theconst
variant).OVCC-1166: omni.bind’s include paths now correctly resolve
%{cfg.buildcfg}
in premake5.lua.
150.0#
Added#
OVCC-1281: Add
OMNI_ATTR("nodiscard")
to omni.bind.OM-99352: omni.structuredlog.plugin: added the
/structuredLog/emitPayloadOnly
setting to allow the structured logging system to skip adding the CloudEvents wrapper to each event on output. This is useful for apps that want to use the structured logging system for a purpose other than telemetry and allows the schema for each event to be directly used for full validation of each event instead of just defining the layout of the “data” field.add
omni.ext.get_all_sys_paths
andomni.ext.get_fast_importer_sys_paths
to get all sys paths and fast importer sys paths respectively.omni.ext.plugin: log when extensions are requested to be enabled or disabled.
OM-96953: omni.ext.plugin: the Kit-kernel extension manager now outputs structured log events any time an extension is loaded or shutdown. The extension’s name and ID are included in both events. On the extension startup event, the startup time in milliseconds is also included.
Changed#
OM-97668: omni.ext.plugin: FS watcher will now ignore changes
extension.gen.toml
not to reload extensions when installing by parallel kit instances.OVCC-1186: omni.bind: out-of-date messages are no longer considered warnings.
OM-99926: omni.ext.plugin: defaulted the
/app/extensions/fsWatcherEnabled
setting tofalse
when running in a container. When running outside of a container this setting still defaults totrue
.OVCC-1273: carb.crashreporter-breakpad.plugin: removed the missing metadata check before uploading a batch of old crash reports and instead checked for missing metadata for each individual crash report before uploading. container. When running outside of a container this setting still defaults to
true
.OM-93335: Runtime-breaking change: renamed carb_scripting_project from “scripting-python-3.7m” to “scripting-python-3.7” Runtime python version is now determined by carb.scripting-python.plugin settings in kit-core.json python prebuild link is now named python-3.10, python-3.9, and python-3.7
Fixed#
OVCC-1268: Plugin startup functions
carbOnPluginStartup
andcarbOnPluginStartupEx
will no longer assert on debug builds when called from within a carb.tasking task and the calling thread changes.OVCC-1265: carb.filesystem: Opening a directory as a file will now behave consistently across all systems. It will fail and the
ErrorApi
will reportkResultFail
.OM-99795: omni.ext.plugin: fix if set_extension_enabled_immediate is called from python and parallelPullEnabled is enabled - app hangs.
OVCC-1285: carb.crashreporter-breakpad.plugin changes:
The python traceback file is now named
$crashid.py.txt
by default.Metadata is written out before gathering volatile metadata in case of a double-fault.
Attempts to upload previous crashes will now include all available files (such as python traceback files).
Failing to load metadata will produce
MetadataLoadFailed
metadata for the upload.
OVCC-1291: carb.tasking.plugin: Fixed a rare edge-case crash that was introduced by OVCC-1268.
149.0#
Added#
OM-93952: omni.kit.app: (Linux only) support for /app/preload, a key which can be used to relaunch with LD_PRELOAD prefixed with the value of this key.
OVCC-1258:
omni::string_view
is available as an alias forcarb::cpp17::string_view
, and related typedefs.OVCC-1261: carb.crashreporter-breakpad.plugin: Additional “PythonBacktraceStatus” metadata is now recorded for the status of gathering python backtrace during crashing.
OVCC-1200: carb.crashreporter-breakpad.plugin: added environment variables to override selected settings for the crash reporter. These are only intended to be used in debugging situation. The following environment variables have been added:
OMNI_CRASHREPORTER_URL
will override the value of the/crashreporter/url
setting.OMNI_CRASHREPORTER_ENABLED
will override the value of the/crashreporter/enabled
setting.OMNI_CRASHREPORTER_SKIPOLDDUMPUPLOAD
will override the value of the/crashreporter/skipOldDumpUpload
setting.OMNI_CRASHREPORTER_PRESERVEDUMP
will override the value of the/crashreporter/preserveDump
setting.OMNI_CRASHREPORTER_DEBUGGERATTACHTIMEOUTMS
will override the value of the/crashreporter/debuggerAttachTimeoutMs
setting.
OM-84354:
omni::extras::OmniConfig
has been added to replace omni-config-cpp. This new class has similar functionality but uses standard Carbonite utilities, which improves some things such as unicode support. This new class requires carb.dictionary.serializer-toml.plugin for full functionality, but it will work without the framework.OVCC-1277: omni.structuredlog.plugin: added the
/structuredLog/needLogHeaders
setting to control whether header JSON objects will be added to each written log file.OVCC-1279: omni.telemetry.transmitter: added support for accepting a
file:///
URI in the/telemetry/endpoint
and/telemetry/transmitter/<index>/endpoint
settings. This file URI can also point tofile:///dev/stdout
orfile:///dev/stderr
to write the output to stdout or stderr respectively. When a file URI is used as the endpoint, the event data will not be sent to another server but instead just written to a local log file. This is useful for cloud or farm setups where another log collecting system will be run to collect and aggregate data before sending elsewhere.
Changed#
OVCC-1258:
carb::cpp17::basic_string_view
and associated typedefs (i.e.string_view
) are now considered ABI- and Interop-safe and may be used across ABI boundaries. These classes have been checked against the C++ standard and improved with additions made up to C++23.
Fixed#
OVCC-1259:
carb::cpp20::span
(andomni::span
) now support limited ranges: that is, classes such asstd::vector
that have adata()
method and asize()
method (with other requirements–see documentation) can be used to construct aspan
.OM-96952: carb.profiler-cpu.plugin, carb.profiler-tracy.plugin and carb.profiler-nvtx.plugin will ignore floating-point value records of NaN and Infinity.
OVCC-1269: Fixed a bug in
omni::string
where certain operations (such as appending) that exceeded the small string optimization size would result in a string that was not null terminated.OVCC-1276: Fixed
omni::string
constructor andassign
which accept(pointer, size)
erroneously throwing when receiving(nullptr, 0)
. This is now legal.OM-95894: Added clipboard support for virtual windows.
148.0#
Added#
OVCC-1257: omni.bind: Support
externalincludedirs
.OVCC-1240: carb.crashreporter-breakpad.plugin: Added wide-string volatile metadata support.
OVCC-1248: omni.telemetry.transmitter: Added the crash reporter to the telemetry transmitter tool.
OVCC-68: Added
carb::extras::withFormatV()
andcarb::extras::withFormatNV()
which will format a string as bystd::vsnprintf()
and call a Callable with the formatted string (theN
variant also passes the length). This utility removes the need to allocate space on the stack or the heap to format the string as the function does it.OVCC-68: Added macros
CARB_FORMATTED
,CARB_FORMATTED_SIZE
,CARB_FORMATTED_N
andCARB_FORMATTED_N_SIZE
which initialize theva_list
machinery for a varargs function, and callcarb::extras::withFormatV()
orcarb::extras::withFormatNV()
(for theN
variants) to format the string.OM-95249: omni.kit.app.plugin Add a setting to clear user config extension version selections
OVCC-1255: Carbonite packages now include tools/gdb-syms/gdb-syms.py, a Python script that can be used with the GDB command
source /path/to/gdb-syms.py
which will attempt to download symbols from the Omniverse symbol server (http://symbols.ov.nvidia.com).OVCC-1250: carb.scripting-python.plugin is now available for Python 3.8 and 3.9, in addition to the previously available 3.7 and 3.10.
Changed#
OVCC-1241: removed the ‘/privacy/externalBuild’ setting from being able to override internal telemetry related behavior.
OVCC-1237: Updates Carbonite, omni.bind, and omni.structuredlog to Python 3.10.11.
OVCC-68: carb.profiler-tracy.plugin and carb.profiler-nvtx.plugin have been refactored to share more common code and to improve performance.
omni.ext.plugin: downgrade “Extension with the same id is already registered” to info level (was a warning)
OM-95781: omni.ext.plugin deprecate and cleanup stripping level support in the registry
Fixed#
OVCC-1251: Worked around slow extension unloading code in omni.ext.
OVCC-1242: carb.filesystem: (Windows only) Fixed an issue introduced in 147.0 where file timestamp calculations could vary between
getFileInfo()
,getFileModTime()
,getModTime()
and theDirectoryItemInfo
passed to the callback forforEachDirectoryItem()
.OVCC-1240: carb.crashreporter-breakpad.plugin: Fixed an issue that could cause a stack overflow on Linux while in the crash handler, resulting in lost crash information.
OVCC-1245: Fixed a compilation issue that could happen in some cases when omni/Function.h was included. Also fixed a few missing include guards.
OVCC-1247: carb.filesystem: (Windows only) Fixed an assertion failure that can occur if an enumerated file is deleted during the enumeration.
OVCC-1248: omni.telemetry.transmitter: disabled assertion dialogs in the telemetry transmitter.
147.0#
Added#
OVCC-1228: Added
CARB_ASSERT_INTEROP_SAFE
that checks types for trivially-copyable and standard layout which are required for interop safety.OVCC-1232: carb.crashreporter-breakpad.plugin: Added
/crashreporter/pythonTracebackArgs
(defaults todump --nonblocking --pid $pid
) that can be used to override options topy-spy
.OM-92726: Add OMNI_KIT_ALLOW_ROOT=1 env var as an alternative to –allow-root for kit executable
OVCC-1221: Added some helper functions to
carb::ErrorApi
.OVCC-1222: Added documentation around omni.kit.app, omni.ext.plugin and many other items in the
omni::kit
,omni::ext
andomni::extras
namespaces.
Changed#
OVCC-1222: POSSIBLY BREAKING CHANGE: Fixed a spelling error in the
prerelease
members of omni::ext::Version and omni::extras::SemanticVersion.OVCC-1221: carb.filesystem: Eliminated all info, warning and error logs. Instead, error states are set through
carb::ErrorApi
. Documentation indicates what error states are set by which functions.OVCC-1216 / OM-90179: The Carbonite framework no longer spams “pluginA is already a dependency of pluginB” when plugins are repeatedly acquired. However, if a plugin is acquired a significant number of times, a performance warning will appear recommending use of
getCachedInterface()
.
Fixed#
OM-86228: carb.launcher.plugin: fixed support for launching detached child processes. Previously a zombie process was left on Linux that needed to be externally cleaned up. A detached child process now launches as an orphaned grandchild process that is automatically cleaned up by the terminal session or initd.
OM-92726: Fixed regression to use only the first positional argument to kit executable as an app file.
OVCC-1221: carb.filesystem:
getModTime()
was fixed to matchgetFileModTime()
, andgetCreateTime()
was fixed to matchgetFileCreateTime()
.OVCC-1229: omni.telemetry.transmitter: added the missing
libjemalloc.so*
files to thetelemetry_transmitter
package. The same files were also added to thecarb_sdk
andcarb_unittests
packages.OVCC-1229: omni.telemetry.transmitter: fixed an issue with
omni::extras::UniqueApp
that could cause guard files to fail to be created if the requested directories do not exist. This now make sure to create all directories in the given path when creating guard lock files.OVCC-1213: carb.tasking.plugin: Fixed a rare race condition that could lead to a hang or crash if
ITasking::reloadFiberEvents()
is called from multiple threads simultaneously.OM-93618: Linux: Removed jemalloc as it could cause some crashes
146.0#
Added#
OM-89427: Linux: Executables now use jemalloc for better heap performance.
OM-89273: omni.structuredlog.plugin: added support for getting privacy setting in
privacy.toml
from environment variables instead of just fixed strings. The settings in this TOML file can now have values like$env{<envvar_name>}
to specify that their value should come from an environment variable.CC-1206: carb.crashreporter-breakpad.plugin: added a “[crash]” tag to each log message for the handling of a current crash and a “[previous crash]” tag to each log message when uploading old crash reports so they can be easily and explicitly differentiated in a log.
OVCC-1214:
carb::delegate::RefFromDelegate<>
andRefFromDelegate_t<>
were created in order to specify the type of aDelegateRef
from aDelegate
.CC-1202: Implemented carb::cpp20::span<> which is a C++14+ implementation of std::span that is mostly compatible with the C++20 version, and also ABI safe. It also implements the C++23 requirement that it be trivially copyable and therefore is also interop-safe. This class is also available as omni::span<> and has MSVC visualizers.
CC-1193: carb.crashreporter-breakpad.plugin: added the process launch command line to the crash report metadata. Any paths in the command line will be scrubbed of usernames.
CC-1193: carb.crashreporter-breakpad.plugin: added the current working directory to the crash report metadata. Any usernames will be scrubbed from expected path components.
CC-1193: carb.crashreporter-breakpad.plugin: optionally added the environment block to the crash report metadata. Any detectable usernames will be scrubbed from the variable values. This is enabled with the boolean setting ‘/crashreporter/includeEnvironmentAsMetadata’. This setting defaults to ‘false’.
CC-1138: Added
carb::ErrorApi
, the low-level unified layer for propagating errors across modules and programming languages. High level (C++ and Python) utilities that are easier to use will be coming in a future release (soon).OVCC-1201: carb.crashreporter-breakpad.plugin at crash time will run py-spy (if present) to capture python traceback information about the crashing process, which is then uploaded as a file to the crash server.
OM-74259: omni.kit.app: add
IApp::restart
API to restart the applicationOM-54868: omni.ext.plugin adds the
uninstallExtension
API
Changed#
POSSIBLY BREAKING CHANGE: CC-1199: omni.bind no longer requires an empty “Dummy.cpp” file on Windows; it is no longer packaged with the
carb_sdk
andcarb_sdk+plugins
packages. On Linux an empty file is still required but this file has been renamed to Empty.cpp.OM-89273: changed the behavior of
carb::extras::EnvironmentVariableParser
so that if no prefix string is given, all environment variables get stored as normal environment variables instead of pathwise overrides.carb.profiler-tracy.plugin: Updated to use Tracy v0.9.1. NOTE: Viewers will need to update to the same binary version in order to accept and view captures.
CC-1207: omni.telemetry.transmitter: the ‘default’ transmission protocol of the transmitter has now changed such that the ‘data’ field of each event is not converted to a string value before sending to the endpoint server. A new protocol mode called ‘dataWithStringify’ has been added to retain the previous behavior. This can be set using the ‘/telemetry/eventProtocol’ or ‘/telemetry/transmitter/
/eventProtocol’ settings. CC-1211: Windows: Error messages for failing to load plugins or extensions have been improved when it is suspected that the failure is due to a dependent library. Improved documentation for
carb::extras::loadLibrary()
.Call
ITasking::reloadFiberEvents
in the startup functions of carb.profiler-cpu.plugin, carb.profiler-nvtx.plugin, and carb.profiler-tracy.plugin so they still work correctly when loaded on demand, as opposed to only at app startup.
Fixed#
OM-90424: Fixed the
config
token set in omni.kit.app incorrectly resolving to release for debug builds on LinuxOM-90358: carb.crashreporter-breakpad.plugin: avoided calling
abort()
in the termination handler since it can cause up to two extra unnecessary crash reports to be generated and uploaded.CC-1210: omni.structuredlog.plugin: made retrieving the privacy settings safer, especially if a value in the given privacy file has the wrong inferred type (ie: a boolean instead of a string).
carb.profiler-mux.plugin: Fixed race condition when appending new profilers while another thread iterates over them.
OM-91369: Empty.cpp is now packaged along with omni.bind for MacOSX packages.
OVCC-1214: Fixed an issue with
carb::delegate::DelegateRef<>
whereupon destruction it would unbind all elements from the referencedcarb::delegate::Delegate<>
.OVCC-1212: Load hooks are no longer called with the Framework mutex locked in order to prevent deadlocks where another thread may be waiting on the Framework mutex, but a load hook is waiting on that other thread. However, load hooks must still complete before any attempts to acquire that specific interface return.
CC-1212: carb.crashreporter-breakpad.plugin now uses cached interfaces instead of acquiring interfaces when settings change. This can help prevent deadlocks involving the Framework mutex.
omni.ext: Create cache path anyway even when mkdir ext folders is disabled
omni.ext: Remove progressbar from extension packing/unpacking code (speedup)
OVCC-1219: carb.crashreporter-breakpad.plugin: all metadata and extra files key names will now be sanitized regardless of whether they come through a command line setting, config file, direct change to the settings registry, or one of the
carb::crashreporter::addCrashMetadata()
orcarb::crashreporter::addCrashExtraFile()
helper functions.
145.0#
Added#
CC-1176: carb.tasking.plugin: Added
ITasking::reloadFiberEvents()
, a safe method to reloadIFiberEvents
interfaces.CC-1137: carb.crashreporter-breakpad.plugin: allowed the crash reporter to enable its configuration functionality once the
carb.settings.plugin
plugin has been loaded (or another plugin that provides thecarb::settings::ISettings
interface). This can happen if the crash reporter plugin is loaded before thecarb.settings.plugin
plugin is loaded.
Changed#
CC-1198: On Windows, kit.exe is now known as “NVIDIA Omniverse Kit” instead of “NVIDIA Omniverse Carbonite SDK”.
Fixed#
OM-90036: Incorrect ternary logic when an optional
classDocstring
parameter is passed tocarb::defineInterfaceClass
.CC-1204: The Carbonite dependency files now have an “alias” of the
python-3.10
dependency aspython
. This is temporary until Packman allows aliases.
144.0#
Added#
OM-81978: New
carb.profiler-mux.plugin
that can be used to forward profiler events to multiple other loaded implementations ofcarb::profiler::IProfiler
.Add start_time and thread_id to Python get_profile_events, and add Instant and Frame events to monitor.
CC-1158: carb.events.plugin:
IEventStream
objects can be created with a name. If a name is not provided, a name is generated based on the caller of the creation function. The name can be retrieved via thegetName
function.ISubscription
objects now generate a name based on the module that contains theonEvent
function if a name is not provided. The name can be retrieved via thegetName
function.Profiling of event notification now is more explicit and provides the name of the
IEventStream
and eachISubscription
as it is called, along with theIEvent::type
field (which unfortunately is numeric as the string name is lost to hashing).
CC-1161: added methods of determining whether a given plugin or module is a debug or release build without needing to load up and interrogate the library. On Windows, the string “(Debug)” will show up in the “Product Name” field of the module’s property window (“Details” tab). On Linux, the
g_carbIsDebugConfig
symbol will be present in debug modules andg_carbIsReleaseConfig
symbol will be present in release modules.CC-1153: Added kit-kernel plugins omni.kit.app.plugin and omni.ext.plugin and launcher executable kit.
OM-88365: Added optional
classDocstring
parameter tocarb::defineInterfaceClass
.CC-1188: omni.platforminfo.plugin: added support for detecting and handling processes running under compatibility mode on Windows 10 and up.
omni::platforminfo::IOsInfo
will now report as close to the actual OS version as it can even when running under compatibility mode.
Changed#
CC-1144: Telemetry: updated the default transmitter schemas packages download URLs.
CC-1159: carb.tasking.plugin: A task name can now be passed as a
Tracker
to make task naming easier.CC-1149: StructuredLog: failed early during prebuild if the Carbonite package path passed to
setup_omni_structuredlog()
either doesn’t exist or doesn’t contain the tool at the expected subfolder. Previously this would only fail out at build time if the tool was missing.CC-1168: carb.dictionary.plugin: New verbose printout on un-subscribing of a subscription with a list of remaining subscriptions that are active.
Standardized internally on
detail
for an implementation-specific namespace, as opposed todetails
.
Fixed#
CC-1174: Fixed a situation whereby the Framework would reject a default plugin even though it supported the requested version.
CC-1173: Fixed a compile issue on Clang where include/carb/delegate/Delegate.h did not
#include <memory>
.CC-1160: Framework: fixed framework startup so that it can succeed even if no plugins are present.
CC-1177 / OM-86573: carb.profiler-cpu.plugin: Fixed a stack overflow crash that could occur if a frame contained too many dynamic strings.
OM-85428: Build: made the command line flag generation in
omni.bind.bat
files deterministic to avoid unintentional rebuilding of projects.CC-1190: carb.dictionary.plugin: Fixed a potential assert (debug) or bad access (release) that could occur if multiple threads were iterating an item array.
143.0#
Added#
Added
CARB_FILE_DEPRECATED
to warn that a deprecated file has been included. This can be ignored by havingCARB_IGNORE_REMOVEFILE_WARNINGS
defined.CC-1139: Added
CARB_NODISCARD_TYPE
,CARB_NODISCARD_MSG
, andCARB_NODISCARD_TYPE_MSG
to supplement the existingCARB_NODISCARD
macro for decorating types, decorating functions with a custom message, and decorating types with a custom message, respectively. These fall back to their most reasonable approximation if the compiler does not support them.CC-1117: Added a carb.tasking.plugin debug visualizer to carb.natvis for Visual Studio 2019+ that displays an aggregate view of task counts by task function (see
[task counts by function]
in the CarbTaskingDebug visualizer).CC-1118: Prerequisites of a carb.tasking.plugin task are now visible in the tasks listed under the
[task database]
member of the CarbTaskingDebug visualizer (called[prerequisite]
).OM-66287: StructuredLog: added an optional process lifetime heartbeat event that can be emitted at regular intervals from omni.structuredlog.plugin. These heartbeat events are disabled by default but can be controlled using the
omni::structuredlog::IStructuredLogSettings2
interface (specifically thesetHeartbeatPeriod()
method).CC-1151: Windows crash dumps will included unloaded module info, which will aid debugging when a crash occurs in an unloaded module (such as when a callback is called but the module has been unloaded).
CC-51: carb.tasking now provides
carb::tasking::ITasking::nameTask()
which allows naming a task. The task name shows up in debug information and is retrievable withgetTaskDebugInfo()
.include/carb/memory/Utils.h now has
carb::memory::protectedMemmove()
andcarb::memory::protectedStrncpy()
, which are implementations ofmemcpy()
andstrncpy()
(respectively) that will returnfalse
if a read access violation occurs instead of crashing.CC-1141: StructuredLog: allowed all event output to be written to stdout or stderr using the
/structuredLog/defaultLogName
setting and a value of either/dev/stdout
or/dev/stderr
. When used, all events will be redirected to the specified stream regardless of per-event or per-schema settings.
Removed#
The following public items were determined to be internal to Carbonite only and have been removed:
omni::log::configureLogChannelFilterList()
omni::log::registerLogChannelFilterList()
omni::log::ILogChannelFilterList_abi
omni::log::ILogChannelFilterList
omni::log::ILogChannelFilterListUpdateConsumer_abi
omni::log::ILogChannelFilterListUpdateConsumer
omni::log::WildcardLogChannelFilter
Associated Python bindings for the above
Changed#
DEPRECATED: The following include files have been marked as Deprecated and may be removed in the future:
LogChannelFilterUtils.h
WildcardLogChannelFilter.h
CC-1113: carb.dictionary.plugin keeps child keys in the same order as they are created via
createItem
,update
, orduplicateItem
. TheIDictionary
interface was changed to version 1.1 to reflect this.CC-1113: carb.dictionary.serializer-json.plugin and carb.dictionary.serializer-toml.plugin were changed to SAX- style parsing, so that keys encountered are pushed into carb.dictionary.plugin in the order specified in the data.
CC-1117: carb.tasking.plugin now considers the debugTaskBacktrace setting to be on by default.
All non-generated public include files now use relative paths
CC-1147: Amended coding standard on thread-safety, internal code, and other practices.
Fixed#
OM-71761: updated to openssl 1.1.1t, fixes CVE-2023-0286 for omni.telemetry.transmitter
OM-80517: Linux: Fixed some issues that could lead to deadlocks when running on Centos7 (glibc 2.17)
CC-1113: Log filters (specified in settings under
/log/channels
) are now processed in order, provided that the underlyingIDictionary
,ISettings
andISerializer
interface(s) respect order. Note that the Carbonite- provided carb.dictionary.plugin, carb.dictionary.serializer-json.plugin, carb.dictionary.serializer-toml.plugin and carb.settings.plugin all respect order. The logging system now automatically monitors the/log/channels
settings key and processes changes as they occur.Fixed and improved several visualizers for Carbonite types listed in carb.natvis (for Visual Studio 2019+). Carbonite types and members that have visualizer support are now tagged with
CARB_VIZ
.OM-79835: omni.bind: Avoid touching .gen.h files when contents haven’t changed.
CC-1154: Fixed issues with public include files compiling on GCC 8, such as
-Wclass-memaccess
in include/carb/container/IntrusiveUnorderedMultimap.h and include/carb/variant/Translator.inlCC-910: Update the forgeaudio library for carb.audio-forge.plugin to fix a possible crash that could occur on engine shutdown or restart.
CC-1156: fixed a bug in carb.launcher.plugin on Linux that could close a file descriptor with the same value as the process ID of the new child process. This mostly affects runs inside containers.
142.0#
Added#
OM-81922: updated to repo_build 0.29.4 to preserve symlinks when copying in premake
OM-59371: Requested feature to stop all voices
IAudioPlayback::stopAllVoices
.CC-1087: New carb.audio-forge setting:
/audio/allowThreadTermination
Forge will attempt to terminate its own threads if they’re detected to be hanging as a result of watchdog timers expiring. Terminating threads is not safe and may cause a crash/hang later on. Setting this tofalse
will switch the behavior to abort when the watchdogs expire. This is intended to be set tofalse
during tests to avoid a terminated thread resulting in a deferred crash.CC-241: Added
omni::function
, an ABI safe drop-in replacement forstd::function
. Support foromni::function
callbacks in ONI will be added in CC-1131.Added a carb.natvis visualizer for
omni::string
.
Changed#
CC-1104:
carb::IFileSystem::subscribeToChangeEvents()
on Mac OS now uses theFSEvents
backend. This should have a lower performance overhead and modify events are no longer dependent on filesystem timestamps. The timing and ordering of events may change as a result. This also limits the maximum number of file subscriptions to ~512.OM-80477: allowed the structured log session ID to be retrieved without a consent check.
Fixed#
OM-81171: Fixed several issues stemming from shutdown when started by Python.
CC-1116: removed a hard link dependency on X11 in
omni.platforminfo.plugin
. The required functionality is now dynamically loaded from that library instead.CC-1126: Implemented a workaround for shutdown crashes on Linux where
exit()
is called before the Carbonite framework is shut down. The Framework now attempts to register lateatexit()
handlers and shut itself down in the event of an unexpectedexit()
.OM-81172: Linux: Fixed an issue with using the Carbonite allocation functions in a module that was not explicitly linking against libcarb.so that could lead to crashes if the symbol was not found.
CC-1112 and CC-1120: The GCC warning
noexcept-type
was producing false positives oncarb::cpp17::invoke
family functions when compiling in C++14 mode. This add the macrosCARB_DETAIL_PUSH_IGNORE_NOEXCEPT_TYPE
andCARB_DETAIL_POP_IGNORE_NOEXCEPT_TYPE
to assist in disabling this warning when it is appropriate and fixesinvoke
family of functions when usingnoexcept
-specified function pointers.
141.0#
Added#
CC-1078: Carbonite, through a new macro
CARB_PLUGIN_IMPL_EX
, now has the ability for a plugin to support multiple versions for a given interface. The Framework also has the ability to serve multiple versions of itself, allowing for future change without breaking already-built plugins. See the Carbonite Interface Walkthrough documentation for more details.CC-1078: Documentation was added around ABI safety. See the ABI Compatibility guide in the Carbonite documentation.
Changed#
CC-1078: Framework version has been changed to 0.6. The previous Framework version 0.5 is still supported, but plugins built after this version will not be compatible with earlier versions of Carbonite.
CC-1107: Attempting to load a Carbonite plugin with the same name as an already loaded plugin will now produce a warning log (instead of error) and will now return
carb::LoadPluginResult::eAlreadyLoaded
instead ofcarb::LoadPluginResult::eFailed
.CC-1107: Attempting to load an already-loaded ONI plugin with
carb::Framework::loadPlugin()
will now returncarb::LoadPluginResult::eAlreadyLoaded
and will no longer log that the dynamic library remains loaded after unload request.
Fixed#
CC-1098: Fixing passing the errorlevel through to the build system when the called-python routines return an error
CC-1103: Fixed an issue with packaging on Mac that was excluding python bindings.
CC-1086: Removed use of Carbonite logging in Breakpad Crash Reporter. Logging here can cause deadlock while crashing if a thread was logging and held the lock while crashing (noticed in OM-78013).
CC-1108: A Linux system that cannot create any more inotify instances when
carb::filesystem::IFileSystem::subscribeToChangeEvents
is called will now fail gracefully with a warning message instead of crash.CC-1110: Fixed undefined reference linker errors that could occur in C++14 with header-only utilities on GCC, including Path.h, RobinHoodImpl.h and Utf8Parser.h, due to
static constexpr
members within classes.
140.0#
Added#
Changed#
CC-1088: updated to
repo_build
0.28.12 to generatecompile_commands.json
on MacOSCC-1085: bump all Conan dependencies for updated metadata.
For carb.crashreporter-breakpad.plugin:
CC-1065: flattened the folder structure in zip files for crash reports. All filenames in the flattened zip archive are also ensured to be unique.
CC-1065: added a manifest to crash report zip files that lists each file’s original location and upload key name.
CC-1073: prevented preserved crash dumps from being re-uploaded.
OM-18948: Detect incorrect usage of
ObjectPtr
at compile time rather than runtime. Note, this may cause hand written ONI Python bindings to have to be re-written (i.e. useomni::python::detail::PyObjectPtr
rather thanomni::core::ObjectPtr
).
Fixed#
CC-1068: Fixed carb.datasource-file.plugin’s
readData
andreadDataSync
functions not working properly on MacCC-1077: Fixed an issue with
carb::extras::Path
wherereplaceExtension
would crash in Linux on startup in debug builds.CC-1065: fixed some potential zip file corruption in crash reports generated by carb.crashreporter-breakpad.plugin related to storing 0 byte files and missing files.
CC-1055/CC-1089: Updated to Python 3.7.15, 3.8.15, 3.9.15, 3.10.8 and zlib 1.2.13-1 to fix security issues.
CC-1072: Fixed two issues when fetching environment variables on Windows. Fetching a zero-sized value will no longer read uninitialized stack data. Fetching a value larger than 256 wide characters is no longer subject to a race condition if the environment variable changes between the size query and data fetching.
CC-1099: fixed the detection of the Windows 11 OS display name in omni.platforminfo.plugin on machines that were upgraded from Windows 10.
139.0#
Added#
CC-1064: added options to the
omni.structuredlog
tool to allow it to skip the code formatting step.added the
--skip-structuredlog-format
option to thebuild.{sh|bat}
scripts and thepremake5
tool.added the
skip_format
boolean argument to theomni_structuredlog_schema()
project function.added the
--skip-format
option to thetools/omni.structuredlog/omni.structuredlog.py
script.
OM-43302: Extended support for setting and querying the maximized/minimized/restored state of a glfw window.
CC-1060: Added more verbose logging to
carb::Framework::releaseInterface()
to log which plugins still have references to an interface.CC-615: Preliminary VulkanSDK support for MacOS
Changed#
Corrected the spelling of
omni::core::GetModuleDependenciesFn
. While this is a public symbol it should not affect ABI and its use is generally confined to macros whose names did not change.
Fixed#
CC-1057: Fixed some constructors in
carb::ObjectPtr
andcarb::container::BufferedObject
to not beexplicit
as these potentially lead to compilation warnings/errors in C++17.OM-74155: Fixed an issue on Linux where walking a directory on XFS filesystems would sometimes not properly identify the type of a file/directory.
CC-1060: Fixed an issue where releasing interfaces from a script binding would not actually release the interface.
CC-1012: Fixed an issue where ONI modules did not properly initialize the Carbonite profiler.
138.0#
Added#
OM-58581: The new carb.audio bindings are now available in python versions prior to 3.10.
Changed#
CC-629: updated to glfw-3.3.8, removed dynamic glfw libs
Fixed#
CC-1031: Fixed an issue where outputting a structured logging event to a standard stream would unintentionally close the stream. This fix also ensures that the stream is flushed before continuing with the next message.
CC-1046: Fixed an issue where
carb::Framework
would not benullptr
-padded, so functions added to the Framework later would be garbage data instead ofnullptr
.CC-1046: Fixed an issue where older Carbonite releases (pre v135.0) would crash when compiled against newer headers (v135.0 and later).
CC-1052:
carb::container::LocklessStack
on Linux is no longer lockless as registering multiple signal handlers in multiple dynamic libraries became untenable.
137.0#
Added#
CC-448: carb.variant.plugin now supports a
VariantMap
type: an associative container withVariant
keys and values that can be itself passed as aVariant
.CC-55, CC-1026: Added documentation about loading plugins and acquiring interfaces, and documentation of the generated and optional functions exported by plugins.
Changed#
CC-1027:
CARB_EXPORTS
(note the S) is no longer required to be defined in order forCARB_EXPORT
to export a function. This was the cause of much pain and lost hours. Now,CARB_EXPORT
always exports a function, which is the typical need for functions likecarbOnPluginStartup()
. The rare case of needing dynamic import/export is now handled by a new macro–CARB_DYNAMICLINK
–which will export ifCARB_EXPORTS
is defined before carb/Defines.h is included, but otherwise imports (the default).CC-949: updated some packages to get several CVE fixes:
updated to zlib 1.2.13+nv2.
updated to OpenSSL 1.1.1q+nv7.
updated to libcurl 7.85.0+nv3.
CC-1034: changed code generated by
omni.structuredlog
so that it now uses references to objects instead of pointers when passing to the various ‘send event’ functions This allows for easier access to inlined calls to emit messages instead of having to declare local variables for the object parameters. This also included generating default, basic, and copy constructors for each generated object struct as well as an assignment operator to make it easier to construct objects inline in the event helper macros.CC-1031: added support for writing structured log messages to stdout and stderr. The
f*FlagOutputToStderr
,f*FlagOutputToStdout
, andf*FlagSkipLog
schema and event flags have been added to allow structured log events to be output to the stdout and stderr streams either in addition to the normal log or to exclude the output to the normal log.
Fixed#
CC-1029: If functions were added to an interface without changing the version, newer code that conditionally checked for the functions when running against an older version of the plugin (with a compatible version but without the functions) would see uninitialized memory instead of
nullptr
. This has been fixed: the Framework now keeps a null region large enough for 32 functions following any interface memory so that reading beyond the end of it will show null function pointers for new functions.CC-1034: Fixed a code generation bug with the
omni.structuredlog
tool. If a property in an object property specified in a schema contained a character that is not valid in a C++ symbol, invalid C++ code would be generated. This bug did not occur on property names that were outside of objects however.CC-47: Fixed potential deadlocks that could occur if multiple threads were acquiring interfaces at the same time.
CC-1039: To mitigate an issue that could potentially cause a dangling pointer crash in
deregisterLoggingForClient() if ONI was stopped and restarted without unloading all plugins, stopping ONI (i.e. with
OMNI_CORE_STOP()`) will now unload all plugins.
136.0#
Added#
carb::delegate::DelegateRef
was added which allows a reference to acarb::delegate::Delegate
.CC-1023: omni.bind now supports the
throw_if_null
attribute on method parameters. omni.bind will generate API code that checks if a parameter isnullptr
, and if so, throw an exception.CC-1022: omni.bind now supports the
no_acquire
attribute on both return types and parameters.no_acquire
tells omni.bind that the returned pointer has not hadacquire()
called on it andObjectPtr
should not be used in the API layer. Additionally, methods that end withWithoutAcquire
will also use raw pointers rather thanObjectPtr
on the returned pointer.no_acquire
/WithoutAcquire
are dangerous but useful in hot code paths where the cost of atomically incrementing the reference counts degrades performance.CC-1025: omni.bind now supports the
ref
attribute on both return types and parameters.ref
converts pointers in the ABI layer to references in the API layer.CC-1021: omni.bind now supports
throw_result
attribute on methods. When used, this attribute will throw an exception in the API layer when the ABI layer returns a badResult
error code. This attribute can be combined with thereturn
attribute (on a parameter) to return a value in the API layer instead of the ABI layer’sResult
.CC-1024: build now supports building all flavors of Python bindings. Before the user had to build each binding individually:
Added many
omni::core::Result
codes.ObjectParam
can now be used as a boolean.build -t bindings\carb.python-3.9 && build -t bindings\carb.python-3.10 && ...
Now:
build -t bindings\carb.python
Changed#
OM-70174: updated to the latest
concurrentqueue
package to fix some include issues in Kit and Carbonite.
Fixed#
CC-889: Fixed
carb::filesystem::IFileSystem::unsubscribeToChangeEvents()
so that it is possible to unsubscribe from within the subscription callback.omni.bind now longer produces optimization warnings
OMNI_ASSERT
messages now include the filename.Fixed ambiguous pointer to
ObjectParam
casts.Removed troublesome usage of
OMNI_DECLARE_INTERFACE
in ILogChannelFilter.h.Function/Methods in IObject.h now have correct
noexcept
specifiers.
135.0#
Added#
CC-883: The carb.tokens.plugin plugin now supports environment variable replacement via tokens named
${env.<name>}
CC-63: Profiler channels have been added! Profiler channels can be configured at runtime via the
ISettings
system and can be used in place of masks anywhere. UseCARB_PROFILE_DECLARE_CHANNEL
to declare a channel, and then it can be turned on/off (even at runtime) with/profiler/channels/<name>/enabled
. Internally Carbonite’s profiling has changed to use channels with the following names (corresponding to plugins):carb.assets
carb.eventdispatcher
carb.events
carb.scripting-python
carb.tasking
carb.windowing-glfw
Changed#
CC-1015: silenced a warning message in
carb.audio
that can occur while enumerating capture devices on a system that does not have a microphone. Also downgraded several error messages around device enumeration to warnings.
Fixed#
CC-1011: Fixed an issue where
carb::cpp20::countl_zero()
and carb.tasking.plugin would not run properly on pre-Haswell Intel CPUs.
134.0#
Added#
OM-58581: Added bindings to carb.audio to add support for modifying carb.audio.Voice parameters, as well as the ability to play sounds from python. This functionality will not be available with versions of python prior to 3.10.
CC-1010: Added support for compressing crash dumps and crash report extra files for upload on all platforms. The crash report files will all be compressed into a single standard .zip file and only that .zip file will be uploaded. This feature is enabled with the
/crashreporter/compressDumpFiles
setting. Note that the server side must also support receiving zipped crash reports before this can be enabled.CC-206:
ITasking
can now be used with omni.experimental.job.plugin providing the underlying thread pool. This is enabled by setting/plugins/carb.tasking.plugin/useOmniJob
(default:false
) totrue
. This allows other systems to also share worker threads by using omni.experimental.job.plugin.
Changed#
OM-57542: Updated ImGui version and added necessary package references. Added premake5 section for building SimpleGui plugin on MacOS. Changed SimpleGui’s renderer to support 32-bit indices.
Fixed#
CC-249: fix comparison bug so that CC-249 is really fixed.
OM-58581: Fixed an out of bounds read in a
CARB_ASSERT()
statement in carb.audio.CC-1006: Fixed the quick shutdown process so that it properly shuts down structured logging.
CC-860: Added support for uploading extra files with Carbonite crash reports. New files are added to the upload with a call to
carb::crashreporter::addExtraCrashFile()
. Files are only uploaded if a crash occurs.CC-1009: Fixed
carb::container::LocklessStack
on Linux to try and avoid crashes when modules that useLocklessStack
are unloaded in an order that is not the reverse of load order.
133.0#
Added#
OM-62703: added
CARB_PLATFORM_NAME
containing the name of the current platform andCARB_ARCH_NAME
containing the name of the current architecture.OM-62703: added some new flags to
carb::extras::loadLibrary()
to expose some extra library loading behavior on Linux.CC-879: added a new version of
carb.scripting-python.plugin
that supports python 3.10. These are in subdirectories in the binaries directory which are labeledscripting-python-[version]
. Loading multiple python versions in a single process is dangerous, so it’s not possible to load multiple of these plugins simultaneously and not recommended to try to unload one and load another.OM-63213: added
omni::platforminfo::IMemoryInfo::getProcessPeakMemoryUsage()
andcarb::extras::getPeakProcessMemoryUsage()
.OM-63213: added
omni::platforminfo::IOsInfo::getKernelVersion()
.CC-996:
carb::dictionary::ISerializer
has an updatedcreateDictionaryFromStringBuffer()
function with more options that can produce better performance. The ABI supports the previous function, but new compilation will use the new function.
Changed#
** BREAKING CHANGE ** CC-879:
carb.scripting-python.plugin
was moved into thescripting-python-3.7m
subdirectory in the binaries directory.CC-891: carb.tasking.plugin is now a task-stealing scheduler that scales better with more cores. Other changes:
The watchdog functionality has been split from the timer thread into its own thread.
Instead of one (potentially giant) thread pool, threads are divided up into thread-groups with four threads ideally.
When a task is added, a thread-group is chosen and assigned the task. If the thread-group has too much work, other thread-groups are woken and will try to steal tasks.
Resuming tasks now respects priority order.
Resuming a task that is pinned to a specific thread is more efficient.
Fixed#
OM-62819: Fixed a performance issue in carb.profiler-cpu.plugin that was making it unusable in certain cases.
OM-62523: Addressed some docstrings that error when consumed by Sphinx.
CC-879: Fixed a bug where
IScripting::getObjectAsString()
was not acquiring the GIL.CC-948: Fixed a hang that could occur if a log listener called back into the framework while the framework was loading a plugin.
CC-988: Fixed an issue where a deadlock could occur if a log listener attempted to acquire an interface.
CC-988: Fixed a compilation warning that could occur in TaskingHelpers.h.
OM-63659: Fixed an issue with carb.tasking where a stuck condition would be improperly realized and emergency threads started unnecessarily.
CC-996: Improved performance of carb.dictionary.serializer-json.plugin and carb.dictionary.plugin in some cases, especially with large JSON files.
132.0#
Added#
CC-868: added support for bindings for python 3.10 with pybind11 2.7. The pybind11 internals ABI has changed, so if you want to add pybind11 bindings on top of the Carbonite bindings, you will need to upgrade to an ABI compatible pybind (such as 2.7.1-08fa9f60).
Changed#
BREAKING CHANGE The
CARB_PROFILE_FRAME()
macro no longer incrementsIProfileMonitor
frames for last-frame events. This is becauseCARB_PROFILE_FRAME()
now supports multiple frame-sets (i.e. main thread and GPU thread). Instead, please callIProfileMonitor::markFrameEnd()
to increment a frame for the Profile Monitor.CC-868: The include path to pybind11 needs to be added on the build command line when building python bindings with Carbonite’s binding utilities headers. These previously required an include path pointing into the target-deps directory.
CC-868: Some workarounds for
-Wundef
errors in pybind11 2.3 have been removed because they break pybind11 2.7. The suggested fix is to disable-Wundef
until you can upgrade to 2.7.CC-902: Built-in plugins (
ILogging
,IAssert
,IThreadUtil
,IFileSystem
) are now always installed the first time the framework is acquired, and are not unloaded viaFramework::unloadAllPlugins()
. They are only unloaded when the framework is released.CC-918: removed the
carb.ecs
plugin, along with all of its headers, tests, and projects. This plugin was not used in any projects and has long since been superceded by other projects.CC-919: removed support for hot reloading C++ plugins. This feature was untested and unused and has become bit rotted.
Fixed#
CC-907/OM-60787: Fixed an issue that could cause plugins to unload in an incorrect order.
CC-902: Calling
carb::acquireFrameworkAndRegisterBuiltins()
multiple times is now safe and will no longer result in error logs.CC-880: carb.profiler-cpu.plugin:
CARB_PROFILE_FRAME()
now outputs an event to the chrome-tracing file to mark the frame end. When a subsequent Tracy PR is merged, Tracy’s import-chrome tool will be able to translate these events into frame markers.CC-913: Fixed a rare bug in
carb::extras::HandleDatabase
that could lead to rare crashes in carb.tasking.CC-915: Fixed an issue with carb.profiler-tracy.plugin where the Tracy viewer gets confused with too many source locations.
CC-954: Fixed a problem with the RobinHood container hashing that was causing compilation issues on clang 14.
131.0#
Added#
CC-864: Added lock profiling interface, which is currently only used by carb.profiler-tracy.plugin
CC-848: Several performance improvements were made to carb.profiler-cpu.plugin.
CC-862: Completed the
invoke
-family functions and meta queries (invoke_r
,is_invocable
,is_invocable_r
,is_nothrow_invocable
,is_nothrow_invocable_r
) and added requisite utility meta queryis_nothrow_convertible
. These behave according to the rules in the current (as of August 2022) C++23 Standard Draft, but reside in thecarb::cpp17
namespace, as that is when the functionality was introduced to the C++ Standard.CC-372: Added a setting
/log/forceAnsiColor
that allows the user to force the logger to use ANSI escape codes to color the console. Useful for CI/CD settings.CC-853: carb.tasking.plugin has a function that will bind trackers to a required object:
ITasking::bindTrackers()
.
Changed#
carb.profiler-cpu.plugin no longer exports Chrome Tracing Flow events by default. They can be enabled with setting key /plugins/carb.profiler-cpu.plugin/flow (boolean, default:
false
).CC-848: carb.profiler-cpu.plugin now emits additional profiler zones for itself (profiling the profiler) if
carb::profiler::kCaptureMaskProfiler
is set in the capture mask.CC-848: Some of the carb.tasking.plugin profile zones are now static names instead of dynamic names to save time capturing these profiler zones. (Example: “Running fiber 123” is now just “Running fiber”).
Upgraded carb.profiler-tracy.plugin to Tracy 0.8.2
CC-658: Removed
carb::thread::getCurrentProcessor()
. The only reasonable use of this function was in tests for thread pinning utilities, so the decision was made to remove it.
Fixed#
CC-854: Fixed locking that could lead to a performance issue with carb.settings and carb.dictionary.
CC-64: Performance is improved when carb.profiler-cpu.plugin is loaded but not started or has a capture mask of
0
.CC-855: Fixed a rare crash that could occur if carb.profiler-cpu.plugin was started and quickly shutdown.
CC-886: Added the missing
ChangeEventType.CREATED
type tocarb.settings
python bindings.CC-862:
carb::cpp17::invoke_result
to be SFINAE-safe. Previously, when theF(Args...)
signature was not invocable, it was an error in the immediate context.CC-857: Fixed an issue with carb.profiler-tracy.plugin where
CARB_PROFILE_END()
would still pay attention to the mask and could potentially cause profile zones to become out of sync. Applied the same fix from CC-603 to the Tracy profiler.CC-881: Fixed an issue with carb.profiler-tracy.plugin where profiler zone source location could be duplicated.
CC-537: Fixed omni.structuredlog python code generation.
130.0#
Changed#
CC-684: Failing to close a file will now report the file that failed to close and the underlying error.
CC-817: Non-quick shutdown returns back to two phases: the first phase is shutting down all plugins, followed by unloading all plugins.
CC-847: (Windows only) As a performance improvement,
OutputDebugString
is no longer called by default for log messages unless a debugger is attached. CallingStandardLogger::setDebugConsoleOutput(true)
will force debug output even when a debugger is not attached.
Fixed#
CC-817: Fixed an issue where interfaces are released before a plugin is shutdown. In some cases (such as carb.tasking.plugin) this can result in the interface being re-instantiated while shutting down.
Fixed verbose log spam in carb.settings.plugin (“node type mismatch” logs when a key did not exist).
Fixed verbose log spam in carb.audio-forge.plugin (“{context = xxx}” logs when updating a context).
129.0#
Added#
Warning logs are now emitted when a plugin unload is requested but the module is not unloaded.
Support for limiting the zone depth of a profile capture taken using the carb.profiler-cpu.plugin. The max zone depth can be set via the new
/plugins/carb.profiler-cpu.plugin/maxZoneDepth
setting.
Changed#
The
CARB_BINDINGS()
andCARB_BINDINGS_EX()
macros take an additional optional parameter that is the string of the script language that the binding is for. If unspecified,"python"
is assumed.CC-808:
carb::quickReleaseFrameworkAndTerminate()
no longer runscarbOnPluginShutdown()
for plugins that do not provide acarbOnPluginQuickShutdown()
; only thecarbOnPluginQuickShutdown()
function is called if provided. This makes quick-shutdown significantly faster, but it is now highly recommended that all plugins that have files open for writing flush and close those files.
Fixed#
CC-779: Python script bindings are now considered dependencies of carb.scripting-python.plugin and now attempt to unload carb.scripting-python.plugin before dependent interfaces to improve shutdown stability.
Fixed an issue with
carb::extras::getLibraryHandleByFilename()
that would leak shared object references on Linux.Fixed an issue with carb.scripting-python.plugin leaking a reference to the python shared object on Linux.
Fixed an issue with
omni.structuredlog.plugin
where it would not be properly reset if the module failed to unload.CC-781: Fixed an issue with
carb::Delegate
where parameters toCall()
were improperlystd::move
’d, so if multiple receivers were bound, only the first receiver would receive the proper parameters.Fixed an issue where interfaces could be acquired (and plugins loaded) during a call to
Framework::unloadAllPlugins
.Fixed an issue where shutting down the framework did not clear some state, causing inconsistencies and issues when the framework was later re-initialized.
Fixed a warning at shutdown from
carb.profiler-cpu.plugin
about “Failed to remove release hook”.Fixed a rare thread-safety crash with
omni.structuredlog.plugin
.CC-809: fixed the auto-detection of MP3 files with both the ‘error protection’ bit enabled and disabled. Previously MP3 files with error protection enabled were failing to load.
CC-668: got carb.launcher.plugin building and passing all tests on MacOS. Some tests had to be disabled because MacOS doesn’t support the related functionality.
128.0#
Added#
CC-587: Basic support for Mac OS was added.
Carbonite binaries for Mac OS are not available yet.
CARB_PLATFORM_MACOS
has been added for detection of Mac OS.CARB_POSIX
was added. This is set to_POSIX_VERSION
on systems that are mostly-compliant with POSIX, such and Linux and Mac OS, and set to 0 on other systems, such as Windows.CARB_MACOS_UNIMPLEMENTED()
has been added to mark code paths that are not supported yet on Mac OS. If you want to use Carbonite extras headers on Mac OS, you can grep for this symbol to verify whether the extras header is supported on Mac OS yet.
OM-55766:
OMNI_GENERATED_API
Helper macro to access generated APIOMNI_USE_FROM_GENERATED_API
Helper macro to bring member functions from generated API when function overloads are provided.
Changed#
CC-705: reworked the telemetry transmitter so that it now stores the processed and validated message strings instead of the JSON documents themselves in the event queue. This significantly reduces memory usage for the transmitter.
CC-745: Unsuccessfully loading a plugin optionally (with
tryAcquireInterface
) will no longer produce any error logs.CC-743: Fixed a performance issue with
carb::tolower
andcarb::toupper
on Linux.CC-716:
carb::extras::convertUtf8ToWide()
andcarb::extras::convertWideToUtf8()
no longer use the deprecated C++wstring_convert
library and instead use our Utf8Parser library. This affects the failure condition of these functions.
Fixed#
CC-595: Use canonical paths in
omni::core::TypeFactoryImpl
. Prior to this commit,omni::core::TypeFactoryImpl
would directly use themoduleName
arguments provided to thecreateType_abi
,registerInterfaceImplementationsFromModule_abi
, andunregisterInterfaceImplementationsFromModule_abi
functions. This caused an issue becausecarb::FrameworkImpl::loadPlugins
would callregisterInterfaceImplementationsFromModule_abi
with the canonical path of the module, and then future calls to createType with the non-canonical version of the path to the same module would reload the module because the module name (which is the path) would not match. This commit fixes that by making the three API methods above convert the moduleName argument to a canonical path for consistency.CC-747: Resolved a shutdown order issue with
carb::thread::ThreadLocal
that could sometimes lead to a crash.CC-751: Upgraded openssl in omni.telemetry.transmitter to 1.1.1q to address CVE-2022-2068.
CC-772: Resolved an issue with plugin unload order not respecting dependencies correctly.
CC-622: Fixed
carb::extras::Path::getParentPath()
when resolving parent path’s with only 1 directory level.
127.0#
Added#
CC-582:
carb::cpp20::atomic<>
now supports waiting for non-primitive (butis_always_lock_free
) types.OM-53429: Added settings and support to the telemetry transmitter to be able to filter out messages that came from host apps run in different modes (ie: ‘dev’ vs ‘production’ vs ‘test’). The
/telemetry/transmitter/messageMatchMode
setting is used to control this behavior. By default, all messages are allowed to pass through.CC-510: Adds
omni::experimental::IUrl
, an RFC-3986 compliant URL implementation. It is currently experimental.OM-45102: Added separate functions for trimming strings in a UTF-8 friendly way or by using current C locale. Helper function for finding the last Unicode symbol in a UTF-8 string.
CC-714: Added
carb::thread::hardware_concurrency()
, which is similar tostd::thread::hardware_concurrency()
but will take docker cgroups into account if running from within a docker container.CC-705: added support for batching events when sending to NVDF backends. These will now send as many events as possible in a single HTTP request instead of sending each message individually.
CC-716:
convertUtf32ToUtf8()
now has flags which allow you to return U+FFFD on codepoint conversion failure.
Changed#
CC-632: carb.tasking.plugin: Evaluated how calling
ITasking::applyRange
recursively works, especially with non- uniform workloads. In some cases, performance improvements up to 67% were seen in tests with Kit.OM-53429: Added a telemetry mode tag to each structured log message’s “source” field if running in “dev” or “test” mode.
CC-386:
omni.bind
now outputs a comprehensive diff when using--fail-on-write
option alongside the error message. This should help debugging CI errors by eliminating the “What’s different?” question that requires a re-run in the environment the build failed in.CC-705: changed the telemetry transmitter to limit the number of events that would be processed at any given time to help reduce the amount of memory used. Added the
/telemetry/transmitter/<index>/queueLimit
option to control the maximum number of events that can be processed at once. This new option defaults to 10000 events. In testing, this roughly corresponds to ~500-1000MB of memory usage.CC-714: carb.tasking.plugin and omni.job now use
carb::thread::hardware_concurrency()
for default thread counts.CC-560: Deprecated the old
kSerializerOption*
flags and renamed them tofSerializerOption*
to better comply with the coding standard. The use of the old flags will have to be changed in any Carbonite based apps.
Fixed#
CC-603: Fixed issue where repeated profiler runs caused incorrect profile in second run onwards. This was caused by zones ends unintentionally matching partial zone begins from the previous run. Please note that this has been fixed for the cpu profiler ONLY (/plugins/carb.profiler-cpu).
OM-34980: Fixed an issue with command line array argument in the form
[a, b]
not replacing the whole previous arrayCC-628: Fixed a few more issues with
min
/max
in public headers, as well as adding a compilation test to prevent future uses.CC-625:
carb::framework::getPluginCount
returns only the count of carb plugins loaded. The change for CC-383 madecarb::framework::getPluginCount
return the total number of carb and oni plugins, butcarb::framework::getPlugins
would only return carb plugins, leading to empty entries in theget_plugins()
python function. This change restores the previous behavior ofcarb::framework::getPluginCount
only returning the count of carb plugins.OM-53429: Fixed an issue in
omni.telemetry.transmitter
where only the first transmitter would control whether the log directory was processed and whether events were uploaded. This has now been changed so that any transmitter that needs or can accept data will allow the logs to be processed and events uploaded.CC-697: Fixed use-after-move issue in
carb::extras::EnvironmentVariable
CC-705: fixed the broken launch guard in the
omni.telemetry.transmitter
app.CC-705: fixed the trandmitter so that it no longer has the potential to resend events when multiple transmitter endpoints are out of sync.
CC-716:
convertUtf32ToUtf8()
is now implemented identically across all platforms.
126.0#
Added#
CC-505:
omni.telemetry.transmitter
now has the capability to send data to multiple endpoints at once. To do this, just make the settings key/telemetry/transmitter
and array of objects. Each object will transmit to a separate telemetry endpoint.The new setting
/telemetry/transmitter/retryLimit
has been added to allow the transmitter to handle offline telemetry endpoints more gracefully.
CC-505:
omni.telemetry.transmitter
can specify an array of telemetry endpoints with the setting key/telemetry/transmitter/endpoint
to specify fallback URLs to if your main endpoint goes down.CC-454, OM-28642:
omni.bind
diagnostic reporting has been re-done for a better experience when reporting things to the user. Multiple errors can be reported by a single run of the program as opposed to stopping at the first issue (some errors are still considered fatal and will halt execution immediately). Diagnostic messages are highlighted based on their severity if the output is a TTY.CC-533:
carb::tasking::ITasking::applyRangeBatch
was added as a more tunable alternative toapplyRange
and reduces the function call overhead ofapplyRange
.CC-447: carb.variant.plugin.dll now supports
RString
/RStringU
/RStringKey
/RStringUKey
as contained types.
Changed#
CC-505: The following omni.telemetry.transmitter settings have been updated to work better with the multiple endpoint system. The old settings will continue to work as long as the
telemetry/transmitter
settings key is not set; if you use the new settings keys, you must upgrade all of your keys to the new system./telemetry/resendEvents
=>/telemetry/transmitter/resendEvents
/telemetry/transmissionLimit
=>/telemetry/transmitter/transmissionLimit
/telemetry/endpoint
=>/telemetry/transmitter/endpoint
/telemetry/schemasUrl
=>/telemetry/transmitter/schemasUrl
/telemetry/authenticate
=>/telemetry/transmitter/authenticate
/telemetry/authTokenUrl
=>/telemetry/transmitter/authTokenUrl
/telemetry/authTokenKeyName
=>/telemetry/transmitter/authTokenKeyName
/telemetry/authTokenExpiryName
=>/telemetry/transmitter/authTokenExpiryName
/telemetry/eventProtocol
=>/telemetry/transmitter/eventProtocol
/telemetry/seekTagName
=>/telemetry/transmitter/seekTagName
/telemetry/authTokenType
=>/telemetry/transmitter/authTokenType
/telemetry/oldEventThreshold
=>/telemetry/transmitter/oldEventThreshold
/telemetry/ignoreOldEvents
=>/telemetry/transmitter/ignoreOldEvents
/telemetry/pseudonymizeOldEvents
=>/telemetry/transmitter/pseudonymizeOldEvents
The following settings have been deprecated. These settings will continue to work as-is, but they are no longer supported when using the/telemetry/transmitter
settings key. To continue using this functionality, specify the directory or file in/telemetry/transmitter/schemasUrl
with afile://
prefix./telemetry/schemaFile
/telemetry/schemasDirectory
Fixed#
CC-514: The
g_carbProfiler
global variable is now automatically set tonullptr
when the profiler is unloaded and/or the framework is released. Oncecarb::profiler::registerProfilerForClient()
is called, a load hook is installed which will cause theg_carbProfiler
global variable to be set for a module once the profiler module loads. Previously this global variable would be left dangling, potentially leading to crashes. A plugin or application need only be rebuilt to pick up this fix.CC-585: Fixed an issue with
carb::hashPair()
where it would erroneously always return 0.CC-593: Carbonite has changed its coding standard to not use keywords
min
ormax
in public headers and changed all existing places that previously used these keywords. This is an effort to prevent compilation issues when Windows.h is included without definingNOMINMAX
.::carb_min()
and::carb_max()
have been added as alternatives tostd::min
andstd::max
, in include/carb/Defines.h.CC-597: Build fix in
omni::core::PluginManager
for build error seen in clang.
125.0#
Added#
CC-258: ONI Python bindings now support
omni::string
by conversion to Python-nativestr
.CC-520: Added python support for several
IProfiler
functions that were missing.CC-506: Added “Robin Hood” open-addressing hash containers to
carb::container
:RHUnorderedMap
,RHUnorderedSet
,RHUnorderedMultimap
andRHUnorderedMultiset
. While similar to thestd
unordered containers, they are not drop-in replacements, but should be useable in many cases.CC-497: Added support for the new NVDF protocol for omni.telemetry.transmitter. Use the settings key
/telemetry/eventProtocol
to configure this.CC-497: Added an option to specify the name for seek tag in omni.telemetry.transmitter. Use the settings key
/telemetry/seekTagName
to configure this.CC-507: Removed some log messages in
ILauncher
that could lead to a deadlock in the child process.CC-440: Added overloads to allow
carb::extras::Guid
to be used as a key in astd::unordered_map
.CC-440: Added
IAudioDevice::getDeviceCapsByGuid()
andIAudioDevice::getDeviceNameByGuid()
.CC-440: Added example.audio.device to demonstrate usage of the
IAudioDevice
interface.CC-513: Added a walkthrough document and related example app and plugin to demonstrate how to create and use a Carbonite interface.
CC-383: Added the ability for ONI plugins to declare dependencies, and for Carbonite and ONI plugins to depend on each other.
omni::bind
now generates anOMNI_PLUGIN_INTERFACE
macro that defines thegetInterfaceDesc()
function, the same as carbonite interfaces. This allows for declaring dependencies to work the same between carb/omni. Omni modules can now export the functiongetModuleDependencies
to declare their dependencies. Carbonite and ONI plugin dependecies are tracked together, to unload order can be guaranteed across frameworks.
Changed#
CC-520: For carb.profiler-cpu.plugin, the
CARB_PROFILE_FRAME
macro now ignores themask
parameter by default. This is an effort to make frame processing consistent no matter what capture mask is specified. This behavior can be returned to the previous behavior (where themask
parameter is considered) by setting config key/plugins/carb.profiler-cpu.plugin/ignoreFrameMask
to false.CC-497: Increased the omni.structuredlog log header size to 1024 when new log files are generated. Older versions of omni.telemetry.transmitter should continue to work with these longer headers.
CC-440: The audio example binaries have been renamed to better indicate which submodule they demonstrate.
Fixed#
CC-516: Upgrade to OpenSSL 1.1.1o to fix multiple CVEs.
CC-520: Fixed a race condition in carb.profiler-cpu.plugin where it was possible to immediately query
IProfileMonitor::getLastProfileEvents
afterCARB_PROFILE_FRAME
but not receive the previous frame’s information (instead it was still the frame-before-previous).CC-519: Changed the
omni.structuredlog
tool to disable warning C4127 on Windows in generated header files. This warning occurs when a constant is used in an if-statement (which the generated code does intentionally on release builds). This can be treated as an error in builds that use higher warning levels.OM-50917: Fixed some issues with the audio device notifier in
carb.audio
on Windows when using the WASAPI backend.
124.0#
Added#
CC-498: Added more debugging log output to ILauncher when a new child process fails to launch (as error or warning level messages) and when a new process handle is first created (as info level messages). Only launch descriptor values that differ from their defaults will be output.
CC-291: Added documentation for
/audio/nullBackend/CaptureTestMode
.CC-291: Added
/audio/nullBackend/ReportsOverruns
for testing overrun detection inIAudioCapture
.
Changed#
CC-478: On Windows, the memory functions (
carb::allocate
,carb::deallocate
, andcarb::reallocate
) no longer require carb.lib to be linked in order to build; instead, by default they now find the underlyingcarbReallocate
function from carb.dll at runtime. However, sometimes it is desirable to have carb.dll loaded implicitly. This is now accomplished by definingCARB_REQUIRE_LINKED=1
before including include/carb/Memory.h and will also require linking against carb.lib.CC-500: Changed the exit codes returned from
carb::launcher::ILauncher::waitProcessExit()
and fromcarb::launcher::ILauncher::getProcessExitCode()
on Linux in the case of a crashed child process so that they return the same value that a shell would report in$?
. This does not in any way affect the exit code returns in the case of child processes that exit normally. It is left up to an exercise for the host app to detect and handle the event of a crashed child process. In general, Linux processes will return a value that is 128 plus the number of the signal (ie: SIGSEGV, SIGABRT, etc) that killed the process. On Windows a crashed process will generally have an exit code that starts with 0xc0000000 (though this is not true in the case ofraise()
,abort()
, or a failedassert()
call which all typically set an exit code of3
).CC-291: Renamed some device backend settings in carb.audio-forge to make it easier for users to find settings.
/audio/oldWindowsBackend
was renamed to/audio/WASAPI/legacyBackend
./audio/nullDeviceCount
was renamed to/audio/nullBackend/DeviceCount
./audio/nullBackendIsFunctional
was renamed to/audio/nullBackend/IsFunctional
./audio/nullBackendCaptureTestMode
was renamed to/audio/nullBackend/CaptureTestMode
.
Fixed#
CC-486: Improved performance of carb.tasking.plugin: fewer system calls to wake a thread, and fiber stack reset (if
/plugins/carb.tasking.plugin/resetFiberStack
istrue
) now only occurs in a single thread when no other tasks are available to run.Fixed a compilation issue with
CARB_PROFILE_EVENT()
macro.DRIVE-4086: Fix for reconciling an external callers held zoneId with the new/replayed zoneId created on fiber switch.
CC-473: Allow for plugins to depend on interfaces they provide.
OM-36366: Fixed a bug in
carb.audio
that would cause a muted sound to not be muted if thecarb::audio::fPlaybackModeFadeIn
flag was also used.
123.0#
Added#
OM-48634: Add GPU timestamp injection interface to
IProfiler
.OM-48808: Reworded some output in the crash reporter about the size and readability of the crash dump file to make it more clear whether the dump file was deleted due to a successful upload or not.
CC-470: The
Framework
now supports “load hooks”: a load hook is a callback that is called when an interface becomes available from a plugin load. This can be used to weakly couple plugins, such as if a Profiler plugin doesn’t normally load carb.tasking.plugin, but takes action when it is otherwise loaded.OM-49026: Improved the
carb.crashreporter-breakpad.plugin
startup by deferring symbol loading until a crash actually occurs.CC-485: Improved performance of carb.tasking.plugin on Windows by setting the system timer to the highest resolution available.
CC-485: Further improved performance of carb.profiler-cpu.plugin when used with carb.tasking.plugin by more quickly recording task switches.
Changed#
CC-479: Upgraded to FLAC-1.3.4. This fixes CVE-2021-0561.
CC-449:
IAudioCapture
on Windows no longer uses DSound. It now uses the same capture system as on Linux, with a device backend built on Windows Audio Services. Functionality on Windows should not change substantially; the only major difference is that the new system has improved overrun detection. Additionally, this means thenull
device backend will now work withIAudioCapture
on Windows.
Fixed#
OM-48865: Fix potential infinite loop in ProfilerNvtx ‘endEx’.
OM-47219: A better fix for the degenerative performance issue when carb.profiler-cpu.plugin was used with carb.tasking.plugin and /plugins/carb.profiler-cpu.plugin/fibersAsThreads as
true
.CC-422:
carb::Framework
will not print a warning message when a plugin acquires an interface that is not listed as a dependency if that interface is provided by the plugin that is loading it. a dependency if that interface is provided by the plugin that is loading it.CC-475
omni.experimental.job.plugin
no longer links with X11.CC-472: Fixed an issue that could cause a hang if multiple threads in different modules were using
carb::RString
at the same time.CC-483: Worked around a few places in the logging system that could deadlock via interaction with internal locks in GLIBC 2.17, especially when logging in a thread while a different thread loads a python binding .so which registers a log listener in a static initializer.
CC-483: Fixed a potential hang that could occur when using
carb::getCachedInterface
simultaneously from multiple threads.
122.0#
Added#
CC-359: carb.variant.plugin now supports strong types (
carb::Strong
).CC-415: carb.variant.plugin now has a new
carb::variant::VariantArray
type which can be used to create an array of variants, and now also supportsstd::pair<Variant, Variant>
.CC-415: carb.variant.plugin now defines (in the
carb::variant_literals
namespace) a literal_v
that can be appended to a literal to create aVariant
type from it (e.g.123_v
,"Hello"_v
, etc.)CC-359: carb.assets.plugin is now documented and now sends (via carb.eventdispatcher.plugin, if available) events
Asset.BeginLoading
when loading (or re-loading) starts for an asset, andAsset.EndLoading
when loading finishes. Seecarb::assets::IAssets::loadAsset()
in include/carb/assets/IAssets.h for more information.CC-441: Added a specialization of std::hash for carb::cpp17::variant.
CC-376:
omni.bind
generated Python bindings now support keyword parameters with names based on their C++ parameter name (insnake_case
). This can be overridden withOMNI_ATTR("py_name=something_else")
.
Changed#
BREAKING CHANGE: The types
Id
,Pool
andSnapshot
within thecarb::assets
namespace have been converted to strong types (carb::Strong
) instead of fake pointer types. As such, assigning them to0
ornullptr
will now cause a compile error. Instead use their default constructed or special invalid types:kInvalidAssetId
,kInvalidPool
andkInvalidSnapshot
, respectively. Forprintf
-style formatting, instead of using%p
, use the format specifier for the underlying type and call the.get()
function. This is to better facilitate types passing through the Variant system.BREAKING CHANGE: The rarely-used
carb::assets::CreateContextFn
loader function must now return acarb::assets::LoadContext*
instead of avoid*
; the rarely-used symbolcarb::assets::OnDependancyChangedFn
has had its spelling correct tocarb::assets::OnDependencyChangedFn
.CC-275: Updated the Windows audio playback backend to an improved implementation. If you run into playback issues, you can restore the old backend with this settings key:
/audio/oldWindowsBackend
.OM-39028: improved
carb::dictionary
conversion error reportingCC-420: On Linux, changes the
carbReallocate
function to be weak-linked. This alters the memory functions which use it (carb::allocate
,carb::deallocate
, andcarb::reallocate
) to understand this and gracefully fail when thecarbReallocate
function is not available. This allows users which only incidentally use these functions to not link againstlibcarb.so
. This case is common for plugins which might use anomni::string
.
Fixed#
CC-404/OM-46660: Fixed an issue with carb.input.plugin where action mappings referencing a device were not cleaned up when a device was destroyed, potentially causing a crash later when the destroyed device was dereferenced.
CC-423: Worked around an internal compiler error with gcc-7 that can occur in some cases when using include/omni/String.inl.
OM-47219: Fixed a degenerative performance issue when carb.profiler-cpu.plugin was used with carb.tasking.plugin and /plugins/carb.profiler-cpu.plugin/fibersAsThreads as
true
.CC-455: Fixed an issue with
carb::tasking::IFiberEvents
where a task may have ended and a new task begun without any notification.OM-33460: Fixed ObjectParam member access operator.
CC-373:
fillOutArray
lifted restriction for array size argument. It used to beuint32_t
, now it’s anyunsigned
type.CC-359: Fixed an issue with
carb::variant::Variant
wheregetValue<const char*>
would read garbage from aVariant
of typeconst char*
.
121.0#
Added#
CC-289: Allowed
omni.structuredlog.plugin
to be used in a ‘standalone’ mode. This plugin can be used in a non-Carbonite app without the need for other dependent libraries (including ‘carb.dll/so’). When being used in standalone mode, the omni/structuredlog/StructuredLogStandalone.h header should be used to pull in the supported dependencies. The structured log library is expected to be present in the same directory as the main executable. The example.structuredlog.dynamic example app demonstrates how the library can be used in standalone mode.CC-396: Added string conversion helpers to Utf8Parser.h, which will allow easy conversions between UTF-8 and UTF-16/UTF-32.
CC-377: Added carb.eventdispatcher.plugin which is a replacement for carb.events.plugin for immediate events (the carb.events.plugin is more of a message queue). Additional features:
Allows observers to filter which events they receive.
Doesn’t use carb.dictionary.plugin; instead it uses a new extensible variant system in carb.variant.plugin which is faster than dictionary and supports the same types.
More clearly defined behavior of recursive event dispatching when adding/removing observers.
Lack of ref-counting prevents crashes like OM-43254 from unreleased events.
CC-421: Carb python logging will now convert to string and log any python object.
Fixed#
CC-401: Update Python and OpenSSL dependencies to fix a security vulnerability.
CC-396: Fixed some security issues in
carb::extras::Utf8Parser
around invalid characters.
120.0#
Added#
CC-363: Added support for specifying other types of authentication tokens in
omni.telemetry.transmitter
. This now supports long-lived API keys as tokens through the use of the ‘/telemetry/authTokenType’ setting and specifying a local file through ‘/telemetry/authTokenUrl’ instead of a URL. These two options can also be used to specify a long-lived API key that is downloaded from a custom URL or read from a file. The ‘/telemetry/authTokenKeyName’ and ‘/telemetry/authTokenExpiryName’ settings can also be used to specify different ways to parse the token out of a JSON blob from all sources. By default, the token type is detected based on whether it is retrieved from a URL or file.CC-199: Added the
IJob
interface.IJob
is an experimental ONI interface that provides an abstraction for a foreign job system.
Changed#
Documentation for
omni::string
explaining the requirement for linking against carb.dll/libcarb.so to useomni::string
OM-45612: Changed an error message from carb.profiler to a warning since it could potentially be written out frequently and flood the telemetry data lake if it is redirected as a telemetry event.
Fixed#
CC-364: Fixed improper use of
memory_order_relaxed
incarb::tasking::TaskGroup
and improper use ofvolatile
.CC-355: Fixed some minor rendering issues in
IAudioUtils::drawWaveform()
. Golden image tests that use this functionality will likely need their images regenerated.CC-362: Fixed the
flags
parameter validity checks incarb::audio::createSoundFromFile()
andcarb::audio::createSoundFromBlob()
.CC-362:
IAudioData::getFormat()
has had its documentation corrected.CC-362: Fixed the confusing behavior of
SoundData.get_format()
on streaming sounds in thecarb.audio
python bindings.
119.0#
Added#
OM-44734: Added a ‘retry count’ to each crash dump’s metadata. If a crash dump fails to upload multiple times, it will eventually be deleted and considered corrupt instead of letting failing crash dump files pile up locally and attempting to upload on each new run. The retry count to delete failed dumps after is controlled with the setting ‘/crashreporter/retryCount’. This is an integer value that defines the maximum number of times to try an upload of any given crash dump file. This setting defaults to 10 tries. This can be set to a lower value to delete so that on the next run, any local dumps that have already been tried and failed that many times will be deleted if they fail again.
CC-329: added python bindings for
IAudioData
.
Fixed#
CC-353: Fixed a build break in GCC 9.3.0 caused by
__attribute__(())
syntax changes.CC-374: Fixed memory orders and contention issues that could arise on high CPU counts, especially on AArch64 machines.
118.0#
Added#
CC-316: Added the
audio/pulseAudio/enumerateMonitors
setting to allow PulseAudio’s loopback (AKA monitors) devices to be enumerated as audio capture devices.CC-331: Added
carbGetSdkVersion()
and include/carb/SdkVersion.h to allow access to the SDK version string. A helper macro was also added to allow verification of whether the loaded Carbonite framework version matches the header files that are being used in a host app.OM-44740: Added the Carbonite SDK version as metadata in the crash reporter.
Changed#
CC-301: Changed all of the Carbonite framework globals (ie:
g_carb*
) so that they are weakly linked. This is to resolve an issue related to pulling in include/carb/extras/ headers from pure ONI modules. When this happened, the linker would often add an undefined reference to one of the framework globals because something in the header calledCARB_ASSERT()
,CARB_LOG_*()
, etc.OM-44182: Changed the ‘quick shutdown’ process to include unloading the omni.core plugins as well as the Carbonite plugins.
CC-304:
carb::delegate::Delegate
now allows itself to be destructed while in a callback.
Fixed#
OM-43654: Evaluated all Carbonite Python bindings and released the GIL (global interpreter lock) wherever appropriate.
CC-326: Fixed a crash that could sometimes occur in carb.profiler-cpu.plugin when
/plugins/carb.profiler-cpu.plugin/recordSourceInfo
was enabled (the default).OM-43254:
carb::memory::PooledAllocator
behaves correctly if the underlying allocator throws duringallocate()
.OM-43254: Resolved and issue with carb.dictionary.plugin where a
std::bad_alloc
exception could be raised during operations that could create a newdictionary::Item
. This is now considered a fatal condition instead of allowing an exception to cross the ABI boundary.OM-43898: Thread safety improvements to fix a rare crash and a few other issues in carb.audio.
117.0#
Added#
CC-298:
omni::string
now supportsprintf
-style formatting through additional constructors and functions:assign_printf
,append_printf
,insert_printf
andreplace_printf
._vprintf
versions of these functions also exist that accept ava_list
.CC-253: Adds overloads to
omni::string
forstd::string
,carb::cpp17::string_view
, andstd::string_view
. These additional overloads make it easier to useomni::string
withstd::string
.CC-274: Implemented
carb::container::IntrusiveUnorderedMultimap
. See the documentation for more details and example usage.CC-193: Adds
CARB_TOOLCHAIN_CLANG
definition to be1
when a Clang-infrastructure tool is running (0
otherwise).
Changed#
CC-266: Both the omni.bind and omni.structuredlog tools now support the
--fail-on-write
option that causes them to fail their operation if a change to a generated file needs to be written to disk. This is used in the CI build scripts to ensure that MRs that make changes to generated code always include the latest version. If the build fails due to this error, the solution is to run a local build first and commit any changed files. Changes to generated files can occur if the codegen tools in the Carbonite SDK (orrepo_format
since the Carbonite codegen tools also use it for code formatting) are updated and produce different results from previous. This can occur any time the Carbonite SDK version is updated in the dependecies of another project.OM-43576: Removed the
MiniDumpWithDataSegs
flag from the crash dumps on Windows. This skips adding the global data segments of each module to the crash dump which can make some debugging tasks more difficult. However, if needed that dump flag can be added back by using the ‘/crashreporter/dumpFlags=WithDataSegs’ setting. Removing this flag does have the benefit of significantly reducing the size of crash dump files, especially in projects that have a large number of loaded modules.CC-247: Warn, instead of fail, when a user asks for 0.x and we have an implementation 0.y (where y > x). Previously, we error out when x != y since according to semver 0.* versions should not be considered to be backwards compatible (but they could be). Note that in 1.0 and higher there would be no change to how versions are checked. In that case, minor versions are always backwards compatible.
Fixed#
CC-295: Fixed compilation errors in
omni::string
when exceptions are disabled.CC-303 / OM-43576: Now that
MiniDumpWithDataSegs
has been removed from crash dumps,RString
values cannot be resolved in minidumps. CC-303 resolves that by including additional debugging information forRString
in crash dumps. Also establishes better testing practices for futureRString
version changes.CC-306: Fixed a compiler error when using
operator+(carb::extras::Path, const char*)
in theomni
namespace. That operator was ambigous following the additionaloperator+
overloads added by CC-253. Added additionaloperator+
overloads forcarb::extras::Path
to remove the ambiguity.OM-43783: Fixed an issue in
carb::cpp20::counting_semaphore
andbinary_semaphore
where threads would busy wait.OM-43783: Fixed an issue in include/carb/Framework.h that would cause issues if
free()
was#define
’d (i.e. for memory debugging).OM-43783: Cleaned up some Intellisense warnings in include/carb/cpp17/Variant.h
OM-43783: Fixed some ambiguous operator errors and namespace issues with include/omni/String.inl and include/carb/cpp17/StringView.h that could occur when building external projects.
OM-43783: Issues around
std::vsnprintf()
that are worked around in include/carb/extras/StringSafe.h also now apply tostd::snprintf()
as well.CC-193: Changes GNUC compiler-specific warning macros (those with names like
CARB_IGNOREWARNING_GNUC
) to be available whenCARB_COMPILER_MSC
is1
and a Clang-infrastructure tool is being run (CARB_TOOLCHAIN_CLANG
is1
). This now correctly suppresses GNUC-specific warnings being emitted on the Windows platform from Clang.OM-43819: Allowed the
omni.structuredlog.plugin
module’s ‘shutdown’ flag to be cleared each time the plugin is reloaded, even if the previous unload didn’t actually remove it from memory. This prevents some crashes and potential loss of functionality on Linux when dlclose() silently leaves the library loaded.Reverted CC-5: Ability for crashreporter to upload files (attachments) to S3. The original change was causing issues on Linux related to the static linking of OpenSSL in carb.crashreporter-breakpad.plugin and conflicting with the static linking of OpenSSL in Python 3.7. A future Carbonite build will reinstate this functionality.
116.0#
Added#
CC-183: Added
std::string
andcarb::cpp17::string_view
overloads toIDictionary::makeAtPath()
.CC-82: Added optional support for zipping crash dump files before uploading them. The zip implementation supports 4+GB files and can process files without allocating memory at crash time. The zip files are typically ~10% the size of the original file in practice, so crash dump upload time should be greatly reduced once supported on the server side.
CC-252: Added DLL boundary safe
allocate
,deallocate
, andreallocate
top level functions to Carbonite. These functions all use an internal reallocation function within carb.dll/libcarb.so, making them safe to use from different modules.carb::Framework::internalRealloc
,carb::Framework::allocate
,carb::Framework::free
, andcarb::Framework::reallocate
are now deprecated in favor of these new top level functions.CC-263: Added
IFileSystem::makeCanonicalPathEx2()
. This version takes an extraflags
parameter that allows some behaviour to be controlled. By default on Windows, this version assumes that the caller has already checked if the given file already exists. Thecarb::filesystem::fCanonicalFlagCheckExists
has been added to get back the same behaviour asIFileSystem::makeCanonicalPathEx()
.CC-244: Added a framework for simple geolocation to the telemetry transmitter. This will be used to allow the transmitter to exit itself early on startup if its current country matches a country code in a restricted regions list (specified in the ‘/telemetry/restrictedRegions’ setting). This is currently disabled due to the need for an account to use various geolocation APIs. This may be enabled at some point in the future. By default, the transmitter is allowed to run in all regions.
CC-246: Added
omni::detail::PointerIterator
, a wrapper iterator for a possibly-cv-qualifiedT*
as aT
iterator class. It does not change the semantics from the fundamental logic of pointers. This is meant to be used on container types with contiguous storage (such asvector
andstring
), as returning a pointer directly from iterator functions (begin()
andend()
) would be inappropriate.CC-218: Added flags and settings to the telemetry transmitter to control the behaviour of how old events are processed if they are encountered in a telemetry log.
CC-8: Added
omni::string
, an ABI safe replacement forstd::string
that also offers DLL-Boundary safe allocation.CC-290: Added
carb::extras::getLibraryHandleFromFilename()
to get a library handle without forcing a load (ie: only retrieve the handle if the library is already loaded in the process).
Changed#
CC-262: Improved some logging in the telemetry transmitter. It will now output the path to log directory it will be scanning and whether it is able to get a valid authentication token (if needed).
CC-281: Changed the way the omni.structuredlog.plugin plugin loads the privacy settings on startup. In addition to the previous method of loading the state into the ISettings dictionaries, it now also loads and caches the privacy settings state internally on plugin load.
CC-290: Added a
flags
parameter tocarb::extras::loadLibrary()
to allow a module name to be constructed internally from a base filename instead of having to explicitly callcarb::extras::createLibraryNameForModule()
first.CC-290: Changed
carb::extras::createLibraryNameForModule()
to allow path components to also be included in the base library name instead of only supporting the base name itself.
Fixed#
OM-42834: Fixed an issue on x86-64 Linux where carb.windowing-glfw.plugin required libGLX but did not link against it, potentially causing crashes if libGLX.so was unloaded before it.
OM-28142: omni.bind now only updates copyright in .gen.h files if the code contents of the file change.
CC-266: omni.structuredlog now only updates the copyright year in .gen.h files if other code changes also occurred.
CC-268: carb.events now keeps subscriptions at a given
Order
in the same order as when they were registered.CC-278: Resolved an issue where carb.profiler-cpu.plugin could potentially access memory from a DLL/SO after it had been unloaded.
CC-279: Resolved a rare issue with carb.tasking where a task could be assigned to an emergency thread which wouldn’t execute the task and could leave the task in a stuck state.
CC-293: Fixed an issue where carb.tasking could crash shortly after unloading if emergency threads had been started.
CC-217: Evaluated and fixed several places that were incorrectly using
std::memory_order_relaxed
.CC-292: Fixed an issue in carb.datasource-file.plugin where a crash could rarely occur when the plugin was shut down and unloaded.
115.0#
Changed#
CC-276: Instead of using getFileStat to determine the filesize of an opened file use fseek / ftell on linux and getFileSizeEx on windows. getFileStat retrieves costly information like the time converted to the local timezone which showed up in profilings.
CC-276: use DeleteFileEx to delete a file on Windows instead of ShFileOperationW for performance reasons.
Added#
CC-222: ILauncher: Added
ILauncher::waitForStreamEnd()
to wait for thestdout
orstderr
streams from a child process to end completely before doing other operations on the process handle. This allows a caller to ensure all the data from the child process has been received before destroying the process handle or waiting for the child process to exit. Since the reads from these streams happen asynchronously, it was not previously possible to ensure all data had been received without waiting for a fixed period of time after the child process exits.CC-222: ILauncher: added a single extra read callback call for
stdout
orstderr
streams when the stream ends. The end of the stream is signalled by delivering a callback with a zero byte count.CC-248: Exposed all of the minidump ‘type’ flags to the settings under
/crashreporter/dumpFlags
. These can either be specified as a single hex value for all the flags to use (assuming the user knows what they are doing), or withMiniDump*
flag names separated by comma (‘,’), colon (‘:’), bar (‘|’), or whitespace. There should be no whitespace between flags when specified on the command line. The ‘MiniDump’ prefix on each flag name may be omitted if desired. This defaults to an empty string (ie: no extra flags). The flags specified here may either override the default flags or be added to them depending on the value of/crashreporter/overrideDefaultDumpFlags
. This option is ignored on Linux.
Changed#
CC-222: ILauncher: documented some behavior on Linux where destroying a process handle before the child process exits could result in the child process terminating. This occurs if a read callback has been registered for the child process, then the child process tries to write to the stream (ie:
stdout
orstderr
) after the parent process has destroyed the handle. This occurs because the Linux kernel’s default behavior on trying to write to a broken pipe or socket is to raise a SIGPIPE signal. This cannot be worked around in a general case without the child process knowing to ignore SIGPIPE.
Fixed#
CC-220: Fixed a crash that could occur in carb.dll on Windows in
carb::filesystem::FileSystemWatcherWindows
, especially when watching paths that were mapped to network shares.CC-5: Added ability for crashreporter to upload files (attachments) to S3. By default the
.dmp
and.dmp.toml
are uploaded, but other files can be specified in the settings (either statically in config file or dynamically via the settings interface). By default only internal NVIDIA crashes are uploaded to carb-telemetry bucket. A future update will include a web interface and backtrace.io link to the data.CC-242: Fixed a issue on Windows that would cause DLLs to fail to load if their pathname exceeded 260 characters.
114.0#
Added#
Functions for string trimming
overwriteOriginalWithArrayHandling
function inDictionaryUtils.h
that handles overwriting of arrays during dictionary mergeCC-192: Added the
/audio/nullDeviceCount
setting to allow the number of null audio devices to be configured for testing purposes.CC-192: Added the
/audio/nullBackendIsFunctional
setting to allow the null backend to simulate broken audio devices for testing purposes.Some additional flags were added to
carb::extras::SharedMemory
.A
carb::extras::SharedMemory::open()
overload was added to support opening an existing region by name.carb::this_process::getId()
andcarb::this_process::getIdCached()
were added to carb/process/Util.h;carb::this_thread::getProcessId()
andcarb::this_thread::getProcessIdCached()
are now deprecated.carb::this_process::getUniqueId()
was added to generate a process-specific unique ID for the uptime of the machine since PID can be reused.carb::memory::testReadable()
was added to carb/memory/Util.h to test if a memory word can be read from an address without crashing.CC-182:
carb::Framework
now has memory management functions that enable cross-plugin memory blocks:allocate
,free
andreallocate
. Memory allocated with these functions by one plugin can be passed to and freed by a different plugin or the executable.CC-185: Added task debugging functions to carb.tasking.plugin:
ITasking::getTaskDebugInfo()
andITasking::walkTaskDebugInfo()
. These functions allow retrieving runtime debug information about tasks.CC-235: The carb.assets.plugin system will now provide more debug information about orphaned assets when asset types are unregistered and the system is shut down.
Changed#
CC-190: Allowed the
/telemetry/schemasUrl
setting to be treated as either an array of URL strings or just a single URL string. If multiple URLs are provided, they will be tried in order until a schemas package successfully downloads. This allows for a way for the ‘backup’ URLs to be provided for the telemetry transmitter.carb::extras::CmdLineParser now trims whitespace character for keys and values
OM-34980: Helper functions for processing command line arguments handle array and JSON values
CC-192: carb.audio previously had two
null
audio backends that could be chosen in different configurations (there was no obvious way to do this). Only one of thesenull
backends should be possible to use anymore. Audio devices under thenull
backend may appear to have changed as a result of this.CC-192:
IAudioPlayback::setOutput()
now checks for invalid flags, so it will now fail if non-zero flags are passed in which contain neither offOutputFlagDevice
orfOutputFlagStreamer
.How
carb::extras::SharedMemory::createOrOpen()
uses thesize
parameter when opening an existing shared memory region has changed to be safer. On Linux the shared memory region grows to accommodate a larger size; on Windows growth is not supported, so requesting a larger size will fail. Previously thesize
parameter was ignored which could lead to invalid memory accesses.On Linux, a global semaphore named
/carbonite-sharedmemory
is used to synchronize thecarb::extras::SharedMemory
system across multiple processes. If a process crashed or was killed with this semaphore acquired, all apps that usecarb::extras::SharedMemory
(or derivative systems, such asRString
and carb.dictionary) would hang when attempting to acquire the semaphore. Now, a warning log (or print tostderr
) is emitted after 5 seconds of waiting on the semaphore.CC-58: Previously,
Framework::unloadAllPlugins()
would terminate all plugins (callingcarbOnPluginShutdown
) and then on a subsequent pass unload the plugin (callFreeLibrary()
ordlclose()
). Now, the plugin is unloaded immediately after termination.
Fixed#
Replaced usage of
kUpdateItemOverwriteOriginal
withoverwriteOriginalWithArrayHandling
in code that handles configuration processingCC-192: Capture devices capabilities queried through
IAudioDevice::getDeviceCaps()
andIAudioCapture::getDeviceCaps()
will now reportfDeviceFlagConnected
on working devices.CC-192: Audio device capabilities queried through
IAudioDevice::getDeviceName
will no longer reportfDeviceFlagConnected
, since that function does not test for device connectivity/functionality.CC-192: When using the
null
audio device backend on Linux,IAudioPlayback
andIAudioDevice
in some configurations could report different playback devices. This should no longer occur.CC-181: On Linux, shared memory regions used for
carb::RString
could be left over from an incomplete previous run of a Carbonite application, causing crashes when RString was initialized. This has been fixed in a backwards-compatible way so that the application validates the shared memory.Fixed an issue with
extras::isTestEnvironment()
leaking module references on Linux.Fixed an issue with
IFileSystem::getExecutablePath()
andIFileSystem::getExecutableDirectoryPath()
not initializing in a thread-safe manner.Fixed an incorrect error message that was reported when using
ILauncher
on Windows.CC-227: omni.structuredlog timestamp checking has been fixed, so it won’t regenerate files during every build.
CC-213: Fixed carb.audio returning
AudioResult::eInvalidParameter
andAudioResult::eDeviceDisconnected
whenAudioResult::eDeviceLost
should have been returned.
113.0#
Fixed#
BREAKING CHANGE:
carb::Format::B5_G6_R5_UNROM
spelling was corrected tocarb::Format::B5_G6_R5_UNORM
.CC-1:
carb::RStringKey
andcarb::RStringUKey
now satisfystd::is_standard_layout<>
in order to conform to better ABI safety. The binary layout of these classes did not change and are therefore backwards compatible with older Carbonite binaries.CC-184: Fixed an issue where running a Carbonite executable as root on Linux could potentially cause other Carbonite executables by other users to crash on startup when either the
SharedMemory
orRString
systems were in use.Fixed a shared memory leak on Linux when the
RString
system was in use and shutdown occurred withcarb::quickReleaseFrameworkAndTerminate()
.OM-39751:
IAudioCapture::getSoundFormat()
will no longer report its format aseDefault
and it will also no longer report a channel mask of 0.CC-164: Fixed an issue where
carb::profiler::ProfileEvent
objects within a frame provided bycarb::profiler::IProfileMonitor
would not be sorted correctly.CC-219: fixed
IAudioPlayback
leakingStreamer
objects when theContext
is destroyed.
Added#
Documentation for our release and versioning process, docs/Releasing.html|rst
Implemented
carb::cpp20::bit_cast
andcarb::cpp20::endian
in include/carb/cpp20/Bit.h.carb/tasking/TaskingHelpers.h now contains additional macros such as
CARB_ASYNC
andCARB_MAYBE_ASYNC
to signal that a function is called from a task. Macros such asCARB_ASSERT_ASYNC
to assert that a function is running in task context.OM-41046: added
waitForClose()
tocarb::audio::OutputStreamer
, so that it is possible to verify when the output file is no longer being written to when you disconnect the streamer viaIAudioPlayback::setOutput()
.OM-41046: exposed
fOutputFlagAllowNoStreamers
inIAudioPlayback
to allow clients to easily have an audio context with no underlying audio device. This is mainly intended to simplify testing.CC-176: Added support for fixed length string buffers in structs to
omni.bind
.Implemented carb.simplegui.plugin, a wrapper around Dear ImGui with a built-in Vulkan raster renderer that significantly simplifies the work required to get a usable GUI for example projects. This also removes Carbonite’s dependency on the carb_gfx_plugins.
OM-39664: Added the
omni::platforminfo::IDisplayInfo
interface to use to collect information on all the attached displays in the system and their supported display modes.
Changed#
carb::dictionary::getStringArray()
now has its parameters marked asconst
.CC-163: Changed the
omni.structuredlog
tool so that it only writes the output files if they have changed versus the code that has been generated or the output file doesn’t exist yet. If the file already exists and is identical to the generated code, the output will just be ignored. This is to avoid having to touch timestamps for unmodified generated files and to avoid the possibility of a write permission error if another project with a missing dependency is currently reading from the generated file.OM-39751: add
/audio/maxDefaultChannels
to limit the number of audio channels that are used when opening an audio device with a default speaker mode. This was an issue when opening the “null” device in ALSA which reported the maximum possible number of audio channels. Opening anIAudioPlayback
context with more than 16 channels requires some additional setup, so this should not be automatic.OM-35496: added some extra omni.structuredlog bindings to python. As a result, omni.structuredlog now ships an
__init__.py
and a binary instead of only shipping a binary.CC-23: Applicable carb.tasking.plugin settings are now dynamic and will be reloaded automatically when they change.
112.53 @joshuakr#
Changed#
carb.profiler-cpu.plugin Improvements#
The
IProfiler
interface now supports Instant events via macroCARB_PROFILE_EVENT()
. Instant events are drawn on the timeline with zero duration. Instant events may not be supported by profilers other than profiler-cpu.The
IProfiler
interface now supports Flow events via macrosCARB_PROFILE_FLOW_BEGIN()
andCARB_PROFILE_FLOW_END()
. Flow events draw as an arrow between two zones and can begin and end in different threads. Flow events may not be supported by profilers other than profiler-cpu.When using carb.tasking.plugin and profiler-cpu, an Instant event is automatically emitted when a task is queued. A Flow event is automatically drawn from where the task was queued to when the task begins executing. When the setting key /plugins/carb.profiler-cpu.plugin/fibersAsThreads is
false
, Flow events are automatically drawn to connect all zones executing the task as they move between various task threads.For profiler zones, the Category field is now automatically set to the name of the library containing the zone.
The resulting (possibly compressed) json output from carb.profiler-cpu.plugin is more compact.
The “begin” event (via
CARB_PROFILE_BEGIN()
orCARB_PROFILE_ZONE()
) is now slightly faster.The “frame complete” event (via
CARB_PROFILE_FRAME()
) is now slightly faster.Fixed a few possible crashes that could occur if a library had been unloaded when unprocessed profile events referenced it.
112.52 @jshentu#
Added#
OM-40643: Added
createCursor
toIWindowing
. Allowing supplying custom image and use it as cursor shape.
112.51 @cdannemiller#
Changed#
Removed trailing new lines from all CARB_LOG messages as Carbonite will automatically add this newline to each log.
112.50 @jroback#
Added#
OM-36988: Added carb::extras::Uuid, UUIDv4 class for UUIDv4 unique identifiers
112.49 @jfeather#
Fixed#
OM-39751: removed an optimization for an edge case in carb.audio-forge that prevented certain callbacks from being sent.
112.48 @saxonp#
Added#
OM-22490: Include the deps folder in the Carbonite Package
112.47 @evanbeurden#
Fixed#
OM-40193: Deferred creation of the standard logger log file until a message is actually written to it. This was to fix the behaviour of a log file being truncated by a secondary concurrent launch of an app trying to write to the same log file even if the new process did not write any log messages.
OM-40193: Fixed the behaviour of
carb::logging::StandardLogger::setFileConfiguration()
in the case of disabling logging to file when the log file has not been opened yet. Previously the log filename was not being cleared as documented.OM-40193: Allowed
carb::filesystem::IFileSystem::closeFile()
to fail gracefully if passednullptr
. This makes the function more friendly to use and makes its behaviour match expected common OS level behaviour for similar functions such asfclose()
andCloseHandle()
.OM-40193: Enabled much more of the
omni.telemetry.transmitter
app’s logging by default. This allows it to leave a log file that can be reliably used for post mortem analysis of its behaviour.OM-40193: Updated the OpenSSL version used in the
omni.telemetry.transmitter
app to fix some issues under CentOS7.
112.46 @hfannar#
112.45 @evanbeurden / @joshuakr#
Fixed#
OM-40256: Fixed a potential race condition calling the IEventListener::onEvent() functions for subscribers to an event stream. It was previously possible to have the subscription removed at the same time the object was being used to call the onEvent() function.
OM-40212: Fixed an issue where serialized events sent from different threads could be received out-of-order despite the serialization. Added documentation for carb.events.
112.44 @joshuakr#
Added#
OM-39253: For
carb::profiler::IProfiler
,CARB_PROFILE_BEGIN()
now returns a value that can be passed toCARB_PROFILE_END()
for validation.OM-33647: carb.profiler-cpu.plugin now outputs source information if available. This can be disabled with setting: /plugins/carb.profiler-cpu.plugin/recordSourceInfo (default: true).
Documentation for header files in include/carb/profiler/.
Fixed#
OM-40102: Fixed a carb.tasking issue where a timed-wait could cause
ITasking::suspendTask()
to not work correctly.
112.43 @jfeather#
Fixed#
OM-40135: Converting bytes to frames with a variable-bitrate format in the audio utilities in AudioUtils.h will no longer result in a divide-by-zero. Note that this behavior is still an error.
OM-40135: setting
AudioImageDesc::lengthType
toUnitType::eBytes
should now function correctly instead of hitting a divide-by-zero.OM-40135: Fixed a bug where sounds would fail to encode due to libvorbis setting
bitrate_nominal
to a negative number.
112.42 @evanbeurden#
Added#
OM-39664: Added a concept of ‘volatile’ metadata to the crash reporter. These are metadata values that change frequently (ie: free RAM, frame rate, etc) that should only be collected in the event a crash does actually occur.
OM-39664: Added the ‘/crashreporter/debuggerAttachTimeoutMs’ config option to provide a wait period after a crash occurs where a debugger can attach before the crash upload and metadata processing actually occurs.
OM-39664: Added RAM, swap, and VM space information as metadata in the crash report.
112.41#
Fixed#
OM-40023: Add an error message when
remove()
fails inIFileSystem::removeFile()
to match the Windows behavior.
112.40#
Fixed#
OM-39974: Fixed a memory corruption crash that could occur when
IInput::clearActionMappings
was called in a multi-threaded environment.
112.39#
Fixed#
Updated the following INFO log from carb.audio from
[carb.audio.context] the bus count would not be changed => exiting
to[carb.audio.context] the bus count would not be changed => nothing to do
Changed that message to VERBOSE as well.
112.38#
Fixed#
carb::audio::IAudioUtils::drawWaveform()
will no longer encounter errors when the sound offset is specified in a unit other than frames.
112.37#
Changed#
Enable C++17 on codebase#
OM-34896: Enable C++17. By default Carbonite now compiles with C++17. Linux toolchains stay the same as before, MSVC has been moved to VS2019. All existing binaries remain 100% compatiable, including python bindings. Projects using Carbonite can continue using C++14. Carbonite remains backwards compatible with C++14.
112.36#
Fixed#
Fixed a bug in ILauncher on Linux where destroying a process handle could incorrectly close a file descriptor it didn’t own.
112.35#
Changed#
Drastically improved performance of carb.profiler-cpu.plugin#
OM-33716: Change carb.profiler-cpu.plugin to use per-thread queues instead of a global ringbuffer. This greatly improved performance by reducing contention: about 99.5% faster in highly contended cases.
Switched to using Ryu and {fmt} for conversion of numeric values to string in the profiler for additional speed improvement. Adjusted compression settings so that a generated .gz profile is about 2% larger but much faster.
OM-39381: Fixed an issue where
CARB_PROFILE_FUNCTION
incorrectly generated the function name.
112.34#
Fixed#
OM-39573: Fixed an issue where dictionary keys that ended with
_0
could drop the_0
.
112.33#
Fixed#
OM-38834:
IFileSystem::readFileLine()
now consumes the line ending even if there is no room for it in the buffer provided. See the documentation forIFileSystem::readFileLine()
for more information.
Changes#
Keys for carb.dictionary.plugin now internally use
carb::RString
. This has no effect on the plugin interface, ABI or API but should result in higher performance and less (transient and long-term) memory usage.Compile-breaking change: carb/rstring/RString.h has moved to carb/RString.h.
112.32#
Fixed#
Added better collection of the Windows product name string to include Windows Server versions in
omni::platforminfo::IOsInfo
.Added support for retrieving page file information in
omni::platforminfo::IMemoryInfo
.Added support for retrieving the system compositor vendor and version in
omni::platforminfo::IOsInfo
.
112.31#
Fixed#
OM-38790: Fixed memory corruption and invalid memory accesses that could occur in the
RString
system on Linux.Improved stability around
carb::extras::SharedMemory
andcarb.launcher
.
Added#
Added a
CARB_RETRY_EINTR
macro for GCC on Linux to automatically retry operations whenEINTR
is reported.All Carbonite python bindings are now built for Python 3.9 in addition to the previous platforms.
112.30#
Fixed#
Improved the retrieval of available physical RAM in
carb::extras::getPhysicalMemory()
.
112.29#
Added#
Added the
omni.platforminfo.plugin
plugin. This provides interfaces to access the CPU, memory, and OS information for the calling process.Added python bindings for the
omni.platforminfo.plugin
plugin.
112.28#
Fixed#
Structured Logging:#
Fixed a thread race condition that could lead to a crash.
112.27#
Fixed#
carb.scripting-python.plugin#
Using global context
getGlobalContext()
no longer causes stack overflow.
Changed#
carb.scripting-python.plugin#
Enabled UTF-8 mode for Python scripting by default. (https://www.python.org/dev/peps/pep-0540) It can be turned off with the
/plugins/carb.scripting-python.plugin/pythonFlags/Py_UTF8Mode
setting.
112.26#
Reverted#
The changes from 112.19 have been reverted pending further testing.
112.25#
Fixed#
carb.input.plugin#
OM-37121: Allow
filterBufferedEvents()
to be called multiple times beforedistributeBufferedEvents()
is called.Compile-breaking change: The
InputEventFilterFn
now returns aFilterResult
enum instead ofbool
. Previous return values offalse
should now returnFilterResult::eRetain
and previous return values oftrue
should now returnFilterResult::eConsume
.
Other#
carb::getCachedInterface
can now take a template parameter to reference a specific plugin. If specified, the parameter must be a global const char array to have the requisite template linkage.Improved some error messages around
tryAcquireInterface
failures.
112.24#
Fixed#
carb.assets.plugin#
OM-38102: The carb.assets system would consider successful but zero-byte loads from a datasource as failures. This is no longer the case: zero-byte successful loads are now treated as success and the asset will proceed with the loading process.
carb::assets::IBlobAsset
now supportsnullptr
/zero-byte data and has been changed to version 1.0.
112.23#
Changes#
carb.crashreporter-breakpad.plugin#
OM-38102: Crashes now store metadata as a separate file alongside crashes, so if crash uploads must be deferred until a subsequent run, the proper metadata can be uploaded.
The uptime of the application (measured as time that carb.crashreporter-breakpad.plugin has been loaded) is now automatically included in the metadata as
UptimeSeconds
.The UUID of the dump is now included in the metadata as
DumpId
.Crash metadata is included in the human-readable text file that is produced alongside the crash dump.
112.22#
Changed#
fix carb.log_* python functions to provide more source info (file, line number, module etc) to the logging system.
112.21#
Fixed#
OM-37197: When carb.crashreporter-breakpad.plugin detects a crash and writes out the callstack in the .txt file, it now attempts to discern source file and line information (via
addr2line
) and include it in the report.Resolved an erroneous log message “Failed to create or open a semaphore” that would be logged when using
RString
in multiple modules.
112.20#
Removed#
Removed the
omni/extras/InterruptableSleep.h
header and related classes in favor of usingcarb::cpp20::binary_semaphore
directly instead.
112.19#
Added (Reverted in 112.26)#
Functions for string trimming
OM-34980: Helper functions for processing command line arguments handle array and JSON values
Changed (Reverted in 112.26)#
carb::extras::CmdLineParser now trims whitespace character for keys and values
112.18#
Fixed#
OM-37431: Fixed an internal carb.tasking assumption that could lead to
CARB_CHECK
violations.OM-37902: Fixed a race condition with certain timed waits that could lead to asserts and test failures.
112.17#
Fixed#
OM-37870: Fixed an issue that was causing
carb::tasking::Future
returned fromITasking::addTask
(and variants) to be signaled before a task was complete, causing spurious test failures. Added documentation.
112.16#
Added#
Added the omni.telemetry.transmitter tool to its own package that is published with the other Carbonite packages. This was done for easier deployment of the tool in non-Carbonite projects that want to use it.
112.15#
Added#
OM-31214: Added a function
carb::quickReleaseFrameworkAndTerminate()
which will attempt to shutdown all plugins, flushstdout
andstderr
, and terminate the app viaTerminateProcess()
on Windows or_exit()
on Linux.
Fixed#
carb.memory has been disabled by default for Debug builds (it was already disabled by default for Release builds) as it could cause shutdown crashes.
On Windows, if
main()
exits and the Carbonite framework has not been shut down, the framework now attempts to shut itself down before all threads are terminated.A workaround was implemented when using carb.tasking with ASan and UBSan: false errors could previously be reported due to fiber stack memory being reused. If ASan is detected, the memory for thread stacks is now
mmap
’d toPROT_NONE
instead of unmapped, leaving the address space non-reusable but preventing the errors.
112.14#
Fixed#
OM-37286: Fixed possible UB with
carb::tasking::Trackers
storing aninitializer_list
.Fixed a compile issue with include/carb/assets/IAssets.h on GCC 10.
112.13#
Fixed#
OM-34654: carb.dictionary.serializer-json could not handle serializing or parsing float values such as
inf
ornan
, which could cause corrupted JSON files from failed serialization. This has been fixed to serialize those values as strings so they can be serialized/deserialized properly.
112.12#
Changed#
carb.crashreporter is now enabled by default on Linux.
112.11#
Changed#
Changed carb.crashreporter-breakpad to determine the absolute path of the crash dump directory during configuration rather than in the crash handling code path to prevent possible errors while crashing.
112.10#
Changed#
Changed command line setting parsing to also parse hexadecimal and octal values.
112.9#
Fixed#
Changed command line setting parsing to also parse hexadecimal and octal values.
112.8#
Fixed#
Made the handling of finding the system temp directory more robust on Linux and improved some error messages from
carb::filesystem::IFileSystem::makeTempDirectory()
.
112.7#
Fixed#
Command line settings are now parsed as 64 bit integers and doubles, rather than 32 bit integers and floats. This prevents clamping of values larger than the maximum values of 32 bit integers or floats.
112.6#
Changed#
Changed carb.crashreporter-breakpad to print the absolute path of the crash dump file.
112.5#
Changed#
carb.crashreporter is now disabled by default on Linux.
112.4#
Changed#
Added a
omni::core::ImplementsCast
that only implements thecast_abi
function.
112.3#
Fixed#
CrashReporter-Breakpad changes#
OM-34471: Reduced the amount of redundant Verbose log output.
OM-36335: Asynchronous uploading of crash dumps was holding a mutex that could block the main thread. This mutex is no longer held while the upload is pending, allowing the main thread to proceed.
112.2#
112.2#
Changed the code generator for structured logging to use
repo_format
.
112.1#
Fixed#
Resolved an issue with counted
RString
objects from 112.0 where the length was not always taken into account.
112.0#
Changed#
RString changes#
RString
API has a minor change:isNone()
is replaced byisEmpty()
, and default-constructedRString
will refer to an empty string (c_str()
returns “”). Similarly,eRString::RS_None
is replaced byeRString::Empty
.RString
and variant classes now have constructors that accept a counted string (length provided) and astd::string
.As such,
RString
now supports strings with embedded NUL (‘\0’) characters.
CrashReporter-Breakpad changes#
Windows minidumps now include data segment information (global variables).
RString
data is included in Windows minidumps.Settings key
/crashreporter/preserveDump
(default: false) can be used to have a dump file remain even after it has been uploaded to the server.Several log messages when writing a crash dump and uploading were changed from Verbose to Warn to be more visible.
Fixed#
On Linux, processes launched via
ILauncher
withfLaunchFlagNoStdOut
and/orfLaunchFlagNoStdErr
would close the file handles forstdout
andstderr
, allowing them to be reused. This could lead to undefined behavior.
111.21#
Added#
Added
BitScanForward
,BitScanReverse
, andPopCount
functions tocarb::math
111.20#
Optimized read access of the IDictionary interface.
Fixed#
Changed#
OM-36102: carb.crashreporter-breakpad prints crash dump file location at error level when crash occurs.
111.18#
Fixed#
omni::core::cast would not compile if used with
IObject
and the Implementation uses multiple inheritance.Added a unit test for the above.
111.17#
Fixed#
OM-13024 and OM-25736: Interfaces (that may be non-trivial) were always memcpy’d when instantiated. Now, by means of a new plugin function
carbOnPluginRegisterEx2
(automatically generated byCARB_PLUGIN_IMPL
), the plugin interfaces are now constructed in place without memcpy. This requires the plugin to be recompiled against Carbonite 111.17. The Carbonite Framework version did not change and remains version 0.5. Any plugins compiled against Carbonite Framework 0.5 will continue to work (but will perform the memcpy which is unsafe if the Interface struct is not trivial), and Carbonite Framework 0.5 from Carbonite 111.16 and previous will continue to load newer plugins.
111.16#
Fixed#
OM-34946: C++17 compile error with pybind11 and BindingsPythonUtils.h
111.15#
Fixed#
OM-35664: Fixed an issue with plugin unload ordering where dependencies could be unloaded to early. This was rare and generally affected plugins which had a stated dependency in
CARB_PLUGIN_IMPL_DEPS
but did not acquire the dependency untilcarbOnPluginShutdown()
was called.
111.14#
Fixed#
OM-35375: It was possible for some
ISettings
setter functions such assetString
to call callbacks while an internal lock was held. This could lead to some deadlock situations if another thread was querying the settings.
111.13#
Fixed#
Renamed tempalte vars in
TypeTraits.h
to avoid conflicting with termios.h
Changed#
Moved the telemetry transmitter helper functions in
include/omni/structuredlog/Telemetry.h
from theomni::structuredlog
namespace toomni::telemetry
.Implied ‘test’ mode in the telemetry transmitter when the
/telemetry/schemaFile
or/telemetry/schemasDirectory
options are used.
111.12#
Fixed#
Fixed the
omni.structuredlog
tool to only disable MSVC’s ‘fast up-to-date’ check for projects that make use of the tool. Projects that do not use the tool will still skip the build check if they are up to date.
Changed#
omni::structuredlog::launchTransmitter()
will now automatically pass a number of settings from the host process to the child process, so that launching the transmitter is easier.
111.11#
Changed#
Updated to repo_format 0.6.4
111.10#
Fixed#
Fixed an issue with carb.profiler-tracy.plugin where throwing a C++ exception could cause issues after the plugin was unloaded.
Added#
Added a helper function to
carb::launcher::ArgCollector
to collect all the settings in a given branch and add them as arguments that can be passed to a child process.
111.9#
Changed#
Upgraded to repo_format 0.6.0 and ran latest repo_format on all code. This results in a large change to copyright ranges in the header of source files only.
111.8#
Changed#
Added support for memory profiling to carb.profiler-tracy.plugin.
111.7#
Fixed#
Fixed potential memory corruption that could occur within carb.tasking, especially with
ITasking::applyRange()
.
Changed#
omni.telemetry.transmitter requires
--/telemetry/allowRoot=true
to be able to run as root. This was done to prevent users from running the transmitter withsudo
and causing permission issues with the lock files.
111.6#
Fixed#
Shutdown/unload improvements#
Change 110.0 introduced a tweak to unload ordering that would attempt to discover “implicit dependencies” by plugins acquiring interfaces through
tryAcquireInterface
. There were issues with this implementation and it was disabled in version 111.3.A corrected unload order is now present in Carbonite. If plugin Foo acquires an interface from plugin Bar, Foo must now be unloaded before Bar. The exception to this rule is a circular reference, in which case unload order is the reverse of the load order.
Added#
Added documentation for the various structured log settings to the Telemetry Overview docs.
Added documentation for the various telemetry transmitter settings to the Telemetry Overview docs.
Added
/structuredlog/logDirectory
to allow the output directory of structured logging to be specified by Settings.
111.5#
Added#
Structured Log#
Documented the wildcard helper functions in
include/omni/str/Wildcard.h
.Added settings keys to allow structured log schemas to be enabled or disabled from config files or command line.
The following new settings paths have been added to disable schemas and events. Each key under this path will enable or disable one or more schemas or events (wildcards are allowed):
/structuredLog/state/schemas
: enable or disable zero or more schemas when they are first registered./structuredLog/state/events
: enable or disable zero or more events when they are first registered.
The following new settings keys have been added to disable schemas and events. Each of these keys is expected to be an array of strings indicating the schema or event name and its enable or disable state:
/structuredLog/schemaStates
: enables or disables zero or more matching schemas when they are first registered./structuredLog/eventStates
: enables or disables zero or more matching events when they are first registered.
For more information, see
include/omni/structuredlog/StructuredLogSettingsUtils.h
or consult the generated documentation package.Added
/structuredlog/logDirectory
to allow the output directory of structured logging to be specified by Settings.
Utilities#
Added
carb::this_thread::getProcessId()
andcarb::this_thread::getProcessIdCached()
to wrap the platform-specfic code needed to get a process ID.
111.4#
Fixed#
Fixed a hang that could occur rarely with
carb::getCachedInterface<>
on the AArch64 platform.
111.3#
Changed#
The “Improvements to Carbonite Shutdown” from version 110.0 have been revoked pending review. An issue was discovered that would cause improper plugin unload order on shutdown.
111.2#
Added#
String-interning (registered fast-comparison strings)#
A registered string class
RString
has been added in carb/rstring/RString.h.The
RString
class is case-sensitive, but has companion classRStringU
that is “un-cased” (i.e. case-insensitive).The
RString
and variant classes can be (in)equality checked in O(1), and non-lexicographically sorted in O(1) time.All registered strings are shared within an application’s memory space across multiple modules and can be used prior to
main()
without needing to instantiate the Carbonite framework.Carbonite registered strings are similar to Unreal’s
FName
,boost::flyweight<std::string>
and USD’sTfToken
.
111.1#
Added#
/telemetry/schemasDirectory
and/telemetry/schemaFile
has been added to omni.telemetry.transmitter. This will allow debug builds to load their telemetry schemas from disk instead of requiring a HTTP download./telemetry/authentication
has also been added to the transmitter to allow test cases where authentication can’t be used.
Fixed#
Fixed a shutdown crash that could occur if a cached interface was destroyed after the Carbonite framework has been unloaded.
111.0#
Removed#
Removed unused, untested lua bindings.
110.1#
Fixed#
Fixed an issue with carb.scripting-python.plugin where
IScripting::executeScript()
andIScripting::executeScriptWithArgs()
would crash if the script had incorrect Python grammar.
110.0#
Changed#
Improvements to Carbonite Shutdown#
If a plugin creates a dependency with
tryAcquireInterface()
, that dependency could be unloaded before the plugin is unloaded, leading to potential crashes at shutdown. Now such a dependency is taken into account during plugin unloading so that plugins are unloaded before their dependencies.The
getCachedInterface()
helper function no longer tries to re-acquire the interface if the interface has been released. TheresetCachedInterface()
function will evict the cached interface and reset so that the next call togetCachedInterface()
will attempt to re-acquire the interface. Releasing the entire framework however does reset the cached state so that it can be re-acquired.Cached interfaces are now evicted immediately prior to calling
carbOnPluginShutdown
for a plugin. This causesgetCachedInterface()
to returnnullptr
instead of an interface that is in the process of destructing.
109.0#
Changed#
carb::extra::EnvironmentVariable
is now RAII class.
108.14#
Added#
IAudioDevice::getBackend()
has been added to allow users to check which audio backend they’re running under to make specific decisions based on which audio system is running. This is mainly intended to be used to detect if ALSA is in use, which makes some operations (such as device enumeration) costly.
108.13#
Changed#
omni.telemetry.transmitter switched from environment variables to ISettings. This allows users to configure omni.telemetry.transmitter with the config.toml file or via command line arguments.
OMNI_TELEMETRY_ENDPOINT
has been replaced with/telemetry/endpoint
.OMNI_TELEMETRY_SCHEMAS_URL
has been replaced with/telemetry/schemasUrl
.
108.12#
Changed#
omni.telemetry.transmitter no longer uses python.
omni::structuredlog::launchTransmitter()
has had the arguments for its python environment removed.
108.11#
Changed#
The carb.tasking.plugin heuristic that guides
carb::tasking::ITasking::applyRange
has been adjusted to allow for more parallelism, especially with fewer than 512 items.
108.10#
Fixed#
Callstacks reported by carb.crashreporter-breakpad.plugin during crash time now include offsets next to the function names in order to be more accurate.
108.9#
Changed#
carb.profiler-cpu is now statically linked to zlib on Linux. This was the existing behavior on windows.
Public include files should now build cleanly with /W4 warning level on MSVC and -Wall on GCC.
Added#
carb.tasking.plugin Additions#
If the /plugins/carb.tasking.plugin/debugTaskBacktrace key is true and a task enters the Waiting state, the backtrace is now captured and stored at
carb::tasking::TaskBundle::m_backtrace
for a given task. The entire database of tasks is available atcarb.tasking.plugin.dll!carb::tasking::Scheduler::s_scheduler->m_taskHandleDb
and can be added to the watch window.carb::tasking::ScopedTracking
now exists to be able to start and end tracking oncarb::tasking::Trackers
without having to add a dummy task (OM-33470).
108.8#
Fixed#
Fixed the
omni.structuredlog
tool when it is called using an external project (ie: outside of Carbonite). Previously this script would generate prebuild commands that would not work properly under MSVC. They would however build correctly when run throughbuild.{bat|sh}
. This tool has now been fixed to write out a full build script for MSVC prebuild commands and write out a similar set of commands for use on Linux.
108.7#
Changed#
carb.tasking.plugin Changes:#
An optimization where a task that waits on another task may attempt to execute the dependent task immediately, regardless of priority.
Dependency helper classes
carb::tasking::Any
andcarb::tasking::All
can now take iterators as input.Fixed a small rare memory leak at shutdown.
108.6#
Added#
Additional features for carb.tasking.plugin#
“Task Storage” has now been exposed in the
ITasking
interface (similar to thread-local storage, but for tasks).Full support for
Promise
andFuture
types.Added support for specifying multiple schemas to be built in a single project. Multiple schemas may now be specified as an array in a single call to
omni_structuredlog_schema()
. A single schema to be built may still be specified by passing an object containing the parameters instead of a full array.
108.5#
Added#
Added support for anonymized and pseudonymized events in the telemetry transmitter.
Fixed#
Fixed some structured log schemas that don’t always rebuild properly under MSVC. This was caused by a limitation of MSVC projects generated under premake. This problem didn’t exist on Linux.
108.4#
Changed#
Class names in generated structured log headers have changed to include the version in their name. This will require changes in structured log calls that use enum types or object types and code that uses generated structured log python bindings.
Fixed#
The
OMNI_FORCE_SYMBOL_LINK
macro now correctly evaluates, so redefinition errors should no longer occur.It should now be possible to include multiple versions of a structured log schema without encountering build errors.
108.3#
Fixed#
Added a more helpful error message when setup_omni_structuredlog() isn’t called in a premake script that uses omni_structuredlog_schema().
108.2#
Changed#
Added
isWindowFloating
andsetWindowFloating
tocarb::windowing::IWindowing
, and implemented them for carb.windowing-glfw.plugin.
108.1#
Changed#
Upgraded to the newest version of repo_format, which includes clang-format v12.
Removed the –clang-format and –clang-format-style options from the omni.bind python script, these are replaced with –format-module, which gives the user more flexibility in choose how and if they want to format the code.
Breaking Changes#
Users are required to upgrade to repo_format 0.5.4 or later.
108.0#
Changed#
`ILogMessageConsumer_abi::onMessage_abi()`` had its prototype changed to add the TID, PID and timestamp, so that this data will be available when using asynchronous logging.
107.3#
Fixed#
Fixed a rare debug assert in ITasking.
Fixed an issue where a carb::tasking::Semaphore could assert on destruction.
Changed#
omni.structuredlog.lua has replaced the questionable carb_path
global with
setup_omni_structuredlog()
to specify the carbonite path.
107.2#
Changed#
IAssets#
The IAssets
interface has changed to better support ITasking
and to deprecate carb::tasking::Counter
.
The
IAssets::loadAsset()
functions no longer take aCounter
object. Instead, they take acarb::tasking::Tracker
helper object similar to theITasking::addTask
functions. This allows specifying multiple variant types of trackers to asset loading (including the now-deprecatedCounter
objects).The
IAssets::loadAssetEx
function is deprecated and directs the caller to use the saferloadAsset
wrapper functions.The
LoadAssetFn
andCreateContextFn
no longer pass aCounter
and expect data to be returned rather than passed through an output argument. Since these functions are called from Task Context as a co-routine, they are free to use any of the fiber-safe waiting methods provided byITasking
to await other operations.
107.1#
Fixed#
Python uses static openssl again#
107.0 inadvertently used a python package that had switched to dynamically linking libssl.so and libcrypto.so, so dependencies would encounter linking issues. 107.1 switches back to a python package that has these dependencies statically linked.
107.0#
Changed#
ITasking 2.0#
The ITasking
interface has undergone some extensive improvements that are (mostly) backwards-compatible with existing
code.
The
Counter
type is deprecated. The interface remains for the time being but will now produce deprecation warnings for manualCounter
manipulation. Instead,TaskGroup
is a more efficient means of grouping tasks together.The
Any
andAll
helper objects forRequiredObject
used byITasking::addSubTask
are now nestable.Tasks can now be canceled before they have started executing. See
ITasking::tryCancelTask()
.The
ITasking::addTaskIn
andITasking::addTaskAt
functions now accept multiple tracker objects.The
ITasking
functionsyieldUntilCounter
andwaitForTask
have been combined into a genericwait()
function. Thewait()
function can also useAny
andAll
helper objects.Unhandled exceptions thrown from a task will now treat the task as canceled.
A fiber-aware futex system has now been exposed to allow for generic waiting.
The
PinGuard
and wrapper classes such asCounterWrapper
no longer need anITasking*
pointer passed to them, nor do they cache the pointer. These classes now rely on thecarb::getCachedInterface
helper function.
IAssets#
The IAssets
interface has changed to better support ITasking
and to deprecate carb::tasking::Counter
.
The
IAssets::loadAsset()
functions no longer take aCounter
object. Instead, they take acarb::tasking::Tracker
helper object similar to theITasking::addTask
functions. This allows specifying multiple variant types of trackers to asset loading (including the now-deprecatedCounter
objects).The
IAssets::loadAssetEx
function is deprecated and directs the caller to use the saferloadAsset
wrapper functions.The
LoadAssetFn
andCreateContextFn
no longer pass aCounter
and expect data to be returned rather than passed through an output argument. Since these functions are called from Task Context as a co-routine, they are free to use any of the fiber-safe waiting methods provided byITasking
to await other operations.
HandleDatabase#
HandleDatabase has a new function
handleWasValid()
to check if a handle was previously valid but has been released.Added an
addRef()
function that accepts a validTrueType*
.
106.7#
Changed#
carb.crashreporter-breakpad.plugin was updated to use Google Breakpad chrome_90 release.
106.6#
Changed#
Renamed the
OmniCoreStartArgs::padding
member toOmniCoreStartArgs::flags
and added some flags to control the behavior of some of the built-in object overrides more explicitly. Specifically to allow for theILog
andIStructuredLog
objects to be able to be disabled without having to create a dummy stub implementation for each of them. This member was intentially unused before and did not change size so it should not cause any breakages from the name and usage change.
106.5#
Changed#
Moved documentation related docs into repo_docs repo.
106.4#
Changed#
carb.scripting-python.plugin:
executeScript()
andexecuteScriptWithArgs()
now do just-in-time script compilation when called for the first time. Previously the script was compiled each time the functions were called.
106.3#
Fixed#
Fixed a crash that would occur in an app started from Python if carb.scripting-python.plugin was initialized but the GIL had been released by the calling thread.
106.2#
Fixed#
The carb.tasking plugin will now discard all pending tasks when released. Only the tasks currently running will be allowed to finish. Note that this will potentially cause leaks; if it is important to clean up rather than abandoning tasks, use a
carb::tasking::Counter
or other means to ensure that all necessary tasks have completed before releasing carb.tasking.plugin.
106.1#
Added#
Added
omniGetBuiltInWithoutAcquire()
to carb.dll/libcarb.so which will become the new entry-point for accessing interfaces. The existing functionsomniGetLogWithoutAcquire()
,omniGetTypeFactoryWithoutAcquire()
andomniGetStructuredLogWithoutAcquire()
are now deprecated and will be removed in a future version.
106.0#
Broke#
Removed
ICaching
interface. The interface had no known usage in the wild.
Fixed#
Restored
omniGetTelemetryWithoutAcquire
which was removed between 105.0 and 105.1.
105.2#
Changes#
Improvements to carb.tasking’s parallel_for()/applyRange()#
The parallel_for()
and applyRange()
functions in ITasking
should be seeing 5-10% improvement in certain situations.
Improvements to LocklessQueue and LocklessStack#
The InputIterator
-style push()
functions on these containers now accept InputIterator
types that dereference into
both T*
and T&
types to allow for different situations.
Fixed#
Using carb.tasking’s
applyRange()
function should prevent stuck checking and fix the occasional “carb.tasking is likely stuck” messages.Fixed an issue that could sometimes cause a crash at shutdown in carb.profiler-cpu and carb.dictionary.
105.1#
Fixed#
.pyd files that call OMNI_PYTHON_GLOBALS
can now access carb::Framework
from within the bindings.
105.0#
Removed#
The mirror tool dependency has been removed along with associated tests.
carb.windowing-glfw now only supports X11/GLX on Linux. The Wayland/EGL backend has been removed.
104.0#
Broke#
ITokens 0.1 -> 1.0#
ITokens::calculateDestinationBufferSize
now accepts a pointer to store an error code (ResolveResult
) of the
calculation. This is an ABI breaking change.
ITokens::calculateDestinationBufferSize
and ITokens::resolveString
now accept special flags (ResolveFlags
) that allow to modify token resolutioin process. This is an ABI breaking change.
All Interfaces Bumped to at least 1.0#
IObject
0.1 -> 1.0IAssert
0.2 -> 1.0IAssetsBlob
0.1 -> 1.0IAudioCapture
0.4 -> 1.0IAudioData
0.6 -> 1.0IAudioDevice
0.1 -> 1.0IAudioGroup
0.1 -> 1.0IAudioPlayback
0.5 -> 1.0IAudioUtils
0.3 -> 1.0ICaching
0.1 -> 1.0IDataSource
0.3 -> 1.0IDictionary
0.8 -> 1.0IEcs
0.1 -> 1.0IEvents
0.2 -> 1.0IFileSystem
0.1 -> 1.0IMemoryTracker
0.1 -> 1.0IProfileMonitor
0.3 -> 1.0ISettings
0.6 -> 1.0IFiberEvents
0.1 -> 1.0IThreadPool
0.1 -> 1.0IThreadUtil
0.1 -> 1.0ITypeInfo
0.1 -> 1.0IGLContext
0.1 -> 1.0
This change was made to avoid potentially unnecessary breaking changes (due to semantic versionings 0 major rule) in the future.
103.1#
Fixed#
RingBuffer improvements#
The carb/container/RingBuffer object had a problem with high contention. The RingBuffer now performs much better in a high-contention environment.
carb.profiler-cpu improvements#
Because it was based on the RingBuffer, carb.profiler-cpu.plugin also suffered from debilitating performance problems that have been resolved with the RingBuffer improvements.
Resolved potential Linux hang in carb::thread::futex#
The Futex system had a rare hang that could occur in certain situations where a wait() would not be woken by a notify()
due to a race condition. This also affected things using carb::cpp20::atomic<>
which was based on
carb::thread::futex
.
PooledAllocator no longer constrained by “buckets”#
The template parameter for the number of “buckets” in use by the PooledAllocator
has now been removed.
PooledAllocator
will now happily allocate memory until the underlying allocator runs out of memory.
103.0#
Fixed#
getCachedInterface() now re-acquires when framework/plugin unloaded#
If an interface is released (or the entire framework is released), carb::getCachedInterface()
will now detect this and
attempt to re-acquire the interface (or return nullptr
if it is no longer available). This fixes issues where plugins
may be often released and re-acquired.
NOTE: Do not use static
when calling acquireInterface
as this will not properly reset if the interface is released.
Instead, use carb::getCachedInterface()
.
NOTE: To streamline the adoption process, the Carbonite framework version was not modified. Two new functions were
added to carb::Framework
. Since the framework version was not altered, it is possible for code built against the new
getCachedInterface()
to load older versions of Carbonite without error, but this will result in a crash instead of a
failure to load the Carbonite framework. This edge case was deemed to be rare and the cost to alter the framework
version much higher than the benefit granted.
Added#
Release Hooks for plugins and the framework#
The Carbonite framework now has two new functions: addReleaseHook()
and removeReleaseHook()
. These function as sort
of atexit()
-like behavior for the Carbonite framework based on an interface being released. If nullptr
is specified
as the interface, then the Release Hook will be called back when the Carbonite framework itself is released.
102.15#
Added#
carb.tasking lock debugging#
Since carb.tasking is a fiber-based tasking system, tasks that enter a waiting state and then wake can resume on any
thread (unless pinned with carb::tasking::PinGuard
). Locks like std::mutex
, std::recursive_mutex
and
std::shared_mutex
that are locked before waiting and unlocked after waking see this as a thread that doesn’t own the
lock attempting to release the lock. To discover these conditions, a config option has been added to carb.tasking:
/plugins/carb.tasking.plugin/debugLocks (default:false). When this option is enabled, having a task wait while holding
a mutex will result in an Error log and assert.
102.14#
Fixed#
IAssets potential OnChangeEvent call during/after unsubscribe#
Fixes an issue with IAssets
where an OnChangeEvent
callback could be in progress during
unsubscribeToChangeEvents
. The behavior now waits in the unsubscribe call for any callback in progress to finish. It
is now also possible to unsubscribe during the callback.
Added#
carb::tasking::RecursiveMutexWrapper#
carb::tasking::MutexWrapper
will now abort if used recursively. If recursion is desired, use RecursiveMutexWrapper
.
HandleDatabase::releaseIfLastRef#
Added a function HandleDatabase::releaseIfLastRef
which allows special functionality if-and-only-if a handle reference
is the last reference, atomically.
Changed#
ITasking performance improvement#
ITasking
now benefits from a performance optimization for starting the next pending task immediately when a task
completes.
ISettings/IDictionary changes#
Retrieving an array via python bindings will keep the elements of the array as their proper types rather than collapse them to a common type.
ISettings::getPreferredArrayType
andIDictionary::getPreferredArrayType
now use the first element as a baseline type to convert to, instead of trying to convert everything toeBool
by default. This was causing an array of[0.0, 0.0, 0.0]
to convert to[False, False, False]
erroniously.
102.13#
Fixed#
IAssets delay reloading fix#
Fixes two issues introduced with 102.11:
IAssets::yieldForAssetLoaded
could spuriously wait if an asset reload was in progress.Unregistering an AssetType would wait for pending assets to reload, even if the reload delay was very long. Now asset reloads are abandoned immediately upon unregistering an AssetType.
ITasking crash fix#
Fixes a rare crash with use of carb::tasking::Any
and carb::tasking::All
in 102.10
102.12#
Fixed#
ITasking fix for “carb.tasking is likely stuck” during applyRange()#
In long-running parallel tasks during applyRange()
the carb.tasking stuck checking feature could determine that the
system is stuck even when it is not. Now applyRange()
contributes to the heuristic which should reduce false positive
stuck warnings.
102.11#
Changes#
IAssets version 1.0#
IAssets
has been promoted to version 1.0 with a few additional changes. AssetTypeParams
has been created as a
parameter for registerAssetType()
to contain all of the configuration information for Asset Types; this struct should
start as AssetTypeParams::getDefault()
and then any parameter changes can be made.
The AssetTypeParams
struct has a new reloadDelayMs
option (default=100 ms). For Asset Types that automatically
reload, this will wait for reloadDelayMs
to elapse from the last datasource change notification in an effort to
prevent multiple reloads for multiple changes in rapid succession that can occur when an asset is being written to.
102.10#
Changes#
ITasking::addSubTask()
and ITasking::addThrottledSubTask()
support lists of required Counter objects#
In some cases, it is desirable to wait until any or all of a group of Counter objects become complete in order to
start a sub-task. To that end, addSubTask()
and addThrottledSubTask()
now accept an initializer_list
of Counters,
passed into helper objects carb::tasking::Any
or carb::tasking::All
, such as:
tasking->addSubTask(carb::tasking::All{ counter1, counter2 }, ...)
Which would wait until both counter1
and counter2
are complete before starting the sub-task. carb::tasking::Any
is specified similarly but waits until at least one of the passed Counters is complete.
ITasking::addTask()
and variants support lists of notify Counter objects#
In some cases, it is desirable for multiple Counter objects to be incremented before a task starts and decremented when
the task completes. Previously, only one Counter could be passed to addTask()
variant functions and the other Counter
objects would need to be manually incremented/decremented. Now, addTask()
variants (except for addTaskAt()
and
addTaskIn()
) will allow passing an initializer_list
of Counters. Each of the non-nullptr Counter objects passed will
be incremented before the addTask()
variant function returns and decremented upon task completion.
102.9#
Added#
New feature: CARB_STRONGTYPE
#
CARB_STRONGTYPE
now exists in carb/Strong.h to declare a strong type. The using
and typedef
keywords do not
actually create a new type; they just create aliases for the type. CARB_STRONGTYPE
declares a structure that acts like
the referenced type but is strongly typed and requires explicit assignment.
New feature: carb::delegate::Delegate
#
Delegate
implements a std::function
-like loose-coupling system but allows multiple bindings and thread-safe access.
Additionally, it attempts to be as safe as possible allowing bound callbacks to unbind themselves (or other callbacks)
safely when the callback is executing. See carb/delegate/Delegate.h for more information.
102.8#
Fixed#
Performance improved in ITasking::applyRange()
#
A degenerate case was identified that could cause ITasking::applyRange()
to perform poorly under very short workloads.
This has been corrected. In some cases, small workloads may still perform more poorly than a straight for()
loop due
to the overhead in dispatching tasks to other threads and subsequent cache performance. Performance testing uses of
applyRange()
is advised.
Added#
ITasking::parallelFor()
implementation#
ITasking::parallelFor()
now exists as a wrapper for ITasking::applyRange()
. These new funtions allow specifying the
classic parameters to for
loops: begin, end and optional step values.
102.7#
Changes#
ITypeFactory
now calls onModuleCanUnload
and onModuleUnload
#
Previously, ~ITypeFactory
would simply call dlclose
/FreeLibrary
to shutdown each loaded plugin. This patch now
attempts to call each plugin’s onModuleCanUnload
, and if it returns true
, onModuleUnload
is called followed by
dlclose
/FreeLibrary
. If a plugin’s onModuleCanUnload
returns false
it may be called again after other plugins
are unloaded. If onModuleUnload
cannot be safely called, either because onModuleCanUnload
returns false
or it is
not defined, ~ITypeFactory
will call dlclose
/FreeLibrary
on the loaded plugin.
This is new behavior and may expose bugs in previously existing onModuleCanUnload
/onModuleUnload
implementations.
102.6#
Changes#
Debugging mode for waiting tasks#
ITasking
now supports a new boolean setting: /plugins/carb.tasking.plugin/debugWaitingTasks (default=false). This
setting parks all waiting tasks in a dedicated thread so that they will show up in debuggers. For Visual Studio, the
Parallel Stacks and Threads windows will now have threads named “carb.task wait” and __WAITING_TASK__()
will be in the
call stack. For GDB, the threads will appear with the name “carb.task wait” and will show up in the “info threads” list.
Note that this debugging feature can create hundreds of transient threads and may negatively affect performance, but
can be useful for debugging hangs.
Debugging mode for Task and Counter creation backtrace#
ITasking
now supports a new boolean setting: /plugins/carb.tasking.plugin/debugTaskBacktrace (default=false). This
setting will capture a backtrace when ITasking::addTask()
is (or variants are) called. This backtrace is available to
view in the debugger as a local variable DebugTaskCreationCallstack
in the carb::tasking::TaskBundle::execute
function whenever a task is being executed. Similarly, a backtrace will be captured for Counter objects created with
ITasking::createCounter
and ITasking::createCounterWithTarget
. This backtrace is available as a local variable in
the Counter::wait
function called DebugCounterCreationCallstack
. At carb.tasking.plugin shutdown time, the
creation backtrace of any leaked Counter objects is logged as a Warning.
102.5#
Fixed#
Fixed a crash that could occur sometimes in carb.tasking.plugin
102.4#
Fixed#
Carbonite SDK + Plugins package no longer has licensing errors.
102.3#
Changes#
ITasking
will attempt to detect a “stuck” condition and attempt to get “unstuck”#
It is possible to get ITasking
into a situation where it is stuck: a task uniquely locks a resource and then waits in
a fiber-safe way. Other tasks attempt to lock the same resource but don’t wait in a fiber-safe way until all task
threads are blocked waiting on the resource. At this point ITasking
is stuck because when the task that holds the lock
becomes ready to run, no threads are available to run it. The new emergency-unstick system will detect this and start
emergency threads to process ready tasks, attempting to un-stick the system.
The stuck-check time can be configured using ISettings
key /plugins/carb.tasking.plugin/stuckCheckSeconds (default:
1; set to 0 to disable).
102.2#
Fixed#
IAssets::unregisterAssetType()
now waits until all assets are actually unloaded#
In prior versions, performing several IAssets::unloadAsset
, IAssets::unloadAssets
or IAssets::releaseSnapshot
could
start unloading data in the background. A call to IAssets::unregisterAssetType
after this point could potentially
destroy the asset type, but would not wait for the background unload tasks to complete. This could cause issues at shutdown
where other systems would shut down expecting that after unregistering the type that they would no longer be used. This
fix causes IAsset::unregisterAssetType
to wait for any pending load/unloads to complete before returning.
Fixes an issue where IAssets
could stop updating an asset#
If an asset was loaded twice and one of the assets was unloaded, the system would ignore changes to the underlying data and no longer update the still-loaded asset. This has been resolved.
102.1#
Fixed#
Task priority changes to ITasking
#
ITasking
now correctly respects task priority when resuming tasks that have slept, waited or suspended.
ITasking
compile fixes#
ITasking::addTask()
and variants would fail to compile in situations where they were capturing additional parameters
that would be passed to the Callable parameter. These compile issues have been fixed.
102.0#
Broke#
Normalized Mouse Coordinate in IInput
#
IInput
interface version has bumped from 0.5 to 1.0. This is to support mouse coordinates being returned in either
normalized or pixel coordinates.
IInput::getMouseCoords
was renamed toIInput::getMouseCoordsPixel
.Added
getMouseCoordsNormalized
.Python:
MouseEvent.get_mouse_coords
was renamed toMouseEvent.get_mouse_coords_pixel
.Python: Added
MouseEvent.get_mouse_coords_normalized
.
carb.imaging.plugin.dll Has Moved to the rendering Repo#
IImaging
has moved to the rendering repo.
Kit is incompatible with older Carbonite builds that still have carb.imaging.plugin.dll.
carb.imaging.plugin.dll users outside kit/rendering must:
Pull rtx_plugins instead of Carbonite
Add a header include path from rtx_plugins/include.
Add plugins/carb_gfx to your search library path.
kit/rendering users can no longer rely on carb.imaging.plugin.dll being built ahead of time and must make it a build prerequisite by including it in their
dependson
.
Transition discussion can be found here.