CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
edm::Hash< I > Class Template Reference

#include <Hash.h>

Public Types

typedef hash_detail::value_type value_type
 

Public Member Functions

value_type compactForm () const
 
 Hash ()
 
 Hash (value_type const &v)
 
 Hash (Hash< I > const &)
 
bool isCompactForm () const
 
bool isValid () const
 
bool operator!= (Hash< I > const &other) const
 
bool operator< (Hash< I > const &other) const
 
Hash< I > & operator= (Hash< I > const &iRHS)
 
bool operator== (Hash< I > const &other) const
 
bool operator> (Hash< I > const &other) const
 
std::ostream & print (std::ostream &os) const
 
void reset ()
 
size_t smallHash () const
 returns a short hash which can be used with hashing containers More...
 
void swap (Hash< I > &other)
 
void toDigest (cms::Digest &digest) const
 
void toString (std::string &result) const
 

Static Public Member Functions

static short Class_Version ()
 

Private Member Functions

template<typename Op >
bool compareUsing (Hash< I > const &iOther, Op op) const
 
void throwIfIllFormed () const
 

Private Attributes

value_type hash_
 

Detailed Description

template<int I>
class edm::Hash< I >

Definition at line 42 of file Hash.h.

Member Typedef Documentation

template<int I>
typedef hash_detail::value_type edm::Hash< I >::value_type

Definition at line 44 of file Hash.h.

Constructor & Destructor Documentation

template<int I>
edm::Hash< I >::Hash ( )
inline

Definition at line 117 of file Hash.h.

value_type hash_
Definition: Hash.h:105
std::string const & InvalidHash()
Definition: Hash.cc:11
template<int I>
edm::Hash< I >::Hash ( value_type const &  v)
explicit
template<int I>
edm::Hash< I >::Hash ( Hash< I > const &  iOther)
inline

Definition at line 127 of file Hash.h.

References edm::hash_detail::fixup_(), and edm::Hash< I >::hash_.

127  : hash_(iOther.hash_) {
129  }
value_type hash_
Definition: Hash.h:105
void fixup_(value_type &hash)
Definition: Hash.cc:32

Member Function Documentation

template<int I>
static short edm::Hash< I >::Class_Version ( )
inlinestatic

Definition at line 80 of file Hash.h.

80 {return 10;}
template<int I>
Hash< I >::value_type edm::Hash< I >::compactForm ( ) const
inline

Definition at line 213 of file Hash.h.

References edm::hash_detail::compactForm_().

Referenced by edm::StreamerOutputModuleBase::serializeRegistry().

213  {
215  }
value_type hash_
Definition: Hash.h:105
value_type compactForm_(value_type const &hash)
Definition: Hash.cc:19
template<int I>
template<typename Op >
bool edm::Hash< I >::compareUsing ( Hash< I > const &  iOther,
Op  op 
) const
inlineprivate

Definition at line 90 of file Hash.h.

90  {
92  bool otherCF = hash_detail::isCompactForm_(iOther.hash_);
93  if(meCF == otherCF) {
94  return op(this->hash_,iOther.hash_);
95  }
96  //copy constructor will do compact form conversion
97  if(meCF) {
98  Hash<I> temp(iOther);
99  return op(this->hash_,temp.hash_);
100  }
101  Hash<I> temp(*this);
102  return op(temp.hash_,iOther.hash_);
103  }
value_type hash_
Definition: Hash.h:105
bool isCompactForm_(value_type const &hash)
Definition: Hash.cc:67
template<int I>
bool edm::Hash< I >::isCompactForm ( ) const
inline

Definition at line 229 of file Hash.h.

References edm::hash_detail::isCompactForm_().

229  {
231  }
value_type hash_
Definition: Hash.h:105
bool isCompactForm_(value_type const &hash)
Definition: Hash.cc:67
template<int I>
bool edm::Hash< I >::isValid ( void  ) const
inline
template<int I>
bool edm::Hash< I >::operator!= ( Hash< I > const &  other) const
inline

Definition at line 178 of file Hash.h.

178  {
179  return this->compareUsing(other, std::not_equal_to<std::string>());
180  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:90
template<int I>
bool edm::Hash< I >::operator< ( Hash< I > const &  other) const
inline

Definition at line 157 of file Hash.h.

157  {
158  return this->compareUsing(other, std::less<std::string>());
159  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:90
template<int I>
Hash< I > & edm::Hash< I >::operator= ( Hash< I > const &  iRHS)
inline

Definition at line 134 of file Hash.h.

References edm::hash_detail::fixup_(), and edm::Hash< I >::hash_.

134  {
135  hash_ = iRHS.hash_;
137  return *this;
138  }
value_type hash_
Definition: Hash.h:105
void fixup_(value_type &hash)
Definition: Hash.cc:32
template<int I>
bool edm::Hash< I >::operator== ( Hash< I > const &  other) const
inline

Definition at line 171 of file Hash.h.

171  {
172  return this->compareUsing(other, std::equal_to<std::string>());
173  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:90
template<int I>
bool edm::Hash< I >::operator> ( Hash< I > const &  other) const
inline

Definition at line 164 of file Hash.h.

164  {
165  return this->compareUsing(other, std::greater<std::string>());
166  }
bool compareUsing(Hash< I > const &iOther, Op op) const
Definition: Hash.h:90
template<int I>
std::ostream & edm::Hash< I >::print ( std::ostream &  os) const
inline

Definition at line 185 of file Hash.h.

References edm::hash_detail::print_().

185  {
186  return hash_detail::print_(os, hash_);
187  }
value_type hash_
Definition: Hash.h:105
std::ostream & print_(std::ostream &os, value_type const &hash)
Definition: Hash.cc:106
template<int I>
void edm::Hash< I >::reset ( void  )
inline

Definition at line 143 of file Hash.h.

References edm::detail::InvalidHash().

Referenced by edm::ProcessConfiguration::Transients::reset(), and edm::ProcessHistory::Transients::reset().

143  {
145  }
value_type hash_
Definition: Hash.h:105
std::string const & InvalidHash()
Definition: Hash.cc:11
template<int I>
size_t edm::Hash< I >::smallHash ( ) const
inline

returns a short hash which can be used with hashing containers

Definition at line 220 of file Hash.h.

References edm::hash_detail::smallHash_().

Referenced by edm::dqh::parentage_hash::operator()(), edm::ParentageRegistry::key_hash::operator()(), and edm::pset::Registry::key_hash::operator()().

220  {
222  }
value_type hash_
Definition: Hash.h:105
size_t smallHash_(value_type const &hash)
Definition: Hash.cc:57
template<int I>
void edm::Hash< I >::swap ( Hash< I > &  other)
inline
template<int I>
void edm::Hash< I >::throwIfIllFormed ( ) const
private

Hexified version of data must contain a multiple of 2 bytes. If it does not, throw an exception.

template<int I>
void edm::Hash< I >::toDigest ( cms::Digest digest) const
inline

Definition at line 199 of file Hash.h.

References edm::hash_detail::toDigest_().

Referenced by edm::ParameterSetEntry::toDigest().

199  {
200  hash_detail::toDigest_(digest, hash_);
201  }
value_type hash_
Definition: Hash.h:105
void toDigest_(cms::Digest &digest, value_type const &hash)
Definition: Hash.cc:96
template<int I>
void edm::Hash< I >::toString ( std::string &  result) const
inline

Definition at line 192 of file Hash.h.

References edm::hash_detail::toString_().

Referenced by edm::ParameterSetConverter::convertParameterSets(), and edm::ParameterSetEntry::toString().

192  {
194  }
value_type hash_
Definition: Hash.h:105
void toString_(std::string &result, value_type const &hash)
Definition: Hash.cc:87
tuple result
Definition: query.py:137

Member Data Documentation

template<int I>
value_type edm::Hash< I >::hash_
private