Files
UnrealEngineUWP/Engine/Source/Developer/DirectoryWatcher/Private/Windows/DirectoryWatchRequestWindows.h
JeanMichel Dignard 0f9ad96858 Copying //UE4/Dev-Enterprise @ cl 6890376 to Dev-Main (//UE4/Dev-Main)
#lockdown nick.penwarden
#rb none

[CL 6890764 by JeanMichel Dignard in Main branch]
2019-06-07 11:22:52 -04:00

55 lines
1.8 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Windows/WindowsHWrapper.h"
#include "Delegates/Delegate.h"
#include "IDirectoryWatcher.h"
class FDirectoryWatchRequestWindows
{
public:
FDirectoryWatchRequestWindows(uint32 Flags);
virtual ~FDirectoryWatchRequestWindows();
/** Sets up the directory handle and request information */
bool Init(const FString& InDirectory);
/** Adds a delegate to get fired when the directory changes */
FDelegateHandle AddDelegate( const IDirectoryWatcher::FDirectoryChanged& InDelegate );
/** Removes a delegate to get fired when the directory changes */
bool RemoveDelegate( FDelegateHandle InHandle );
/** Returns true if this request has any delegates listening to directory changes */
bool HasDelegates() const;
/** Returns the file handle for the directory that is being watched */
HANDLE GetDirectoryHandle() const;
/** Closes the system resources and prepares the request for deletion */
void EndWatchRequest();
/** True if system resources have been closed and the request is ready for deletion */
bool IsPendingDelete() const { return bPendingDelete; }
/** Triggers all pending file change notifications */
void ProcessPendingNotifications();
private:
/** Non-static handler for an OS notification of a directory change */
void ProcessChange(uint32 Error, uint32 NumBytes);
/** Static Handler for an OS notification of a directory change */
static void CALLBACK ChangeNotification(::DWORD Error, ::DWORD NumBytes, LPOVERLAPPED InOverlapped);
FString Directory;
HANDLE DirectoryHandle;
int32 MaxChanges;
bool bWatchSubtree;
uint32 NotifyFilter;
uint32 BufferLength;
void* Buffer;
void* BackBuffer;
OVERLAPPED Overlapped;
bool bPendingDelete;
bool bEndWatchRequestInvoked;
TArray<IDirectoryWatcher::FDirectoryChanged> Delegates;
TArray<FFileChangeData> FileChanges;
};