lichao
2021-04-01 b55ffe89f4b237be5f79232cfddfe22bfdb87c64
src/pubsub.cpp
@@ -16,9 +16,61 @@
 * =====================================================================================
 */
#include "pubsub.h"
#include "bh_util.h"
#include "defs.h"
namespace bhome_shm {
using namespace std::chrono_literals;
using namespace bhome_msg;
} // namespace bhome_shm
bool SocketPublish::Publish(const std::string &topic, const void *data, const size_t size, const int timeout_ms)
{
   try {
      MsgI imsg;
      if (!imsg.MakeRC(shm(), MakePub(topic, data, size))) {
         return false;
      }
      DEFER1(imsg.Release(shm()));
      return ShmMsgQueue::Send(shm(), kBHBusQueueId, imsg, timeout_ms);
   } catch (...) {
      return false;
   }
}
bool SocketSubscribe::Subscribe(const std::vector<std::string> &topics, const int timeout_ms)
{
   try {
      return mq().Send(kBHBusQueueId, MakeSub(mq().Id(), topics), timeout_ms);
   } catch (...) {
      return false;
   }
}
bool SocketSubscribe::StartRecv(const TopicDataCB &tdcb, int nworker)
{
   auto AsyncRecvProc = [this, tdcb](BHMsg &msg) {
      if (msg.type() == kMsgTypePublish) {
         DataPub d;
         if (d.ParseFromString(msg.body())) {
            tdcb(d.topic(), d.data());
         }
      } else {
         // ignored, or dropped
      }
   };
   return tdcb && Start(AsyncRecvProc, nworker);
}
bool SocketSubscribe::RecvSub(std::string &topic, std::string &data, const int timeout_ms)
{
   BHMsg msg;
   if (SyncRecv(msg, timeout_ms) && msg.type() == kMsgTypePublish) {
      DataPub d;
      if (d.ParseFromString(msg.body())) {
         d.mutable_topic()->swap(topic);
         d.mutable_data()->swap(data);
         return true;
      }
   }
   return false;
}