-
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
Also adds is_footprinter_v
- Loading branch information
1 parent
7a1475e
commit 5eecca8
Showing
26 changed files
with
824 additions
and
114 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
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,60 @@ | ||
/* | ||
//@HEADER | ||
// ***************************************************************************** | ||
// | ||
// checkpoint_example_user_traits.cc | ||
// DARMA/magistrate => Serialization Library | ||
// | ||
// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC | ||
// (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S. | ||
// Government retains certain rights in this software. | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are met: | ||
// | ||
// * Redistributions of source code must retain the above copyright notice, | ||
// this list of conditions and the following disclaimer. | ||
// | ||
// * Redistributions in binary form must reproduce the above copyright notice, | ||
// this list of conditions and the following disclaimer in the documentation | ||
// and/or other materials provided with the distribution. | ||
// | ||
// * Neither the name of the copyright holder nor the names of its | ||
// contributors may be used to endorse or promote products derived from this | ||
// software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | ||
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
// POSSIBILITY OF SUCH DAMAGE. | ||
// | ||
// Questions? Contact [email protected] | ||
// | ||
// ***************************************************************************** | ||
//@HEADER | ||
*/ | ||
#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<test::TestObj, checkpoint_trait>(obj); | ||
auto s_info_c = checkpoint::serialize<test::TestObj, checkpoint_trait, checkpoint_trait>(obj); | ||
auto s_info_d = checkpoint::serialize<test::TestObj, test::random_trait, checkpoint_trait>(obj); | ||
auto s_info_e = checkpoint::serialize<test::TestObj, checkpoint_trait, test::random_trait>(obj); | ||
auto s_info_f = checkpoint::serialize<test::TestObj, test::random_trait, test::random_trait>(obj); | ||
auto s_info_g = checkpoint::serialize<test::TestObj, shallow_trait>(obj); | ||
auto s_info_h = checkpoint::serialize<test::TestObj, misc::namespace_trait>(obj); | ||
auto s_info_i = checkpoint::serialize<test::TestObj, 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 SerT::template has_not_traits<shallow_trait>::type = 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 SerT::template has_traits<random_trait>::type = nullptr> | ||
void serialize(SerT& s, TestObj& myObj){ | ||
if(s.isSizing()) printf("Inserting random extra object serialization step! "); | ||
myObj.serialize(s); | ||
} | ||
|
||
template<typename SerT, typename SerT::template has_traits<shallow_trait>::type = 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 SerT::template has_traits<test::random_trait>::type = 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 SerT::template has_traits<namespace_trait>::type = 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 SerT::template has_traits<hook_all_trait>::type = 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
Oops, something went wrong.