-
Notifications
You must be signed in to change notification settings - Fork 82
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
put charconv into contrib #1837
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1837 +/- ##
==========================================
+ Coverage 97.63% 97.67% +0.03%
==========================================
Files 249 253 +4
Lines 9481 9551 +70
==========================================
+ Hits 9257 9329 +72
+ Misses 224 222 -2
Continue to review full report at Codecov.
|
(Documentation is currently failing, but you don't see it in CI, because of #1838) |
a838ef9
to
e0d4219
Compare
@simonsasse This can be reviewed now, documentation error was fixed |
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.
Looks good, thanks again for the explanation ! :)
The "body" of namespaces does not get indented right ?
yes, you are right :) |
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.
Mostly questions but requesting changes because of the test
|
||
#include <seqan3/core/platform.hpp> | ||
|
||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_BEGIN_NAMESPACE_STD namespace seqan3::contrib::charconv { |
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.
It's a little confusing that the macro name states "begin std namespace" but you are opening seqan3::contrib::charconv
?
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.
true, but I want to keep the files as close to their original as possible.
|
||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_BEGIN_NAMESPACE_STD namespace seqan3::contrib::charconv { | ||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_END_NAMESPACE_STD } | ||
// #define SEQAN3_CONTRIB_CHARCONV_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER 1 // needs to be set if compiling with MSVC |
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.
Why don't you wrap this in
#if defined (_MSC_VER)
// ...
#endif
? (not sure if this macro is the right one)
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.
We don't support MSVC right now, so I think I don't need to do this. Fun fact: MSVC has full charconv support, so this header should not be included.
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_STD_VER 17 | ||
// #define SEQAN3_CONTRIB_CHARCONV_LIBCPP_PUSH_MACROS | ||
// #define SEQAN3_CONTRIB_CHARCONV_LIBCPP_POP_MACROS | ||
// #define SEQAN3_CONTRIB_CHARCONV_LIBCPP_AVAILABILITY_TO_CHARS | ||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_FUNC_VIS | ||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_ENUM_VIS | ||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_TYPE_VIS | ||
// #define SEQAN3_CONTRIB_CHARCONV_LIBCPP_CONSTEXPR constexpr | ||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_HIDDEN | ||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_INLINE_VISIBILITY | ||
#define SEQAN3_CONTRIB_CHARCONV_LIBCPP_ASSERT(condition, message) assert(condition) |
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.
Can you shortly explain the neccessity of these macros? (I am not doubting them, just not understanding them)
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.
These are all prefixed MACROS that the original implementation https://github.com/llvm/llvm-project/blob/d27489645bb8829a952f79e3b211202844238391/libcxx/include/charconv uses.
Our previous approach of renaming and seqan3-ifing external things was wrong, because an update is REALLY hard to do. The new approach is to keep the original sources as close as they are and only do changes that are deemed necessary.
using std::is_integral; | ||
using std::is_unsigned; | ||
using std::is_signed; | ||
// using std::make_unsigned; |
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.
can you drop a comment why this is out commented?
Same for using std::enable_if;
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.
I can remove them :)
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.
I removed them :)
|
||
EXPECT_EQ(res.ptr, buffer.data() + buffer.size()); | ||
EXPECT_EQ(res.ec, std::errc::value_too_large); | ||
} |
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.
Can you add the test mentioned in the issue #1595 that checks whether the error still occurs?
Sorry if it is there but I overlooked it.
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.
No, like the description of this PR said
I didn't upgrade the llvm version yet, because they had a license change to
apache2 WITH llvm-exception
and
My second reason was to test the upgrade-path if we ever need to add new version of this.
And my third reason: Like always, a small change can lead to a couple of unintended CI breakage; I wanted to see if everything works with the new structure which uses the old code.
This means that I just copied the original file of charconv that we already used.
The next PR will update the charconv implementation and adds a test case.
The reason for this:
- Use a known working version of charconv so that the infra structure change is known to work.
- The new code has a new license which I wanted to discuss with you.
- Test the update-path. That means is a upgrade of charconv as painless as possible.?
Code directly taken from * https://github.com/llvm/llvm-project/blob/d27489645bb8829a952f79e3b211202844238391/libcxx/LICENSE.TXT * https://github.com/llvm/llvm-project/blob/d27489645bb8829a952f79e3b211202844238391/libcxx/include/charconv * https://github.com/llvm/llvm-project/blob/d27489645bb8829a952f79e3b211202844238391/libcxx/src/charconv.cpp
…avoid clashes with clang
Some remarks: The float overloads need to be defined in the seqan3::contrib::charconv namespace. We can't add the overload directly in the `std` namespace, because the float overload would then overshadow the integral definition of to_chars and from_chars.
e0d4219
to
d3a8e82
Compare
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.
See gitter message
Marcel wanted to clean the commit history before merging |
This PR
contrib
folder.See Current LLVM copy of to_chars is wrong for integers with more than 9 digits #1595 (comment)
I didn't upgrade the llvm version yet, because they had a license change to
apache2 WITH llvm-exception
See
My second reason was to test the upgrade-path if we ever need to add new version of this.
And my third reason: Like always, a small change can lead to a couple of unintended CI breakage; I wanted to see if everything works with the new structure which uses the old code.
PLEASE DON'T SQUASH-MERGE THIS PR