refactor(compat): add container namespace migration infrastructure (Issue #224)#237
Merged
kcenon merged 1 commit intoFeb 14, 2026
Conversation
…sue #224) Create centralized type and namespace aliases in preparation for the upcoming container_system namespace migration: container_module -> kcenon::container (namespace) value_container -> message_buffer (class rename) Phase 1 audit results (368 references across 48 files): - container_module::value_container: 365 refs in 45 files - container_module::value_types: 1 ref in 1 file - #include <core/container.h>: 4 header files - C++20 module (.cppm) refs: 16 refs in 2 files Phase 2 deliverable: - include/kcenon/messaging/compat/container_aliases.h - Namespace alias: container_ns = container_module - Type aliases: container_data, container_data_ptr, container_value_types - When upstream enforces new namespace, update only this file
14 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #224
Summary
container_aliases.hfor the upcomingcontainer_module->kcenon::containernamespace migrationPhase 1: Audit Results
container_module::(total)container_module::(modules)container_module::value_containercontainer_module::value_types#include <core/container.h>container_module::value_variantcontainer_module::serialization_formatvalue_container_ptr(deprecated)Total: ~384 references across 48 files
Phase 2: Migration Infrastructure
New file:
include/kcenon/messaging/compat/container_aliases.hProvides centralized aliases:
Migration Strategy
When container_system v2.0 enforces the new namespace:
container_aliases.h: changecontainer_module->kcenon::containercontainer_aliases.h: changevalue_container->message_buffercontainer_module::references with aliases across codebase (Phase 3)Phase 3: Blocked
Test Plan
<core/container.h>)