-
Notifications
You must be signed in to change notification settings - Fork 14
convert efitimeus_t to tagged_numeric_t #6409 #15
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
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| // | ||
| // Created by kifir on 4/25/24. | ||
| // | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <type_traits> | ||
|
|
||
| template<typename tag_type> class tagged_numeric_t { | ||
| public: | ||
| using value_type = typename tag_type::value_type; | ||
|
|
||
| tagged_numeric_t(); | ||
| tagged_numeric_t(const value_type& val); // implicit to allow init from numeric value (for backward compatibility) | ||
|
|
||
| explicit operator value_type() const; | ||
| explicit operator int() const; | ||
| explicit operator float() const; | ||
|
|
||
| bool operator ==(const tagged_numeric_t& val) const; | ||
| bool operator ==(const value_type& val) const; | ||
| bool operator !=(const value_type& val) const; | ||
| bool operator >(const tagged_numeric_t& val) const; | ||
|
|
||
| tagged_numeric_t operator -(const tagged_numeric_t& val) const; | ||
| tagged_numeric_t operator +(const tagged_numeric_t& val) const; | ||
| tagged_numeric_t operator +(const int& val) const; | ||
| private: | ||
| value_type value; | ||
| }; | ||
|
|
||
| #include "tagged_numeric.inl" |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type>::tagged_numeric_t() | ||
| : tagged_numeric_t(0) { | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type>::tagged_numeric_t(const value_type& val) | ||
| : value(val) { | ||
| static_assert(std::is_arithmetic_v<value_type>); | ||
| static_assert(sizeof(tagged_numeric_t) == sizeof(value_type)); | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type>::operator value_type() const { | ||
| return value; | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type>::operator int() const { | ||
| return static_cast<int>(value); | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type>::operator float() const { | ||
| return static_cast<float>(value); | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| bool tagged_numeric_t<tag_type>::operator ==(const tagged_numeric_t& val) const { | ||
| return value == val; | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| bool tagged_numeric_t<tag_type>::operator ==(const value_type& val) const { | ||
| return value == val; | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| bool tagged_numeric_t<tag_type>::operator !=(const value_type& val) const { | ||
| return value != val; | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| bool tagged_numeric_t<tag_type>::operator >(const tagged_numeric_t& val) const { | ||
| return value > val.value; | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type> tagged_numeric_t<tag_type>::operator -( | ||
| const tagged_numeric_t& val | ||
| ) const { | ||
| return tagged_numeric_t(value - val.value); | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type> tagged_numeric_t<tag_type>::operator +(const tagged_numeric_t& val) const { | ||
| return tagged_numeric_t(value + val.value); | ||
| } | ||
|
|
||
| template<typename tag_type> | ||
| tagged_numeric_t<tag_type> tagged_numeric_t<tag_type>::operator +(const int& val) const { | ||
| return tagged_numeric_t(value + val); | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| // | ||
| // Created by kifir on 4/25/24. | ||
| // | ||
|
|
||
| #include "tagged_numeric.h" |
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.
can/should we just use std::chrono instead?
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.
Well, it makes sense. I will rewrite code using std::chrono::duration<int64_t, micros> and std::chrono::time_point.
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.
What about our 1/168_000_000 second ticks and our 1/218_000_000 second tickets depending on target platform?
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.
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.
ops rusefi/rusefi@93edf72