diff dep/animia/src/fd.cc @ 202:71832ffe425a

animia: re-add kvm fd source this is all being merged from my wildly out-of-date laptop. SORRY! in other news, I edited the CI file to install the wayland client as well, so the linux CI build might finally get wayland stuff.
author Paper <paper@paper.us.eu.org>
date Tue, 02 Jan 2024 06:05:06 -0500
parents 8f6f8dd2eb23 bc1ae1810855
children
line wrap: on
line diff
--- a/dep/animia/src/fd.cc	Sun Nov 19 19:13:28 2023 -0500
+++ b/dep/animia/src/fd.cc	Tue Jan 02 06:05:06 2024 -0500
@@ -2,32 +2,76 @@
 
 #ifdef WIN32
 #	include "animia/fd/win32.h"
-#elif defined(LINUX) || defined(FREEBSD)
+#endif
+
+#ifdef LINUX
 #	include "animia/fd/proc.h"
-#elif defined(MACOSX)
+#endif
+
+#ifdef MACOSX
 #	include "animia/fd/xnu.h"
-#elif defined(LIBUTIL)
-#   include "animia/fd/libutil.h"
-#elif defined(LIBKVM)
-#   include "animia/fd/kvm.h"
+#endif
+
+#ifdef LIBUTIL
+#	include "animia/fd/libutil.h"
+#endif
+
+#ifdef LIBKVM
+#	include "animia/fd/kvm.h"
 #endif
 
 namespace animia::internal {
 
+bool EnumerateOpenFiles(const std::set<pid_t>& pids, open_file_proc_t open_file_proc) {
+	bool success = false;
+
 #ifdef WIN32
-win32::Win32FdTools os_fd;
-#elif defined(LINUX) || defined(FREEBSD)
-proc::ProcFdTools os_fd;
-#elif defined(MACOSX)
-xnu::XnuFdTools os_fd;
-#elif defined(LIBUTIL)
-libutil::LibutilFdTools os_fd;
-#elif defined(LIBKVM)
-kvm::KvmFdTools os_fd;
-#else
-BaseFdTools os_fd;
+	success ^= win32::EnumerateOpenFiles(pids, open_file_proc);
+#endif
+
+#ifdef LINUX
+	success ^= proc::EnumerateOpenFiles(pids, open_file_proc);
+#endif
+
+#ifdef MACOSX
+	success ^= xnu::EnumerateOpenFiles(pids, open_file_proc);
+#endif
+
+#ifdef LIBUTIL
+	success ^= libutil::EnumerateOpenFiles(pids, open_file_proc);
+#endif
+
+#ifdef LIBKVM
+	success ^= kvm::EnumerateOpenFiles(pids, open_file_proc);
 #endif
 
-BaseFdTools& fd = os_fd;
+	return success;
+}
+
+bool EnumerateOpenProcesses(process_proc_t process_proc) {
+	bool success = false;
+
+#ifdef WIN32
+	success ^= win32::EnumerateOpenProcesses(process_proc);
+#endif
+
+#ifdef LINUX
+	success ^= proc::EnumerateOpenProcesses(process_proc);
+#endif
+
+#ifdef MACOSX
+	success ^= xnu::EnumerateOpenProcesses(process_proc);
+#endif
+
+#ifdef LIBUTIL
+	success ^= libutil::EnumerateOpenProcesses(process_proc);
+#endif
+
+#ifdef LIBKVM
+	success ^= kvm::EnumerateOpenProcesses(process_proc);
+#endif
+
+	return success;
+}
 
 } // namespace animia::internal