https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
ReporterContext< T > Class Template Referenceabstract

General context that is called by all Reporter values to manage the old values. More...

#include <ReporterContext.h>

Inheritance diagram for ReporterContext< T >:
[legend]

Public Types

enum class  AutoOperation { NONE , BROADCAST }
 Options for automatic parallel operations to perform by the default context. More...
 

Public Member Functions

 ReporterContext (const libMesh::ParallelObject &other, const MooseObject &producer, ReporterState< T > &state)
 
 ReporterContext (const libMesh::ParallelObject &other, const MooseObject &producer, ReporterState< T > &state, const T &default_value)
 
const ReporterNamename () const override final
 Return the name of the Reporter value.
 
const ReporterState< T > & state () const
 Return a reference to the ReporterState object that is storing the Reporter value.
 
virtual std::string type () const override
 Return the type being stored by the associated ReporterState object.
 
virtual void finalize () override
 Perform automatic parallel communication based on the producer/consumer modes.
 
virtual void transfer (ReporterData &r_data, const ReporterName &r_name, unsigned int time_index=0) const override
 Perform type specific transfer.
 
virtual void transferToVector (ReporterData &r_data, const ReporterName &r_name, dof_id_type index, unsigned int time_index=0) const override
 Perform type specific transfer to a vector.
 
virtual void transferFromVector (ReporterData &r_data, const ReporterName &r_name, dof_id_type index, unsigned int time_index=0) const override
 Perform type specific transfer from a vector.
 
void init (const ReporterMode &mode)
 Initialize the producer mode.
 
const MooseObjectgetProducer () const
 Return the MooseObject that produces this Reporter.
 
const ReporterProducerEnumgetProducerModeEnum () const
 Return the Reporter value produced mode.
 
virtual void declareClone (ReporterData &r_data, const ReporterName &r_name, const ReporterMode &mode, const MooseObject &producer) const =0
 Helper for declaring new reporter values based on this context.
 
virtual void declareVectorClone (ReporterData &r_data, const ReporterName &r_name, const ReporterMode &mode, const MooseObject &producer) const =0
 Helper for declaring new vector reporter values based on this context.
 
virtual void resize (dof_id_type local_size)=0
 Helper for resizing vector data.
 
virtual void clear ()=0
 Helper for clearing vector data.
 
virtual void vectorSum ()=0
 Helper for summing reporter value.
 
const Parallel::Communicatorcomm () const
 
processor_id_type n_processors () const
 
processor_id_type processor_id () const
 

Protected Member Functions

void broadcast ()
 
virtual void storeInfo (nlohmann::json &json) const override
 Output meta data to JSON, see JSONOutput.
 
virtual void store (nlohmann::json &json) const override
 Output data to JSON, see JSONOutput.
 
virtual std::string contextType () const override=0
 
virtual void copyValuesBack () override
 Called by FEProblemBase::advanceState via ReporterData.
 
virtual bool restoreState () override
 Restore state to its old values.
 
void requiresConsumerModes (const ReporterStateBase &state, const std::set< ReporterMode > &modes) const
 Helper for checking whether or not the state state has only the modes modes.
 

Protected Attributes

ReporterState< T > & _state
 The state on which this context object operates.
 
const MooseObject_producer
 The MooseObject that is producing this Reporter.
 
ReporterProducerEnum _producer_enum
 Defines how the Reporter value can be produced and how it is being produced.
 
const Parallel::Communicator_communicator
 

Detailed Description

template<typename T>
class ReporterContext< T >

General context that is called by all Reporter values to manage the old values.

This is the default context object, the communication aspect includes inspecting the produced mode against the consumed mode to be sure that the data is compatible or if automatic communication can be done to make them compatible.

Definition at line 228 of file ReporterContext.h.

Member Enumeration Documentation

◆ AutoOperation

template<typename T >
enum class ReporterContext::AutoOperation
strong

Options for automatic parallel operations to perform by the default context.

Enumerator
NONE 
BROADCAST 

Definition at line 234 of file ReporterContext.h.

Constructor & Destructor Documentation

◆ ReporterContext() [1/2]

template<typename T >
ReporterContext< T >::ReporterContext ( const libMesh::ParallelObject other,
const MooseObject producer,
ReporterState< T > &  state 
)

Definition at line 330 of file ReporterContext.h.

333 : ReporterContextBase(other, producer), _state(state)
334{
336}
const ReporterMode REPORTER_MODE_REPLICATED
const ReporterMode REPORTER_MODE_DISTRIBUTED
const ReporterMode REPORTER_MODE_ROOT
This is a helper class to aid with parallel communication of compute Reporter values as well as provi...
ReporterProducerEnum _producer_enum
Defines how the Reporter value can be produced and how it is being produced.
const ReporterState< T > & state() const
Return a reference to the ReporterState object that is storing the Reporter value.
ReporterState< T > & _state
The state on which this context object operates.
void insert(const ReporterMode &mode, Args... modes)

◆ ReporterContext() [2/2]

template<typename T >
ReporterContext< T >::ReporterContext ( const libMesh::ParallelObject other,
const MooseObject producer,
ReporterState< T > &  state,
const T &  default_value 
)

Definition at line 339 of file ReporterContext.h.

343 : ReporterContext(other, producer, state)
344{
345 _state.value() = default_value;
346}
General context that is called by all Reporter values to manage the old values.

Member Function Documentation

◆ broadcast()

template<typename T >
void ReporterContext< T >::broadcast ( )
inlineprotected

Definition at line 303 of file ReporterContext.h.

304 {
305 if constexpr (MooseUtils::canBroadcast<T>::value)
306 this->comm().broadcast(this->_state.value());
307 else
308 mooseError("Cannot broadcast Reporter type '", MooseUtils::prettyCppType<T>(), "'");
309 }
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
Definition MooseError.h:311
void broadcast(T &data, const unsigned int root_id=0, const bool identical_sizes=false) const
const Parallel::Communicator & comm() const

◆ clear()

virtual void ReporterContextBase::clear ( )
pure virtualinherited

Helper for clearing vector data.

Implemented in ReporterGeneralContext< T >, and ReporterVectorContext< T >.

Referenced by ReporterTransferInterface::clearVectorReporter().

◆ contextType()

template<typename T >
virtual std::string ReporterContext< T >::contextType ( ) const
overrideprotectedpure virtual
Returns
The derived context type for this context.

This must be overridden in every class.

Implements ReporterContextBase.

Implemented in ReporterGeneralContext< T >, ReporterBroadcastContext< T >, ReporterScatterContext< T >, ReporterGatherContext< T >, and ReporterVectorContext< T >.

◆ copyValuesBack()

template<typename T >
void ReporterContext< T >::copyValuesBack ( )
overrideprotectedvirtual

Called by FEProblemBase::advanceState via ReporterData.

Implements ReporterContextBase.

Reimplemented in VectorPostprocessorContext< T >.

Definition at line 412 of file ReporterContext.h.

413{
414 _state.copyValuesBack();
415}

◆ declareClone()

virtual void ReporterContextBase::declareClone ( ReporterData r_data,
const ReporterName r_name,
const ReporterMode mode,
const MooseObject producer 
) const
pure virtualinherited

Helper for declaring new reporter values based on this context.

Parameters
r_dataThe ReporterData on the app that this value is being declared
r_nameThe name of the Reporter value being declared
modeReporter mode to declare with
See also
ReporterTransferInterface

Implemented in ReporterVectorContext< T >, and ReporterGeneralContext< T >.

Referenced by ReporterTransferInterface::declareClone().

◆ declareVectorClone()

virtual void ReporterContextBase::declareVectorClone ( ReporterData r_data,
const ReporterName r_name,
const ReporterMode mode,
const MooseObject producer 
) const
pure virtualinherited

Helper for declaring new vector reporter values based on this context.

Parameters
r_dataThe ReporterData on the app that this value is being declared
r_nameThe name of the Reporter value being declared
modeReporter mode to declare with
See also
ReporterTransferInterface

Implemented in ReporterVectorContext< T >, and ReporterGeneralContext< T >.

Referenced by ReporterTransferInterface::declareVectorClone().

◆ finalize()

template<typename T >
void ReporterContext< T >::finalize ( )
overridevirtual

Perform automatic parallel communication based on the producer/consumer modes.

Implements ReporterContextBase.

Reimplemented in ReporterBroadcastContext< T >, ReporterScatterContext< T >, ReporterGatherContext< T >, and VectorPostprocessorContext< T >.

Definition at line 350 of file ReporterContext.h.

351{
352 // Automatic parallel operation to perform
354
355 // Set the default producer mode to ROOT
356 if (!_producer_enum.isValid())
358
359 // Determine auto parallel operation to perform
360 const auto & producer = _producer_enum; // convenience
361 for (const auto & pair : _state.getConsumers())
362 {
363 const ReporterMode consumer = pair.first;
364 const MooseObject * moose_object = pair.second;
365
366 // The following sets up the automatic operations and performs error checking for the various
367 // modes for the producer and consumer
368 //
369 // The data is correct and requires no operation for the following conditions (PRODUCER ->
370 // CONSUMER)
371 // ROOT -> ROOT
372 // REPLICATED -> REPLICATED
373 // DISTRIBUTED -> DISTRIBUTED
374 // REPLICATED -> ROOT
375
376 // Perform broadcast in the case
377 // ROOT -> REPLICATED
378 if (static_cast<int>(producer) == REPORTER_MODE_ROOT && consumer == REPORTER_MODE_REPLICATED)
380
381 // The following are not support and create an error
382 // ROOT -> DISTRIBUTED
383 // REPLICATED -> DISTRIBUTED
384 // DISTRIBUTED -> ROOT
385 // DISTRIBUTED -> REPLICATED
386 else if ((static_cast<int>(producer) == REPORTER_MODE_ROOT &&
387 consumer == REPORTER_MODE_DISTRIBUTED) ||
388 (static_cast<int>(producer) == REPORTER_MODE_REPLICATED &&
389 consumer == REPORTER_MODE_DISTRIBUTED) ||
390 (static_cast<int>(producer) == REPORTER_MODE_DISTRIBUTED &&
391 consumer == REPORTER_MODE_ROOT) ||
392 (static_cast<int>(producer) == REPORTER_MODE_DISTRIBUTED &&
393 consumer == REPORTER_MODE_REPLICATED))
394 mooseError("The Reporter value \"",
395 name(),
396 "\" is being produced in ",
397 producer,
398 " mode, but the ",
399 moose_object->typeAndName(),
400 " is requesting to consume it in ",
401 consumer,
402 " mode, which is not supported.");
403 }
404
405 // Perform desired auto parallel operation
406 if (auto_operation == ReporterContext::AutoOperation::BROADCAST)
407 this->broadcast();
408}
std::string typeAndName() const
Get the class's combined type and name; useful in error handling.
Definition MooseBase.C:57
virtual bool isValid() const override
IsValid.
Definition MooseEnum.h:139
void assign(const std::string &name, const std::optional< std::string > &context={})
Definition MooseEnum.C:60
Every object that can be built by the factory should be derived from this class.
Definition MooseObject.h:31
AutoOperation
Options for automatic parallel operations to perform by the default context.
const ReporterName & name() const override final
Return the name of the Reporter value.
MooseEnumItem that automatically creates the ID and doesn't allow the ID to be assigned.

◆ getProducer()

const MooseObject & ReporterContextBase::getProducer ( ) const
inlineinherited

Return the MooseObject that produces this Reporter.

Definition at line 118 of file ReporterContext.h.

118{ return _producer; }
const MooseObject & _producer
The MooseObject that is producing this Reporter.

Referenced by ReporterData::getReporterInfo().

◆ getProducerModeEnum()

const ReporterProducerEnum & ReporterContextBase::getProducerModeEnum ( ) const
inherited

Return the Reporter value produced mode.

Definition at line 28 of file ReporterContext.C.

29{
30 return _producer_enum;
31}

Referenced by ReporterData::getReporterMode().

◆ init()

void ReporterContextBase::init ( const ReporterMode mode)
inherited

Initialize the producer mode.

This done after construction to allow the constructor to define the available values in the ReporterProducerEnum.

See also
ReporterData::declareReporterValue

Definition at line 21 of file ReporterContext.C.

22{
23 if (mode != REPORTER_MODE_UNSET)
25}
const ReporterMode REPORTER_MODE_UNSET

◆ name()

template<typename T >
const ReporterName & ReporterContext< T >::name ( ) const
inlinefinaloverridevirtual

Return the name of the Reporter value.

Implements ReporterContextBase.

Definition at line 251 of file ReporterContext.h.

251{ return _state.getReporterName(); }

◆ requiresConsumerModes()

void ReporterContextBase::requiresConsumerModes ( const ReporterStateBase state,
const std::set< ReporterMode > &  modes 
) const
protectedinherited

Helper for checking whether or not the state state has only the modes modes.

Definition at line 34 of file ReporterContext.C.

36{
37 for (const auto & mode_object_pair : state.getConsumers())
38 if (!modes.count(mode_object_pair.first))
39 {
40 std::stringstream oss;
41 std::copy(modes.begin(), modes.end(), std::ostream_iterator<ReporterMode>(oss, " "));
42
43 mooseError("The Reporter value '",
44 name(),
45 "' is being produced in ",
47 " mode, but ",
48 mode_object_pair.second->typeAndName(),
49 " is requesting to consume it in ",
50 mode_object_pair.first,
51 " mode, which is not supported.\n\nThe mode must be { ",
52 oss.str(),
53 " }.\n\n",
55 }
56}
unsigned int count
Definition MortarUtils.C:53
if(!dmm->_nl) SETERRQ(PETSC_COMM_WORLD
virtual const ReporterName & name() const =0
Return the ReporterName that the context is associated.
std::string getReporterInfo() const
Gets information about all declared/requested Reporters.

◆ resize()

virtual void ReporterContextBase::resize ( dof_id_type  local_size)
pure virtualinherited

Helper for resizing vector data.

Parameters
local_sizeNumber of elements to resize vector to

Implemented in ReporterGeneralContext< T >, and ReporterVectorContext< T >.

Referenced by ReporterTransferInterface::resizeReporter().

◆ restoreState()

template<typename T >
virtual bool ReporterContext< T >::restoreState ( )
inlineoverrideprotectedvirtual

Restore state to its old values.

See also
ReporterState::restoreState

Implements ReporterContextBase.

Definition at line 323 of file ReporterContext.h.

323{ return _state.restoreState(); }

◆ state()

template<typename T >
const ReporterState< T > & ReporterContext< T >::state ( ) const
inline

Return a reference to the ReporterState object that is storing the Reporter value.

Definition at line 256 of file ReporterContext.h.

256{ return _state; }

◆ store()

template<typename T >
void ReporterContext< T >::store ( nlohmann::json &  json) const
overrideprotectedvirtual

Output data to JSON, see JSONOutput.

Implements ReporterContextBase.

Definition at line 426 of file ReporterContext.h.

427{
428 nlohmann::to_json(json, this->_state.value());
429}

◆ storeInfo()

template<typename T >
void ReporterContext< T >::storeInfo ( nlohmann::json &  json) const
overrideprotectedvirtual

Output meta data to JSON, see JSONOutput.

Implements ReporterContextBase.

Definition at line 419 of file ReporterContext.h.

420{
421 json["type"] = this->type();
422}
virtual std::string type() const override
Return the type being stored by the associated ReporterState object.

◆ transfer()

template<typename T >
void ReporterContext< T >::transfer ( ReporterData r_data,
const ReporterName r_name,
unsigned int  time_index = 0 
) const
overridevirtual

Perform type specific transfer.

NOTE: This is defined in ReporterData.h to avoid cyclic includes that would arise. I don't know of a better solution, if you have one please implement it.

Implements ReporterContextBase.

Definition at line 515 of file ReporterData.h.

518{
519 r_data.setReporterValue<T>(r_name, _state.value(), time_index);
520}
void setReporterValue(const ReporterName &reporter_name, const T &value, const std::size_t time_index=0)
Method for setting Reporter values that already exist.

◆ transferFromVector()

template<typename T >
void ReporterContext< T >::transferFromVector ( ReporterData r_data,
const ReporterName r_name,
dof_id_type  index,
unsigned int  time_index = 0 
) const
overridevirtual

Perform type specific transfer from a vector.

NOTE: This is defined in ReporterData.h to avoid cyclic includes that would arise. I don't know of a better solution, if you have one please implement it.

Implements ReporterContextBase.

Definition at line 542 of file ReporterData.h.

546{
547 if constexpr (is_std_vector<T>::value)
548 {
549 if (index >= _state.value().size())
550 mooseError("Requested index ",
551 index,
552 " is outside the bounds of the vector reporter value ",
553 r_name);
554
555 using R = typename T::value_type;
556 r_data.setReporterValue<R>(r_name, _state.value()[index], time_index);
557 }
558 else
559 {
560 libmesh_ignore(r_data);
561 libmesh_ignore(r_name);
562 libmesh_ignore(index);
563 libmesh_ignore(time_index);
564 mooseError("transferFromVector can only be used for reporter types that are specializatons of "
565 "std::vector.");
566 }
567}
void libmesh_ignore(const Args &...)

◆ transferToVector()

template<typename T >
void ReporterContext< T >::transferToVector ( ReporterData r_data,
const ReporterName r_name,
dof_id_type  index,
unsigned int  time_index = 0 
) const
overridevirtual

Perform type specific transfer to a vector.

NOTE: This is defined in ReporterData.h to avoid cyclic includes that would arise. I don't know of a better solution, if you have one please implement it.

Implements ReporterContextBase.

Definition at line 525 of file ReporterData.h.

529{
530 std::vector<T> & vec =
531 const_cast<std::vector<T> &>(r_data.getReporterValue<std::vector<T>>(r_name, time_index));
532
533 if (index >= vec.size())
535 "Requested index ", index, " is outside the bounds of the vector reporter value ", r_name);
536 vec[index] = _state.value();
537}
const T & getReporterValue(const ReporterName &reporter_name, const MooseObject &consumer, const ReporterMode &mode, const std::size_t time_index=0) const
Method for returning read only references to Reporter values.

◆ type()

template<typename T >
virtual std::string ReporterContext< T >::type ( ) const
inlineoverridevirtual

Return the type being stored by the associated ReporterState object.

See also
ReporterContext::storeInfo

Implements ReporterContextBase.

Definition at line 263 of file ReporterContext.h.

263{ return MooseUtils::prettyCppType<T>(); }

◆ vectorSum()

virtual void ReporterContextBase::vectorSum ( )
pure virtualinherited

Helper for summing reporter value.

Implemented in ReporterGeneralContext< T >, and ReporterVectorContext< T >.

Referenced by ReporterTransferInterface::sumVectorReporter().

Member Data Documentation

◆ _producer

const MooseObject& ReporterContextBase::_producer
protectedinherited

The MooseObject that is producing this Reporter.

Definition at line 214 of file ReporterContext.h.

Referenced by ReporterContextBase::getProducer().

◆ _producer_enum

ReporterProducerEnum ReporterContextBase::_producer_enum
protectedinherited

◆ _state

template<typename T >
ReporterState<T>& ReporterContext< T >::_state
protected

The documentation for this class was generated from the following files: