46 void addOutput(std::shared_ptr<Output> output);
65 bool hasOutput(
const std::string & name)
const;
96 void setFileNumbers(std::map<std::string, unsigned int> input,
unsigned int offset = 0);
133 const bool supports_material_output =
false);
147 template <
typename T>
156 template <
typename T>
157 std::vector<T *>
getOutputs(
const std::vector<OutputName> & names);
164 template <
typename T>
172 template <
typename T>
246 template <
typename T>
271 void addOutputFilename(
const OutputName & obj_name,
const OutFileBase & filename);
318 const std::set<std::string> & variable_names);
419 mooseError(
"An output object with the name '", name,
"' does not exist.");
426 mooseError(
"An output object with the name '", name,
"' for the specified type does not exist");
437 std::vector<T *> outputs;
440 for (std::vector<OutputName>::const_iterator it = names.begin(); it != names.end(); ++it)
441 outputs.push_back(getOutput<T>(*it));
452 std::vector<T *> outputs;
455 for (std::map<OutputName, Output *>::const_iterator it =
_object_map.begin();
459 T * output =
dynamic_cast<T *
>(it->second);
461 outputs.push_back(output);
469std::vector<OutputName>
473 std::vector<OutputName> names;
476 for (std::map<OutputName, Output *>::const_iterator it =
_object_map.begin();
480 T * output =
dynamic_cast<T *
>(it->second);
482 names.push_back(it->first);
493 std::vector<T *> outputs = getOutputs<T>();
494 for (
typename std::vector<T *>::iterator it = outputs.begin(); it != outputs.end(); ++it)
495 (*it)->allowOutput(state);
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
Creates AuxVariables and AuxKernels for automatic output of material properties.
Base class for MOOSE-based applications.
const std::string & name() const
Get the name of the class.
Class for containing MooseEnum item information.
A class to provide an common interface to objects requiring "outputs" option.
Class for storing and utilizing output objects.
const InputParameters * getCommonParameters() const
Get a reference to the common output parameters.
void flushConsoleBuffer()
If content exists in the buffer, write it.
void reset()
Reset the output system.
void addOutputFilename(const OutputName &obj_name, const OutFileBase &filename)
Adds the file name to the map of filenames being output with an associated object The main function o...
std::vector< Output * > _all_objects
All instances of objects (raw pointers)
bool isReservedName(const std::string &name)
Test if the given name is reserved.
void solveSetup()
Calls the timestepSetup function for each of the output objects.
void jacobianSetup()
Calls the jacobianSetup function for each of the output objects.
void setFileNumbers(std::map< std::string, unsigned int > input, unsigned int offset=0)
Calls the setFileNumber method for every FileOutput output object.
void bufferConsoleOutputsBeforeConstruction(bool buffer)
Set if the outputs to Console before its construction are to be buffered or to screen directly.
std::set< OutputName > getAllMaterialPropertyOutputNames() const
Returns all output names that support material output.
std::atomic< unsigned long long int > _num_printed
Number of times the stream has been printed to.
void forceOutput()
Indicates that the next call to outputStep should be forced This is private, users should utilize FEP...
void timestepSetup()
Calls the timestepSetup function for each of the output objects.
const InputParameters * _common_params_ptr
Pointer to the common InputParameters (.
std::set< Real > & getSyncTimes()
Return the sync times for all objects.
const std::set< std::string > & getReservedNames() const
Return a set of reserved output names.
const std::ostringstream * _last_buffer
What the last buffer was that was printed.
bool _last_message_ended_in_newline
Whether or not the last thing output by mooseConsole had a newline as the last character.
unsigned long long int numPrinted() const
The number of times something has been printed.
std::vector< std::shared_ptr< Output > > _all_ptrs
We are using std::shared_ptr to handle the cleanup of the pointers at the end of execution.
std::set< Real > _sync_times
Sync times for all objects.
const std::set< OutputName > & getOutputNames()
Get a complete set of all output object names.
std::ostringstream & consoleBuffer()
The buffered messages stream for Console objects.
void initialSetup()
Calls the initialSetup function for each of the output objects.
std::set< AuxVariableName > _all_material_output_variables
List of all variable created by auto material output.
ExecFlagType _output_exec_flag
The current output execution flag.
bool _buffer_action_console_outputs
True to buffer console outputs in actions.
void meshChanged()
Calls the meshChanged method for every output object.
void customSetup(const ExecFlagType &exec_type)
Calls the setup function for each of the output objects.
std::map< OutputName, std::set< AuxVariableName > > _material_output_map
Map of output name and AuxVariable names to be output (used by auto Material output)
std::string _input_file_name
Input file name for this output object.
std::map< std::string, unsigned int > getFileNumbers()
Extracts the file numbers from the output objects.
bool hasOutput(const std::string &name) const
Returns true if the output object exists.
void addInterfaceHideVariables(const std::string &output_name, const std::set< std::string > &variable_names)
Insert variable names for hiding via the OutoutInterface.
std::set< OutputName > _object_names
A set of output names.
T * getOutput(const OutputName &name)
Return an Output object by name.
std::map< std::string, std::set< std::string > > _interface_map
Storage for variables to hide as prescribed by the object via the OutputInterface.
virtual ~OutputWarehouse()
bool _force_output
Flag indicating that next call to outputStep is forced.
void subdomainSetup()
Calls the subdomainSetup function for each of the output objects.
void checkOutputs(const std::set< OutputName > &names, const bool supports_material_output=false)
Test that the output names exist.
void setCommonParameters(const InputParameters *params_ptr)
Stores the common InputParameters object.
void mooseConsole()
Send current output buffer to Console output objects.
void setOutputExecutionType(ExecFlagType type)
Sets the execution flag type.
void residualSetup()
Calls the residualSetup function for each of the output objects.
void outputStep(ExecFlagType type)
Calls the outputStep method for each output object.
void resetFileBase()
Resets the file base for all FileOutput objects.
void buildInterfaceHideVariables(const std::string &output_name, std::set< std::string > &hide)
Return the list of hidden variables for the given output name.
void allowOutput(bool state)
Ability to enable/disable output calls This is private, users should utilize FEProblemBase::allowOutp...
std::map< OutputName, std::set< OutFileBase > > _file_base_map
List of object names.
std::vector< T * > getOutputs() const
Return a vector of objects of a given type.
bool hasMaterialPropertyOutput(const std::string &name) const
Returns true if the output object exists, and it supports material property output.
std::map< OutputName, Output * > _object_map
A map of the output pointers.
void addOutput(std::shared_ptr< Output > output)
Adds an existing output object to the warehouse.
std::ostringstream _console_buffer
The stream for holding messages passed to _console prior to Output object construction.
std::set< std::string > _reserved
List of reserved names.
Interface for objects interacting with the PerfGraph.