gtranslationTable
GTranslationTable Class Reference

Provides a translation table for GElectronic objects indexed by a vector-based identity. More...

#include <gtranslationTable.h>

Collaboration diagram for GTranslationTable:
Collaboration graph

Public Member Functions

 GTranslationTable (GLogger *logger)
 Constructor. More...
 
 ~GTranslationTable ()
 
void addGElectronicWithIdentity (const std::vector< int > &identity, const GElectronic &gtron)
 Adds a GElectronic configuration with the provided identity. More...
 
GElectronic getElectronics (const std::vector< int > &identity) const
 Retrieves the GElectronic configuration for the provided identity. More...
 

Detailed Description

This class maps a vector<int> identity (converted into a string key) to a GElectronic object.

Definition at line 19 of file gtranslationTable.h.

Constructor & Destructor Documentation

◆ GTranslationTable()

GTranslationTable::GTranslationTable ( GLogger *  logger)
inline
Parameters
loggerPointer to a logger instance for logging messages.

Definition at line 26 of file gtranslationTable.h.

◆ ~GTranslationTable()

GTranslationTable::~GTranslationTable ( )
inline

Definition at line 30 of file gtranslationTable.h.

Member Function Documentation

◆ addGElectronicWithIdentity()

void GTranslationTable::addGElectronicWithIdentity ( const std::vector< int > &  identity,
const GElectronic &  gtron 
)

Adds a GElectronic object to the translation table using the provided identity.

If the identity already exists in the table, a warning is logged.

Parameters
identityA vector of integers representing the unique identity.
gtronThe GElectronic object to be added.

If the key already exists, logs a warning instead of overwriting.

Parameters
identityA vector of integers representing the unique identity.
gtronThe GElectronic object to be added.

Definition at line 46 of file gtranslationTable.cc.

◆ getElectronics()

GElectronic GTranslationTable::getElectronics ( const std::vector< int > &  identity) const

Retrieves the GElectronic object corresponding to the provided identity.

If the identity is not found, an error is logged and a default GElectronic is returned.

Parameters
identityA vector of integers representing the unique identity.
Returns
The GElectronic object corresponding to the identity.

Logs an error if the key is not found and returns a default constructed GElectronic.

Parameters
identityA vector of integers representing the unique identity.
Returns
The GElectronic object if found; otherwise, a default GElectronic.

Definition at line 74 of file gtranslationTable.cc.


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