gfio: make notebooks scrollable if there are too many
[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 11struct fio_net_cmd;
a5276616 12struct client_ops;
dd366728 13
b9d2f30a
JA
14enum {
15 Client_created = 0,
16 Client_connected = 1,
17 Client_started = 2,
18 Client_running = 3,
19 Client_stopped = 4,
20 Client_exited = 5,
21};
22
0f92bd20
JA
23struct fio_client {
24 struct flist_head list;
25 struct flist_head hash_list;
26 struct flist_head arg_list;
27 union {
28 struct sockaddr_in addr;
29 struct sockaddr_in6 addr6;
30 struct sockaddr_un addr_un;
31 };
32 char *hostname;
33 int port;
34 int fd;
5121a9aa 35 unsigned int refs;
0f92bd20
JA
36
37 char *name;
38
39 int state;
40
41 int skip_newline;
42 int is_sock;
43 int disk_stats_shown;
44 unsigned int jobs;
45 int error;
46 int ipv6;
47 int sent_job;
48
49 struct flist_head eta_list;
50 struct client_eta *eta_in_flight;
51
52 struct flist_head cmd_list;
53
54 uint16_t argc;
55 char **argv;
3ec62ec4 56
a5276616 57 struct client_ops *ops;
3ec62ec4 58 void *client_data;
0f92bd20
JA
59};
60
084d1c6f 61typedef void (*client_text_op_func)(struct fio_client *client, struct fio_net_cmd *cmd);
dd366728 62typedef void (*client_disk_util_op_func)(struct fio_client *client, struct fio_net_cmd *cmd);
89e5fad9
JA
63typedef void (*client_thread_status_op)(struct fio_client *client, struct fio_net_cmd *cmd);
64typedef void (*client_group_stats_op)(struct fio_client *client, struct fio_net_cmd *cmd);
a5276616 65typedef void (*client_eta_op)(struct jobs_eta *je);
2f99deb0 66typedef void (*client_jobs_eta_op)(struct fio_client *client, struct jobs_eta *je);
dd366728 67typedef void (*client_probe_op)(struct fio_client *client, struct fio_net_cmd *cmd);
04cc6b77 68typedef void (*client_thread_status_display_op)(char *status_message, double perc);
3ec62ec4 69typedef void (*client_quit_op)(struct fio_client *);
807f9971 70typedef void (*client_add_job_op)(struct fio_client *, struct fio_net_cmd *);
ed727a46 71typedef void (*client_timed_out)(struct fio_client *);
6b79c80c 72typedef void (*client_stop_op)(struct fio_client *, struct fio_net_cmd *);
3ec62ec4 73
dd366728
SC
74struct client_ops {
75 client_text_op_func text_op;
76 client_disk_util_op_func disk_util;
77 client_thread_status_op thread_status;
78 client_group_stats_op group_stats;
2f99deb0 79 client_jobs_eta_op jobs_eta;
0420ba6a 80 client_eta_op eta;
dd366728 81 client_probe_op probe;
3ec62ec4 82 client_quit_op quit;
807f9971 83 client_add_job_op add_job;
ed727a46 84 client_timed_out timed_out;
6b79c80c 85 client_stop_op stop;
3ec62ec4 86 int stay_connected;
dd366728
SC
87};
88
89extern struct client_ops fio_client_ops;
90
3e47bd25
JA
91struct client_eta {
92 struct jobs_eta eta;
93 unsigned int pending;
94};
95
a5276616
JA
96extern int fio_handle_client(struct fio_client *);
97extern void fio_client_dec_jobs_eta(struct client_eta *eta, client_eta_op fn);
3e47bd25 98extern void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je);
3e47bd25 99
3ec62ec4
JA
100enum {
101 Fio_client_ipv4 = 1,
102 Fio_client_ipv6,
103 Fio_client_socket,
104};
105
2f99deb0 106extern int fio_client_connect(struct fio_client *);
3ec62ec4 107extern int fio_clients_connect(void);
b9d2f30a
JA
108extern int fio_start_client(struct fio_client *);
109extern int fio_start_all_clients(void);
9988ca70 110extern int fio_client_send_ini(struct fio_client *, const char *);
3ec62ec4 111extern int fio_clients_send_ini(const char *);
a5276616
JA
112extern int fio_handle_clients(struct client_ops *);
113extern int fio_client_add(struct client_ops *, const char *, void **);
114extern struct fio_client *fio_client_add_explicit(struct client_ops *, const char *, int, int);
3ec62ec4 115extern void fio_client_add_cmd_option(void *, const char *);
2f99deb0 116extern void fio_client_terminate(struct fio_client *);
df06f220 117extern void fio_clients_terminate(void);
343cb4a9
JA
118extern struct fio_client *fio_get_client(struct fio_client *);
119extern void fio_put_client(struct fio_client *);
df06f220 120
dd366728
SC
121#endif
122