2 * test-fsmonitor-client.c: client code to send commands/requests to
3 * a `git fsmonitor--daemon` daemon.
7 #include "parse-options.h"
8 #include "fsmonitor-ipc.h"
9 #include "read-cache-ll.h"
10 #include "repository.h"
12 #include "thread-utils.h"
16 #ifndef HAVE_FSMONITOR_DAEMON_BACKEND
17 int cmd__fsmonitor_client(int argc UNUSED
, const char **argv UNUSED
)
19 die("fsmonitor--daemon not available on this platform");
24 * Read the `.git/index` to get the last token written to the
25 * FSMonitor Index Extension.
27 static const char *get_token_from_index(void)
29 struct index_state
*istate
= the_repository
->index
;
31 if (do_read_index(istate
, the_repository
->index_file
, 0) < 0)
32 die("unable to read index file");
33 if (!istate
->fsmonitor_last_update
)
34 die("index file does not have fsmonitor extension");
36 return istate
->fsmonitor_last_update
;
40 * Send an IPC query to a `git-fsmonitor--daemon` daemon and
41 * ask for the changes since the given token or from the last
42 * token in the index extension.
44 * This will implicitly start a daemon process if necessary. The
45 * daemon process will persist after we exit.
47 static int do_send_query(const char *token
)
49 struct strbuf answer
= STRBUF_INIT
;
52 if (!token
|| !*token
)
53 token
= get_token_from_index();
55 ret
= fsmonitor_ipc__send_query(token
, &answer
);
57 die("could not query fsmonitor--daemon");
59 write_in_full(1, answer
.buf
, answer
.len
);
60 strbuf_release(&answer
);
66 * Send a "flush" command to the `git-fsmonitor--daemon` (if running)
67 * and tell it to flush its cache.
69 * This feature is primarily used by the test suite to simulate a loss of
70 * sync with the filesystem where we miss kernel events.
72 static int do_send_flush(void)
74 struct strbuf answer
= STRBUF_INIT
;
77 ret
= fsmonitor_ipc__send_command("flush", &answer
);
81 write_in_full(1, answer
.buf
, answer
.len
);
82 strbuf_release(&answer
);
87 struct hammer_thread_data
99 static void *hammer_thread_proc(void *_hammer_thread_data
)
101 struct hammer_thread_data
*data
= _hammer_thread_data
;
102 struct strbuf answer
= STRBUF_INIT
;
106 trace2_thread_start("hammer");
108 for (k
= 0; k
< data
->nr_requests
; k
++) {
109 strbuf_reset(&answer
);
111 ret
= fsmonitor_ipc__send_query(data
->token
, &answer
);
115 data
->sum_successful
++;
118 strbuf_release(&answer
);
119 trace2_thread_exit();
124 * Start a pool of client threads that will each send a series of
125 * commands to the daemon.
127 * The goal is to overload the daemon with a sustained series of
128 * concurrent requests.
130 static int do_hammer(const char *token
, int nr_threads
, int nr_requests
)
132 struct hammer_thread_data
*data
= NULL
;
134 int sum_join_errors
= 0;
135 int sum_commands
= 0;
138 if (!token
|| !*token
)
139 token
= get_token_from_index();
145 CALLOC_ARRAY(data
, nr_threads
);
147 for (k
= 0; k
< nr_threads
; k
++) {
148 struct hammer_thread_data
*p
= &data
[k
];
150 p
->nr_requests
= nr_requests
;
153 if (pthread_create(&p
->pthread_id
, NULL
, hammer_thread_proc
, p
)) {
154 warning("failed to create thread[%d] skipping remainder", k
);
160 for (k
= 0; k
< nr_threads
; k
++) {
161 struct hammer_thread_data
*p
= &data
[k
];
163 if (pthread_join(p
->pthread_id
, NULL
))
165 sum_commands
+= p
->sum_successful
;
166 sum_errors
+= p
->sum_errors
;
169 fprintf(stderr
, "HAMMER: [threads %d][requests %d] [ok %d][err %d][join %d]\n",
170 nr_threads
, nr_requests
, sum_commands
, sum_errors
, sum_join_errors
);
175 * Return an error if any of the _send_query requests failed.
176 * We don't care about thread create/join errors.
178 return sum_errors
> 0;
181 int cmd__fsmonitor_client(int argc
, const char **argv
)
184 const char *token
= NULL
;
188 const char * const fsmonitor_client_usage
[] = {
189 "test-tool fsmonitor-client query [<token>]",
190 "test-tool fsmonitor-client flush",
191 "test-tool fsmonitor-client hammer [<token>] [<threads>] [<requests>]",
195 struct option options
[] = {
196 OPT_STRING(0, "token", &token
, "token",
197 "command token to send to the server"),
199 OPT_INTEGER(0, "threads", &nr_threads
, "number of client threads"),
200 OPT_INTEGER(0, "requests", &nr_requests
, "number of requests per thread"),
205 argc
= parse_options(argc
, argv
, NULL
, options
, fsmonitor_client_usage
, 0);
208 usage_with_options(fsmonitor_client_usage
, options
);
212 setup_git_directory();
214 if (!strcmp(subcmd
, "query"))
215 return !!do_send_query(token
);
217 if (!strcmp(subcmd
, "flush"))
218 return !!do_send_flush();
220 if (!strcmp(subcmd
, "hammer"))
221 return !!do_hammer(token
, nr_threads
, nr_requests
);
223 die("Unhandled subcommand: '%s'", subcmd
);