blob: acf31ff043f3fd8bac98957b52aee79d54523440 [file] [log] [blame]
#ifndef CLIENT_H
#define CLIENT_H
#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <arpa/inet.h>
struct fio_net_cmd;
struct fio_client {
struct flist_head list;
struct flist_head hash_list;
struct flist_head arg_list;
union {
struct sockaddr_in addr;
struct sockaddr_in6 addr6;
struct sockaddr_un addr_un;
};
char *hostname;
int port;
int fd;
char *name;
int state;
int skip_newline;
int is_sock;
int disk_stats_shown;
unsigned int jobs;
int error;
int ipv6;
int sent_job;
struct flist_head eta_list;
struct client_eta *eta_in_flight;
struct flist_head cmd_list;
uint16_t argc;
char **argv;
};
typedef void (*client_text_op_func)(struct fio_client *client,
FILE *f, __u16 pdu_len, const char *buf);
typedef void (*client_disk_util_op_func)(struct fio_client *client, struct fio_net_cmd *cmd);
typedef void (*client_thread_status_op)(struct fio_net_cmd *cmd);
typedef void (*client_group_stats_op)(struct fio_net_cmd *cmd);
typedef void (*client_eta_op)(struct fio_client *client, struct fio_net_cmd *cmd);
typedef void (*client_probe_op)(struct fio_client *client, struct fio_net_cmd *cmd);
typedef void (*client_thread_status_display_op)(char *status_message, double perc);
struct client_ops {
client_text_op_func text_op;
client_disk_util_op_func disk_util;
client_thread_status_op thread_status;
client_group_stats_op group_stats;
client_eta_op eta;
client_probe_op probe;
client_thread_status_display_op thread_status_display;
};
extern struct client_ops fio_client_ops;
#endif