modulecomm.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef MODULECOMM_H
  2. #define MODULECOMM_H
  3. #include <QtCore/qglobal.h>
  4. #include <QDateTime>
  5. #include <functional>
  6. #if defined(MODULECOMM_LIBRARY)
  7. # define MODULECOMMSHARED_EXPORT Q_DECL_EXPORT
  8. #else
  9. # define MODULECOMMSHARED_EXPORT Q_DECL_IMPORT
  10. #endif
  11. //#include <iostream>
  12. //#include <thread>
  13. //using namespace std::placeholders;
  14. #ifndef IV_MODULE_FUN
  15. typedef std::function<void(const char * ,const unsigned int , const unsigned int , QDateTime * ,const char *)> ModuleFun;
  16. typedef void (* SMCallBack)(const char * strdata,const unsigned int nSize,const unsigned int index,const QDateTime * dt,const char * strmemname);
  17. #define IV_MODULE_FUN
  18. #endif
  19. namespace iv {
  20. namespace modulecomm {
  21. enum ModuleComm_TYPE
  22. {
  23. ModuleComm_SHAREMEM = 0,
  24. ModuleComm_INTERIOR = 1,
  25. ModuleComm_FASTRTPS = 2,
  26. ModuleComm_FASTRTPS_TCP = 3,
  27. ModuleComm_UNDEFINE = 4
  28. };
  29. void * MODULECOMMSHARED_EXPORT RegisterSend(const char * strcommname);
  30. void * MODULECOMMSHARED_EXPORT RegisterSend(const char * strcommname,const unsigned int nBufSize,const unsigned int nMsgBufCount
  31. ,ModuleComm_TYPE xmctype = ModuleComm_UNDEFINE,const unsigned short nport = 5100);
  32. void * MODULECOMMSHARED_EXPORT RegisterRecv(const char * strcommname,SMCallBack pCall,
  33. ModuleComm_TYPE xmctype = ModuleComm_UNDEFINE,const char * strip = 0,const unsigned short = 5100);
  34. void * MODULECOMMSHARED_EXPORT RegisterRecvPlus(const char * strcommname,ModuleFun xFun,
  35. ModuleComm_TYPE xmctype = ModuleComm_UNDEFINE,const char * strip = 0,const unsigned short = 5100);
  36. void MODULECOMMSHARED_EXPORT ModuleSendMsg(void * pHandle,const char * strdata,const unsigned int nDataLen);
  37. void MODULECOMMSHARED_EXPORT Unregister(void * pHandle);
  38. void MODULECOMMSHARED_EXPORT PauseComm(void * pHandle);
  39. void MODULECOMMSHARED_EXPORT ContintuComm(void * pHandle);
  40. }
  41. }
  42. #endif // MODULECOMM_H