The Gaudi Framework  master (594c33fa)
AIDA::Annotation Class Reference

Implementation of the AIDA IAnnotation interface class. More...

#include </builds/gaudi/Gaudi/GaudiCommonSvc/include/GaudiCommonSvc/Annotation.h>

Inheritance diagram for AIDA::Annotation:
Collaboration diagram for AIDA::Annotation:

Classes

struct  AnnotationItem
 Internal private annotation item class. More...
 

Public Member Functions

bool addItem (const std::string &key, const std::string &value, bool sticky=false) override
 Add a key/value pair with a given sticky. More...
 
bool removeItem (const std::string &key) override
 Remove the item indicated by a given key. More...
 
std::string value (const std::string &key) const override
 Retrieve the value for a given key. More...
 
void setValue (const std::string &key, const std::string &value) override
 Set value for a given key. More...
 
void setSticky (const std::string &key, bool sticky) override
 Set sticky for a given key. More...
 
int size () const override
 Get the number of items in the Annotation. More...
 
std::string key (int index) const override
 Individual access to the Annotation-items. More...
 
std::string value (int index) const override
 
void reset () override
 Remove all the non-sticky items. More...
 

Private Attributes

std::vector< AnnotationItemm_annotationItems
 The vector of the annotation items. More...
 
std::map< std::string, unsigned int > m_identifiers
 The map of strings to identifiers. More...
 
std::string emptyString
 

Detailed Description

Implementation of the AIDA IAnnotation interface class.

Definition at line 26 of file Annotation.h.

Member Function Documentation

◆ addItem()

bool AIDA::Annotation::addItem ( const std::string key,
const std::string value,
bool  sticky = false 
)
inlineoverride

Add a key/value pair with a given sticky.

Definition at line 77 of file Annotation.h.

77  {
78  if ( m_identifiers.find( key ) != m_identifiers.end() ) return false;
79  m_annotationItems.emplace_back( key, value, sticky );
81  return true;
82 }

◆ key()

std::string AIDA::Annotation::key ( int  index) const
inlineoverride

Individual access to the Annotation-items.

Definition at line 129 of file Annotation.h.

129  {
130  if ( index < 0 || index >= static_cast<int>( m_annotationItems.size() ) ) return emptyString;
131  return m_annotationItems[index].m_key;
132 }

◆ removeItem()

bool AIDA::Annotation::removeItem ( const std::string key)
inlineoverride

Remove the item indicated by a given key.

Definition at line 84 of file Annotation.h.

84  {
85  auto iKey = m_identifiers.find( key );
86  if ( iKey == m_identifiers.end() ) return false;
87 
88  unsigned int indexToBeRemoved = iKey->second;
89  // check stickness
90 
91  if ( m_annotationItems[indexToBeRemoved].m_sticky ) return false;
92 
93  // why rebuilding ?
94 
96  std::vector<AnnotationItem> annotationItemsNew;
97  if ( m_annotationItems.size() > 1 ) annotationItemsNew.reserve( m_annotationItems.size() - 1 );
98  for ( unsigned int iItem = 0; iItem < m_annotationItems.size(); ++iItem ) {
99  if ( iItem == indexToBeRemoved ) continue;
100  const auto& item = m_annotationItems[iItem];
101  annotationItemsNew.emplace_back( item.m_key, item.m_value, item.m_sticky );
102  m_identifiers.emplace( item.m_key, annotationItemsNew.size() - 1 );
103  }
104  m_annotationItems = std::move( annotationItemsNew );
105  return true;
106 }

◆ reset()

void AIDA::Annotation::reset ( )
inlineoverride

Remove all the non-sticky items.

Definition at line 139 of file Annotation.h.

139  {
140  // Collect the non-sticky items
141  std::vector<std::string> itemsToRemove;
142  itemsToRemove.reserve( size() );
143  for ( const auto& item : m_annotationItems ) {
144  if ( !item.m_sticky ) itemsToRemove.push_back( item.m_key );
145  }
146  for ( const auto& i : itemsToRemove ) removeItem( i );
147 }

◆ setSticky()

void AIDA::Annotation::setSticky ( const std::string key,
bool  sticky 
)
inlineoverride

Set sticky for a given key.

Definition at line 122 of file Annotation.h.

122  {
123  auto iKey = m_identifiers.find( key );
124  if ( iKey != m_identifiers.end() ) m_annotationItems[iKey->second].m_sticky = sticky;
125 }

◆ setValue()

void AIDA::Annotation::setValue ( const std::string key,
const std::string value 
)
inlineoverride

Set value for a given key.

Definition at line 113 of file Annotation.h.

113  {
114  auto iKey = m_identifiers.find( key );
115  if ( iKey == m_identifiers.end() )
116  // if not found, then add it
117  addItem( key, value );
118  else
119  m_annotationItems[iKey->second].m_value = value;
120 }

◆ size()

int AIDA::Annotation::size ( ) const
inlineoverride

Get the number of items in the Annotation.

Definition at line 127 of file Annotation.h.

127 { return m_annotationItems.size(); }

◆ value() [1/2]

std::string AIDA::Annotation::value ( const std::string key) const
inlineoverride

Retrieve the value for a given key.

Definition at line 108 of file Annotation.h.

108  {
109  auto iKey = m_identifiers.find( key );
110  return iKey != m_identifiers.end() ? m_annotationItems[iKey->second].m_value : emptyString;
111 }

◆ value() [2/2]

std::string AIDA::Annotation::value ( int  index) const
inlineoverride

Definition at line 134 of file Annotation.h.

134  {
135  if ( index < 0 || index >= static_cast<int>( m_annotationItems.size() ) ) return emptyString;
136  return m_annotationItems[index].m_value;
137 }

Member Data Documentation

◆ emptyString

std::string AIDA::Annotation::emptyString
private

Definition at line 73 of file Annotation.h.

◆ m_annotationItems

std::vector<AnnotationItem> AIDA::Annotation::m_annotationItems
private

The vector of the annotation items.

Definition at line 68 of file Annotation.h.

◆ m_identifiers

std::map<std::string, unsigned int> AIDA::Annotation::m_identifiers
private

The map of strings to identifiers.

Definition at line 71 of file Annotation.h.


The documentation for this class was generated from the following file:
AIDA::Annotation::addItem
bool addItem(const std::string &key, const std::string &value, bool sticky=false) override
Add a key/value pair with a given sticky.
Definition: Annotation.h:77
std::move
T move(T... args)
AIDA::Annotation::key
std::string key(int index) const override
Individual access to the Annotation-items.
Definition: Annotation.h:129
std::vector::reserve
T reserve(T... args)
std::vector
STL class.
std::map::find
T find(T... args)
std::vector::size
T size(T... args)
AIDA::Annotation::removeItem
bool removeItem(const std::string &key) override
Remove the item indicated by a given key.
Definition: Annotation.h:84
std::map::emplace
T emplace(T... args)
std::map::clear
T clear(T... args)
std::vector::push_back
T push_back(T... args)
AIDA::Annotation::emptyString
std::string emptyString
Definition: Annotation.h:73
AIDA::Annotation::value
std::string value(const std::string &key) const override
Retrieve the value for a given key.
Definition: Annotation.h:108
AIDA::Annotation::m_annotationItems
std::vector< AnnotationItem > m_annotationItems
The vector of the annotation items.
Definition: Annotation.h:68
AIDA::Annotation::size
int size() const override
Get the number of items in the Annotation.
Definition: Annotation.h:127
std::vector::emplace_back
T emplace_back(T... args)
AIDA::Annotation::m_identifiers
std::map< std::string, unsigned int > m_identifiers
The map of strings to identifiers.
Definition: Annotation.h:71
std::map::end
T end(T... args)
Gaudi::ParticleProperties::index
size_t index(const Gaudi::ParticleProperty *property, const Gaudi::Interfaces::IParticlePropertySvc *service)
helper utility for mapping of Gaudi::ParticleProperty object into non-negative integral sequential id...
Definition: IParticlePropertySvc.cpp:39