]> git.ipfire.org Git - thirdparty/git.git/commit - fsmonitor--daemon.h
fsmonitor--daemon: stub in health thread
authorJeff Hostetler <jeffhost@microsoft.com>
Thu, 26 May 2022 21:47:10 +0000 (21:47 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 26 May 2022 22:59:27 +0000 (15:59 -0700)
commitd06055501b0d31c417f8cbd237efb48065256d83
tree77f532e9788611f1eb3db2125e286c732e7092d7
parent207534e423d95861c27444d4cf9760bf16edc6c8
fsmonitor--daemon: stub in health thread

Create another thread to watch over the daemon process and
automatically shut it down if necessary.

This commit creates the basic framework for a "health" thread
to monitor the daemon and/or the file system.  Later commits
will add platform-specific code to do the actual work.

The "health" thread is intended to monitor conditions that
would be difficult to track inside the IPC thread pool and/or
the file system listener threads.  For example, when there are
file system events outside of the watched worktree root or if
we want to have an idle-timeout auto-shutdown feature.

This commit creates the health thread itself, defines the thread-proc
and sets up the thread's event loop.  It integrates this new thread
into the existing IPC and Listener thread models.

This commit defines the API to the platform-specific code where all of
the monitoring will actually happen.

The platform-specific code for MacOS is just stubs.  Meaning that the
health thread will immediately exit on MacOS, but that is OK and
expected.  Future work can define MacOS-specific monitoring.

The platform-specific code for Windows sets up enough of the
WaitForMultipleObjects() machinery to watch for system and/or custom
events.  Currently, the set of wait handles only includes our custom
shutdown event (sent from our other theads).  Later commits in this
series will extend the set of wait handles to monitor other
conditions.

Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile
builtin/fsmonitor--daemon.c
compat/fsmonitor/fsm-health-darwin.c [new file with mode: 0644]
compat/fsmonitor/fsm-health-win32.c [new file with mode: 0644]
compat/fsmonitor/fsm-health.h [new file with mode: 0644]
contrib/buildsystems/CMakeLists.txt
fsmonitor--daemon.h