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