-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#344 Implement user traits mechanisms
- Loading branch information
1 parent
28e8e4e
commit 28e3ef9
Showing
13 changed files
with
542 additions
and
70 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#include "checkpoint/checkpoint.h" | ||
|
||
#include "checkpoint_example_user_traits.hpp" | ||
|
||
int main(int, char**){ | ||
test::TestObj obj; | ||
|
||
//Each invocation will be handled based on the traits attached | ||
auto s_info_a = checkpoint::serialize(obj); | ||
auto s_info_b = checkpoint::serialize<checkpoint_trait>(obj); | ||
auto s_info_c = checkpoint::serialize<checkpoint_trait, checkpoint_trait>(obj); | ||
auto s_info_d = checkpoint::serialize<test::random_trait, checkpoint_trait>(obj); | ||
auto s_info_e = checkpoint::serialize<checkpoint_trait, test::random_trait>(obj); | ||
auto s_info_f = checkpoint::serialize<test::random_trait, test::random_trait>(obj); | ||
auto s_info_g = checkpoint::serialize<shallow_trait>(obj); | ||
auto s_info_h = checkpoint::serialize<misc::namespace_trait>(obj); | ||
auto s_info_i = checkpoint::serialize<misc::hook_all_trait>(obj); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#include "checkpoint/checkpoint.h" | ||
|
||
struct checkpoint_trait {} CheckpointTrait; | ||
struct shallow_trait {} ShallowTrait; | ||
|
||
namespace test { | ||
struct random_trait {} RandomTrait; | ||
|
||
struct TestObj { | ||
int a = 1; | ||
|
||
TestObj() {} | ||
|
||
template<typename SerT, typename std::enable_if_t<SerT::template has_not_traits<shallow_trait>::value>* = nullptr> | ||
void serialize(SerT& s){ | ||
if constexpr(SerT::template has_traits<checkpoint_trait>::value){ | ||
if(s.isSizing()) printf("Customizing serialization for checkpoint\n"); | ||
s | a; | ||
} else { | ||
if(s.isSizing()) printf("Default serializing testObj\n"); | ||
} | ||
|
||
static_assert(SerT::template has_not_traits<shallow_trait>::value, "ShallowTrait should have been removed!\n"); | ||
} | ||
}; | ||
} | ||
|
||
namespace test { | ||
template<typename SerT, typename std::enable_if_t<SerT::template has_traits<random_trait>::value>* = nullptr> | ||
void serialize(SerT& s, TestObj& myObj){ | ||
if(s.isSizing()) printf("Inserting random extra object serialization step! "); | ||
myObj.serialize(s); | ||
} | ||
|
||
template<typename SerT, typename std::enable_if_t<SerT::template has_traits<shallow_trait>::value>* = nullptr> | ||
void serialize(SerT& s, TestObj& myObj){ | ||
if(s.isSizing()) printf("Removing shallow trait before passing along!\n"); | ||
auto newS = s.template withoutTraits<shallow_trait>(); | ||
myObj.serialize(newS); | ||
} | ||
} | ||
|
||
namespace misc { | ||
template<typename SerT, typename std::enable_if_t<SerT::template has_traits<test::random_trait>::value>* = nullptr> | ||
void serialize(SerT& s, test::TestObj& myObj){ | ||
if(s.isSizing()) printf("Serializers in other namespaces don't usually get found "); | ||
myObj.serialize(s); | ||
} | ||
|
||
|
||
const struct namespace_trait {} NamespaceTrait; | ||
template<typename SerT, typename std::enable_if_t<SerT::template has_traits<namespace_trait>::value>* = nullptr> | ||
void serialize(SerT& s, test::TestObj& myObj){ | ||
if(s.isSizing()) printf("A misc:: trait means we can serialize from misc:: too: "); | ||
myObj.serialize(s); | ||
} | ||
|
||
|
||
const struct hook_all_trait {} HookAllTrait; | ||
template<typename SerT, typename T, typename std::enable_if_t<SerT::template has_traits<hook_all_trait>::value>* = nullptr> | ||
void serialize(SerT& s, T& myObj){ | ||
if(s.isSizing()) printf("We can even add on a generic pre-serialize hook: "); | ||
auto newS = s.template withoutTraits<hook_all_trait>(); | ||
myObj.serialize(newS); | ||
} | ||
} |
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
Oops, something went wrong.