wangzhengquan
2021-02-03 62ccddbe4abfea9883737d79772d4e8d1084f6b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#ifndef __SHM_SOCKET_H__
#define __SHM_SOCKET_H__
 
#include "usg_common.h"
#include "usg_typedef.h"
#include "shm_queue.h"
#include "lock_free_queue.h"
#include <functional>
 
enum shm_socket_type_t
{
    SHM_SOCKET_STREAM = 1,
    SHM_SOCKET_DGRAM = 2
    
};
 
 
 
typedef struct shm_packet_t {
    int key;
    size_t size;
    void * buf;
    char uuid[64];
 
} shm_packet_t;
 
 
 
 
typedef struct shm_socket_t {
    shm_socket_type_t socket_type;
    // 本地key
    int key;
    bool force_bind;
    pthread_mutex_t mutex;
 
    LockFreeQueue<shm_packet_t> *queue;  //self queue
    LockFreeQueue<shm_packet_t> *remoteQueue; // peer queue
    std::map<std::string, shm_packet_t> recvbuf;
    
 
} shm_socket_t;
 
// typedef void (*recv_callback_fn)(void **sendbuf, int *sendsize);
typedef std::function<void(void **sendbuf, int *sendsize)> recv_callback_fn;
 
size_t shm_socket_remove_keys(int keys[], size_t length);
 
shm_socket_t *shm_open_socket(shm_socket_type_t socket_type);
 
 
int shm_close_socket(shm_socket_t * socket) ;
 
 
int shm_socket_bind(shm_socket_t * socket, int key) ;
 
int shm_socket_force_bind(shm_socket_t * socket, int key) ;
 
/**
 * @flags : BUS_NOWAIT_FLAG
 */
int shm_sendto(shm_socket_t *socket, const void *buf, const int size, const int key, const struct timespec * timeout = NULL, const int flags=0);
 
int shm_recvfrom(shm_socket_t *socket, void **buf, int *size, int *key,  const struct timespec * timeout = NULL,  int flags=0);
 
int shm_sendandrecv(shm_socket_t *socket, const void *send_buf, const int send_size, const int send_key, void **recv_buf, int *recv_size,  
    const struct timespec * timeout = NULL,  int flags = 0);
 
/**
 * @callback  void (*recv_callback_fn)(void **sendbuf, int *sendsize)
 *            sendbuf 和 sendsize是callbak_fn回调函数的返回值, 分别表示发送数据,和发送数据的大小。
 *
 */
int shm_recvandsend(shm_socket_t *sockt, void **recvbuf, int *recvsize, int *key, recv_callback_fn callback,
                    const struct timespec *timeout = NULL, int flag = 0);
 
 
 
 
 
#endif