Class encapsulated joint message generation methods (either to or from a SimpleMessage type. This message represents the joint position data. NOTE: In earlier versions this was simply referred to as JOINT message. This caused confusion as there are many types of joint messages (position, velocity, feedback). To remove confusion, this message was changed to JOINT_POSITION. Other types of messages will have to be created for velocity and other feedback. More...
#include <joint_message.h>
Public Member Functions | |
unsigned int | byteLength () |
Virtual method returns the object size when packed into a ByteArray. More... | |
industrial::joint_data::JointData & | getJoints () |
returns reference to underlying joint class More... | |
industrial::shared_types::shared_int | getSequence () |
returns the maximum message sequence number More... | |
void | init () |
Initializes a new joint message. More... | |
void | init (industrial::shared_types::shared_int seq, industrial::joint_data::JointData &joints) |
Initializes message from a joint structure. More... | |
bool | init (industrial::simple_message::SimpleMessage &msg) |
Initializes message from a simple message. More... | |
JointMessage (void) | |
Default constructor. More... | |
bool | load (industrial::byte_array::ByteArray *buffer) |
Virtual method for loading an object into a ByteArray. More... | |
void | setSequence (industrial::shared_types::shared_int sequence) |
Sets message sequence number. More... | |
bool | unload (industrial::byte_array::ByteArray *buffer) |
Virtual method for unloading an object from a ByteArray. More... | |
~JointMessage (void) | |
Destructor. More... | |
Private Attributes | |
industrial::joint_data::JointData | joints_ |
maximum number of joints positions that can be held in the message. More... | |
industrial::shared_types::shared_int | sequence_ |
sequence number (for those joints messages that require it) More... | |
Additional Inherited Members |
Class encapsulated joint message generation methods (either to or from a SimpleMessage type. This message represents the joint position data. NOTE: In earlier versions this was simply referred to as JOINT message. This caused confusion as there are many types of joint messages (position, velocity, feedback). To remove confusion, this message was changed to JOINT_POSITION. Other types of messages will have to be created for velocity and other feedback.
The byte representation of a joint message is as follow (in order lowest index to highest). The standard sizes are given, but can change based on type sizes:
member: type size sequence (industrial::shared_types::shared_int) 4 bytes joints (industrial::joint_data) 40 bytes
THIS CLASS IS NOT THREAD-SAFE
Definition at line 85 of file joint_message.h.
industrial::joint_message::JointMessage::JointMessage | ( | void | ) |
Default constructor.
This method creates an empty message.
Definition at line 54 of file joint_message.cpp.
industrial::joint_message::JointMessage::~JointMessage | ( | void | ) |
Destructor.
Definition at line 60 of file joint_message.cpp.
|
inlinevirtual |
Virtual method returns the object size when packed into a ByteArray.
Implements industrial::simple_serialize::SimpleSerialize.
Definition at line 155 of file joint_message.h.
|
inline |
returns reference to underlying joint class
Definition at line 146 of file joint_message.h.
|
inline |
returns the maximum message sequence number
Definition at line 136 of file joint_message.h.
|
virtual |
Initializes a new joint message.
Implements industrial::typed_message::TypedMessage.
Definition at line 102 of file joint_message.cpp.
void industrial::joint_message::JointMessage::init | ( | industrial::shared_types::shared_int | seq, |
industrial::joint_data::JointData & | joints | ||
) |
Initializes message from a joint structure.
sequence | number |
joints |
Definition at line 96 of file joint_message.cpp.
|
virtual |
Initializes message from a simple message.
simple | message to construct from |
Implements industrial::typed_message::TypedMessage.
Definition at line 65 of file joint_message.cpp.
|
virtual |
Virtual method for loading an object into a ByteArray.
This method should load all the required data to reconstruct the class object into the buffer
buffer | pointer to ByteArray |
Implements industrial::simple_serialize::SimpleSerialize.
Definition at line 108 of file joint_message.cpp.
void industrial::joint_message::JointMessage::setSequence | ( | industrial::shared_types::shared_int | sequence | ) |
Sets message sequence number.
message | sequence number |
Definition at line 91 of file joint_message.cpp.
|
virtual |
Virtual method for unloading an object from a ByteArray.
This method should unload all the required data to reconstruct the class object (in place)
buffer | pointer to ByteArray |
Implements industrial::simple_serialize::SimpleSerialize.
Definition at line 133 of file joint_message.cpp.
|
private |
maximum number of joints positions that can be held in the message.
Definition at line 168 of file joint_message.h.
|
private |
sequence number (for those joints messages that require it)
Definition at line 164 of file joint_message.h.