Files
FlaxEngine/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.cpp
2025-01-24 12:53:56 +01:00

228 lines
8.3 KiB
C++

// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
#if PLATFORM_LINUX
#include "LinuxFileSystemWatcher.h"
#include "Engine/Platform/CriticalSection.h"
#include "Engine/Platform/Thread.h"
#include "Engine/Threading/ThreadSpawner.h"
#include "Engine/Core/Log.h"
#include "Engine/Core/Math/Math.h"
#include "Engine/Core/Collections/Dictionary.h"
#include "Engine/Core/Types/Pair.h"
#include "Engine/Utilities/StringConverter.h"
#include <dirent.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/inotify.h>
namespace FileSystemWatchers
{
CriticalSection Locker;
int32 Count = 0;
Dictionary<int, LinuxFileSystemWatcher*> RootWatchers;
Dictionary<int, Pair<int, Pair<String, LinuxFileSystemWatcher*>>> Watchers;
LinuxThread* Thread = nullptr;
bool ThreadActive;
int WacherFileDescriptor;
constexpr int EVENT_SIZE = sizeof(inotify_event);
constexpr int BUF_LEN = 1024 * (EVENT_SIZE + 16);
void AddDirWatcher(const int rootFileDesc, const String& path);
void DeleteDirWatcher(const int parentWacherFileDesc, String& dirName);
LinuxFileSystemWatcher* GetRootWatcher(int watcherFileDesc);
int32 Run()
{
char buffer[BUF_LEN];
fd_set set;
timeval timeout;
while (ThreadActive)
{
FD_ZERO(&set);
FD_SET(WacherFileDescriptor, &set);
timeout.tv_sec = 0;
timeout.tv_usec = 10000;
int retVal = select(WacherFileDescriptor + 1, &set, NULL, NULL, &timeout);
if(retVal == -1)
LOG(Error, "WacherFileDescriptor select failed.");
else if(retVal == 0)
{
continue;
}
else
{
int length = read(WacherFileDescriptor, buffer, BUF_LEN);
if (length < 0)
{
return 0;
LOG(Error, "Failed to read WacherFileDescriptor.");
}
int event_offset = 0;
while (event_offset < length)
{
LinuxFileSystemWatcher* watcher;
auto action = FileSystemAction::Unknown;
inotify_event* event = reinterpret_cast<inotify_event*>(&buffer[ event_offset ]);
if (event->len)
{
auto wacher = Watchers[event->wd];
String name(event->name);
if (event->mask & IN_CREATE)
{
if (event->mask & IN_ISDIR)
{
AddDirWatcher(GetRootWatcher(event->wd)->GetWachedDirectoryDescriptor(), wacher.Second.First / name);
}
else
{
GetRootWatcher(event->wd)->OnEvent(name, FileSystemAction::Create);
}
}
else if (event->mask & IN_DELETE)
{
if (event->mask & IN_ISDIR)
{
DeleteDirWatcher(event->wd, name);
}
else
{
GetRootWatcher(event->wd)->OnEvent(name, FileSystemAction::Delete);
}
}
else if (event->mask & IN_MODIFY)
{
if (event->mask & IN_ISDIR)
{
}
else
{
GetRootWatcher(event->wd)->OnEvent(name, FileSystemAction::Modify);
}
}
}
event_offset += EVENT_SIZE + event->len;
}
}
}
return 0;
}
void AddSubDirWatcher(const int rootFileDesc, const String& path)
{
DIR *dir;
struct dirent *entry;
const StringAsANSI<250> pathAnsi(*path, path.Length());
if (!(dir = opendir(pathAnsi.Get())))
return;
while ((entry = readdir(dir)) != NULL)
{
if (entry->d_type == DT_DIR)
{
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
continue;
AddDirWatcher(rootFileDesc, path / String(entry->d_name));
}
}
closedir(dir);
};
LinuxFileSystemWatcher* GetRootWatcher(int watcherFileDesc)
{
if (RootWatchers.ContainsKey(watcherFileDesc)) return RootWatchers[watcherFileDesc];
return RootWatchers[Watchers[watcherFileDesc].First];
}
void AddDirWatcher(const int rootFileDesc, const String& path)
{
auto watcher = New<FileSystemWatcher>(path, true, rootFileDesc);
Pair<String, LinuxFileSystemWatcher*> subDir = Pair<String, LinuxFileSystemWatcher*>(path, watcher);
}
void DeleteDirWatcher(const int parentWacherFileDesc, String& dirName)
{
if (Watchers.ContainsKey(parentWacherFileDesc))
{
auto fullPath = Watchers[parentWacherFileDesc].Second.Second->Directory / dirName;
for (auto& watcher : Watchers)
{
if (watcher.Value.Second.First.Compare(fullPath) == 0)
{
Delete<LinuxFileSystemWatcher>(watcher.Value.Second.Second);
}
}
}
}
};
LinuxFileSystemWatcher::LinuxFileSystemWatcher(const String& directory, bool withSubDirs, int rootWatcher)
: FileSystemWatcherBase(directory, withSubDirs)
, RootWatcher(rootWatcher)
{
FileSystemWatchers::Locker.Lock();
if (!FileSystemWatchers::Thread)
{
FileSystemWatchers::WacherFileDescriptor = inotify_init();
if (FileSystemWatchers::WacherFileDescriptor > 0)
{
FileSystemWatchers::ThreadActive = true;
FileSystemWatchers::Thread = ThreadSpawner::Start(FileSystemWatchers::Run, TEXT("File System Watchers"), ThreadPriority::BelowNormal);
}
}
if (FileSystemWatchers::WacherFileDescriptor > 0)
{
const StringAsANSI<250> directoryAnsi(*directory, directory.Length());
WachedDirectory = inotify_add_watch(FileSystemWatchers::WacherFileDescriptor, directoryAnsi.Get(), IN_MODIFY | IN_CREATE | IN_DELETE);
if (rootWatcher == -1)
FileSystemWatchers::Count++;
FileSystemWatchers::Watchers[WachedDirectory] = Pair<int, Pair<String, LinuxFileSystemWatcher*>>(rootWatcher, Pair<String, LinuxFileSystemWatcher*>(directory, this));
if (withSubDirs)
{
if (rootWatcher == -1)
{
FileSystemWatchers::RootWatchers[WachedDirectory] = this;
FileSystemWatchers::AddSubDirWatcher(WachedDirectory, directory);
}
else
{
FileSystemWatchers::RootWatchers[WachedDirectory] = FileSystemWatchers::RootWatchers[rootWatcher];
FileSystemWatchers::AddSubDirWatcher(rootWatcher, directory);
}
}
}
FileSystemWatchers::Locker.Unlock();
}
LinuxFileSystemWatcher::~LinuxFileSystemWatcher()
{
FileSystemWatchers::Locker.Lock();
if (FileSystemWatchers::WacherFileDescriptor > 0)
{
inotify_rm_watch(FileSystemWatchers::WacherFileDescriptor, WachedDirectory);
FileSystemWatchers::RootWatchers.Remove(WachedDirectory);
FileSystemWatchers::Watchers.Remove(WachedDirectory);
if (RootWatcher == -1)
FileSystemWatchers::Count--;
}
if (FileSystemWatchers::Count == 0 && FileSystemWatchers::Thread)
{
FileSystemWatchers::ThreadActive = false;
FileSystemWatchers::Thread->Join();
Delete(FileSystemWatchers::Thread);
FileSystemWatchers::Thread = nullptr;
close(FileSystemWatchers::WacherFileDescriptor);
FileSystemWatchers::WacherFileDescriptor = 0;
for (auto& e : FileSystemWatchers::Watchers)
Delete(e.Value.Second.Second);
FileSystemWatchers::Watchers.Clear();
}
FileSystemWatchers::Locker.Unlock();
}
#endif