-
Notifications
You must be signed in to change notification settings - Fork 11
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
Improve conversion from scalars to native types #391
Merged
fktn-k
merged 13 commits into
develop
from
improve_conversion_from_scalar_to_native_types
Sep 7, 2024
Merged
Improve conversion from scalars to native types #391
fktn-k
merged 13 commits into
develop
from
improve_conversion_from_scalar_to_native_types
Sep 7, 2024
Conversation
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
…ating point numbers if available
|
Name | fkYAML_coverage.pr391.zip |
---|---|
ID | 1904914203 |
URL | https://github.com/fktn-k/fkYAML/actions/runs/10754045231/artifacts/1904914203 |
c58f4b1
to
bc730ac
Compare
b6a703d
to
de93370
Compare
de93370
to
4ee8804
Compare
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.
In this PR, conversions from scalars to native data types (int or bool) have been reimplemented, which happens when each scalar token is found in an input buffer during the deserialization process.
The conversions required unnecessary std::string instance creations before, which causes a number of heap allocations even when the instanciations is just the same as duplication of some part of an input buffer.
Most of the unnecessary heap allocations have therefore been replaced with references using iterators with no changes in public APIs and behaviors from the viewpoint of library users.
One exception is that conversions from a scalar to a floating point value still requires unnecessary heap allocations by default.
If
std::from_chars()
(since C++17) is available, the library now call it and thus no heap allocation happens.In the other cases, however, the library calls
std::stof()
orstd::stod()
depending on the destination type which require astd::string
object for a null-terminated string.Although using some third party libraries like fast_float or implementing a similar feature inside the library can resolve this issue, that either consts a lot or leads to other issues (licensing, dependency management, etc...).
So, I put aside the issue and moved the latest implementations (with some sophistication though).
Pull Request Checklist
Read the CONTRIBUTING.md file for detailed information.
Please don't
#ifdef
s or other means.