Message ID | c085fc15b314abcb5e5ca6b4ee5ac54a28327cab.1665326258.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fsmonitor: Implement fsmonitor for Linux | expand |
"Eric DeCosta via GitGitGadget" <gitgitgadget@gmail.com> writes: > diff --git a/Makefile b/Makefile > index feb675a6959..31dd6ab2734 100644 > --- a/Makefile > +++ b/Makefile > @@ -2038,13 +2038,13 @@ endif > ifdef FSMONITOR_DAEMON_BACKEND > COMPAT_CFLAGS += -DHAVE_FSMONITOR_DAEMON_BACKEND > COMPAT_OBJS += compat/fsmonitor/fsm-listen-$(FSMONITOR_DAEMON_BACKEND).o > - COMPAT_OBJS += compat/fsmonitor/fsm-health-$(FSMONITOR_DAEMON_BACKEND).o > - COMPAT_OBJS += compat/fsmonitor/fsm-ipc-$(FSMONITOR_DAEMON_BACKEND).o > + COMPAT_OBJS += compat/fsmonitor/fsm-health-$(FSMONITOR_DAEMON_COMMON).o > + COMPAT_OBJS += compat/fsmonitor/fsm-ipc-$(FSMONITOR_DAEMON_COMMON).o > endif > > ifdef FSMONITOR_OS_SETTINGS > COMPAT_CFLAGS += -DHAVE_FSMONITOR_OS_SETTINGS > - COMPAT_OBJS += compat/fsmonitor/fsm-settings-$(FSMONITOR_OS_SETTINGS).o > + COMPAT_OBJS += compat/fsmonitor/fsm-settings-$(FSMONITOR_DAEMON_COMMON).o > COMPAT_OBJS += compat/fsmonitor/fsm-path-utils-$(FSMONITOR_OS_SETTINGS).o > endif These two look sloppier than the existing "if we have DAEMON_BACKEND defined, then add $(DAEMON_BACKEND).o to the set of objects used". $(DAEMON_COMMON).o should be used after the same kind of check, i.e. +ifdef FSMONITOR_DAEMON_COMMON + COMPAT_OBJS += compat/fsmonitor/fsm-health-$(FSMONITOR_DAEMON_COMMON).o + COMPAT_OBJS += compat/fsmonitor/fsm-ipc-$(FSMONITOR_DAEMON_COMMON).o + COMPAT_OBJS += compat/fsmonitor/fsm-settings-$(FSMONITOR_DAEMON_COMMON).o +endif as a separate if/endif block, without touching the above two, perhaps? > --- a/compat/fsmonitor/fsm-ipc-darwin.c > +++ b/compat/fsmonitor/fsm-ipc-unix.c > @@ -10,7 +10,7 @@ static GIT_PATH_FUNC(fsmonitor_ipc__get_default_path, "fsmonitor--daemon.ipc") > const char *fsmonitor_ipc__get_path(struct repository *r) > { > static const char *ipc_path = NULL; > - SHA_CTX sha1ctx; > + git_SHA_CTX sha1ctx; > char *sock_dir = NULL; > struct strbuf ipc_file = STRBUF_INIT; > unsigned char hash[SHA_DIGEST_LENGTH]; > @@ -28,9 +28,9 @@ const char *fsmonitor_ipc__get_path(struct repository *r) > return ipc_path; > } > > - SHA1_Init(&sha1ctx); > - SHA1_Update(&sha1ctx, r->worktree, strlen(r->worktree)); > - SHA1_Final(hash, &sha1ctx); > + git_SHA1_Init(&sha1ctx); > + git_SHA1_Update(&sha1ctx, r->worktree, strlen(r->worktree)); > + git_SHA1_Final(hash, &sha1ctx); > > repo_config_get_string(r, "fsmonitor.socketdir", &sock_dir); Interesting. The result of course is good, but I wonder how we have been happy to queue the original code that lack git_ prefix in the first place X-<. > diff --git a/config.mak.uname b/config.mak.uname > index d63629fe807..d454cec47c4 100644 > --- a/config.mak.uname > +++ b/config.mak.uname > @@ -68,6 +68,7 @@ ifeq ($(uname_S),Linux) > ifneq ($(findstring .el7.,$(uname_R)),) > BASIC_CFLAGS += -std=c99 > endif > + > endif > ifeq ($(uname_S),GNU/kFreeBSD) > HAVE_ALLOCA_H = YesPlease That's a new blank line in an unexpected place. Did you mean to add it after the outer endif?
On 10/9/22 10:37 AM, Eric DeCosta via GitGitGadget wrote: > From: Eric DeCosta <edecosta@mathworks.com> > > Linux and Mac OS can share some of the code originally developed for Mac OS. > Rename the shared code from compat/fsmonitor/fsm-*-dawrin.c to > compat/fsmonitor/fsm-*-unix.c > > Update the build to enable sharing of the fsm-*-unix.c files. > > Minor update to compat/fsmonitor/fsm-ipc-unix.c to make it cross-platform. I fear that it may be too early to claim that the platform-specific code can truly be shared (at least without some amount of future ifdef'ing). Yes, there are some commonalities, such as our use of Unix domain sockets on Mac and *nix, but there may be other things that are not. So maybe do the rename for the IPC code, but not for the health, for example. Or, keep the platform-named files and add new -unix-common.c files that can be called from the other (or vice versa). > > Signed-off-by: Eric DeCosta <edecosta@mathworks.com> > --- > Makefile | 6 +++--- > .../fsmonitor/{fsm-health-darwin.c => fsm-health-unix.c} | 0 > compat/fsmonitor/{fsm-ipc-darwin.c => fsm-ipc-unix.c} | 8 ++++---- > .../{fsm-settings-darwin.c => fsm-settings-unix.c} | 0 > config.mak.uname | 4 ++++ > contrib/buildsystems/CMakeLists.txt | 6 +++--- > 6 files changed, 14 insertions(+), 10 deletions(-) > rename compat/fsmonitor/{fsm-health-darwin.c => fsm-health-unix.c} (100%) > rename compat/fsmonitor/{fsm-ipc-darwin.c => fsm-ipc-unix.c} (89%) > rename compat/fsmonitor/{fsm-settings-darwin.c => fsm-settings-unix.c} (100%) > > diff --git a/Makefile b/Makefile > index feb675a6959..31dd6ab2734 100644 > --- a/Makefile > +++ b/Makefile > @@ -2038,13 +2038,13 @@ endif > ifdef FSMONITOR_DAEMON_BACKEND > COMPAT_CFLAGS += -DHAVE_FSMONITOR_DAEMON_BACKEND > COMPAT_OBJS += compat/fsmonitor/fsm-listen-$(FSMONITOR_DAEMON_BACKEND).o > - COMPAT_OBJS += compat/fsmonitor/fsm-health-$(FSMONITOR_DAEMON_BACKEND).o > - COMPAT_OBJS += compat/fsmonitor/fsm-ipc-$(FSMONITOR_DAEMON_BACKEND).o > + COMPAT_OBJS += compat/fsmonitor/fsm-health-$(FSMONITOR_DAEMON_COMMON).o > + COMPAT_OBJS += compat/fsmonitor/fsm-ipc-$(FSMONITOR_DAEMON_COMMON).o > endif > > ifdef FSMONITOR_OS_SETTINGS > COMPAT_CFLAGS += -DHAVE_FSMONITOR_OS_SETTINGS > - COMPAT_OBJS += compat/fsmonitor/fsm-settings-$(FSMONITOR_OS_SETTINGS).o > + COMPAT_OBJS += compat/fsmonitor/fsm-settings-$(FSMONITOR_DAEMON_COMMON).o This is wrong. you're mixing the usage of the FSMONITOR_OS_SETTINGS definition and the usage of your new _COMMON definition. And I agree with Junio's comment about grouping the _COMMON ones in their own block and leaving the original COMPAT_OBJS lines as they were. But really, I think the use of that "common" definition is going to cause us problems later on. I mean, you're using it to smash together the ipc, health, and settings code -- because they cluster around the unix sockets and how on unix to tell if something is remote. That grouping may break if a platform needs something else, such as how to behave when running under inetd vs launchctl vs <whatever>, for example. > COMPAT_OBJS += compat/fsmonitor/fsm-path-utils-$(FSMONITOR_OS_SETTINGS).o > endif > > diff --git a/compat/fsmonitor/fsm-health-darwin.c b/compat/fsmonitor/fsm-health-unix.c > similarity index 100% > rename from compat/fsmonitor/fsm-health-darwin.c > rename to compat/fsmonitor/fsm-health-unix.c > diff --git a/compat/fsmonitor/fsm-ipc-darwin.c b/compat/fsmonitor/fsm-ipc-unix.c > similarity index 89% > rename from compat/fsmonitor/fsm-ipc-darwin.c > rename to compat/fsmonitor/fsm-ipc-unix.c > index ce843d63348..3ba3b9e17ed 100644 > --- a/compat/fsmonitor/fsm-ipc-darwin.c > +++ b/compat/fsmonitor/fsm-ipc-unix.c > @@ -10,7 +10,7 @@ static GIT_PATH_FUNC(fsmonitor_ipc__get_default_path, "fsmonitor--daemon.ipc") > const char *fsmonitor_ipc__get_path(struct repository *r) > { > static const char *ipc_path = NULL; > - SHA_CTX sha1ctx; > + git_SHA_CTX sha1ctx; Could we put these in a separate commit. They're not related to the file renaming focus of this commit. > char *sock_dir = NULL; > struct strbuf ipc_file = STRBUF_INIT; > unsigned char hash[SHA_DIGEST_LENGTH]; > @@ -28,9 +28,9 @@ const char *fsmonitor_ipc__get_path(struct repository *r) > return ipc_path; > } > > - SHA1_Init(&sha1ctx); > - SHA1_Update(&sha1ctx, r->worktree, strlen(r->worktree)); > - SHA1_Final(hash, &sha1ctx); > + git_SHA1_Init(&sha1ctx); > + git_SHA1_Update(&sha1ctx, r->worktree, strlen(r->worktree)); > + git_SHA1_Final(hash, &sha1ctx); > > repo_config_get_string(r, "fsmonitor.socketdir", &sock_dir); > > diff --git a/compat/fsmonitor/fsm-settings-darwin.c b/compat/fsmonitor/fsm-settings-unix.c > similarity index 100% > rename from compat/fsmonitor/fsm-settings-darwin.c > rename to compat/fsmonitor/fsm-settings-unix.c > diff --git a/config.mak.uname b/config.mak.uname > index d63629fe807..d454cec47c4 100644 > --- a/config.mak.uname > +++ b/config.mak.uname > @@ -68,6 +68,7 @@ ifeq ($(uname_S),Linux) > ifneq ($(findstring .el7.,$(uname_R)),) > BASIC_CFLAGS += -std=c99 > endif > + > endif > ifeq ($(uname_S),GNU/kFreeBSD) > HAVE_ALLOCA_H = YesPlease > @@ -165,6 +166,7 @@ ifeq ($(uname_S),Darwin) > ifndef NO_UNIX_SOCKETS > FSMONITOR_DAEMON_BACKEND = darwin > FSMONITOR_OS_SETTINGS = darwin > + FSMONITOR_DAEMON_COMMON = unix > endif > endif > > @@ -453,6 +455,7 @@ ifeq ($(uname_S),Windows) > # support it. > FSMONITOR_DAEMON_BACKEND = win32 > FSMONITOR_OS_SETTINGS = win32 > + FSMONITOR_DAEMON_COMMON = win32 > > NO_SVN_TESTS = YesPlease > RUNTIME_PREFIX = YesPlease > @@ -645,6 +648,7 @@ ifeq ($(uname_S),MINGW) > # support it. > FSMONITOR_DAEMON_BACKEND = win32 > FSMONITOR_OS_SETTINGS = win32 > + FSMONITOR_DAEMON_COMMON = win32 > > RUNTIME_PREFIX = YesPlease > HAVE_WPGMPTR = YesWeDo > diff --git a/contrib/buildsystems/CMakeLists.txt b/contrib/buildsystems/CMakeLists.txt > index 787738e6fa3..0b26a1a36e3 100644 > --- a/contrib/buildsystems/CMakeLists.txt > +++ b/contrib/buildsystems/CMakeLists.txt > @@ -315,13 +315,13 @@ if(SUPPORTS_SIMPLE_IPC) > list(APPEND compat_SOURCES compat/fsmonitor/fsm-settings-win32.c) > elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") > add_compile_definitions(HAVE_FSMONITOR_DAEMON_BACKEND) > + list(APPEND compat_SOURCES compat/fsmonitor/fsm-ipc-unix.c) > + list(APPEND compat_SOURCES compat/fsmonitor/fsm-health-unix.c) > list(APPEND compat_SOURCES compat/fsmonitor/fsm-listen-darwin.c) > - list(APPEND compat_SOURCES compat/fsmonitor/fsm-health-darwin.c) > - list(APPEND compat_SOURCES compat/fsmonitor/fsm-ipc-darwin.c) > list(APPEND compat_SOURCES compat/fsmonitor/fsm-path-utils-darwin.c) > > add_compile_definitions(HAVE_FSMONITOR_OS_SETTINGS) > - list(APPEND compat_SOURCES compat/fsmonitor/fsm-settings-darwin.c) > + list(APPEND compat_SOURCES compat/fsmonitor/fsm-settings-unix.c) > endif() > endif() > >
diff --git a/Makefile b/Makefile index feb675a6959..31dd6ab2734 100644 --- a/Makefile +++ b/Makefile @@ -2038,13 +2038,13 @@ endif ifdef FSMONITOR_DAEMON_BACKEND COMPAT_CFLAGS += -DHAVE_FSMONITOR_DAEMON_BACKEND COMPAT_OBJS += compat/fsmonitor/fsm-listen-$(FSMONITOR_DAEMON_BACKEND).o - COMPAT_OBJS += compat/fsmonitor/fsm-health-$(FSMONITOR_DAEMON_BACKEND).o - COMPAT_OBJS += compat/fsmonitor/fsm-ipc-$(FSMONITOR_DAEMON_BACKEND).o + COMPAT_OBJS += compat/fsmonitor/fsm-health-$(FSMONITOR_DAEMON_COMMON).o + COMPAT_OBJS += compat/fsmonitor/fsm-ipc-$(FSMONITOR_DAEMON_COMMON).o endif ifdef FSMONITOR_OS_SETTINGS COMPAT_CFLAGS += -DHAVE_FSMONITOR_OS_SETTINGS - COMPAT_OBJS += compat/fsmonitor/fsm-settings-$(FSMONITOR_OS_SETTINGS).o + COMPAT_OBJS += compat/fsmonitor/fsm-settings-$(FSMONITOR_DAEMON_COMMON).o COMPAT_OBJS += compat/fsmonitor/fsm-path-utils-$(FSMONITOR_OS_SETTINGS).o endif diff --git a/compat/fsmonitor/fsm-health-darwin.c b/compat/fsmonitor/fsm-health-unix.c similarity index 100% rename from compat/fsmonitor/fsm-health-darwin.c rename to compat/fsmonitor/fsm-health-unix.c diff --git a/compat/fsmonitor/fsm-ipc-darwin.c b/compat/fsmonitor/fsm-ipc-unix.c similarity index 89% rename from compat/fsmonitor/fsm-ipc-darwin.c rename to compat/fsmonitor/fsm-ipc-unix.c index ce843d63348..3ba3b9e17ed 100644 --- a/compat/fsmonitor/fsm-ipc-darwin.c +++ b/compat/fsmonitor/fsm-ipc-unix.c @@ -10,7 +10,7 @@ static GIT_PATH_FUNC(fsmonitor_ipc__get_default_path, "fsmonitor--daemon.ipc") const char *fsmonitor_ipc__get_path(struct repository *r) { static const char *ipc_path = NULL; - SHA_CTX sha1ctx; + git_SHA_CTX sha1ctx; char *sock_dir = NULL; struct strbuf ipc_file = STRBUF_INIT; unsigned char hash[SHA_DIGEST_LENGTH]; @@ -28,9 +28,9 @@ const char *fsmonitor_ipc__get_path(struct repository *r) return ipc_path; } - SHA1_Init(&sha1ctx); - SHA1_Update(&sha1ctx, r->worktree, strlen(r->worktree)); - SHA1_Final(hash, &sha1ctx); + git_SHA1_Init(&sha1ctx); + git_SHA1_Update(&sha1ctx, r->worktree, strlen(r->worktree)); + git_SHA1_Final(hash, &sha1ctx); repo_config_get_string(r, "fsmonitor.socketdir", &sock_dir); diff --git a/compat/fsmonitor/fsm-settings-darwin.c b/compat/fsmonitor/fsm-settings-unix.c similarity index 100% rename from compat/fsmonitor/fsm-settings-darwin.c rename to compat/fsmonitor/fsm-settings-unix.c diff --git a/config.mak.uname b/config.mak.uname index d63629fe807..d454cec47c4 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -68,6 +68,7 @@ ifeq ($(uname_S),Linux) ifneq ($(findstring .el7.,$(uname_R)),) BASIC_CFLAGS += -std=c99 endif + endif ifeq ($(uname_S),GNU/kFreeBSD) HAVE_ALLOCA_H = YesPlease @@ -165,6 +166,7 @@ ifeq ($(uname_S),Darwin) ifndef NO_UNIX_SOCKETS FSMONITOR_DAEMON_BACKEND = darwin FSMONITOR_OS_SETTINGS = darwin + FSMONITOR_DAEMON_COMMON = unix endif endif @@ -453,6 +455,7 @@ ifeq ($(uname_S),Windows) # support it. FSMONITOR_DAEMON_BACKEND = win32 FSMONITOR_OS_SETTINGS = win32 + FSMONITOR_DAEMON_COMMON = win32 NO_SVN_TESTS = YesPlease RUNTIME_PREFIX = YesPlease @@ -645,6 +648,7 @@ ifeq ($(uname_S),MINGW) # support it. FSMONITOR_DAEMON_BACKEND = win32 FSMONITOR_OS_SETTINGS = win32 + FSMONITOR_DAEMON_COMMON = win32 RUNTIME_PREFIX = YesPlease HAVE_WPGMPTR = YesWeDo diff --git a/contrib/buildsystems/CMakeLists.txt b/contrib/buildsystems/CMakeLists.txt index 787738e6fa3..0b26a1a36e3 100644 --- a/contrib/buildsystems/CMakeLists.txt +++ b/contrib/buildsystems/CMakeLists.txt @@ -315,13 +315,13 @@ if(SUPPORTS_SIMPLE_IPC) list(APPEND compat_SOURCES compat/fsmonitor/fsm-settings-win32.c) elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") add_compile_definitions(HAVE_FSMONITOR_DAEMON_BACKEND) + list(APPEND compat_SOURCES compat/fsmonitor/fsm-ipc-unix.c) + list(APPEND compat_SOURCES compat/fsmonitor/fsm-health-unix.c) list(APPEND compat_SOURCES compat/fsmonitor/fsm-listen-darwin.c) - list(APPEND compat_SOURCES compat/fsmonitor/fsm-health-darwin.c) - list(APPEND compat_SOURCES compat/fsmonitor/fsm-ipc-darwin.c) list(APPEND compat_SOURCES compat/fsmonitor/fsm-path-utils-darwin.c) add_compile_definitions(HAVE_FSMONITOR_OS_SETTINGS) - list(APPEND compat_SOURCES compat/fsmonitor/fsm-settings-darwin.c) + list(APPEND compat_SOURCES compat/fsmonitor/fsm-settings-unix.c) endif() endif()