-
Notifications
You must be signed in to change notification settings - Fork 83
refactor(clp-s): Split clp-s into several smaller libraries to ease re-use in other projects. #924
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
gibber9809
merged 27 commits into
y-scope:main
from
gibber9809:clp-s-library-refactoring
May 30, 2025
Merged
Changes from 15 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
104b3cf
Add target_include_directories to clp_s::search::ast library
gibber9809 9791a51
Move FileType enum into InputConfig to remove transitive dependencies…
gibber9809 6810794
TMP
gibber9809 8f5e65a
Remove unnecessary include in JsonParser.hpp
gibber9809 05daa40
Move try_create_reader from ReaderUtils to InputConfig to remove tran…
gibber9809 115020b
Remove unnecessary simdjson includes
gibber9809 78c090e
Remove unnecessary includes from JsonConstructor
gibber9809 116cfeb
Rename sql and kql libraries to clp_s::search::sql and clp_s::search:…
gibber9809 38f7027
Split clp-s build into many smaller libraries.
gibber9809 fe104ef
Decouple OutputHandler and OutputHandler implementations
gibber9809 ec078a5
Clean up CMakeLists files
gibber9809 4e5ce27
Remove unnecessary simdjson include from Output.hpp
gibber9809 a943695
Minor cleanup
gibber9809 33d65cb
Modify clp_s::search PUBLIC link libraries to ensure simple test proj…
gibber9809 7a4e2d2
Fix spdlog header includes and linkage
gibber9809 fe1fcc8
Merge remote-tracking branch 'upstream/main' into clp-s-library-refac…
gibber9809 382abc1
Correct path to OutputHandlerImpl in lint task exceptions
gibber9809 d6da2e9
Merge remote-tracking branch 'upstream/main' into clp-s-library-refac…
gibber9809 f7b6514
Remove unnecessary include directive in clp-s search test
gibber9809 c5db058
Merge branch 'main' into clp-s-library-refactoring
gibber9809 854f582
Merge branch 'main' into clp-s-library-refactoring
gibber9809 c49e95c
Make all library targets lower case
gibber9809 8e39d8e
Reorder target_include directives
gibber9809 84f08dd
Merge remote-tracking branch 'upstream/main' into clp-s-library-refac…
gibber9809 4346bd7
Address rabbit comment
gibber9809 dbf7231
Rename clp_s::TimestampPattern -> clp_s::timestamp_pattern library
gibber9809 416dbd2
Re-order target_include... directive in clp_s::search::ast CMakeLists
gibber9809 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if
clp_sshould be priority 3 or 4There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I put priority 3 just because our
string_utilslibrary is also in this list.