10 #ifndef TEUCHOS_STRING_INDEXED_ORDERED_VALUE_OBJECT_CONTAINER_HPP
11 #define TEUCHOS_STRING_INDEXED_ORDERED_VALUE_OBJECT_CONTAINER_HPP
72 template<
class ObjType>
84 template <
typename U,
typename = std::enable_if_t<std::is_convertible_v<U, ObjType>>>
85 KeyObjectPair(
const std::string &key_in, U&& obj_in,
bool isActive_in =
true)
111 template<
class ObjType>
150 template<
class ObjType>
206 template <
typename U,
typename = std::enable_if_t<std::is_convertible_v<U, ObjType>>>
322 template<
class ObjType>
327 return ptrFromRef(getNonconstKeyAndObject(idx).second);
331 template<
class ObjType>
336 return ptrFromRef(getKeyAndObject(idx).second);
340 template<
class ObjType>
345 return getNonconstObjPtr(assertKeyGetOrdinal(key));
349 template<
class ObjType>
354 return getObjPtr(assertKeyGetOrdinal(key));
361 template<
class ObjType>
366 return Iterator(key_and_obj_array_.begin(), key_and_obj_array_.begin(),
367 key_and_obj_array_.end());
371 template<
class ObjType>
376 return Iterator(key_and_obj_array_.end(), key_and_obj_array_.begin(),
377 key_and_obj_array_.end());
381 template<
class ObjType>
386 return ConstIterator(key_and_obj_array_.begin(), key_and_obj_array_.begin(),
387 key_and_obj_array_.end());
391 template<
class ObjType>
396 return ConstIterator(key_and_obj_array_.end(), key_and_obj_array_.begin(),
397 key_and_obj_array_.end());
409 template<
class ObjType>
414 template<
class ObjType>
418 return key_to_idx_map_.size();
422 template<
class ObjType>
426 return key_and_obj_array_.size();
433 template<
class ObjType>
438 key_to_idx_map_t::const_iterator itr = key_to_idx_map_.find(key);
439 if (itr != key_to_idx_map_.end()) {
440 return itr->second.idx;
442 return getInvalidOrdinal();
446 template <
typename ObjType>
447 template <
typename U,
typename>
452 typename key_to_idx_map_t::iterator obj_idx_itr = key_to_idx_map_.find(key);
453 if (obj_idx_itr != key_to_idx_map_.end()) {
455 const Ordinal obj_idx = obj_idx_itr->second.idx;
456 key_and_obj_array_[obj_idx].second = std::forward<U>(obj);
460 key_and_obj_array_.emplace_back(key, std::forward<U>(obj));
461 const Ordinal new_idx = key_and_obj_array_.size()-1;
462 key_to_idx_map_[key] = new_idx;
467 template<
class ObjType>
471 key_to_idx_map_.erase(key_and_obj.
first);
472 key_and_obj = key_and_obj_t::makeInvalid();
476 template<
class ObjType>
479 typename key_to_idx_map_t::iterator itr = key_to_idx_map_.find(key);
480 if (itr == key_to_idx_map_.end()) {
481 throwInvalidKeyError(getInvalidOrdinal(), key);
483 const Ordinal idx = itr->second.idx;
484 key_to_idx_map_.erase(itr);
485 key_and_obj_array_[idx] = key_and_obj_t::makeInvalid();
492 template<
class ObjType>
497 "Error, the ordinal index " << idx <<
" is invalid"
498 <<
" because it falls outside of the range of valid objects"
499 <<
" [0,"<<numStorage()-1<<
"]!");
503 template<
class ObjType>
507 assertOrdinalIndex(idx);
511 "Error, the ordinal index " << idx <<
" is invalid"
512 <<
" because the object has been deleted!");
517 template<
class ObjType>
521 assertOrdinalIndex(idx);
525 "Error, the ordinal index " << idx <<
" is invalid"
526 <<
" because the object has been deleted!");
531 template<
class ObjType>
534 const Ordinal idx,
const std::string &key)
const
537 "Error, the key '" << key <<
"' does not exist!");
541 template<
class ObjType>
545 const Ordinal idx = getObjOrdinalIndex(key);
546 throwInvalidKeyError(idx, key);
572 #endif // TEUCHOS_STRING_INDEXED_ORDERED_VALUE_OBJECT_CONTAINER_HPP
std::map< std::string, OrdinalIndex > key_to_idx_map_t
C++ Standard Library compatable filtered iterator.
KeyObjectPair(const std::string &key_in, U &&obj_in, bool isActive_in=true)
Ordinal getObjOrdinalIndex(const std::string &key) const
Get the ordinal index given the string key.
FilteredIterator< typename key_and_obj_array_t::iterator, SelectActive< ObjType > > Iterator
The non-const iterator type.
key_and_obj_array_t key_and_obj_array_
Stories objects contiguously along with key strings.
String indexed ordered value-type object container class.
A simple aggregate type to bind a key string and and objects value.
std::deque< key_and_obj_t > key_and_obj_array_t
A safe ordinal index type that default initializes to a special value.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.
InvalidOrdinalIndexError(const std::string &what_arg)
Ordinal setObj(const std::string &key, U &&obj)
Set (or reset) object by value and return its ordinal index.
StringIndexedOrderedValueObjectContainerBase::Ordinal Ordinal
Ordinal used for the index.
Ordinal assertKeyGetOrdinal(const std::string &key) const
InvalidKeyError(const std::string &what_arg)
void assertOrdinalIndex(const Ordinal idx) const
ConstIterator end() const
Thrown if an invalid string is passed in.
TEUCHOS_ORDINAL_TYPE Teuchos_Ordinal
KeyObjectPair(KeyObjectPair &&kop)
Move-constructor.
ExceptionBase(const std::string &what_arg)
FilteredIterator< typename key_and_obj_array_t::const_iterator, SelectActive< ObjType > > ConstIterator
The const iterator type.
static KeyObjectPair< ObjType > makeInvalid()
KeyObjectPair & operator=(const KeyObjectPair &kop)
Copy-assignment operator.
bool operator()(const KeyObjectPair< ObjType > &key_and_obj) const
StringIndexedOrderedValueObjectContainer()
KeyObjectPair(const KeyObjectPair &kop)
Copy-constructor.
Ptr< const ObjType > getObjPtr(const Ordinal &idx) const
Get a const semi-persisting association with the stored object indexed by ordinal.
StringIndexedOrderedValueObjectContainerBase::Ordinal Ordinal
Templated array class derived from the STL std::vector.
const std::string & first
virtual ~StringIndexedOrderedValueObjectContainerBase()
Destructor.
Ordinal numStorage() const
ConstIterator begin() const
key_to_idx_map_t key_to_idx_map_
Provides lookups of key -> ordinal index into above array.
Predicate for selecting active object entries in filtered iterator.
const key_and_obj_t & getKeyAndObject(const Ordinal idx) const
key_and_obj_t & getNonconstKeyAndObject(const Ordinal idx)
void removeObj(const Ordinal &idx)
Remove an object given its ordinal index.
Base exception class for Teuchos.
Ordinal numObjects() const
Ptr< ObjType > getNonconstObjPtr(const Ordinal &idx)
Get a nonconst semi-persisting association with the stored object indexed by ordinal.
Teuchos_Ordinal Ordinal
Ordinal used for the index.
void throwInvalidKeyError(const Ordinal idx, const std::string &key) const
static Ordinal getInvalidOrdinal()
Return the value for invalid ordinal.
Base types for StringIndexedOrderedValueObjectContainer.
KeyObjectPair< ObjType > key_and_obj_t
Simple wrapper class for raw pointers to single objects where no persisting relationship exists...
Thrown if an invalid ordinal index is passed in.
OrdinalIndex(const Ordinal idx_in)