feat(eccdb): introduce EnTT database and public API - #190
Open
edgeuni wants to merge 7 commits into
Open
Conversation
Move the EnTT-backed database implementation under src/database/eccdb, update LEF/DEF and iDB adapters, add iRT/iDRC integration targets, and register unit and differential tests.
edgeuni
marked this pull request as draft
September 2, 2026 06:40
Yell-walkalone
approved these changes
Sep 5, 2026
Yell-walkalone
approved these changes
Sep 5, 2026
Yell-walkalone
approved these changes
Sep 5, 2026
Yell-walkalone
marked this pull request as ready for review
September 5, 2026 02:44
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.
Summary
This PR introduces the EccDB database implementation on top of the existing
ecc-toolsdatabase codebase.The implementation provides an EnTT-based database core, a standalone public
API, LEF/DEF/iDB I/O adapters, and a clearer separation between public
interfaces and internal storage.
The PR targets:
Main Changes
Introduce the EccDB database module and a standalone
eccdbnamespace.Add an EnTT-based storage implementation for:
Add strongly typed database IDs and public value/data types.
Add the public EccDB API under
src/database/eccdb/include/eccdb.Add database configuration, CRUD, routing, design, and reference APIs.
Reorganize the implementation into:
api;storage;io;adapters;tests;benchmarks.Move LEF, DEF, iDB, and binary import/export code into the new I/O layout.
Add EccDB adapter integration for iRT and iDRC.
Extend legacy iDB LEF58 property parsing and materialization.
Add standalone EccDB CMake configuration and installation support.
Add bilingual documentation covering API usage, architecture, and differential testing.
Add and update unit, I/O, memory, and differential test targets.