Separate the act of adding and starting a job
[fio.git] / client.h
index 213987ca4511df538ca383082ed6e0b33eea34eb..9157affd294e21cff5e499efc6e3a4d3ea3bca12 100644 (file)
--- a/client.h
+++ b/client.h
 struct fio_net_cmd;
 struct client_ops;
 
+enum {
+       Client_created          = 0,
+       Client_connected        = 1,
+       Client_started          = 2,
+       Client_running          = 3,
+       Client_stopped          = 4,
+       Client_exited           = 5,
+};
+
 struct fio_client {
        struct flist_head list;
        struct flist_head hash_list;
@@ -59,6 +68,7 @@ typedef void (*client_thread_status_display_op)(char *status_message, double per
 typedef void (*client_quit_op)(struct fio_client *);
 typedef void (*client_add_job_op)(struct fio_client *, struct fio_net_cmd *);
 typedef void (*client_timed_out)(struct fio_client *);
+typedef void (*client_stop_op)(struct fio_client *, struct fio_net_cmd *);
 
 struct client_ops {
        client_text_op_func text_op;
@@ -70,6 +80,7 @@ struct client_ops {
        client_quit_op quit;
        client_add_job_op add_job;
        client_timed_out timed_out;
+       client_stop_op stop;
        int stay_connected;
 };
 
@@ -91,6 +102,8 @@ enum {
 };
 
 extern int fio_clients_connect(void);
+extern int fio_start_client(struct fio_client *);
+extern int fio_start_all_clients(void);
 extern int fio_clients_send_ini(const char *);
 extern int fio_handle_clients(struct client_ops *);
 extern int fio_client_add(struct client_ops *, const char *, void **);