monitor.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #pragma once
  2. #include <sys/types.h>
  3. #include <sys/socket.h>
  4. #include <sys/time.h>
  5. #include <sys/mman.h>
  6. #include <sys/shm.h>
  7. #include <sys/stat.h>
  8. #include <sys/un.h>
  9. #include <sys/wait.h>
  10. #include <netinet/in.h>
  11. #include <arpa/inet.h>
  12. #include <errno.h>
  13. #include <fcntl.h>
  14. #include <unistd.h>
  15. #include <iostream>
  16. #include <memory>
  17. #include <string>
  18. #include <vector>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <ctime>
  22. #include <time.h>
  23. #include <pthread.h>
  24. using namespace std;
  25. #include <rapidjson/document.h>
  26. #include <rapidjson/rapidjson.h>
  27. #include <rapidjson/stringbuffer.h>
  28. #include <rapidjson/writer.h>
  29. #include "expel.h"
  30. #include "md5.h"
  31. #include "Base64.h"
  32. #include "CSerialPort/SerialPort.h"
  33. #include "kafka_comsumer.h"
  34. #include "dataTypeList.h"
  35. #include "Util/TimeTicker.h"
  36. #include "Network/TcpServer.h"
  37. #include "Network/TcpSession.h"
  38. #include "InfineFilter.h"
  39. class Monitor{
  40. private:
  41. std::shared_ptr<kafka_consumer_client> m_KafkaConsumer = nullptr;
  42. public:
  43. Monitor();
  44. ~Monitor();
  45. /**
  46. * @description: 初始化
  47. * @param {*}
  48. * @return {*}
  49. */
  50. bool Init();
  51. /**
  52. * @description: 消费数据
  53. * @param {*}
  54. * @return {*}
  55. */
  56. bool ConsumeData(FrameInferData::Ptr& result);
  57. };