Skip to content
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

Merged
merged 8 commits into from
Jun 12, 2020
Merged

put charconv into contrib #1837

merged 8 commits into from
Jun 12, 2020

Conversation

marehr
Copy link
Member

@marehr marehr commented May 22, 2020

This PR

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

@marehr marehr requested review from a team and simonsasse and removed request for a team May 22, 2020 16:23
@codecov
Copy link

codecov bot commented May 22, 2020

Codecov Report

Merging #1837 into master will increase coverage by 0.03%.
The diff coverage is n/a.

Impacted file tree graph

@@            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     
Impacted Files Coverage Δ
include/seqan3/search/search.hpp 83.87% <0.00%> (-4.77%) ⬇️
include/seqan3/core/simd/view_to_simd.hpp 91.30% <0.00%> (-1.62%) ⬇️
.../search/detail/unidirectional_search_algorithm.hpp 98.57% <0.00%> (-1.43%) ⬇️
...de/seqan3/argument_parser/detail/version_check.hpp 92.56% <0.00%> (-0.18%) ⬇️
include/seqan3/search/search_result.hpp 100.00% <0.00%> (ø)
include/seqan3/range/views/minimiser.hpp 100.00% <0.00%> (ø)
include/seqan3/core/algorithm/configuration.hpp 100.00% <0.00%> (ø)
include/seqan3/range/container/dynamic_bitset.hpp 100.00% <0.00%> (ø)
...clude/seqan3/alignment/pairwise/align_pairwise.hpp 100.00% <0.00%> (ø)
...lude/seqan3/alignment/pairwise/alignment_range.hpp 100.00% <0.00%> (ø)
... and 14 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 4fcbeb8...d3a8e82. Read the comment docs.

@marehr
Copy link
Member Author

marehr commented May 25, 2020

(Documentation is currently failing, but you don't see it in CI, because of #1838)

@marehr marehr force-pushed the charconv-use-contrib branch 3 times, most recently from a838ef9 to e0d4219 Compare May 27, 2020 17:11
@marehr
Copy link
Member Author

marehr commented May 27, 2020

@simonsasse This can be reviewed now, documentation error was fixed

Copy link
Member

@simonsasse simonsasse left a 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 ?

@marehr
Copy link
Member Author

marehr commented May 29, 2020

Looks good, thanks again for the explanation ! :)
The "body" of namespaces does not get indented right ?

yes, you are right :)

@marehr marehr requested review from a team and smehringer and removed request for a team May 29, 2020 11:54
Copy link
Member

@smehringer smehringer left a 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 {
Copy link
Member

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?

Copy link
Member Author

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
Copy link
Member

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)

Copy link
Member Author

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.

Comment on lines 20 to 24
#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)
Copy link
Member

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)

Copy link
Member Author

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;
Copy link
Member

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;

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can remove them :)

Copy link
Member Author

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);
}
Copy link
Member

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.

Copy link
Member Author

@marehr marehr Jun 2, 2020

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.?

@marehr marehr force-pushed the charconv-use-contrib branch from e0d4219 to d3a8e82 Compare June 6, 2020 08:16
@marehr marehr requested a review from smehringer June 6, 2020 08:17
Copy link
Member

@smehringer smehringer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See gitter message

@smehringer
Copy link
Member

Marcel wanted to clean the commit history before merging

@marehr marehr merged commit ffcf239 into seqan:master Jun 12, 2020
@marehr marehr deleted the charconv-use-contrib branch June 12, 2020 19:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants