CASM
1.1.0
A Clusters Approach to Statistical Mechanics
|
#include <DataFormatter.hh>
Abstract base class from which all other DatumFormatter<DataObject> classes inherit.
The job of a DatumFormatter is to access and format a particular type of data that is stored in a <DataObject> class, which is a template paramter.
Definition at line 332 of file DataFormatter.hh.
Public Types | |
typedef _DataObject | DataObject |
typedef long | difference_type |
typedef DataFormatterDictionary< DataObject, BaseDatumFormatter< DataObject > > | DictType |
Public Member Functions | |
BaseDatumFormatter (const std::string &_init_name, const std::string &_desc) | |
virtual | ~BaseDatumFormatter () |
Allow polymorphic deletion. More... | |
const std::string & | name () const |
Returns a name for the formatter, which becomes the tag used for parsing. More... | |
const std::string & | description () const |
Returns a short description of the formatter and its allowed arguments (if any). This description is used to automatically generate help screens. More... | |
virtual DatumFormatterClass | type () const |
const DictType & | home () const |
const Access the dictionary containing this formatter, set during DictType::lookup More... | |
void | set_home (const DictType &home) const |
Set the dictionary containing this formatter, set during DictType::lookup. More... | |
std::unique_ptr< BaseDatumFormatter< DataObject > > | clone () const |
Make an exact copy of the formatter (including any initialized members) More... | |
virtual bool | init (const DataObject &_template_obj) const |
Perform all initialization steps using _template_obj. Returns true if initialization is successful and false if _template_obj has insufficient data to complete initialization. More... | |
virtual bool | validate (const DataObject &_data_obj) const |
Returns true if _data_obj has valid values for requested data. More... | |
virtual std::vector< std::string > | col_header (const DataObject &_template_obj) const |
Returns a header string for each scalar produced by the formatter parsing the entries in the col_header should reproduce the exact query described by the formatter. Ex: "clex(formation_energy)" or "comp(a)", "comp(c)". More... | |
virtual std::string | long_header (const DataObject &_template_obj) const |
Returns a long expression for each scalar produced by the formatter parsing the long_header should reproduce the exact query described by the formatter Ex: "clex(formation_energy)" or "comp(a) comp(c)". More... | |
virtual std::string | short_header (const DataObject &_template_obj) const |
Returns a short expression for the formatter parsing the short_header should allow the formatter to be recreated (but the short header does not specify a subset of the elements) Ex: "clex(formation_energy)" or "comp". More... | |
virtual Index | num_passes (const DataObject &_data_obj) const |
virtual void | print (const DataObject &_data_obj, std::ostream &_stream, Index pass_index=0) const =0 |
virtual void | inject (const DataObject &_data_obj, DataStream &_stream, Index pass_index=0) const =0 |
virtual jsonParser & | to_json (const DataObject &_data_obj, jsonParser &json) const =0 |
virtual bool | parse_args (const std::string &args) |
Protected Types | |
typedef multivector< Index >::X< 2 > | IndexContainer |
Protected Member Functions | |
void | _parse_index_expression (const std::string &_expr) |
void | _add_rule (const std::vector< Index > &new_rule) const |
const IndexContainer & | _index_rules () const |
Private Member Functions | |
virtual BaseDatumFormatter * | _clone () const =0 |
Make an exact copy of the formatter (including any initialized members) More... | |
Private Attributes | |
std::string | m_name |
std::string | m_description |
IndexContainer | m_index_rules |
const DictType * | m_home |
typedef _DataObject CASM::BaseDatumFormatter< _DataObject >::DataObject |
Definition at line 334 of file DataFormatter.hh.
typedef DataFormatterDictionary<DataObject, BaseDatumFormatter<DataObject> > CASM::BaseDatumFormatter< _DataObject >::DictType |
Definition at line 337 of file DataFormatter.hh.
typedef long CASM::BaseDatumFormatter< _DataObject >::difference_type |
Definition at line 335 of file DataFormatter.hh.
|
protected |
Definition at line 459 of file DataFormatter.hh.
|
inline |
Definition at line 339 of file DataFormatter.hh.
|
inlinevirtual |
Allow polymorphic deletion.
Definition at line 343 of file DataFormatter.hh.
|
inlineprotected |
Definition at line 472 of file DataFormatter.hh.
|
privatepure virtual |
Make an exact copy of the formatter (including any initialized members)
Implemented in CASM::Base2DDatumFormatter< Container, DataObject >, CASM::Base1DDatumFormatter< Container, DataObject >, CASM::BaseValueFormatter< ValueType, DataObject >, CASM::BaseValueFormatter< ValueType, Configuration >, CASM::BaseValueFormatter< Container, DataObject >, CASM::DB::Selected< ObjType >, CASM::ScelIO::Ndata, CASM::ScelIO::Ncalc, CASM::ScelIO::Nconfig, CASM::ScelIO::TransfMat, CASM::ScelIO::IsUnitcellOf, CASM::ScelIO::IsSupercellOf, CASM::HyperPlaneReference, CASM::HyperPlaneReferenceBase, CASM::ConstantReference, CASM::ConfigIO::StrucScore, CASM::ConfigIO::DoFStrain, CASM::ConfigIO::RelaxationStrain, CASM::ConfigIO::Novelty, CASM::ConfigIO::ClexHullDist, CASM::ConfigIO::OnClexHull, CASM::ConfigIO::HullDist, CASM::ConfigIO::OnHull, CASM::ConfigIO::Clex, CASM::ConfigIO::GradCorr, CASM::ConfigIO::PointCorr, CASM::ConfigIO::CorrContribution, CASM::ConfigIO::Corr, CASM::ConfigIO::AtomFrac, CASM::ConfigIO::SiteFrac, CASM::ConfigIO::CompN, CASM::ConfigIO::Comp, CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Generic2DDatumFormatter< Container, DataObject >, CASM::Generic1DDatumFormatter< Container, DataObject >, CASM::GenericDatumFormatter< ValueType, DataObject >, CASM::ConstantValueFormatter< ValueType, DataObject >, CASM::DatumFormatterAlias< DataObject >, CASM::DataFormatterOperator< ValueType, ArgType, DataObject >, and CASM::ChemicalReference.
|
inlineprotected |
Definition at line 476 of file DataFormatter.hh.
|
protected |
Derived DatumFormatters have some optional functionality for parsing index expressions in order to make it easy to handle ranges such as:
in which case, DerivedDatumFormatter::parse_args() is called with the string "3,4:8" by dispatching that string to BaseDatumFormatter::_parse_index_expression(), m_index_rules will be populated with {{3,4},{3,5},{3,6},{3,7},{3,8}}
Definition at line 15 of file DataFormatter_impl.hh.
|
inline |
Make an exact copy of the formatter (including any initialized members)
Definition at line 369 of file DataFormatter.hh.
|
inlinevirtual |
Returns a header string for each scalar produced by the formatter parsing the entries in the col_header should reproduce the exact query described by the formatter. Ex: "clex(formation_energy)" or "comp(a)", "comp(c)".
Reimplemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Base2DDatumFormatter< Container, DataObject >, CASM::Base1DDatumFormatter< Container, DataObject >, and CASM::DatumFormatterAlias< DataObject >.
Definition at line 389 of file DataFormatter.hh.
|
inline |
Returns a short description of the formatter and its allowed arguments (if any). This description is used to automatically generate help screens.
Definition at line 352 of file DataFormatter.hh.
|
inline |
const Access the dictionary containing this formatter, set during DictType::lookup
Definition at line 360 of file DataFormatter.hh.
|
inlinevirtual |
Perform all initialization steps using _template_obj. Returns true if initialization is successful and false if _template_obj has insufficient data to complete initialization.
Reimplemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Base2DDatumFormatter< Container, DataObject >, CASM::Base1DDatumFormatter< Container, DataObject >, and CASM::DatumFormatterAlias< DataObject >.
Definition at line 376 of file DataFormatter.hh.
|
pure virtual |
Stream selected data from _data_obj to _stream, while specifying which output pass is requested If implementation does not depend on pass_index, it may safely be ignored
Implemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Base2DDatumFormatter< Container, DataObject >, CASM::Base1DDatumFormatter< Container, DataObject >, CASM::BaseValueFormatter< ValueType, DataObject >, CASM::BaseValueFormatter< Container, DataObject >, CASM::DatumFormatterAlias< DataObject >, CASM::ConstantValueFormatter< ValueType, DataObject >, and CASM::DataFormatterOperator< ValueType, ArgType, DataObject >.
|
inlinevirtual |
Returns a long expression for each scalar produced by the formatter parsing the long_header should reproduce the exact query described by the formatter Ex: "clex(formation_energy)" or "comp(a) comp(c)".
Reimplemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >.
Definition at line 399 of file DataFormatter.hh.
|
inline |
Returns a name for the formatter, which becomes the tag used for parsing.
Definition at line 347 of file DataFormatter.hh.
|
inlinevirtual |
If data must be printed on multiple rows, returns number of rows needed to output all data from _data_obj DataFormatter class will subsequently pass over _data_obj multiple times to complete printing (if necessary)
Reimplemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Base2DDatumFormatter< Container, DataObject >, and CASM::DatumFormatterAlias< DataObject >.
Definition at line 424 of file DataFormatter.hh.
|
inlinevirtual |
If DatumFormatter accepts arguments, parse them here. Arguments are assumed to be passed from the command line via: formattername(argument1,argument2,...)
from which DerivedDatumFormatter::parse_args() receives the string "argument1,argument2,..." Returns true if parse is successful, false if not (e.g., takes no arguments, already initialized, malformed input, etc).
Reimplemented in CASM::ConfigIO::StrucScore, CASM::DB::Selected< ObjType >, CASM::ScelIO::ConfigCountBase, CASM::ScelIO::TransfMat, CASM::ScelIO::SupercellCheckBase< VectorXiAttribute< Supercell > >, CASM::ScelIO::SupercellCheckBase< BooleanAttribute< Supercell > >, CASM::ConfigIO::DoFStrain, CASM::ConfigIO::RelaxationStrain, CASM::ConfigIO::Novelty, CASM::ConfigIO::BaseHull< ValueType >, CASM::ConfigIO::BaseHull< double >, CASM::ConfigIO::BaseHull< bool >, CASM::ConfigIO::Clex, CASM::ConfigIO::GradCorr, CASM::ConfigIO::PointCorr, CASM::ConfigIO::CorrContribution, CASM::ConfigIO::Corr, CASM::ConfigIO::Comp, CASM::ConfigIO_impl::MolDependent, CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Base2DDatumFormatter< Container, DataObject >, CASM::Base1DDatumFormatter< Container, DataObject >, CASM::DatumFormatterAlias< DataObject >, and CASM::DataFormatterOperator< ValueType, ArgType, DataObject >.
Definition at line 456 of file DataFormatter.hh.
|
pure virtual |
Print formatted data from _data_obj to _stream, while specifying which output pass is requested If implementation does not depend on pass_index, it may safely be ignored
Implemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Base2DDatumFormatter< Container, DataObject >, CASM::Base1DDatumFormatter< Container, DataObject >, CASM::BaseValueFormatter< ValueType, DataObject >, CASM::BaseValueFormatter< Container, DataObject >, CASM::DatumFormatterAlias< DataObject >, CASM::ConstantValueFormatter< ValueType, DataObject >, and CASM::DataFormatterOperator< ValueType, ArgType, DataObject >.
|
inline |
Set the dictionary containing this formatter, set during DictType::lookup.
Definition at line 364 of file DataFormatter.hh.
|
inlinevirtual |
Returns a short expression for the formatter parsing the short_header should allow the formatter to be recreated (but the short header does not specify a subset of the elements) Ex: "clex(formation_energy)" or "comp".
Reimplemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::DatumFormatterAlias< DataObject >, and CASM::DataFormatterOperator< ValueType, ArgType, DataObject >.
Definition at line 417 of file DataFormatter.hh.
|
pure virtual |
Assumes that 'json' object is simply assigned, and it is the job of DataFormatter (or some other managing entity) to pass the correct 'json' object. Ex: DerivedDatumFormatter my_formatter; initialize(my_formatter); // does some set of initialization steps jsonParser my_big_data_object; my_formatter.to_json(my_data_object, my_big_data_object["place_to_write"]["my_formatter_data"]);
Implemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::BaseValueFormatter< ValueType, DataObject >, CASM::BaseValueFormatter< Container, DataObject >, CASM::ConstantValueFormatter< ValueType, DataObject >, CASM::DatumFormatterAlias< DataObject >, and CASM::DataFormatterOperator< ValueType, ArgType, DataObject >.
|
inlinevirtual |
Reimplemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::DatumFormatterAlias< DataObject >, and CASM::DataFormatterOperator< ValueType, ArgType, DataObject >.
Definition at line 354 of file DataFormatter.hh.
|
inlinevirtual |
Returns true if _data_obj has valid values for requested data.
Default implementation always returns true
Reimplemented in CASM::DatumFormatterAdapter< ExternalType, InternalType >, CASM::Generic2DDatumFormatter< Container, DataObject >, CASM::Generic1DDatumFormatter< Container, DataObject >, CASM::GenericDatumFormatter< ValueType, DataObject >, CASM::DatumFormatterAlias< DataObject >, and CASM::DataFormatterOperator< ValueType, ArgType, DataObject >.
Definition at line 381 of file DataFormatter.hh.
|
private |
Definition at line 486 of file DataFormatter.hh.
|
mutableprivate |
Definition at line 488 of file DataFormatter.hh.
|
mutableprivate |
Definition at line 487 of file DataFormatter.hh.
|
private |
{ return notstd::make_unique<DerivedDatumFormatter>(*this);}
Definition at line 485 of file DataFormatter.hh.