-
Notifications
You must be signed in to change notification settings - Fork 18
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
First cut at native C++ MLT loader #441
Open
TimSylvester
wants to merge
73
commits into
maplibre:main
Choose a base branch
from
WetDogWeather:cpp
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
73 commits
Select commit
Hold shift + click to select a range
0c55afc
ugh cmake
TimSylvester 3e67bcc
protozero
TimSylvester 19e0181
more
TimSylvester 49c61d9
tileset metadata
TimSylvester 87f22f0
decoding
TimSylvester 481c82d
format
TimSylvester 41a17bf
refactor, more decoding
TimSylvester f62d031
refactor buffer management
TimSylvester 3e1cef7
eliminate template specializations, add support for on-the-fly type c…
TimSylvester dd41336
add fastpfor
TimSylvester 72394eb
bug
TimSylvester f4b7c4f
more decoding
TimSylvester f6a10a8
string and property decoding, refactor, add noexcepts
TimSylvester 9e35424
tests
TimSylvester 3536fa5
Property decoding, Morton decoding, reuse intermediate buffers, bette…
TimSylvester 4788f6b
More geometry decoding, fix geometry error, more validity checks.
TimSylvester 408f92f
more parsing
TimSylvester cdde3cc
Add json output, move headers
TimSylvester cd4d9d6
Write GeoJSON for validation
TimSylvester 8cff4b2
Split properties to features.
TimSylvester e490d56
Fix vectorized delta decoding, add test cases
TimSylvester 7bdbc31
Fix multi-polygon geometry
TimSylvester c5931be
Handle nullable property values better
TimSylvester 68d7e87
Revise diff process to handle numbers represented as strings.
TimSylvester 87b55ce
Enforce non-copyable and normalize declarations.
TimSylvester 598c8a7
Fix bit count bug.
TimSylvester f86d371
Exclude BOMs from strings
TimSylvester 05deab1
cleanup and refactor
TimSylvester 505f7aa
cleanup
TimSylvester e3c64d8
configure pre-commit
louwers 9c28198
Fix compilation macOS ARM
louwers 7927d0e
Add basic C++ CI
louwers 3eb39fe
Fix tag simde
louwers 0be9c56
Use EXCLUDE_FROM_ALL, update deps, clean up protozero inclusion
louwers 958baa3
Finish factory pattern for geometry
TimSylvester 88ed9d9
use `static_assert`
TimSylvester de45c5b
remove extra config
TimSylvester c06f3d3
eliminate unused compile-time option
TimSylvester e56eef0
move import
TimSylvester 68c83fd
add missing headers
TimSylvester 407a364
satisfy gcc?
TimSylvester 1d264d2
replace C string functions with STL stuff
TimSylvester 2cf8f56
fix dependent type name
TimSylvester 482d74c
build issues
TimSylvester 7ec0f13
warning
TimSylvester 495b3a7
remove positive exception specifications
TimSylvester 818f3b7
only write new json when a diff is detected
TimSylvester 89f6309
add libfsst
TimSylvester 553ea8f
Merge branch 'main' into cpp
louwers 15d5714
Port FSST test case, not even close to passing
TimSylvester 3882b14
run pre-commit
louwers 57863aa
remove obsolete file
TimSylvester 5882858
Add JSON tool and README
TimSylvester 73e7434
Refactor to eliminate sketchy vector casts
TimSylvester 7ba42e6
remove logging
TimSylvester 4e20475
add standard build properties
TimSylvester 8158d31
fix relative path
TimSylvester c50c80d
Make protozero support optional
TimSylvester 8df8392
Make protozero metadata decoding header-only
TimSylvester b5a1297
Convert `FetchContent` dependencies to submodules
TimSylvester c0531eb
fetch submodules in CI
TimSylvester a3868f1
export dependency target
TimSylvester 0cb9b97
move submodules to root
TimSylvester ca9247b
Exclude dependency targets
TimSylvester fa942dd
simplify namespaces
TimSylvester 081acaf
Pass protozero message by reference
TimSylvester f7a4c2f
allow for lvalue arguments
TimSylvester 195e7e9
undo
TimSylvester 6367feb
Fix a bug due to compiler or platform-dependent treatment of negative…
TimSylvester 90c22df
fix off-by-one bug
TimSylvester 232f66c
Implement decoding of FastPFor into 64-bit results
TimSylvester 2440304
Fix string decoding error when the dictionary is empty
TimSylvester 01236c1
Additional checks so that invalid input fails in a more useful way
TimSylvester 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 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 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 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 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
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.
Nit: no need to specify values because 0, 1, 2, 3, etc. is the default.