| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- //
- // Copyright (c) 2008-2014 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "Precompiled.h"
- #include "File.h"
- #include "FileSystem.h"
- #include "FileWatcher.h"
- #include "Log.h"
- #include "Timer.h"
- #ifdef WIN32
- #include <windows.h>
- #elif __linux__
- #include <sys/inotify.h>
- extern "C" {
- // Need read/close for inotify
- #include "unistd.h"
- }
- #elif defined(__APPLE__) && !defined(IOS)
- extern "C" {
- #include "MacFileWatcher.h"
- }
- #endif
- namespace Urho3D
- {
- #ifndef __APPLE__
- static const unsigned BUFFERSIZE = 4096;
- #endif
- FileWatcher::FileWatcher(Context* context) :
- Object(context),
- fileSystem_(GetSubsystem<FileSystem>()),
- delay_(1.0f),
- watchSubDirs_(false)
- {
- #if defined(URHO3D_FILEWATCHER)
- #if defined(__linux__)
- watchHandle_ = inotify_init();
- #elif defined(__APPLE__) && !defined(IOS)
- supported_ = IsFileWatcherSupported();
- #endif
- #endif
- }
- FileWatcher::~FileWatcher()
- {
- StopWatching();
- #if defined(URHO3D_FILEWATCHER)
- #if defined(__linux__)
- close(watchHandle_);
- #endif
- #endif
- }
- bool FileWatcher::StartWatching(const String& pathName, bool watchSubDirs)
- {
- if (!fileSystem_)
- {
- LOGERROR("No FileSystem, can not start watching");
- return false;
- }
-
- // Stop any previous watching
- StopWatching();
-
- #if defined(URHO3D_FILEWATCHER)
- #if defined(WIN32)
- String nativePath = GetNativePath(RemoveTrailingSlash(pathName));
-
- dirHandle_ = (void*)CreateFileW(
- WString(nativePath).CString(),
- FILE_LIST_DIRECTORY,
- FILE_SHARE_WRITE | FILE_SHARE_READ | FILE_SHARE_DELETE,
- 0,
- OPEN_EXISTING,
- FILE_FLAG_BACKUP_SEMANTICS,
- 0);
-
- if (dirHandle_ != INVALID_HANDLE_VALUE)
- {
- path_ = AddTrailingSlash(pathName);
- watchSubDirs_ = watchSubDirs;
- Run();
-
- LOGDEBUG("Started watching path " + pathName);
- return true;
- }
- else
- {
- LOGERROR("Failed to start watching path " + pathName);
- return false;
- }
- #elif defined(__linux__)
- int flags = IN_CREATE|IN_DELETE|IN_MODIFY|IN_MOVED_FROM|IN_MOVED_TO;
- int handle = inotify_add_watch(watchHandle_, pathName.CString(), flags);
- if (handle < 0)
- {
- LOGERROR("Failed to start watching path " + pathName);
- return false;
- }
- else
- {
- // Store the root path here when reconstructed with inotify later
- dirHandle_[handle] = "";
- path_ = AddTrailingSlash(pathName);
- watchSubDirs_ = watchSubDirs;
- if (watchSubDirs_)
- {
- Vector<String> subDirs;
- fileSystem_->ScanDir(subDirs, pathName, "*", SCAN_DIRS, true);
- for (unsigned i = 0; i < subDirs.Size(); ++i)
- {
- String subDirFullPath = AddTrailingSlash(path_ + subDirs[i]);
- // Don't watch ./ or ../ sub-directories
- if (!subDirFullPath.EndsWith("./"))
- {
- handle = inotify_add_watch(watchHandle_, subDirFullPath.CString(), flags);
- if (handle < 0)
- LOGERROR("Failed to start watching subdirectory path " + subDirFullPath);
- else
- {
- // Store sub-directory to reconstruct later from inotify
- dirHandle_[handle] = AddTrailingSlash(subDirs[i]);
- }
- }
- }
- }
- Run();
- LOGDEBUG("Started watching path " + pathName);
- return true;
- }
- #elif defined(__APPLE__) && !defined(IOS)
- if (!supported_)
- {
- LOGERROR("Individual file watching not supported by this OS version, can not start watching path " + pathName);
- return false;
- }
-
- watcher_ = CreateFileWatcher(pathName.CString(), watchSubDirs);
- if (watcher_)
- {
- path_ = AddTrailingSlash(pathName);
- watchSubDirs_ = watchSubDirs;
- Run();
-
- LOGDEBUG("Started watching path " + pathName);
- return true;
- }
- else
- {
- LOGERROR("Failed to start watching path " + pathName);
- return false;
- }
- #else
- LOGERROR("FileWatcher not implemented, can not start watching path " + pathName);
- return false;
- #endif
- #else
- LOGDEBUG("FileWatcher feature not enabled");
- return false;
- #endif
- }
- void FileWatcher::StopWatching()
- {
- if (handle_)
- {
- shouldRun_ = false;
-
- // Create and delete a dummy file to make sure the watcher loop terminates
- String dummyFileName = path_ + "dummy.tmp";
- File file(context_, dummyFileName, FILE_WRITE);
- file.Close();
- if (fileSystem_)
- fileSystem_->Delete(dummyFileName);
-
- Stop();
-
- #if defined(WIN32)
- CloseHandle((HANDLE)dirHandle_);
- #elif defined(__linux__)
- for (HashMap<int, String>::Iterator i = dirHandle_.Begin(); i != dirHandle_.End(); ++i)
- inotify_rm_watch(watchHandle_, i->first_);
- dirHandle_.Clear();
- #elif defined(__APPLE__) && !defined(IOS)
- CloseFileWatcher(watcher_);
- #endif
-
- LOGDEBUG("Stopped watching path " + path_);
- path_.Clear();
- }
- }
- void FileWatcher::SetDelay(float interval)
- {
- delay_ = Max(interval, 0.0f);
- }
- void FileWatcher::ThreadFunction()
- {
- #if defined(URHO3D_FILEWATCHER)
- #if defined(WIN32)
- unsigned char buffer[BUFFERSIZE];
- DWORD bytesFilled = 0;
-
- while (shouldRun_)
- {
- if (ReadDirectoryChangesW((HANDLE)dirHandle_,
- buffer,
- BUFFERSIZE,
- watchSubDirs_,
- FILE_NOTIFY_CHANGE_FILE_NAME |
- FILE_NOTIFY_CHANGE_LAST_WRITE,
- &bytesFilled,
- 0,
- 0))
- {
- unsigned offset = 0;
-
- while (offset < bytesFilled)
- {
- FILE_NOTIFY_INFORMATION* record = (FILE_NOTIFY_INFORMATION*)&buffer[offset];
-
- if (record->Action == FILE_ACTION_MODIFIED || record->Action == FILE_ACTION_RENAMED_NEW_NAME)
- {
- String fileName;
- const wchar_t* src = record->FileName;
- const wchar_t* end = src + record->FileNameLength / 2;
- while (src < end)
- fileName.AppendUTF8(String::DecodeUTF16(src));
-
- fileName = GetInternalPath(fileName);
- AddChange(fileName);
- }
-
- if (!record->NextEntryOffset)
- break;
- else
- offset += record->NextEntryOffset;
- }
- }
- }
- #elif defined(__linux__)
- unsigned char buffer[BUFFERSIZE];
- while (shouldRun_)
- {
- int i = 0;
- int length = read(watchHandle_, buffer, sizeof(buffer));
- if (length < 0)
- return;
- while (i < length)
- {
- inotify_event* event = (inotify_event*)&buffer[i];
- if (event->len > 0)
- {
- if (event->mask & IN_MODIFY || event->mask & IN_MOVE)
- {
- String fileName;
- fileName = dirHandle_[event->wd] + event->name;
- AddChange(fileName);
- }
- }
- i += sizeof(inotify_event) + event->len;
- }
- }
- #elif defined(__APPLE__) && !defined(IOS)
- while (shouldRun_)
- {
- Time::Sleep(100);
- String changes = ReadFileWatcher(watcher_);
- if (!changes.Empty())
- {
- Vector<String> fileNames = changes.Split(1);
- for (unsigned i = 0; i < fileNames.Size(); ++i)
- AddChange(fileNames[i]);
- }
- }
- #endif
- #endif
- }
- void FileWatcher::AddChange(const String& fileName)
- {
- MutexLock lock(changesMutex_);
-
- // Reset the timer associated with the filename. Will be notified once timer exceeds the delay
- changes_[fileName].Reset();
- }
- bool FileWatcher::GetNextChange(String& dest)
- {
- MutexLock lock(changesMutex_);
-
- unsigned delayMsec = (unsigned)(delay_ * 1000.0f);
-
- if (changes_.Empty())
- return false;
- else
- {
- for (HashMap<String, Timer>::Iterator i = changes_.Begin(); i != changes_.End(); ++i)
- {
- if (i->second_.GetMSec(false) >= delayMsec)
- {
- dest = i->first_;
- changes_.Erase(i);
- return true;
- }
- }
-
- return false;
- }
- }
- }
|