|
| std::ostream & | operator<< (std::ostream &_stream, const SAgentsInfoCmd &_val) |
| |
| bool | operator!= (const SAgentsInfoCmd &_lhs, const SAgentsInfoCmd &_rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SAssignUserTaskCmd &val) |
| |
| bool | operator!= (const SAssignUserTaskCmd &lhs, const SAssignUserTaskCmd &rhs) |
| |
| template<typename T > |
| size_t | dsize (const T &_value) |
| | All vectors (except uint8_t) have a maximum size of uint16_t i.e. 2^16. All vector<uint8_t>'s have a maximum size of uint32_t i.e. 2^32. All std::string's have a maximum size of uint16_t i.e. 2^16. More...
|
| |
| template<> |
| size_t | dsize< uint8_t > (const uint8_t &_value) |
| | Helper function calculating size of uint8_t. More...
|
| |
| template<> |
| size_t | dsize< uint16_t > (const uint16_t &_value) |
| | Helper function calculating size of uint16_t. More...
|
| |
| template<> |
| size_t | dsize< uint32_t > (const uint32_t &_value) |
| | Helper function calculating size of uint32_t. More...
|
| |
| template<> |
| size_t | dsize< uint64_t > (const uint64_t &_value) |
| | Helper function calculating size of uint64_t. More...
|
| |
| template<> |
| size_t | dsize< std::string > (const std::string &_value) |
| | Helper function calculating size of std::string. More...
|
| |
| template<> |
| size_t | dsize< std::vector< uint8_t > > (const std::vector< uint8_t > &_value) |
| | Helper function calculating size of the vector of uint8_t. More...
|
| |
| template<> |
| size_t | dsize< std::vector< uint16_t > > (const std::vector< uint16_t > &_value) |
| | Helper function calculating size of the vector of uint16_t. More...
|
| |
| template<> |
| size_t | dsize< std::vector< uint32_t > > (const std::vector< uint32_t > &_value) |
| | Helper function calculating size of the vector of uint32_t. More...
|
| |
| template<> |
| size_t | dsize< std::vector< uint64_t > > (const std::vector< uint64_t > &_value) |
| | Helper function calculating size of the vector of uint64_t. More...
|
| |
| template<> |
| size_t | dsize< std::vector< std::string > > (const std::vector< std::string > &_value) |
| | Helper function calculating size of the vector of std::string. More...
|
| |
| template<> |
| size_t | dsize< boost::uuids::uuid > (const boost::uuids::uuid &_value) |
| | Helper function calculating size of the boost::uuids::uuid. More...
|
| |
| template<typename T > |
| void | readData (T *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| | Helper template function reading data from byte array. More...
|
| |
| template<> |
| void | readData< uint8_t > (uint8_t *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< uint16_t > (uint16_t *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< uint32_t > (uint32_t *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< uint64_t > (uint64_t *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< std::string > (std::string *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< boost::uuids::uuid > (boost::uuids::uuid *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<typename T > |
| void | readDataVector (std::vector< T > *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< std::vector< uint8_t > > (std::vector< uint8_t > *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< std::vector< uint16_t > > (std::vector< uint16_t > *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< std::vector< uint32_t > > (std::vector< uint32_t > *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< std::vector< uint64_t > > (std::vector< uint64_t > *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<> |
| void | readData< std::vector< std::string > > (std::vector< std::string > *_value, const MiscCommon::BYTEVector_t *_data, size_t *_nPos) |
| |
| template<typename T > |
| void | pushData (const T &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< uint8_t > (const uint8_t &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< uint16_t > (const uint16_t &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< uint32_t > (const uint32_t &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< uint64_t > (const uint64_t &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< std::string > (const std::string &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< boost::uuids::uuid > (const boost::uuids::uuid &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<typename T > |
| void | pushDataVector (const std::vector< T > &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< std::vector< uint8_t > > (const std::vector< uint8_t > &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< std::vector< uint16_t > > (const std::vector< uint16_t > &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< std::vector< uint32_t > > (const std::vector< uint32_t > &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< std::vector< uint64_t > > (const std::vector< uint64_t > &_value, MiscCommon::BYTEVector_t *_data) |
| |
| template<> |
| void | pushData< std::vector< std::string > > (const std::vector< std::string > &_value, MiscCommon::BYTEVector_t *_data) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SBinaryAttachmentCmd &_val) |
| |
| bool | operator!= (const SBinaryAttachmentCmd &lhs, const SBinaryAttachmentCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SBinaryAttachmentReceivedCmd &_val) |
| |
| bool | operator!= (const SBinaryAttachmentReceivedCmd &lhs, const SBinaryAttachmentReceivedCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SBinaryAttachmentStartCmd &_val) |
| |
| bool | operator!= (const SBinaryAttachmentStartCmd &lhs, const SBinaryAttachmentStartCmd &rhs) |
| |
| template<class T > |
| bool | operator== (const SChannelInfo< T > &lhs, const SChannelInfo< T > &rhs) |
| |
| | REGISTER_CMD_ATTACHMENT (SVersionCmd, cmdHANDSHAKE) REGISTER_CMD_ATTACHMENT(SSimpleMsgCmd |
| |
| cmdREPLY_HANDSHAKE_ERR | REGISTER_CMD_ATTACHMENT (SSubmitCmd, cmdSUBMIT) REGISTER_CMD_ATTACHMENT(SSimpleMsgCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG | REGISTER_CMD_ATTACHMENT (SHostInfoCmd, cmdREPLY_HOST_INFO) REGISTER_CMD_ATTACHMENT(SSimpleMsgCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID | REGISTER_CMD_ATTACHMENT (SBinaryAttachmentCmd, cmdBINARY_ATTACHMENT) REGISTER_CMD_ATTACHMENT(SIDCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID | REGISTER_CMD_ATTACHMENT (SIDCmd, cmdSET_ID) REGISTER_CMD_ATTACHMENT(SAgentsInfoCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO | REGISTER_CMD_ATTACHMENT (SAssignUserTaskCmd, cmdASSIGN_USER_TASK) REGISTER_CMD_ATTACHMENT(SBinaryAttachmentReceivedCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO cmdBINARY_ATTACHMENT_RECEIVED | REGISTER_CMD_ATTACHMENT (SBinaryAttachmentStartCmd, cmdBINARY_ATTACHMENT_START) REGISTER_CMD_ATTACHMENT(SUpdateKeyCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO cmdBINARY_ATTACHMENT_RECEIVED cmdUPDATE_KEY | REGISTER_CMD_ATTACHMENT (SUpdateKeyErrorCmd, cmdUPDATE_KEY_ERROR) REGISTER_CMD_ATTACHMENT(SProgressCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO cmdBINARY_ATTACHMENT_RECEIVED cmdUPDATE_KEY cmdPROGRESS | REGISTER_CMD_ATTACHMENT (SUserTaskDoneCmd, cmdUSER_TASK_DONE) REGISTER_CMD_ATTACHMENT(SDeleteKeyCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO cmdBINARY_ATTACHMENT_RECEIVED cmdUPDATE_KEY cmdPROGRESS cmdDELETE_KEY | REGISTER_CMD_ATTACHMENT (SGetPropValuesCmd, cmdGET_PROP_VALUES) REGISTER_CMD_ATTACHMENT(SUpdateTopologyCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO cmdBINARY_ATTACHMENT_RECEIVED cmdUPDATE_KEY cmdPROGRESS cmdDELETE_KEY cmdUPDATE_TOPOLOGY | REGISTER_CMD_ATTACHMENT (SCustomCmdCmd, cmdCUSTOM_CMD) REGISTER_CMD_ATTACHMENT(SSimpleMsgCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO cmdBINARY_ATTACHMENT_RECEIVED cmdUPDATE_KEY cmdPROGRESS cmdDELETE_KEY cmdUPDATE_TOPOLOGY cmdLOBBY_MEMBER_INFO | REGISTER_CMD_ATTACHMENT (SSimpleMsgCmd, cmdLOBBY_MEMBER_INFO_ERR) REGISTER_CMD_ATTACHMENT(SVersionCmd |
| |
| cmdREPLY_HANDSHAKE_ERR cmdSIMPLE_MSG cmdREPLY_PID cmdREPLY_ID cmdREPLY_AGENTS_INFO cmdBINARY_ATTACHMENT_RECEIVED cmdUPDATE_KEY cmdPROGRESS cmdDELETE_KEY cmdUPDATE_TOPOLOGY cmdLOBBY_MEMBER_INFO cmdLOBBY_MEMBER_HANDSHAKE | REGISTER_CMD_ATTACHMENT (SSimpleMsgCmd, cmdREPLY_LOBBY_MEMBER_HANDSHAKE_ERR) REGISTER_CMD_ATTACHMENT(SMoveFileCmd |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SCustomCmdCmd &val) |
| |
| bool | operator!= (const SCustomCmdCmd &lhs, const SCustomCmdCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SDeleteKeyCmd &val) |
| |
| bool | operator!= (const SDeleteKeyCmd &lhs, const SDeleteKeyCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SGetPropValuesCmd &val) |
| |
| bool | operator!= (const SGetPropValuesCmd &lhs, const SGetPropValuesCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SHostInfoCmd &val) |
| |
| bool | operator!= (const SHostInfoCmd &lhs, const SHostInfoCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SMoveFileCmd &_val) |
| |
| bool | operator!= (const SMoveFileCmd &lhs, const SMoveFileCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SProgressCmd &val) |
| |
| bool | operator!= (const SProgressCmd &lhs, const SProgressCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SSimpleMsgCmd &val) |
| |
| bool | operator!= (const SSimpleMsgCmd &lhs, const SSimpleMsgCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SSubmitCmd &val) |
| |
| bool | operator!= (const SSubmitCmd &lhs, const SSubmitCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SUpdateKeyCmd &val) |
| |
| bool | operator!= (const SUpdateKeyCmd &lhs, const SUpdateKeyCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SUpdateKeyErrorCmd &val) |
| |
| bool | operator!= (const SUpdateKeyErrorCmd &lhs, const SUpdateKeyErrorCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SUpdateTopologyCmd &val) |
| |
| bool | operator!= (const SUpdateTopologyCmd &lhs, const SUpdateTopologyCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SUserTaskDoneCmd &val) |
| |
| bool | operator!= (const SUserTaskDoneCmd &lhs, const SUserTaskDoneCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SIDCmd &_val) |
| |
| bool | operator!= (const SIDCmd &lhs, const SIDCmd &rhs) |
| |
| std::ostream & | operator<< (std::ostream &_stream, const SVersionCmd &val) |
| |
| bool | operator!= (const SVersionCmd &lhs, const SVersionCmd &rhs) |
| |