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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
// Copyright (c) 2020 by Robert Bosch GmbH. All rights reserved.
// Copyright (c) 2021 by Apex.AI Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
#include "mq.hpp"
#include "iceoryx_hoofs/internal/posix_wrapper/message_queue.hpp"
#include "iceoryx_hoofs/platform/fcntl.hpp"
#include "iceoryx_hoofs/platform/platform_correction.hpp"
#include "iceoryx_hoofs/posix_wrapper/posix_call.hpp"
#include <chrono>
#include <thread>
MQ::MQ(const std::string& publisherName, const std::string& subscriberName) noexcept
: m_publisherMqName(PREFIX + publisherName)
, m_subscriberMqName(PREFIX + subscriberName)
{
initMqAttributes();
}
void MQ::cleanupOutdatedResources(const std::string& publisherName, const std::string& subscriberName) noexcept
{
auto publisherMqName = PREFIX + publisherName;
iox::posix::posixCall(mq_unlink)(publisherMqName.c_str())
.failureReturnValue(ERROR_CODE)
.ignoreErrnos(ENOENT)
.evaluate()
.or_else([&](auto& r) {
std::cout << "mq_unlink error for " << publisherMqName << ", " << r.getHumanReadableErrnum() << std::endl;
exit(1);
});
auto subscriberMqName = PREFIX + subscriberName;
iox::posix::posixCall(mq_unlink)(subscriberMqName.c_str())
.failureReturnValue(ERROR_CODE)
.ignoreErrnos(ENOENT)
.evaluate()
.or_else([&](auto& r) {
std::cout << "mq_unlink error for " << subscriberMqName << ", " << r.getHumanReadableErrnum() << std::endl;
exit(1);
});
}
void MQ::initLeader() noexcept
{
open(m_subscriberMqName, iox::posix::IpcChannelSide::SERVER);
std::cout << "waiting for follower" << std::endl;
receivePerfTopic();
open(m_publisherMqName, iox::posix::IpcChannelSide::CLIENT);
}
void MQ::initFollower() noexcept
{
open(m_subscriberMqName, iox::posix::IpcChannelSide::SERVER);
std::cout << "registering with the leader" << std::endl;
open(m_publisherMqName, iox::posix::IpcChannelSide::CLIENT);
sendPerfTopic(sizeof(PerfTopic), RunFlag::RUN);
}
void MQ::initMqAttributes() noexcept
{
// fields have a different order in QNX,
// so we need to initialize by name
m_attributes.mq_flags = 0;
m_attributes.mq_maxmsg = MAX_MESSAGES;
m_attributes.mq_msgsize = MAX_MESSAGE_SIZE;
m_attributes.mq_curmsgs = 0;
#ifdef __QNX__
m_attributes.mq_recvwait = 0;
m_attributes.mq_sendwait = 0;
#endif
}
void MQ::shutdown() noexcept
{
iox::posix::posixCall(mq_close)(m_mqDescriptorSubscriber)
.failureReturnValue(ERROR_CODE)
.evaluate()
.or_else([&](auto& r) {
std::cout << "mq_close error for " << m_subscriberMqName << ", " << r.getHumanReadableErrnum() << std::endl;
exit(1);
});
iox::posix::posixCall(mq_unlink)(m_subscriberMqName.c_str())
.failureReturnValue(ERROR_CODE)
.ignoreErrnos(ENOENT)
.evaluate()
.or_else([&](auto& r) {
std::cout << "mq_unlink error for " << m_subscriberMqName << ", " << r.getHumanReadableErrnum()
<< std::endl;
exit(1);
});
iox::posix::posixCall(mq_close)(m_mqDescriptorPublisher)
.failureReturnValue(ERROR_CODE)
.evaluate()
.or_else([&](auto& r) {
std::cout << "mq_close error for " << m_publisherMqName << ", " << r.getHumanReadableErrnum() << std::endl;
exit(1);
});
}
void MQ::sendPerfTopic(const uint32_t payloadSizeInBytes, const RunFlag runFlag) noexcept
{
char* buffer = new char[payloadSizeInBytes];
auto sample = reinterpret_cast<PerfTopic*>(&buffer[0]);
// Specify the payload size for the measurement
sample->payloadSize = payloadSizeInBytes;
sample->runFlag = runFlag;
if (payloadSizeInBytes <= MAX_MESSAGE_SIZE)
{
sample->subPackets = 1;
send(&buffer[0], payloadSizeInBytes);
}
else
{
sample->subPackets = payloadSizeInBytes / MAX_MESSAGE_SIZE;
for (uint32_t i = 0U; i < sample->subPackets; ++i)
{
send(&buffer[0], MAX_MESSAGE_SIZE);
}
}
delete[] buffer;
}
PerfTopic MQ::receivePerfTopic() noexcept
{
receive(&m_message[0]);
auto receivedSample = reinterpret_cast<const PerfTopic*>(&m_message[0]);
if (receivedSample->subPackets > 1)
{
for (uint32_t i = 0U; i < receivedSample->subPackets - 1; ++i)
{
receive(&m_message[0]);
}
}
return *receivedSample;
}
void MQ::open(const std::string& name, const iox::posix::IpcChannelSide channelSide) noexcept
{
int32_t openFlags = O_RDWR;
if (channelSide == iox::posix::IpcChannelSide::SERVER)
{
openFlags |= O_CREAT;
}
constexpr bool TRY_TO_OPEN{true};
while (TRY_TO_OPEN)
{
// the mask will be applied to the permissions, therefore we need to set it to 0
mode_t umaskSaved = umask(0);
auto mqCall = iox::posix::posixCall(iox_mq_open4)(name.c_str(), openFlags, m_filemode, &m_attributes)
.failureReturnValue(INVALID_DESCRIPTOR)
.ignoreErrnos(ENOENT)
.evaluate()
.or_else([&](auto& r) {
std::cout << "mq_open error for " << name << ", " << r.getHumanReadableErrnum()
<< std::endl;
exit(1);
});
umask(umaskSaved);
if (mqCall->errnum == ENOENT)
{
constexpr std::chrono::milliseconds RETRY_INTERVAL{10};
std::this_thread::sleep_for(RETRY_INTERVAL);
continue;
}
if (channelSide == iox::posix::IpcChannelSide::SERVER)
{
m_mqDescriptorSubscriber = mqCall->value;
}
else
{
m_mqDescriptorPublisher = mqCall->value;
}
break;
}
}
void MQ::send(const char* buffer, uint32_t length) noexcept
{
iox::posix::posixCall(mq_send)(m_mqDescriptorPublisher, buffer, length, 1U)
.failureReturnValue(ERROR_CODE)
.evaluate()
.or_else([&](auto& r) {
std::cout << std::endl
<< "send error for " << m_publisherMqName << ", " << r.getHumanReadableErrnum() << std::endl;
exit(1);
});
}
void MQ::receive(char* buffer) noexcept
{
iox::posix::posixCall(mq_receive)(m_mqDescriptorSubscriber, buffer, MAX_MESSAGE_SIZE, nullptr)
.failureReturnValue(ERROR_CODE)
.evaluate()
.or_else([&](auto& r) {
std::cout << "receive error for " << m_subscriberMqName << ", " << r.getHumanReadableErrnum() << std::endl;
exit(1);
});
}
|