view dep/animia/src/fd.cc @ 198:bc1ae1810855

dep/animia: switch from using classes to global functions the old idea was ok, but sort of hackish; this method doesn't use classes at all, and this way (especially important!) we can do wayland stuff AND x11 at the same time, which wasn't really possible without stupid workarounds in the other method
author Paper <mrpapersonic@gmail.com>
date Sun, 24 Dec 2023 02:59:42 -0500
parents 54c5d80a737e
children 71832ffe425a
line wrap: on
line source

#include "animia/fd.h"

#ifdef WIN32
#	include "animia/fd/win32.h"
#endif

#ifdef LINUX
#	include "animia/fd/proc.h"
#endif

#ifdef MACOSX
#	include "animia/fd/xnu.h"
#endif

#ifdef LIBUTIL
#	include "animia/fd/libutil.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
	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

	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

	return success;
}

} // namespace animia::internal