-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnet_io.h
142 lines (123 loc) · 4.54 KB
/
net_io.h
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Part of readsb, a Mode-S/ADSB/TIS message decoder.
//
// net_io.h: network handling.
//
// Copyright (c) 2019 Michael Wolf <[email protected]>
//
// This code is based on a detached fork of dump1090-fa.
//
// Copyright (c) 2014,2015 Oliver Jowett <[email protected]>
//
// This file is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// This file is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef NETIO_H
#define NETIO_H
#include <sys/socket.h>
// Describes a networking service (group of connections)
struct aircraft;
struct modesMessage;
struct client;
struct net_service;
typedef int (*read_fn)(struct client *, char *, int);
typedef void (*heartbeat_fn)(struct net_service *);
typedef enum
{
READ_MODE_IGNORE,
READ_MODE_BEAST,
READ_MODE_BEAST_COMMAND,
READ_MODE_ASCII
} read_mode_t;
/* Data mode to feed push server */
typedef enum
{
PUSH_MODE_RAW,
PUSH_MODE_BEAST,
PUSH_MODE_SBS,
} push_mode_t;
// Describes one network service (a group of clients with common behaviour)
struct net_service
{
int listener_count; // number of listeners
int pusher_count; // Number of push servers connected to
int connections; // number of active clients
int serial_service; // 1 if this is a service for serial devices
read_mode_t read_mode;
read_fn read_handler;
struct net_writer *writer; // shared writer state
struct net_service* next;
int *listener_fds; // listening FDs
const char *read_sep; // hander details for input data
const char *descr;
};
// Client connection
struct net_connector
{
char *address;
char *port;
char *protocol;
struct net_service *service;
int connected;
};
// Structure used to describe a networking client
struct client
{
struct net_service *service; // Service this client is part of
struct client* next; // Pointer to next client
int fd; // File descriptor
int buflen; // Amount of data on buffer
int modeac_requested; // 1 if this Beast output connection has asked for A/C
uint64_t last_receive;
uint64_t last_flush;
uint64_t last_send;
char buf[MODES_CLIENT_BUF_SIZE + 4]; // Read buffer+padding
void *sendq; // Write buffer - allocated later
int sendq_len; // Amount of data in SendQ
int sendq_max; // Max size of SendQ
struct sockaddr_storage ss; // Network socket address info
char hostport[31]; // For logging
struct net_connector *con;
};
// Common writer state for all output sockets of one type
struct net_writer
{
void *data; // shared write buffer, sized MODES_OUT_BUF_SIZE
int dataUsed; // number of bytes of write buffer currently used
#if !defined(__arm__)
uint32_t padding;
#endif
struct net_service *service; // owning service
heartbeat_fn send_heartbeat; // function that queues a heartbeat if needed
uint64_t lastWrite; // time of last write to clients
};
struct net_service *serviceInit (const char *descr, struct net_writer *writer, heartbeat_fn hb_handler, read_mode_t mode, const char *sep, read_fn read_handler);
struct client *serviceConnect(struct net_connector *con);
void serviceListen (struct net_service *service, char *bind_addr, char *bind_ports);
struct client *createSocketClient (struct net_service *service, int fd);
struct client *createGenericClient (struct net_service *service, int fd);
// viewadsb want to create these itselves
struct net_service *makeBeastInputService (void);
struct net_service *makeFatsvOutputService (void);
void sendBeastSettings (struct client *c, const char *settings);
void modesInitNet (void);
void modesQueueOutput (struct modesMessage *mm, struct aircraft *a);
void modesNetPeriodicWork (void);
void modesReadSerialClient(void);
// TODO: move these somewhere else
char *generateAircraftJson (const char *url_path, int *len);
char *generateStatsJson (const char *url_path, int *len);
char *generateReceiverJson (const char *url_path, int *len);
char *generateHistoryJson (const char *url_path, int *len);
void writeJsonToFile (const char *file, char * (*generator) (const char *, int*));
char *generateVRS(const char *url_path, int *len);
void writeJsonToNet(struct net_writer *writer, char * (*generator) (const char *, int*));
#endif