Json serialization poc#6
Draft
cameron-devine wants to merge 2 commits intodevfrom
Draft
Conversation
added 2 commits
April 10, 2026 12:20
…om RtxJsonUtilities to the classes.
…++23 for glaze. Update InfluxTcpAdapter to use httplib instead of oatpp with the update to 23. Remove oatpp and curl dependencies.
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.
PR: Upgrade to C++23, Replace oatpp with cpp-httplib, Add Glaze JSON Serialization
Summary
Upgrades tsflib from C++17/20 to C++23 to support the Glaze high-performance JSON serialization library. As part of this modernization effort, the heavyweight oatpp HTTP framework (which has ceased active development) has been replaced with the lightweight, header-only cpp-httplib.
Motivation
.aunits).Changes
Dependency changes:
oatpp(HTTP framework + HTTP client)cpp-httplib— lightweight, header-only HTTP client (pulled from Conan)glaze 7.2.0— compile-time JSON serialization (pulled from Conan)HTTP client migration:
httplib::Clienthttplib::Client::set_path_encode(true)for proper URL handling of special charactersGlaze integration:
glz::metatemplate specialization forTSF::Clockusingglz::customaccessors for getter/setter-based properties (name,period,offset)SqliteStoreCRUD methods andRtxJsonUtilitiesarchive/unarchive to use Glaze serialization for Clock objectsglz::write_json/glz::read_jsonBuild configuration:
CXX_STANDARD 23in CMakeLists.txtconanfile.pywith new dependenciesFuture Work
glz::metatemplate specializations can be eliminated entirely in favor of inline compile-time reflection, removing boilerplate from data classes likeClock.Clockcan be applied to other tsflib types (TimeSeries, Units, Curve, etc.) for consistent cross-library serialization.Testing