The Gaudi Framework
v30r3 (a5ef0a68)
|
Interface ID class. More...
#include <GaudiKernel/Kernel.h>
Public Member Functions | |
constexpr | InterfaceID (unsigned long id, unsigned long major, unsigned long minor=0) |
constructor from components More... | |
InterfaceID (const char *name, unsigned long major, unsigned long minor=0) | |
constructor from components More... | |
constexpr unsigned long | id () const |
get the interface identifier More... | |
constexpr unsigned long | majorVersion () const |
get the major version of the interface More... | |
constexpr unsigned long | minorVersion () const |
get the minor version of the interface More... | |
constexpr bool | versionMatch (const InterfaceID &iid) const |
check compatibility. More... | |
constexpr bool | fullMatch (const InterfaceID &iid) const |
check full compatibility. More... | |
constexpr bool | operator== (const InterfaceID &iid) const |
compare operator More... | |
Static Public Member Functions | |
static unsigned int | hash32 (const char *key) |
Jenkins one-at-time hash function – see https://en.wikipedia.org/wiki/Jenkins_hash_function. More... | |
Private Attributes | |
unsigned long | m_id |
unsigned long | m_major_ver |
unsigned long | m_minor_ver |
Interface ID class.
It consists of several fields: interface number, major version number and minor version number. Interface number should be allocated globally. The major and minor version numbers are used for checking compatibility between interface versions.
Definition at line 29 of file IInterface.h.
|
inline |
|
inline |
constructor from components
Definition at line 45 of file IInterface.h.
|
inline |
check full compatibility.
Definition at line 67 of file IInterface.h.
|
inlinestatic |
Jenkins one-at-time hash function – see https://en.wikipedia.org/wiki/Jenkins_hash_function.
Definition at line 74 of file IInterface.h.
|
inline |
|
inline |
|
inline |
|
inline |
compare operator
Definition at line 72 of file IInterface.h.
|
inline |
check compatibility.
The major version is check and the minor one should be bigger or equal
Definition at line 62 of file IInterface.h.
|
private |
Definition at line 89 of file IInterface.h.
|
private |
Definition at line 90 of file IInterface.h.
|
private |
Definition at line 91 of file IInterface.h.