www.mooseframework.org
Public Types | Public Member Functions | Private Attributes | List of all members
AttribBoundaries Class Referenceabstract

AttribBoundaries tracks all boundary IDs associated with an object. More...

#include <Attributes.h>

Inheritance diagram for AttribBoundaries:
[legend]

Public Types

typedef std::tuple< BoundaryID, bool > Key
 

Public Member Functions

void setFrom (Key k)
 
 AttribBoundaries (TheWarehouse &w)
 
 AttribBoundaries (TheWarehouse &w, BoundaryID id, bool must_be_restricted=false)
 
 AttribBoundaries (TheWarehouse &w, const std::set< BoundaryID > &ids, bool must_be_restricted=false)
 
 AttribBoundaries (TheWarehouse &w, const std::vector< BoundaryID > &ids, bool must_be_restricted=false)
 
virtual void initFrom (const MooseObject *obj) override
 initFrom reads and stores the desired meta-data from obj for later matching comparisons. More...
 
virtual bool isMatch (const Attribute &other) const override
 isMatch returns true if the meta-data stored in this attribute is equivalent to that stored in other. More...
 
virtual bool isEqual (const Attribute &other) const override
 isEqual returns true if the meta-data stored in this attribute is identical to that stored in other. More...
 
 hashfunc (_vals, _must_be_restricted)
 
 clonefunc (AttribBoundaries)
 
bool operator== (const Attribute &other) const
 
bool operator!= (const Attribute &other) const
 
unsigned int id () const
 returns the unique attribute ID associated with all attributes that have the same (mose derived) class as this object. More...
 
virtual std::size_t hash () const =0
 This function must return a deterministic value that is uniquely determined by the data the attribute holds (i.e. More...
 
virtual std::unique_ptr< Attributeclone () const =0
 clone creates and returns and identical (deep) copy of this attribute - i.e. More...
 

Private Attributes

std::vector< BoundaryID_vals
 
bool _must_be_restricted = false
 

Detailed Description

AttribBoundaries tracks all boundary IDs associated with an object.

When running queries, an object matches true if it has at least one boundary id in common with the boundary IDs in the query attribute.

Definition at line 188 of file Attributes.h.

Member Typedef Documentation

◆ Key

typedef std::tuple<BoundaryID, bool> AttribBoundaries::Key

Definition at line 191 of file Attributes.h.

Constructor & Destructor Documentation

◆ AttribBoundaries() [1/4]

AttribBoundaries::AttribBoundaries ( TheWarehouse w)
inline

Definition at line 199 of file Attributes.h.

199 : Attribute(w, "boundaries") {}
Attribute(TheWarehouse &w, const std::string name)
Constructs/initializes a new attribute with the specified name for use in warehouse w...
Definition: TheWarehouse.C:36

◆ AttribBoundaries() [2/4]

AttribBoundaries::AttribBoundaries ( TheWarehouse w,
BoundaryID  id,
bool  must_be_restricted = false 
)
inline

Definition at line 200 of file Attributes.h.

201  : Attribute(w, "boundaries"), _must_be_restricted(must_be_restricted)
202  {
203  _vals.push_back(id);
204  }
bool _must_be_restricted
Definition: Attributes.h:230
std::vector< BoundaryID > _vals
Definition: Attributes.h:229
Attribute(TheWarehouse &w, const std::string name)
Constructs/initializes a new attribute with the specified name for use in warehouse w...
Definition: TheWarehouse.C:36

◆ AttribBoundaries() [3/4]

AttribBoundaries::AttribBoundaries ( TheWarehouse w,
const std::set< BoundaryID > &  ids,
bool  must_be_restricted = false 
)
inline

Definition at line 205 of file Attributes.h.

208  : Attribute(w, "boundaries"), _must_be_restricted(must_be_restricted)
209  {
210  for (auto id : ids)
211  _vals.push_back(id);
212  }
bool _must_be_restricted
Definition: Attributes.h:230
std::vector< BoundaryID > _vals
Definition: Attributes.h:229
Attribute(TheWarehouse &w, const std::string name)
Constructs/initializes a new attribute with the specified name for use in warehouse w...
Definition: TheWarehouse.C:36

◆ AttribBoundaries() [4/4]

AttribBoundaries::AttribBoundaries ( TheWarehouse w,
const std::vector< BoundaryID > &  ids,
bool  must_be_restricted = false 
)
inline

Definition at line 213 of file Attributes.h.

216  : Attribute(w, "boundaries"), _must_be_restricted(must_be_restricted)
217  {
218  _vals.reserve(ids.size());
219  for (auto id : ids)
220  _vals.push_back(id);
221  }
bool _must_be_restricted
Definition: Attributes.h:230
std::vector< BoundaryID > _vals
Definition: Attributes.h:229
Attribute(TheWarehouse &w, const std::string name)
Constructs/initializes a new attribute with the specified name for use in warehouse w...
Definition: TheWarehouse.C:36

Member Function Documentation

◆ clone()

virtual std::unique_ptr<Attribute> Attribute::clone ( ) const
pure virtualinherited

clone creates and returns and identical (deep) copy of this attribute - i.e.

the result of clone should return true if passed into isMatch.

Referenced by TheWarehouse::update().

◆ clonefunc()

AttribBoundaries::clonefunc ( AttribBoundaries  )

◆ hash()

virtual std::size_t Attribute::hash ( ) const
pure virtualinherited

This function must return a deterministic value that is uniquely determined by the data the attribute holds (i.e.

is initialized with). Ideally, the data should be uniformly and randomly distributed across the domain of size_t values - e.g. 1 and 2 should hash to completely unrelated values. Use of std::hash for POD is encouraged. A convenience hash_combine function is also provided to combine the results an existing hash with one or more other values.

Referenced by std::hash< Attribute >::operator()().

◆ hashfunc()

AttribBoundaries::hashfunc ( _vals  ,
_must_be_restricted   
)

◆ id()

unsigned int Attribute::id ( ) const
inlineinherited

returns the unique attribute ID associated with all attributes that have the same (mose derived) class as this object.

This ID is determined at construction time this

Definition at line 67 of file TheWarehouse.h.

Referenced by std::hash< Attribute >::operator()().

67 { return _id; }

◆ initFrom()

void AttribBoundaries::initFrom ( const MooseObject obj)
overridevirtual

initFrom reads and stores the desired meta-data from obj for later matching comparisons.

Implements Attribute.

Definition at line 220 of file Attributes.C.

221 {
222  _vals.clear();
223  auto bnd = dynamic_cast<const BoundaryRestrictable *>(obj);
224  if (bnd && bnd->boundaryRestricted())
225  {
226  for (auto & bound : bnd->boundaryIDs())
227  _vals.push_back(bound);
228  }
229  else
230  _vals.push_back(Moose::ANY_BOUNDARY_ID);
231 }
std::vector< BoundaryID > _vals
Definition: Attributes.h:229
/class BoundaryRestrictable /brief Provides functionality for limiting the object to certain boundary...
const BoundaryID ANY_BOUNDARY_ID
Definition: MooseTypes.C:23

◆ isEqual()

bool AttribBoundaries::isEqual ( const Attribute other) const
overridevirtual

isEqual returns true if the meta-data stored in this attribute is identical to that stored in other.

isEqual does not need to check/compare the values from the instances' id() functions.

Implements Attribute.

Definition at line 254 of file Attributes.C.

255 {
256  auto a = dynamic_cast<const AttribBoundaries *>(&other);
257  if (!a || a->_vals.size() != _vals.size())
258  return false;
259 
260  for (size_t i = 0; i < a->_vals.size(); i++)
261  if (a->_vals[i] != _vals[i])
262  return false;
263  return true;
264 }
std::vector< BoundaryID > _vals
Definition: Attributes.h:229
AttribBoundaries tracks all boundary IDs associated with an object.
Definition: Attributes.h:188

◆ isMatch()

bool AttribBoundaries::isMatch ( const Attribute other) const
overridevirtual

isMatch returns true if the meta-data stored in this attribute is equivalent to that stored in other.

This is is for query matching - not exact equivalence. isMatch does not need to check/compare the values from the instances' id() functions.

Implements Attribute.

Definition at line 234 of file Attributes.C.

235 {
236  auto a = dynamic_cast<const AttribBoundaries *>(&other);
237  if (!a || a->_vals.size() < 1)
238  return false;
239 
240  // return true if a single tag matches between the two attribute objects
241  for (auto val : _vals)
242  {
243  if (!a->_must_be_restricted && (val == Moose::ANY_BOUNDARY_ID))
244  return true;
245  if (std::find(a->_vals.begin(), a->_vals.end(), val) != a->_vals.end())
246  return true;
247  else if (std::find(a->_vals.begin(), a->_vals.end(), Moose::ANY_BOUNDARY_ID) != a->_vals.end())
248  return true;
249  }
250  return false;
251 }
std::vector< BoundaryID > _vals
Definition: Attributes.h:229
AttribBoundaries tracks all boundary IDs associated with an object.
Definition: Attributes.h:188
const BoundaryID ANY_BOUNDARY_ID
Definition: MooseTypes.C:23

◆ operator!=()

bool Attribute::operator!= ( const Attribute other) const
inlineinherited

Definition at line 62 of file TheWarehouse.h.

62 { return !(*this == other); }

◆ operator==()

bool Attribute::operator== ( const Attribute other) const
inlineinherited

Definition at line 58 of file TheWarehouse.h.

59  {
60  return _id == other._id && isEqual(other);
61  }
virtual bool isEqual(const Attribute &other) const =0
isEqual returns true if the meta-data stored in this attribute is identical to that stored in other...

◆ setFrom()

void AttribBoundaries::setFrom ( Key  k)
inline

Definition at line 192 of file Attributes.h.

193  {
194  _vals.clear();
195  _vals.push_back(std::get<0>(k));
196  _must_be_restricted = std::get<1>(k);
197  }
bool _must_be_restricted
Definition: Attributes.h:230
std::vector< BoundaryID > _vals
Definition: Attributes.h:229

Member Data Documentation

◆ _must_be_restricted

bool AttribBoundaries::_must_be_restricted = false
private

Definition at line 230 of file Attributes.h.

Referenced by setFrom().

◆ _vals

std::vector<BoundaryID> AttribBoundaries::_vals
private

Definition at line 229 of file Attributes.h.

Referenced by AttribBoundaries(), initFrom(), isEqual(), isMatch(), and setFrom().


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