Fesapi 2.10.1.0
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
Loading...
Searching...
No Matches
resqml2::StringTableLookup Class Referenceabstract

Defines an integer (key) to string (value) lookup table, for example, stores facies properties, where a facies index is associated with a facies name. More...

#include <StringTableLookup.h>

Inheritance diagram for resqml2::StringTableLookup:
common::AbstractObject resqml2_0_1::StringTableLookup

Public Member Functions

 StringTableLookup (gsoap_resqml2_0_1::eml20__DataObjectReference *partialObject)
 
virtual ~StringTableLookup ()=default
 
virtual bool containsKey (int64_t key)=0
 
virtual uint64_t getItemCount () const =0
 
virtual int64_t getKeyAtIndex (uint64_t index) const =0
 
virtual std::string getStringValueAtIndex (uint64_t index) const =0
 
virtual std::string getStringValue (int64_t key)=0
 
virtual void addValue (const std::string &strValue, int64_t key)=0
 
virtual void setValue (const std::string &strValue, int64_t key)=0
 
virtual int64_t getMinimumValue ()=0
 
virtual int64_t getMaximumValue ()=0
 
virtual std::unordered_map< int64_t, std::string > getMap () const =0
 
std::string getXmlTag () const final
 
- Public Member Functions inherited from common::AbstractObject
bool isPartial () const
 
virtual bool isTopLevelElement () const
 
std::string getUuid () const
 
std::string getTitle () const
 
std::string getEditor () const
 
time_t getCreation () const
 
tm getCreationAsTimeStructure () const
 
std::string getOriginator () const
 
std::string getDescription () const
 
time_t getLastUpdate () const
 
tm getLastUpdateAsTimeStructure () const
 
std::string getFormat () const
 
std::string getDescriptiveKeywords () const
 
std::string getVersion () const
 
void setTitle (const std::string &title)
 
void setEditor (const std::string &editor)
 
void setCreation (time_t creation)
 
void setCreation (const tm &creation)
 
void setOriginator (const std::string &originator)
 
void setDescription (const std::string &description)
 
void setLastUpdate (time_t lastUpdate)
 
void setLastUpdate (const tm &lastUpdate)
 
void setDescriptiveKeywords (const std::string &descriptiveKeywords)
 
void setVersion (const std::string &version)
 
void setMetadata (const std::string &title, const std::string &editor, time_t creation, const std::string &originator, const std::string &description, time_t lastUpdate, const std::string &descriptiveKeywords)
 
void serializeIntoStream (std::ostream *stream)
 
gsoap_resqml2_0_1::eml20__AbstractCitedDataObject * getEml20GsoapProxy () const
 
void setGsoapProxy (gsoap_resqml2_0_1::eml20__AbstractCitedDataObject *gsoapProxy)
 
gsoap_eml2_3::eml23__AbstractObject * getEml23GsoapProxy () const
 
void setGsoapProxy (gsoap_eml2_3::eml23__AbstractObject *gsoapProxy)
 
soap * getGsoapContext () const
 
int getGsoapType () const
 
gsoap_resqml2_0_1::eml20__DataObjectReference * newResqmlReference () const
 
gsoap_eml2_3::eml23__DataObjectReference * newEml23Reference () const
 
gsoap_resqml2_0_1::resqml20__ContactElementReference * newContactElementReference2_0_1 () const
 
gsoap_eml2_3::resqml22__ContactElement * newContactElementReference2_2 () const
 
common::DataObjectRepositorygetRepository () const
 
virtual std::string getXmlNamespace () const =0
 
virtual std::string getXmlNamespaceVersion () const
 
virtual std::string getContentType () const
 
virtual std::string getQualifiedType () const
 
virtual std::string getPartNameInEpcDocument () const
 
std::string serializeIntoString ()
 
void addAlias (const std::string &authority, const std::string &title)
 
uint64_t getAliasCount () const
 
std::string getAliasAuthorityAtIndex (uint64_t index) const
 
std::string getAliasTitleAtIndex (uint64_t index) const
 
std::vector< eml2::Activity * > getActivitySet () const
 
uint64_t getActivityCount () const
 
eml2::ActivitygetActivity (uint64_t index) const
 
void pushBackExtraMetadata (const std::string &key, const std::string &value)
 
std::unordered_map< std::string, std::string > getExtraMetadataSet () const
 
std::vector< std::string > getExtraMetadata (const std::string &key) const
 
unsigned int getExtraMetadataCount () const
 
std::string getExtraMetadataKeyAtIndex (unsigned int index) const
 
std::string getExtraMetadataStringValueAtIndex (unsigned int index) const
 
std::string buildEtp12Uri () const
 
void setUriSource (const std::string &uriSource)
 
const std::string & getUriSource () const
 
std::string getEpcSourceFolder () const
 
void changeToPartialObject ()
 

Static Public Attributes

static constexpr char const * XML_TAG = "StringTableLookup"
 

Additional Inherited Members

- Public Types inherited from common::AbstractObject
enum class  numericalDatatypeEnum {
  UNKNOWN = 0 , DOUBLE = 1 , FLOAT = 2 , INT64 = 3 ,
  UINT64 = 4 , INT32 = 5 , UINT32 = 6 , INT16 = 7 ,
  UINT16 = 8 , INT8 = 9 , UINT8 = 10
}
 
- Static Public Member Functions inherited from common::AbstractObject
static void setFormat (const std::string &vendor, const std::string &applicationName, const std::string &applicationVersionNumber)
 

Detailed Description

Defines an integer (key) to string (value) lookup table, for example, stores facies properties, where a facies index is associated with a facies name.

Used for categorical properties, which also may use a double table lookup.

Constructor & Destructor Documentation

◆ StringTableLookup()

resqml2::StringTableLookup::StringTableLookup ( gsoap_resqml2_0_1::eml20__DataObjectReference * partialObject)
inline

Only to be used in partial transfer context.

Parameters
[in]partialObjectIf non-nullptr, the partial object.

◆ ~StringTableLookup()

virtual resqml2::StringTableLookup::~StringTableLookup ( )
virtualdefault

Destructor does nothing since the memory is managed by the gSOAP context.

Reimplemented in resqml2_0_1::StringTableLookup.

Member Function Documentation

◆ addValue()

virtual void resqml2::StringTableLookup::addValue ( const std::string & strValue,
int64_t key )
pure virtual

Adds a key/value pair to this string table lookup. No verification that the key (or string value) already exists is done.

Parameters
strValueA string value.
longValueA key.

Implemented in resqml2_0_1::StringTableLookup.

◆ containsKey()

virtual bool resqml2::StringTableLookup::containsKey ( int64_t key)
pure virtual

Checks whether a key is contained within this string lookup.

Parameters
keyA key.
Returns
True if longValue is a key of this string table lookup, false if not.

Implemented in resqml2_0_1::StringTableLookup.

◆ getItemCount()

virtual uint64_t resqml2::StringTableLookup::getItemCount ( ) const
pure virtual

Gets the count of items in the string table lookup (in its map).

Returns
The count of items.

Implemented in resqml2_0_1::StringTableLookup.

◆ getKeyAtIndex()

virtual int64_t resqml2::StringTableLookup::getKeyAtIndex ( uint64_t index) const
pure virtual

Gets the key of a key/value pair at a particular index of this string table lookup (in its map).

Exceptions
std::out_of_rangeIf index >= getItemCount().
Parameters
indexZero-based index of the key/value pair.
Returns
The key of the key/value pair at position index.

Implemented in resqml2_0_1::StringTableLookup.

◆ getMap()

virtual std::unordered_map< int64_t, std::string > resqml2::StringTableLookup::getMap ( ) const
pure virtual

Gets the underlying key/value map of this string table lookup.

Returns
The key/value map.

Implemented in resqml2_0_1::StringTableLookup.

◆ getMaximumValue()

virtual int64_t resqml2::StringTableLookup::getMaximumValue ( )
pure virtual

Gets the maximum key in this string table lookup. It reads it from file.

Returns
The maximum key if some key/value pairs exists in this string table lookup, otherwise the int64_t minimum value.

Implemented in resqml2_0_1::StringTableLookup.

◆ getMinimumValue()

virtual int64_t resqml2::StringTableLookup::getMinimumValue ( )
pure virtual

Gets the minimum key in this string table lookup. It reads it from file.

Returns
The minimum key if some key/value pairs exists in this string table lookup, otherwise the int64_t maximum value.

Implemented in resqml2_0_1::StringTableLookup.

◆ getStringValue()

virtual std::string resqml2::StringTableLookup::getStringValue ( int64_t key)
pure virtual

Gets a string value from its associated key.

Parameters
keyA key.
Returns
The string value corresponding to the key longValue if it exists, empty string if not.

Implemented in resqml2_0_1::StringTableLookup.

◆ getStringValueAtIndex()

virtual std::string resqml2::StringTableLookup::getStringValueAtIndex ( uint64_t index) const
pure virtual

Gets the string value of a key/value pair at a particular index of this string table lookup (in its map).

Exceptions
std::out_of_rangeIf index >= getItemCount().
Parameters
indexZero-based index of the key/value pair.
Returns
The string value of the key/value pair at position index.

Implemented in resqml2_0_1::StringTableLookup.

◆ getXmlTag()

std::string resqml2::StringTableLookup::getXmlTag ( ) const
inlinefinalvirtual

Gets the standard XML tag without XML namespace for serializing this data object.

Returns
The XML tag.

Implements common::AbstractObject.

◆ setValue()

virtual void resqml2::StringTableLookup::setValue ( const std::string & strValue,
int64_t key )
pure virtual

Modifies the string value associated to a key. If the key does not exist, nothing is done.

Parameters
strValueThe new string value.
longValueA key.

Implemented in resqml2_0_1::StringTableLookup.

Member Data Documentation

◆ XML_TAG

char const* resqml2::StringTableLookup::XML_TAG = "StringTableLookup"
staticconstexpr

The standard XML tag without XML namespace for serializing this data object.


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