#include <OneToOneGeneric.h>
Public Types | |
typedef ValRef | data_type |
insert val type | |
typedef index | index_type |
index type | |
typedef KeyRef | key_type |
insert key type | |
typedef std::map< index_type, map_assoc > | map_type |
map type | |
typedef helpers::KeyVal < keyrefprod_type, valrefprod_type > | ref_type |
reference set type | |
typedef std::vector< const typename CKey::value_type * > | transient_key_vector |
transient key vector | |
typedef std::map< const typename CKey::value_type *, const typename CVal::value_type * > | transient_map_type |
transient map type | |
typedef std::vector< const typename CVal::value_type * > | transient_val_vector |
transient val vector | |
typedef ValRef | val_type |
values reference collection type | |
Static Public Member Functions | |
static void | insert (ref_type &ref, map_type &m, const key_type &k, const data_type &v) |
insert in the map | |
static map_type::size_type | size (const map_assoc &v) |
size of data_type | |
static void | sort (map_type &) |
sort | |
static transient_key_vector | transientKeyVector (const ref_type &ref, const map_type &map) |
fill transient key vector | |
static transient_map_type | transientMap (const ref_type &ref, const map_type &map) |
fill transient map | |
static transient_val_vector | transientValVector (const ref_type &ref, const map_type &map) |
fill transient val vector | |
static val_type | val (const ref_type &ref, map_assoc iv) |
return values collection | |
Private Types | |
typedef KeyRefProd | keyrefprod_type |
reference to "key" collection | |
typedef index | map_assoc |
internal map associated data | |
typedef ValRefProd | valrefprod_type |
reference to "value" collection |
Definition at line 13 of file OneToOneGeneric.h.
typedef ValRef edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::data_type |
insert val type
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 27 of file OneToOneGeneric.h.
typedef index edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::index_type |
index type
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 29 of file OneToOneGeneric.h.
typedef KeyRef edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::key_type |
insert key type
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 25 of file OneToOneGeneric.h.
typedef KeyRefProd edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::keyrefprod_type [private] |
reference to "key" collection
Definition at line 15 of file OneToOneGeneric.h.
typedef index edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::map_assoc [private] |
internal map associated data
Definition at line 19 of file OneToOneGeneric.h.
typedef std::map<index_type, map_assoc> edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::map_type |
map type
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 31 of file OneToOneGeneric.h.
typedef helpers::KeyVal<keyrefprod_type, valrefprod_type> edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::ref_type |
reference set type
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 33 of file OneToOneGeneric.h.
typedef std::vector<const typename CKey::value_type *> edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::transient_key_vector |
transient key vector
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 38 of file OneToOneGeneric.h.
typedef std::map<const typename CKey::value_type *, const typename CVal::value_type *> edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::transient_map_type |
transient map type
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 36 of file OneToOneGeneric.h.
typedef std::vector<const typename CVal::value_type *> edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::transient_val_vector |
transient val vector
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 40 of file OneToOneGeneric.h.
typedef ValRef edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::val_type |
values reference collection type
Reimplemented in edm::OneToOne< CKey, CVal, index >.
Definition at line 23 of file OneToOneGeneric.h.
typedef ValRefProd edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::valrefprod_type [private] |
reference to "value" collection
Definition at line 17 of file OneToOneGeneric.h.
static void edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::insert | ( | ref_type & | ref, |
map_type & | m, | ||
const key_type & | k, | ||
const data_type & | v | ||
) | [inline, static] |
insert in the map
Definition at line 42 of file OneToOneGeneric.h.
{ if (k.isNull() || v.isNull()) { Exception::throwThis(errors::InvalidReference, "can't insert null references in AssociationMap"); } if (ref.key.isNull()) { ref.key = keyrefprod_type(k); ref.val = valrefprod_type(v); } helpers::checkRef(ref.key, k); helpers::checkRef(ref.val, v); index_type ik = index_type(k.key()), iv = index_type(v.key()); m[ik] = iv; }
static map_type::size_type edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::size | ( | const map_assoc & | v | ) | [inline, static] |
static void edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::sort | ( | map_type & | ) | [inline, static] |
static transient_key_vector edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::transientKeyVector | ( | const ref_type & | ref, |
const map_type & | map | ||
) | [inline, static] |
static transient_map_type edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::transientMap | ( | const ref_type & | ref, |
const map_type & | map | ||
) | [inline, static] |
fill transient map
Definition at line 65 of file OneToOneGeneric.h.
{ transient_map_type m; const CKey & ckey = * ref.key; const CVal & cval = * ref.val; for(typename map_type::const_iterator i = map.begin(); i != map.end(); ++ i) { const typename CKey::value_type * k = & ckey[i->first]; const typename CVal::value_type * v = & cval[i->second]; m.insert(std::make_pair(k, v)); } return m; }
static transient_val_vector edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::transientValVector | ( | const ref_type & | ref, |
const map_type & | map | ||
) | [inline, static] |
static val_type edm::OneToOneGeneric< CKey, CVal, index, KeyRefProd, ValRefProd, KeyRef, ValRef >::val | ( | const ref_type & | ref, |
map_assoc | iv | ||
) | [inline, static] |
return values collection
Definition at line 57 of file OneToOneGeneric.h.
{ return val_type(ref.val, iv); }