Utopia 2
Framework for studying models of complex & adaptive systems.
|
Provides a Functor for producing writetasks and a function for producing a datamanager using that functor. Exists for simplifying creation of default datamanagers for model builders. More...
Classes | |
struct | Utopia::DataIO::DatasetDescriptor |
Descriptor for a dataset. Contains: path: string giving the path of the dataset in its group or file with_time_postfix: whether the current model time is appended to the dataset path dataset_capacity: vector giving capacity of the dataset per dimension dataset_chunksize: vector giving chunksize per dimension of the dataset dataset_compression: integer giving compression strength (0 to 10) More... | |
class | Utopia::DataIO::TaskFactory< Model, typetag > |
Functor for building a writetask from arguments. More... | |
class | Utopia::DataIO::DataManagerFactory< Model > |
Factory function which produces a Datamanager of type Default::DefaultDataManager<Model> from a config and argumets from which to construct writetasks. More... | |
Enumerations | |
enum struct | Utopia::DataIO::TypeTag { Utopia::DataIO::TypeTag::plain , Utopia::DataIO::TypeTag::vertex_property , Utopia::DataIO::TypeTag::edge_property , Utopia::DataIO::TypeTag::vertex_descriptor , Utopia::DataIO::TypeTag::edge_descriptor } |
TypeTag enumerates the kind of access which is used to write data. It became necessary after integrating graphs. Has 5 values: plain : use for everything that is not a graph vertex_property : for writing graphs using boost::vertex_property edge_property : for writing graphs using boost::edge_property vertex_descriptor : for writing graphs using boost::vertex_descriptor edge_descriptor : for writing graphs using boost::edge_descriptor. More... | |
Variables | |
static std::unordered_map< std::string, std::function< std::string(std::string, Model &) > > | Utopia::DataIO::TaskFactory< Model, typetag >::_modifiers |
Initialization of the modifier map. | |
Provides a Functor for producing writetasks and a function for producing a datamanager using that functor. Exists for simplifying creation of default datamanagers for model builders.
This file provides a functor for producing default writetasks from complete or simplified arguments and another functor for producing a default datamanager.
implemented as class because its encapsulation together with its helper functions is natural. It takes care of building writetasks from simplified user supplied arguments, and is build to be extendible. It distinguishes between the use of these simplified arguments and the usage of the full argument list needed to invoke the writetask constructor directly. The datamanager factory is much simpler in its logic, and hences is implemented as a template function.
|
strong |
TypeTag enumerates the kind of access which is used to write data. It became necessary after integrating graphs. Has 5 values: plain : use for everything that is not a graph vertex_property : for writing graphs using boost::vertex_property edge_property : for writing graphs using boost::edge_property vertex_descriptor : for writing graphs using boost::vertex_descriptor edge_descriptor : for writing graphs using boost::edge_descriptor.
Enumerator | |
---|---|
plain | |
vertex_property | |
edge_property | |
vertex_descriptor | |
edge_descriptor |
|
staticprivate |
Initialization of the modifier map.
Model | Modeltype to use. |
typetag |