/******************************************************************************** * 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" * ********************************************************************************/ #ifndef FAIR_MQ_SHMEM_MONITOR_H_ #define FAIR_MQ_SHMEM_MONITOR_H_ #include #include #include #include #include #include #include namespace fair { namespace mq { namespace shmem { class Monitor { public: Monitor(const std::string& shmId, bool selfDestruct, bool interactive, bool viewOnly, unsigned int timeoutInMS, bool runAsDaemon, bool cleanOnExit); Monitor(const Monitor&) = delete; Monitor operator=(const Monitor&) = delete; virtual ~Monitor(); void CatchSignals(); void Run(); static void Cleanup(const std::string& shmId); static void RemoveObject(const std::string&); static void RemoveFileMapping(const std::string&); static void RemoveQueue(const std::string&); static void RemoveMutex(const std::string&); struct DaemonPresent : std::runtime_error { using std::runtime_error::runtime_error; }; private: void PrintHeader(); void PrintHelp(); void PrintQueues(); void MonitorHeartbeats(); void CheckSegment(); void Interactive(); void SignalMonitor(); bool fSelfDestruct; // will self-destruct after the memory has been closed bool fInteractive; // running in interactive mode bool fViewOnly; // view only mode bool fIsDaemon; bool fSeenOnce; // true is segment has been opened successfully at least once bool fCleanOnExit; unsigned int fTimeoutInMS; std::string fShmId; std::string fSegmentName; std::string fManagementSegmentName; std::string fControlQueueName; std::atomic fTerminating; std::atomic fHeartbeatTriggered; std::chrono::high_resolution_clock::time_point fLastHeartbeat; std::thread fSignalThread; boost::interprocess::managed_shared_memory fManagementSegment; std::unordered_map fDeviceHeartbeats; }; } // namespace shmem } // namespace mq } // namespace fair #endif /* FAIR_MQ_SHMEM_MONITOR_H_ */