File size: 1,576 Bytes
053b80b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#ifndef KINOVAUTILAPI_H
#define KINOVAUTILAPI_H

#include "messages/Frame.pb.h"

namespace Kinova
{
namespace Api
{

    typedef union

    {
        uint32_t frame_info;
        struct

        {
            uint32_t errorSubCode: 12;
            uint32_t errorCode: 4;
            uint32_t deviceId: 8;

            uint32_t frameType: 4;
            uint32_t headerVersion : 4;
        };
    } FrameInfo;

    typedef union

    {
        uint32_t message_info;
        struct

        {
            uint32_t messageId: 16;
            uint32_t sessionId: 16;
        };
    } MessageInfo;
    
    typedef union

    {
        uint32_t service_info;
        struct

        {
            uint32_t functionId: 16;
            uint32_t serviceId: 12;
            uint32_t serviceVersion: 4;
        };
        
        struct

        {
            uint32_t functionUid: 28;
        };
    } ServiceInfo;
    
    typedef union

    {
        uint32_t payload_info;
        struct

        {
            uint32_t payloadLength: 24;
            uint32_t reserved: 8;
        };
    } PayloadInfo;
    
    class HeaderInfo

    {
    public:
        HeaderInfo();
        HeaderInfo(const Header& headerProto);

        Header createHeader();

        void fillHeader(Header* pHeader);

        FrameInfo        m_frameInfo;
        MessageInfo      m_messageInfo;
        ServiceInfo      m_serviceInfo;
        PayloadInfo      m_payloadInfo;
    };


} // namespace Api
} // namespace Kinova

#endif