Add new net command for text logging
[fio.git] / client.h
CommitLineData
dd366728
SC
1#ifndef CLIENT_H
2#define CLIENT_H
3
0f92bd20
JA
4#include <sys/socket.h>
5#include <sys/un.h>
6#include <netinet/in.h>
7#include <arpa/inet.h>
8
3e47bd25
JA
9#include "stat.h"
10
dd366728
SC
11struct fio_net_cmd;
12
0f92bd20
JA
13struct fio_client {
14 struct flist_head list;
15 struct flist_head hash_list;
16 struct flist_head arg_list;
17 union {
18 struct sockaddr_in addr;
19 struct sockaddr_in6 addr6;
20 struct sockaddr_un addr_un;
21 };
22 char *hostname;
23 int port;
24 int fd;
25
26 char *name;
27
28 int state;
29
30 int skip_newline;
31 int is_sock;
32 int disk_stats_shown;
33 unsigned int jobs;
34 int error;
35 int ipv6;
36 int sent_job;
37
38 struct flist_head eta_list;
39 struct client_eta *eta_in_flight;
40
41 struct flist_head cmd_list;
42
43 uint16_t argc;
44 char **argv;
3ec62ec4
JA
45
46 void *client_data;
0f92bd20
JA
47};
48
084d1c6f 49typedef void (*client_text_op_func)(struct fio_client *client, struct fio_net_cmd *cmd);
dd366728 50typedef void (*client_disk_util_op_func)(struct fio_client *client, struct fio_net_cmd *cmd);
dd366728 51typedef void (*client_thread_status_op)(struct fio_net_cmd *cmd);
dd366728 52typedef void (*client_group_stats_op)(struct fio_net_cmd *cmd);
dd366728 53typedef void (*client_eta_op)(struct fio_client *client, struct fio_net_cmd *cmd);
dd366728 54typedef void (*client_probe_op)(struct fio_client *client, struct fio_net_cmd *cmd);
04cc6b77 55typedef void (*client_thread_status_display_op)(char *status_message, double perc);
3ec62ec4 56typedef void (*client_quit_op)(struct fio_client *);
807f9971 57typedef void (*client_add_job_op)(struct fio_client *, struct fio_net_cmd *);
ed727a46 58typedef void (*client_timed_out)(struct fio_client *);
3ec62ec4 59
dd366728
SC
60struct client_ops {
61 client_text_op_func text_op;
62 client_disk_util_op_func disk_util;
63 client_thread_status_op thread_status;
64 client_group_stats_op group_stats;
0420ba6a 65 client_eta_op eta;
dd366728 66 client_probe_op probe;
3ec62ec4 67 client_quit_op quit;
807f9971 68 client_add_job_op add_job;
ed727a46 69 client_timed_out timed_out;
3ec62ec4 70 int stay_connected;
dd366728
SC
71};
72
73extern struct client_ops fio_client_ops;
74
3e47bd25
JA
75struct client_eta {
76 struct jobs_eta eta;
77 unsigned int pending;
78};
79
80extern int fio_handle_client(struct fio_client *, struct client_ops *ops);
81extern void fio_client_dec_jobs_eta(struct client_eta *eta, void (*fn)(struct jobs_eta *));
82extern void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je);
83extern void fio_client_convert_jobs_eta(struct jobs_eta *je);
84
3ec62ec4
JA
85enum {
86 Fio_client_ipv4 = 1,
87 Fio_client_ipv6,
88 Fio_client_socket,
89};
90
91extern int fio_clients_connect(void);
92extern int fio_clients_send_ini(const char *);
93extern int fio_handle_clients(struct client_ops *ops);
94extern int fio_client_add(const char *, void **);
95extern struct fio_client *fio_client_add_explicit(const char *, int, int);
96extern void fio_client_add_cmd_option(void *, const char *);
df06f220
JA
97extern void fio_clients_terminate(void);
98
dd366728
SC
99#endif
100