gfio: ignore group stats for now
[fio.git] / client.h
1 #ifndef CLIENT_H
2 #define CLIENT_H
3
4 #include <sys/socket.h>
5 #include <sys/un.h>
6 #include <netinet/in.h>
7 #include <arpa/inet.h>
8
9 #include "stat.h"
10
11 struct fio_net_cmd;
12 struct client_ops;
13
14 enum {
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
23 struct 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;
35         unsigned int refs;
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;
56
57         struct client_ops *ops;
58         void *client_data;
59 };
60
61 typedef void (*client_text_op_func)(struct fio_client *client, struct fio_net_cmd *cmd);
62 typedef void (*client_disk_util_op_func)(struct fio_client *client, struct fio_net_cmd *cmd);
63 typedef void (*client_thread_status_op)(struct fio_client *client, struct fio_net_cmd *cmd);
64 typedef void (*client_group_stats_op)(struct fio_client *client, struct fio_net_cmd *cmd);
65 typedef void (*client_eta_op)(struct jobs_eta *je);
66 typedef void (*client_probe_op)(struct fio_client *client, struct fio_net_cmd *cmd);
67 typedef void (*client_thread_status_display_op)(char *status_message, double perc);
68 typedef void (*client_quit_op)(struct fio_client *);
69 typedef void (*client_add_job_op)(struct fio_client *, struct fio_net_cmd *);
70 typedef void (*client_timed_out)(struct fio_client *);
71 typedef void (*client_stop_op)(struct fio_client *, struct fio_net_cmd *);
72
73 struct client_ops {
74         client_text_op_func text_op;
75         client_disk_util_op_func disk_util;
76         client_thread_status_op thread_status;
77         client_group_stats_op group_stats;
78         client_eta_op eta;
79         client_probe_op probe;
80         client_quit_op quit;
81         client_add_job_op add_job;
82         client_timed_out timed_out;
83         client_stop_op stop;
84         int stay_connected;
85 };
86
87 extern struct client_ops fio_client_ops;
88
89 struct client_eta {
90         struct jobs_eta eta;
91         unsigned int pending;
92 };
93
94 extern int fio_handle_client(struct fio_client *);
95 extern void fio_client_dec_jobs_eta(struct client_eta *eta, client_eta_op fn);
96 extern void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je);
97
98 enum {
99         Fio_client_ipv4 = 1,
100         Fio_client_ipv6,
101         Fio_client_socket,
102 };
103
104 extern int fio_clients_connect(void);
105 extern int fio_start_client(struct fio_client *);
106 extern int fio_start_all_clients(void);
107 extern int fio_clients_send_ini(const char *);
108 extern int fio_handle_clients(struct client_ops *);
109 extern int fio_client_add(struct client_ops *, const char *, void **);
110 extern struct fio_client *fio_client_add_explicit(struct client_ops *, const char *, int, int);
111 extern void fio_client_add_cmd_option(void *, const char *);
112 extern void fio_clients_terminate(void);
113
114 #endif
115