Go to the documentation of this file.
45 #ifndef __SERIALIZE_HH__
46 #define __SERIALIZE_HH__
55 #include <type_traits>
56 #include <unordered_map>
87 bool find(
const std::string §ion,
const std::string &entry,
90 bool entryExists(
const std::string §ion,
const std::string &entry);
117 static std::string
setDir(
const std::string &base_name);
129 static std::string
dir();
312 std::ofstream &outstream);
315 static std::stack<std::string>
path;
363 warn_if(do_warn,
"optional parameter %s:%s not present",
386 template <
class InputIterator>
389 InputIterator start, InputIterator end)
393 using Elem = std::remove_cv_t<std::remove_reference_t<decltype(*it)>>;
407 decltype(std::begin(std::declval<const T&>()),
408 std::end(std::declval<const T&>()),
void())
422 const T *param,
unsigned size)
439 template <
class T,
class InsertIterator>
442 InsertIterator inserter, ssize_t fixed_size=-1)
447 "Can't unserialize '%s:%s'.", section,
name);
452 fatal_if(fixed_size >= 0 && tokens.size() != fixed_size,
453 "Array size mismatch on %s:%s (Got %u, expected %u)'\n",
454 section,
name, tokens.size(), fixed_size);
456 for (
const auto &
token: tokens) {
459 "Could not parse \"%s\".", str);
468 decltype(std::declval<T>().insert(std::declval<typename T::value_type>()),
473 arrayParamIn<typename T::value_type>(
474 cp,
name, std::inserter(param, param.begin()));
481 decltype(std::declval<T>().push_back(std::declval<typename T::value_type>()),
486 arrayParamIn<typename T::value_type>(cp,
name, std::back_inserter(param));
495 T *param,
unsigned size)
503 arrayParamIn<T>(cp,
name, insert_it, size);
517 const char*
const names[],
const T *param,
unsigned size)
520 for (
unsigned i = 0;
i < size; ++
i) {
531 const char*
const names[], T *param,
unsigned size)
534 std::unordered_map<std::string, size_t> name_to_index;
535 for (
size_t i = 0;
i < size;
i++) {
538 for (
size_t i = 0;
i < size;
i++) {
542 param[name_to_index[key]] = value;
547 [name_to_index](
const std::string& key,
const std::string&
val)
549 if (!name_to_index.count(key)) {
550 warn(
"unknown entry found in checkpoint: %s %s %s\n",
551 Serializable::currentSection(), key, val);
568 #define SERIALIZE_SCALAR(scalar) paramOut(cp, #scalar, scalar)
575 #define UNSERIALIZE_SCALAR(scalar) paramIn(cp, #scalar, scalar)
582 #define UNSERIALIZE_OPT_SCALAR(scalar) optParamIn(cp, #scalar, scalar)
591 #define SERIALIZE_ENUM(scalar) paramOut(cp, #scalar, (int)scalar)
598 #define UNSERIALIZE_ENUM(scalar) \
601 paramIn(cp, #scalar, tmp); \
602 scalar = static_cast<decltype(scalar)>(tmp); \
610 #define SERIALIZE_ARRAY(member, size) \
611 arrayParamOut(cp, #member, member, size)
618 #define UNSERIALIZE_ARRAY(member, size) \
619 arrayParamIn(cp, #member, member, size)
626 #define SERIALIZE_CONTAINER(member) \
627 arrayParamOut(cp, #member, member)
634 #define UNSERIALIZE_CONTAINER(member) \
635 arrayParamIn(cp, #member, member)
648 #define SERIALIZE_OBJ(obj) obj.serializeSection(cp, #obj)
655 #define UNSERIALIZE_OBJ(obj) obj.unserializeSection(cp, #obj)
660 #define SERIALIZE_MAPPING(member, names, size) \
661 mappingParamOut(cp, #member, names, member, size)
666 #define UNSERIALIZE_MAPPING(member, names, size) \
667 mappingParamIn(cp, #member, names, member, size)
671 #endif // __SERIALIZE_HH__
ScopedCheckpointSection(CP &cp, const std::string &name)
constexpr Temperature operator*(const Temperature &lhs, const double &rhs)
void nameOut(CheckpointOut &cp)
static std::string dir()
Get the current checkout directory name.
virtual void serialize(CheckpointOut &cp) const =0
Serialize an object.
void pushName(const char *name)
static std::stack< std::string > path
void serializeSection(CheckpointOut &cp, const char *name) const
Serialize an object into a new section.
This class represents the contents of a ".ini" file.
static void show(std::ostream &os, const T &value)
ScopedCheckpointSection(CP &cp, const char *name)
This is the constructor for Scoped checkpoint section helper class.
ScopedCheckpointSection & operator=(const ScopedCheckpointSection &)=delete
void unserializeSection(CheckpointIn &cp, const std::string &name)
std::function< void(const std::string &, const std::string &)> VisitSectionCallback
Visitor callback that receives key/value pairs.
~ScopedCheckpointSection()
static std::string setDir(const std::string &base_name)
Set the current directory.
const std::string _cptDir
bool paramInImpl(CheckpointIn &cp, const std::string &name, T ¶m)
Basic support for object serialization.
void visitSection(const std::string §ion, IniFile::VisitSectionCallback cb)
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.
virtual void unserialize(CheckpointIn &cp)=0
Unserialize an object.
static void generateCheckpointOut(const std::string &cpt_dir, std::ofstream &outstream)
Generate a checkpoint file so that the serialization can be routed to it.
void nameOut(CheckpointIn &cp)
void serializeSection(CheckpointOut &cp, const std::string &name) const
static const char *const names[NumModes]
void mappingParamIn(CheckpointIn &cp, const char *sectionName, const char *const names[], T *param, unsigned size)
Restore mappingParamOut.
void tokenize(std::vector< std::string > &v, const std::string &s, char token, bool ignore)
const std::string & name()
decltype(std::begin(std::declval< const T & >()), std::end(std::declval< const T & >()), void()) arrayParamOut(CheckpointOut &os, const std::string &name, const T ¶m)
static const std::string & currentSection()
Gets the fully-qualified name of the active section.
const std::string getCptDir()
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
CheckpointIn(const std::string &cpt_dir)
bool optParamIn(CheckpointIn &cp, const std::string &name, T ¶m, bool do_warn=true)
This function is used for restoring optional parameters from the checkpoint.
bool sectionExists(const std::string §ion)
bool find(const std::string §ion, const std::string &entry, std::string &value)
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
Overload hash function for BasicBlockRange type.
void paramIn(CheckpointIn &cp, const std::string &name, ExtMachInst &machInst)
ScopedCheckpointSection()=delete
std::ostream CheckpointOut
bool entryExists(const std::string §ion, const std::string &entry)
void mappingParamOut(CheckpointOut &os, const char *sectionName, const char *const names[], const T *param, unsigned size)
Serialize a mapping represented as two arrays: one containing names and the other containing values.
void arrayParamIn(CheckpointIn &cp, const std::string &name, CircleBuf< T > ¶m)
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
static const char * baseFilename
static std::string currentDirectory
Generated on Wed Jul 28 2021 12:10:29 for gem5 by doxygen 1.8.17