zhangmeng
2024-04-09 2561a007b8d8999a4750046d0cfb3b1ad5af50ac
test_socket/bus_test.cpp
@@ -3,7 +3,12 @@
#include "shm_mm_wrapper.h"
#include "usg_common.h"
#include "mm.h"
#include "logger_factory.h"
#include "bus_error.h"
static Logger *logger = LoggerFactory::getLogger();
BusServerSocket * server_socket;
void sigint_handler(int sig) {
  
@@ -19,19 +24,20 @@
}
void *run_recv2(void *skptr) {
void *run_recv(void *skptr) {
  pthread_detach(pthread_self());
  void *recvbuf;
  int size;
  int key;
  int rv;
  ShmModSocket *sk = (ShmModSocket *)skptr;
printf("run_recv\n");
  struct timespec timeout = {2, 0};
  while (true) {
    printf("run_recv before\n");
    rv = sk->recvfrom_timeout( &recvbuf, &size, &key, &timeout);
    // rv = sk->recvfrom_timeout( &recvbuf, &size, &key, &timeout);
    rv = sk->recvfrom( &recvbuf, &size, &key);
    if(rv == 0) {
      printf("收到订阅消息:%s\n", recvbuf);
      free(recvbuf);
@@ -44,34 +50,26 @@
  
}
void *run_recv(void *skptr) {
  while(true) {
    printf("================run_recv\n");
    sleep(1);
  }
}
void client2(int key) {
  ShmModSocket *sk = new ShmModSocket();
  run_recv((void *)sk);
}
void client(int key) {
  ShmModSocket *sk = new ShmModSocket();
  
  pthread_t tid;
  pthread_create(&tid, NULL, run_recv, (void *)sk);
  int size;
  
  char action[512];
  char topic[512];
  char content[512];
  long i = 0;
  pthread_create(&tid, NULL, run_recv, (void *)sk);
  while (true) {
    //printf("Usage: pub <topic> [content] or sub <topic>\n");
    printf("Can I help you? sub, pub, desub or quit\n");
    scanf("%s",action);
    printf("Can I help you? sub, pub, desub or quit %d\n", i++);
    // scanf("%s", action);
    std::cin >> action;
    if(strcmp(action, "sub") == 0) {
      printf("Please input topic!\n");
      scanf("%s", topic);
@@ -137,4 +135,4 @@
  
  return 0;
}
}