Logo SoCRocket

Transaction-Level Modeling Framework for Space Applications

Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
sr_param< uint64_t > Class Template Reference

#include <sr_param_stdint.h>

Inheritance diagram for sr_param< uint64_t >:
Collaboration diagram for sr_param< uint64_t >:

Public Member Functions

 sr_param (const std::string &nam, const unsigned int &val)
 Constructor with unsigned int value. More...
 
 sr_param (const char *nam, const unsigned int &val)
 
 sr_param (const std::string nam, const unsigned int &val, gs_param_array *parent_array)
 
 sr_param (const char *nam, const unsigned int &val, gs_param_array *parent_array)
 
 sr_param (const std::string nam, const unsigned int &val, gs_param_array &parent_array)
 
 sr_param (const char *nam, const unsigned int &val, gs_param_array &parent_array)
 
 sr_param (const char *nam, const unsigned long long int &val)
 
 sr_param (const std::string nam, const unsigned long long int &val, gs_param_array *parent_array)
 
 sr_param (const char *nam, const unsigned long long int &val, gs_param_array *parent_array)
 
 sr_param (const std::string nam, const unsigned long long int &val, gs_param_array &parent_array)
 
 sr_param (const char *nam, const unsigned long long int &val, gs_param_array &parent_array)
 
 sr_param (const std::string &nam, const int &val)
 Constructor with int value. More...
 
 sr_param (const char *nam, const int &val)
 
const std::string getTypeString () const
 Overloads sr_param::getTypeString. More...
 
gs::cnf::Param_type getType () const
 Overloads sr_param::getType. More...
 
std::string convertValueToString (const val_type &val) const
 Overloads sr_param_t<T>::convertValueToString. More...
 
- Public Member Functions inherited from sr_param_t< uint64_t >
my_typeoperator+= (val_type)
 
my_typeoperator-= (val_type)
 
my_typeoperator/= (val_type)
 
my_typeoperator*= (val_type)
 
val_type operator+ (val_type)
 
val_type operator- (val_type)
 
val_type operator/ (val_type)
 
val_type operator* (val_type)
 
my_typeoperator%= (val_type)
 
my_typeoperator^= (val_type)
 
my_typeoperator&= (val_type)
 
my_typeoperator|= (val_type)
 
my_typeoperator<<= (val_type)
 
my_typeoperator>>= (val_type)
 
my_typeoperator-- ()
 
val_type operator-- (int)
 
my_typeoperator++ ()
 
val_type operator++ (int)
 
 sr_param_t ()
 Empty constructor. Name will be set in base. Avoid using it! You MUST call init() after instantiation! More...
 
 sr_param_t (const bool force_top_level_name, gs_param_array *parent_array, const bool register_at_db)
 Constructor with the special parameters. Name will be set in base. Avoid using it! You MUST call init() after instantiation! More...
 
 sr_param_t (const std::string &nam)
 Constructor with (local or hierarchical) name. You MUST call init() after instantiation! More...
 
 sr_param_t (const std::string &nam, const bool force_top_level_name, gs_param_array *parent_array, const bool register_at_db)
 Constructor with (local or hierarchical) name and special parameters. You MUST call init() after instantiation! More...
 
void init (const val_type &default_val)
 Init method to set the value and add the parameter to the plugin db. More...
 
void init ()
 Init method without value. More...
 
virtual ~sr_param_t ()
 Destructor. More...
 
my_typeoperator= (const my_type &v)
 Set the value of this parameter to the value of another gs_param. More...
 
my_typeoperator= (const val_type &v)
 Set the value of this parameter. More...
 
 operator const val_type & () const
 Get the value of this parameter. More...
 
void setValue (const val_type &val)
 Set the value of this parameter. More...
 
const val_typegetValue () const
 Returns the value of this parameter. More...
 
const void * get_value_pointer () const
 
bool setString (const std::string &str)
 Set the value of this parameter with a string. More...
 
const std::string & getString () const
 Get the value of this parameter as a string. More...
 
virtual const bool deserialize (val_type &target_val, const std::string &str)=0
 Deserialize for this parameter. To be implemented by the specialization. More...
 
void mirror (uint64_t &original)
 Serialize this parameter. More...
 
void mirror (sr_param_t< uint64_t > &original)
 
- Public Member Functions inherited from sr_param_base
 sr_param_base (const std::string &n, const bool register_at_db=true, gs::cnf::gs_param_array *parent_array=NULL, const bool force_top_level_name=false)
 
void setProperty (std::string key, std::string value)
 
std::string getProperty (std::string key)
 
std::map< std::string,
std::string > 
getProperties ()
 
void deleteProperty (std::string key)
 
bool exists (std::string key)
 
easy_init add_properties ()
 

Static Public Member Functions

static std::string static_convertValueToString (const val_type &val)
 
static bool static_deserialize (val_type &target_val, const std::string &str)
 Static convertion function called by virtual deserialize and others (e.g. GCnf_API) More...
 

Public Attributes

 SR_PARAM_HEAD
 
 GC_SPECIALISATIONS_ARITHMETIC_OPERATORS
 
 GC_SPECIALISATIONS_BINARY_OPERATORS
 
 GC_SPECIALISATIONS_INCREMENT_OPERATORS
 
 GC_SPECIALISATIONS_DECREMENT_OPERATORS
 
 SR_PARAM_DELEGATE
 

Additional Inherited Members

- Protected Member Functions inherited from sr_param_t< uint64_t >
gs::cnf::callback_return_type mirror_callback (gs::gs_param_base &changed_param, gs::cnf::callback_type reason)
 
const val_typeconvertStringToValue (const std::string &str)
 Get the value the string. Needed for construction of gs_param. More...
 
- Protected Attributes inherited from sr_param_t< uint64_t >
val_type my_value
 Value of this parameter. More...
 
std::string return_string
 String whose reference can be returned as string value. More...
 
sr_param_t< uint64_t > * m_mirror_param
 
uint64_tm_mirror_val
 

Detailed Description

template<>
class sr_param< uint64_t >

Template specialization for sr_param<uint64_t>. Default value = 0.

Constructor & Destructor Documentation

sr_param< uint64_t >::sr_param ( const std::string &  nam,
const unsigned int val 
)
inlineexplicit

Constructor with unsigned int value.

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const char nam,
const unsigned int val 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const std::string  nam,
const unsigned int val,
gs_param_array *  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const char nam,
const unsigned int val,
gs_param_array *  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const std::string  nam,
const unsigned int val,
gs_param_array &  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const char nam,
const unsigned int val,
gs_param_array &  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const char nam,
const unsigned long long int val 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const std::string  nam,
const unsigned long long int val,
gs_param_array *  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const char nam,
const unsigned long long int val,
gs_param_array *  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const std::string  nam,
const unsigned long long int val,
gs_param_array &  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const char nam,
const unsigned long long int val,
gs_param_array &  parent_array 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const std::string &  nam,
const int val 
)
inlineexplicit

Constructor with int value.

References sr_param_t< T >::init().

Here is the call graph for this function:

sr_param< uint64_t >::sr_param ( const char nam,
const int val 
)
inlineexplicit

References sr_param_t< T >::init().

Here is the call graph for this function:

Member Function Documentation

std::string sr_param< uint64_t >::convertValueToString ( const val_type val) const
inlinevirtual
gs::cnf::Param_type sr_param< uint64_t >::getType ( ) const
inline

Overloads sr_param::getType.

const std::string sr_param< uint64_t >::getTypeString ( ) const
inline

Overloads sr_param::getTypeString.

static std::string sr_param< uint64_t >::static_convertValueToString ( const val_type val)
inlinestatic
static bool sr_param< uint64_t >::static_deserialize ( val_type target_val,
const std::string &  str 
)
inlinestatic

Static convertion function called by virtual deserialize and others (e.g. GCnf_API)

Member Data Documentation

sr_param< uint64_t >::GC_SPECIALISATIONS_ARITHMETIC_OPERATORS
sr_param< uint64_t >::GC_SPECIALISATIONS_BINARY_OPERATORS
sr_param< uint64_t >::GC_SPECIALISATIONS_DECREMENT_OPERATORS
sr_param< uint64_t >::GC_SPECIALISATIONS_INCREMENT_OPERATORS
sr_param< uint64_t >::SR_PARAM_DELEGATE
sr_param< uint64_t >::SR_PARAM_HEAD

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