glusterfs api fadvise support
[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;
1e5324e7 45 unsigned int nr_stat;
0f92bd20 46 int error;
122c7725 47 int signal;
0f92bd20
JA
48 int ipv6;
49 int sent_job;
1e5324e7 50 int did_stat;
46bcd498 51 uint32_t type;
0f92bd20 52
40c60516
JA
53 uint32_t thread_number;
54 uint32_t groupid;
55
0f92bd20
JA
56 struct flist_head eta_list;
57 struct client_eta *eta_in_flight;
58
59 struct flist_head cmd_list;
60
61 uint16_t argc;
62 char **argv;
3ec62ec4 63
a5276616 64 struct client_ops *ops;
3ec62ec4 65 void *client_data;
14ea90ed
JA
66
67 char **ini_file;
68 unsigned int nr_ini_file;
0f92bd20
JA
69};
70
1b42725f 71struct cmd_iolog_pdu;
35c0ba7f
JA
72typedef void (client_cmd_op)(struct fio_client *, struct fio_net_cmd *);
73typedef void (client_eta_op)(struct jobs_eta *je);
74typedef void (client_timed_out_op)(struct fio_client *);
75typedef void (client_jobs_eta_op)(struct fio_client *client, struct jobs_eta *je);
1b42725f 76typedef void (client_iolog_op)(struct fio_client *client, struct cmd_iolog_pdu *);
3ec62ec4 77
dd366728 78struct client_ops {
35c0ba7f
JA
79 client_cmd_op *text;
80 client_cmd_op *disk_util;
81 client_cmd_op *thread_status;
82 client_cmd_op *group_stats;
83 client_jobs_eta_op *jobs_eta;
84 client_eta_op *eta;
85 client_cmd_op *probe;
86 client_cmd_op *quit;
87 client_cmd_op *add_job;
40c60516 88 client_cmd_op *update_job;
35c0ba7f
JA
89 client_timed_out_op *timed_out;
90 client_cmd_op *stop;
91 client_cmd_op *start;
92 client_cmd_op *job_start;
1b42725f 93 client_iolog_op *iolog;
0cf3ece0 94 client_timed_out_op *removed;
35c0ba7f 95
6433ee05 96 unsigned int eta_msec;
3ec62ec4 97 int stay_connected;
46bcd498 98 uint32_t client_type;
dd366728
SC
99};
100
101extern struct client_ops fio_client_ops;
102
3e47bd25 103struct client_eta {
3e47bd25 104 unsigned int pending;
166fb520 105 struct jobs_eta eta;
3e47bd25
JA
106};
107
a5276616
JA
108extern int fio_handle_client(struct fio_client *);
109extern void fio_client_dec_jobs_eta(struct client_eta *eta, client_eta_op fn);
3e47bd25 110extern void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je);
3e47bd25 111
3ec62ec4
JA
112enum {
113 Fio_client_ipv4 = 1,
114 Fio_client_ipv6,
115 Fio_client_socket,
116};
117
2f99deb0 118extern int fio_client_connect(struct fio_client *);
3ec62ec4 119extern int fio_clients_connect(void);
b9d2f30a
JA
120extern int fio_start_client(struct fio_client *);
121extern int fio_start_all_clients(void);
9988ca70 122extern int fio_client_send_ini(struct fio_client *, const char *);
3ec62ec4 123extern int fio_clients_send_ini(const char *);
a5276616
JA
124extern int fio_handle_clients(struct client_ops *);
125extern int fio_client_add(struct client_ops *, const char *, void **);
126extern struct fio_client *fio_client_add_explicit(struct client_ops *, const char *, int, int);
3ec62ec4 127extern void fio_client_add_cmd_option(void *, const char *);
14ea90ed 128extern void fio_client_add_ini_file(void *, const char *);
0cf3ece0 129extern int fio_client_terminate(struct fio_client *);
df06f220 130extern void fio_clients_terminate(void);
343cb4a9
JA
131extern struct fio_client *fio_get_client(struct fio_client *);
132extern void fio_put_client(struct fio_client *);
40c60516
JA
133extern int fio_client_update_options(struct fio_client *, struct thread_options *, uint64_t *);
134extern int fio_client_wait_for_reply(struct fio_client *, uint64_t);
df06f220 135
6433ee05
JA
136#define FIO_CLIENT_DEF_ETA_MSEC 900
137
46bcd498
JA
138enum {
139 FIO_CLIENT_TYPE_CLI = 1,
140 FIO_CLIENT_TYPE_GUI = 2,
141};
142
dd366728
SC
143#endif
144