blob: 341d26069449a94f4b95ecaa69b0cb16e472ebed [file] [log] [blame]
Stephen M. Camerondd366722012-02-24 08:17:30 +01001#ifndef CLIENT_H
2#define CLIENT_H
3
Jens Axboe0f92bd22012-02-29 11:44:34 +01004#include <sys/socket.h>
5#include <sys/un.h>
6#include <netinet/in.h>
7#include <arpa/inet.h>
8
Jens Axboe3e47bd22012-02-29 13:45:02 +01009#include "stat.h"
10
Stephen M. Camerondd366722012-02-24 08:17:30 +010011struct fio_net_cmd;
Jens Axboea5276612012-03-04 15:15:08 +010012struct client_ops;
Stephen M. Camerondd366722012-02-24 08:17:30 +010013
Jens Axboeb9d2f302012-03-08 20:36:28 +010014enum {
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
Jens Axboe0f92bd22012-02-29 11:44:34 +010023struct 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;
Jens Axboe5121a9a2012-03-05 13:32:47 +010035 unsigned int refs;
Jens Axboe0f92bd22012-02-29 11:44:34 +010036
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;
Jens Axboe122c7722012-03-19 09:13:15 +010046 int signal;
Jens Axboe0f92bd22012-02-29 11:44:34 +010047 int ipv6;
48 int sent_job;
Jens Axboe46bcd492012-03-14 11:31:21 +010049 uint32_t type;
Jens Axboe0f92bd22012-02-29 11:44:34 +010050
Jens Axboe40c60512012-03-27 16:03:04 +020051 uint32_t thread_number;
52 uint32_t groupid;
53
Jens Axboe0f92bd22012-02-29 11:44:34 +010054 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;
Jens Axboe3ec62ec2012-03-01 12:01:29 +010061
Jens Axboea5276612012-03-04 15:15:08 +010062 struct client_ops *ops;
Jens Axboe3ec62ec2012-03-01 12:01:29 +010063 void *client_data;
Jens Axboe14ea90e2012-08-26 17:33:34 +020064
65 char **ini_file;
66 unsigned int nr_ini_file;
Jens Axboe0f92bd22012-02-29 11:44:34 +010067};
68
Jens Axboe1b427252012-03-14 15:03:03 +010069struct cmd_iolog_pdu;
Jens Axboe35c0ba72012-03-14 10:56:40 +010070typedef 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);
Jens Axboe1b427252012-03-14 15:03:03 +010074typedef void (client_iolog_op)(struct fio_client *client, struct cmd_iolog_pdu *);
Jens Axboe3ec62ec2012-03-01 12:01:29 +010075
Stephen M. Camerondd366722012-02-24 08:17:30 +010076struct client_ops {
Jens Axboe35c0ba72012-03-14 10:56:40 +010077 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;
Jens Axboe40c60512012-03-27 16:03:04 +020086 client_cmd_op *update_job;
Jens Axboe35c0ba72012-03-14 10:56:40 +010087 client_timed_out_op *timed_out;
88 client_cmd_op *stop;
89 client_cmd_op *start;
90 client_cmd_op *job_start;
Jens Axboe1b427252012-03-14 15:03:03 +010091 client_iolog_op *iolog;
Jens Axboe0cf3ece2012-03-21 10:15:20 +010092 client_timed_out_op *removed;
Jens Axboe35c0ba72012-03-14 10:56:40 +010093
Jens Axboe6433ee02012-03-09 20:10:51 +010094 unsigned int eta_msec;
Jens Axboe3ec62ec2012-03-01 12:01:29 +010095 int stay_connected;
Jens Axboe46bcd492012-03-14 11:31:21 +010096 uint32_t client_type;
Stephen M. Camerondd366722012-02-24 08:17:30 +010097};
98
99extern struct client_ops fio_client_ops;
100
Jens Axboe3e47bd22012-02-29 13:45:02 +0100101struct client_eta {
102 struct jobs_eta eta;
103 unsigned int pending;
104};
105
Jens Axboea5276612012-03-04 15:15:08 +0100106extern int fio_handle_client(struct fio_client *);
107extern void fio_client_dec_jobs_eta(struct client_eta *eta, client_eta_op fn);
Jens Axboe3e47bd22012-02-29 13:45:02 +0100108extern void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je);
Jens Axboe3e47bd22012-02-29 13:45:02 +0100109
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100110enum {
111 Fio_client_ipv4 = 1,
112 Fio_client_ipv6,
113 Fio_client_socket,
114};
115
Jens Axboe2f99deb2012-03-09 14:37:29 +0100116extern int fio_client_connect(struct fio_client *);
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100117extern int fio_clients_connect(void);
Jens Axboeb9d2f302012-03-08 20:36:28 +0100118extern int fio_start_client(struct fio_client *);
119extern int fio_start_all_clients(void);
Jens Axboe9988ca72012-03-09 15:14:06 +0100120extern int fio_client_send_ini(struct fio_client *, const char *);
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100121extern int fio_clients_send_ini(const char *);
Jens Axboea5276612012-03-04 15:15:08 +0100122extern 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);
Jens Axboe3ec62ec2012-03-01 12:01:29 +0100125extern void fio_client_add_cmd_option(void *, const char *);
Jens Axboe14ea90e2012-08-26 17:33:34 +0200126extern void fio_client_add_ini_file(void *, const char *);
Jens Axboe0cf3ece2012-03-21 10:15:20 +0100127extern int fio_client_terminate(struct fio_client *);
Jens Axboedf06f222012-03-02 13:32:04 +0100128extern void fio_clients_terminate(void);
Jens Axboe343cb4a2012-03-09 17:16:51 +0100129extern struct fio_client *fio_get_client(struct fio_client *);
130extern void fio_put_client(struct fio_client *);
Jens Axboe40c60512012-03-27 16:03:04 +0200131extern 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);
Jens Axboedf06f222012-03-02 13:32:04 +0100133
Jens Axboe6433ee02012-03-09 20:10:51 +0100134#define FIO_CLIENT_DEF_ETA_MSEC 900
135
Jens Axboe46bcd492012-03-14 11:31:21 +0100136enum {
137 FIO_CLIENT_TYPE_CLI = 1,
138 FIO_CLIENT_TYPE_GUI = 2,
139};
140
Stephen M. Camerondd366722012-02-24 08:17:30 +0100141#endif
142