mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-12 16:21:13 +00:00
311 lines
11 KiB
C++
311 lines
11 KiB
C++
/********************************************************************************
|
|
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
|
* *
|
|
* This software is distributed under the terms of the *
|
|
* GNU Lesser General Public Licence (LGPL) version 3, *
|
|
* copied verbatim in the file "LICENSE" *
|
|
********************************************************************************/
|
|
/**
|
|
* Region.h
|
|
*
|
|
* @since 2016-04-08
|
|
* @author A. Rybalchenko
|
|
*/
|
|
|
|
#ifndef FAIR_MQ_SHMEM_REGION_H_
|
|
#define FAIR_MQ_SHMEM_REGION_H_
|
|
|
|
#include "Common.h"
|
|
|
|
#include <FairMQLogger.h>
|
|
#include <FairMQUnmanagedRegion.h>
|
|
#include <fairmq/tools/Strings.h>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
#include <boost/process.hpp>
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
|
#include <boost/interprocess/managed_shared_memory.hpp>
|
|
#include <boost/interprocess/file_mapping.hpp>
|
|
#include <boost/interprocess/ipc/message_queue.hpp>
|
|
|
|
#include <algorithm> // min
|
|
#include <atomic>
|
|
#include <thread>
|
|
#include <memory> // make_unique
|
|
#include <mutex>
|
|
#include <condition_variable>
|
|
#include <unordered_map>
|
|
#include <cerrno>
|
|
#include <chrono>
|
|
#include <ios>
|
|
#include <utility> // move
|
|
|
|
namespace fair::mq::shmem
|
|
{
|
|
|
|
struct Region
|
|
{
|
|
Region(const std::string& shmId, uint16_t id, uint64_t size, bool remote, RegionCallback callback, RegionBulkCallback bulkCallback, const std::string& path, int flags)
|
|
: fRemote(remote)
|
|
, fLinger(100)
|
|
, fStopAcks(false)
|
|
, fName("fmq_" + shmId + "_rg_" + std::to_string(id))
|
|
, fQueueName("fmq_" + shmId + "_rgq_" + std::to_string(id))
|
|
, fShmemObject()
|
|
, fFile(nullptr)
|
|
, fFileMapping()
|
|
, fQueue(nullptr)
|
|
, fCallback(std::move(callback))
|
|
, fBulkCallback(std::move(bulkCallback))
|
|
{
|
|
using namespace boost::interprocess;
|
|
|
|
if (!path.empty()) {
|
|
fName = std::string(path + fName);
|
|
|
|
if (!fRemote) {
|
|
// create a file
|
|
std::filebuf fbuf;
|
|
if (fbuf.open(fName, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios_base::binary)) {
|
|
// set the size
|
|
fbuf.pubseekoff(size - 1, std::ios_base::beg);
|
|
fbuf.sputc(0);
|
|
}
|
|
}
|
|
|
|
fFile = fopen(fName.c_str(), "r+");
|
|
|
|
if (!fFile) {
|
|
LOG(error) << "Failed to initialize file: " << fName;
|
|
LOG(error) << "errno: " << errno << ": " << strerror(errno);
|
|
throw std::runtime_error(tools::ToString("Failed to initialize file for shared memory region: ", strerror(errno)));
|
|
}
|
|
fFileMapping = file_mapping(fName.c_str(), read_write);
|
|
LOG(debug) << "shmem: initialized file: " << fName;
|
|
fRegion = mapped_region(fFileMapping, read_write, 0, size, 0, flags);
|
|
} else {
|
|
try {
|
|
if (fRemote) {
|
|
fShmemObject = shared_memory_object(open_only, fName.c_str(), read_write);
|
|
} else {
|
|
fShmemObject = shared_memory_object(create_only, fName.c_str(), read_write);
|
|
fShmemObject.truncate(size);
|
|
}
|
|
} catch(interprocess_exception& e) {
|
|
LOG(error) << "Failed " << (fRemote ? "opening" : "creating") << " shared_memory_object for region id '" << id << "': " << e.what();
|
|
throw;
|
|
}
|
|
try {
|
|
fRegion = mapped_region(fShmemObject, read_write, 0, 0, 0, flags);
|
|
} catch(interprocess_exception& e) {
|
|
LOG(error) << "Failed mapping shared_memory_object for region id '" << id << "': " << e.what();
|
|
throw;
|
|
}
|
|
}
|
|
|
|
|
|
InitializeQueues();
|
|
StartSendingAcks();
|
|
|
|
LOG(trace) << "shmem: initialized region: " << fName << " (" << (fRemote ? "remote" : "local") << ")";
|
|
}
|
|
|
|
Region() = delete;
|
|
|
|
Region(const Region&) = delete;
|
|
Region(Region&&) = delete;
|
|
|
|
void InitializeQueues()
|
|
{
|
|
using namespace boost::interprocess;
|
|
|
|
if (fRemote) {
|
|
fQueue = std::make_unique<message_queue>(open_only, fQueueName.c_str());
|
|
} else {
|
|
fQueue = std::make_unique<message_queue>(create_only, fQueueName.c_str(), 1024, fAckBunchSize * sizeof(RegionBlock));
|
|
}
|
|
LOG(trace) << "shmem: initialized region queue: " << fQueueName << " (" << (fRemote ? "remote" : "local") << ")";
|
|
}
|
|
|
|
void StartSendingAcks()
|
|
{
|
|
fAcksSender = std::thread(&Region::SendAcks, this);
|
|
}
|
|
void SendAcks()
|
|
{
|
|
std::unique_ptr<RegionBlock[]> blocks = std::make_unique<RegionBlock[]>(fAckBunchSize);
|
|
size_t blocksToSend = 0;
|
|
|
|
while (true) {
|
|
{
|
|
std::unique_lock<std::mutex> lock(fBlockMtx);
|
|
|
|
// try to get <fAckBunchSize> blocks
|
|
if (fBlocksToFree.size() < fAckBunchSize) {
|
|
fBlockSendCV.wait_for(lock, std::chrono::milliseconds(500));
|
|
}
|
|
|
|
// send whatever blocks we have
|
|
blocksToSend = std::min(fBlocksToFree.size(), fAckBunchSize);
|
|
|
|
copy_n(fBlocksToFree.end() - blocksToSend, blocksToSend, blocks.get());
|
|
fBlocksToFree.resize(fBlocksToFree.size() - blocksToSend);
|
|
}
|
|
|
|
if (blocksToSend > 0) {
|
|
while (!fQueue->try_send(blocks.get(), blocksToSend * sizeof(RegionBlock), 0) && !fStopAcks) {
|
|
// receiver slow? yield and try again...
|
|
std::this_thread::yield();
|
|
}
|
|
// LOG(debug) << "Sent " << blocksToSend << " blocks.";
|
|
} else { // blocksToSend == 0
|
|
if (fStopAcks) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
LOG(trace) << "AcksSender for " << fName << " leaving " << "(blocks left to free: " << fBlocksToFree.size() << ", "
|
|
<< " blocks left to send: " << blocksToSend << ").";
|
|
}
|
|
|
|
void StartReceivingAcks()
|
|
{
|
|
if (!fAcksReceiver.joinable()) {
|
|
fAcksReceiver = std::thread(&Region::ReceiveAcks, this);
|
|
}
|
|
}
|
|
void ReceiveAcks()
|
|
{
|
|
unsigned int priority = 0;
|
|
boost::interprocess::message_queue::size_type recvdSize = 0;
|
|
std::unique_ptr<RegionBlock[]> blocks = std::make_unique<RegionBlock[]>(fAckBunchSize);
|
|
std::vector<fair::mq::RegionBlock> result;
|
|
result.reserve(fAckBunchSize);
|
|
|
|
while (true) {
|
|
uint32_t timeout = 100;
|
|
bool leave = false;
|
|
if (fStopAcks) {
|
|
timeout = fLinger;
|
|
leave = true;
|
|
}
|
|
auto rcvTill = boost::posix_time::microsec_clock::universal_time() + boost::posix_time::milliseconds(timeout);
|
|
|
|
while (fQueue->timed_receive(blocks.get(), fAckBunchSize * sizeof(RegionBlock), recvdSize, priority, rcvTill)) {
|
|
const auto numBlocks = recvdSize / sizeof(RegionBlock);
|
|
// LOG(debug) << "Received " << numBlocks << " blocks (recvdSize: " << recvdSize << "). (remaining queue size: " << fQueue->get_num_msg() << ").";
|
|
if (fBulkCallback) {
|
|
result.clear();
|
|
for (size_t i = 0; i < numBlocks; i++) {
|
|
result.emplace_back(reinterpret_cast<char*>(fRegion.get_address()) + blocks[i].fHandle, blocks[i].fSize, reinterpret_cast<void*>(blocks[i].fHint));
|
|
}
|
|
fBulkCallback(result);
|
|
} else if (fCallback) {
|
|
for (size_t i = 0; i < numBlocks; i++) {
|
|
fCallback(reinterpret_cast<char*>(fRegion.get_address()) + blocks[i].fHandle, blocks[i].fSize, reinterpret_cast<void*>(blocks[i].fHint));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (leave) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
LOG(trace) << "AcksReceiver for " << fName << " leaving (remaining queue size: " << fQueue->get_num_msg() << ").";
|
|
}
|
|
|
|
void ReleaseBlock(const RegionBlock& block)
|
|
{
|
|
std::unique_lock<std::mutex> lock(fBlockMtx);
|
|
|
|
fBlocksToFree.emplace_back(block);
|
|
|
|
if (fBlocksToFree.size() >= fAckBunchSize) {
|
|
lock.unlock();
|
|
fBlockSendCV.notify_one();
|
|
}
|
|
}
|
|
|
|
void SetLinger(uint32_t linger) { fLinger = linger; }
|
|
uint32_t GetLinger() const { return fLinger; }
|
|
|
|
void StopAcks()
|
|
{
|
|
fStopAcks = true;
|
|
|
|
if (fAcksSender.joinable()) {
|
|
fBlockSendCV.notify_one();
|
|
fAcksSender.join();
|
|
}
|
|
|
|
if (!fRemote) {
|
|
if (fAcksReceiver.joinable()) {
|
|
fAcksReceiver.join();
|
|
}
|
|
}
|
|
}
|
|
|
|
~Region()
|
|
{
|
|
fStopAcks = true;
|
|
|
|
if (fAcksSender.joinable()) {
|
|
fBlockSendCV.notify_one();
|
|
fAcksSender.join();
|
|
}
|
|
|
|
if (!fRemote) {
|
|
if (fAcksReceiver.joinable()) {
|
|
fAcksReceiver.join();
|
|
}
|
|
|
|
if (boost::interprocess::shared_memory_object::remove(fName.c_str())) {
|
|
LOG(trace) << "Region '" << fName << "' destroyed.";
|
|
}
|
|
|
|
if (boost::interprocess::file_mapping::remove(fName.c_str())) {
|
|
LOG(trace) << "File mapping '" << fName << "' destroyed.";
|
|
}
|
|
|
|
if (fFile) {
|
|
fclose(fFile);
|
|
}
|
|
|
|
if (boost::interprocess::message_queue::remove(fQueueName.c_str())) {
|
|
LOG(trace) << "Region queue '" << fQueueName << "' destroyed.";
|
|
}
|
|
} else {
|
|
// LOG(debug) << "Region queue '" << fQueueName << "' is remote, no cleanup necessary";
|
|
}
|
|
|
|
// LOG(debug) << "Region '" << fName << "' (" << (fRemote ? "remote" : "local") << ") destructed.";
|
|
}
|
|
|
|
bool fRemote;
|
|
uint32_t fLinger;
|
|
std::atomic<bool> fStopAcks;
|
|
std::string fName;
|
|
std::string fQueueName;
|
|
boost::interprocess::shared_memory_object fShmemObject;
|
|
FILE* fFile;
|
|
boost::interprocess::file_mapping fFileMapping;
|
|
boost::interprocess::mapped_region fRegion;
|
|
|
|
std::mutex fBlockMtx;
|
|
std::condition_variable fBlockSendCV;
|
|
std::vector<RegionBlock> fBlocksToFree;
|
|
const std::size_t fAckBunchSize = 256;
|
|
std::unique_ptr<boost::interprocess::message_queue> fQueue;
|
|
|
|
std::thread fAcksReceiver;
|
|
std::thread fAcksSender;
|
|
RegionCallback fCallback;
|
|
RegionBulkCallback fBulkCallback;
|
|
};
|
|
|
|
} // namespace fair::mq::shmem
|
|
|
|
#endif /* FAIR_MQ_SHMEM_REGION_H_ */
|