lichao
2021-03-25 d3e7f93e69cb24c766292d8780e745caf24d42a8
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * =====================================================================================
 *
 *       Filename:  shm_queue.cpp
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  2021年03月25日 10时34分42秒
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  Li Chao (), 
 *   Organization:  
 *
 * =====================================================================================
 */
#include "shm_queue.h"
#include <boost/uuid/uuid_io.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include "bh_util.h"
 
namespace bhome_shm {
    
using namespace boost::interprocess;
using namespace boost::uuids;
 
namespace {
std::string MsgQIdToName(const MQId& id) { return "shmq" + to_string(id); }
MQId EmptyId() { return nil_uuid(); }
MQId NewId() { return random_generator()(); }
}
 
ShmMsgQueue::ShmMsgQueue(const MQId &id, ShmType &segment, const uint32_t len):
SharedQueue(segment, MsgQIdToName(id), id, len, segment.get_segment_manager())
{
    printf("queue size: %ld cap: %ld\n", data()->size(), data()->capacity());
}
 
ShmMsgQueue::ShmMsgQueue(ShmType &segment, const uint32_t len):ShmMsgQueue(NewId(), segment, len)
{}
 
ShmMsgQueue::~ShmMsgQueue()
{
    Remove();
}
 
bool ShmMsgQueue::Send(const MQId &remote_id, const Msg &msg, const int timeout_ms)
{
    Queue *remote = find(MsgQIdToName(remote_id));
    
    if(!remote) {
        return false;
    }
    msg.AddRef();
    if (remote->Write(msg, timeout_ms)) {
        return true;
    } else {
        msg.RemoveRef();
        return false;
    }
}
 
bool ShmMsgQueue::Send(const MQId &remote_id, const void *data, const size_t size, const int timeout_ms)
{
    // Test shows that in the 2 cases:
    // 1) build msg first, then find remote queue;
    // 2) find remote queue first, then build msg;
    // 1 is about 50% faster than 2, maybe cache related.
 
    Msg msg;
    if (msg.Build(shm(), Id(), data, size, false)) {
        if (Send(remote_id, msg, timeout_ms)) {
            return true;
        } else {
            if (msg.RemoveRef() == 0) { // works for both refcounted and not counted.
                msg.FreeFrom(shm());
            }
        }
    }
    return false;
}
 
bool ShmMsgQueue::Recv(MQId &source_id, void *&data, size_t &size, const int timeout_ms)
{
    Msg msg;
    if (Read(msg, timeout_ms)) {
        DEFER1(if (msg.RemoveRef() == 0) { msg.FreeFrom(shm()); });
 
        auto ptr = msg.get<char>();
        if (ptr) {
            MsgMetaV1 meta;
            meta.Parse(ptr);
            source_id = meta.src_id_;
            size = meta.data_size_;
            data = malloc(size);
            if (data) {
                memcpy(data, ptr + meta.self_size_, size);
                return true;
            }
        }
    }
    source_id = EmptyId();
    data = 0;
    size = 0;
    return false;
}
 
} // namespace bhome_shm