Fix create empty directory
This commit is contained in:
@@ -56,665 +56,5 @@ public:
|
||||
void ClearCache();
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DriveMountEnded :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DriveMountEnded(const SString mountLocation, const NTSTATUS& result) :
|
||||
_mountLocation(mountLocation),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DriveMountEnded()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _mountLocation;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DriveMountEnded(_mountLocation, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DriveMountEnded|LOC|" + _mountLocation + L"|RET|" + SString::FromInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DriveUnMounted :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DriveUnMounted(const SString& mountLocation) :
|
||||
_mountLocation(mountLocation)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DriveUnMounted()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _mountLocation;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DriveUnMounted(_mountLocation));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DriveUnMounted|LOC|" + _mountLocation;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DriveMounted :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DriveMounted(const SString& mountLocation) :
|
||||
_mountLocation(mountLocation)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DriveMounted()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _mountLocation;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DriveMounted(_mountLocation));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DriveMounted|LOC|" + _mountLocation;
|
||||
}
|
||||
};
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanCreateFile :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanCreateFile(const SString& filePath, const DWORD& fileAttributesAndFlags, const DWORD& creationDisposition, const ACCESS_MASK& genericDesiredAccess, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_filePath(filePath),
|
||||
_fileAttributesAndFlags(fileAttributesAndFlags),
|
||||
_creationDisposition(creationDisposition),
|
||||
_genericDesiredAccess(genericDesiredAccess),
|
||||
_result(result)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanCreateFile()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _filePath;
|
||||
const DWORD _fileAttributesAndFlags;
|
||||
const DWORD _creationDisposition;
|
||||
const ACCESS_MASK _genericDesiredAccess;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanCreateFile(_filePath, _fileAttributesAndFlags, _creationDisposition, _genericDesiredAccess, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanCreateFile|FILE|" + _filePath +
|
||||
"|ATTR|" + SString::FromUInt32(_fileAttributesAndFlags) +
|
||||
"|DISP|" + SString::FromUInt32(_creationDisposition) +
|
||||
"|MASK|" + SString::FromUInt32(_genericDesiredAccess) +
|
||||
"|RET|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanFindFiles :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanFindFiles(const SString& cachePath, const SString& rootPath, const SString& siaQuery, const SString& findFile, const SString& fileName, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_rootPath(rootPath),
|
||||
_siaQuery(siaQuery),
|
||||
_findFile(findFile),
|
||||
_fileName(fileName),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanFindFiles()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const SString _rootPath;
|
||||
const SString _siaQuery;
|
||||
const SString _findFile;
|
||||
const SString _fileName;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanFindFiles(_cachePath, _rootPath, _siaQuery, _findFile, _fileName, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanFindFiles|PATH|" + _cachePath +
|
||||
"|ROOT|" + _rootPath +
|
||||
"|QUERY|" + _siaQuery +
|
||||
"|FIND|" + _findFile +
|
||||
"|FN|" + _fileName +
|
||||
"|RET|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanCloseFile :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanCloseFile(const SString& cachePath) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanCloseFile()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanCloseFile(_cachePath));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanCloseFile|PATH|" + _cachePath;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanGetFileInformation :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanGetFileInformation(const SString& cachePath, const SString& fileName, const bool& opened, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_fileName(fileName),
|
||||
_opened(opened),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanGetFileInformation()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const SString _fileName;
|
||||
const bool _opened;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanGetFileInformation(_cachePath, _fileName, _opened, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanGetFileInformation|PATH|" + _cachePath +
|
||||
"|FN|" + _fileName +
|
||||
"|OPN|" + SString::FromBool(_opened) +
|
||||
"|RES|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanReadFile :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanReadFile(const SString& cachePath, const bool& opened, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_opened(opened),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanReadFile()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const bool _opened;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanReadFile(_cachePath, _opened, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanReadFile|PATH|" + _cachePath +
|
||||
"|OPN|" + SString::FromBool(_opened) +
|
||||
"|RES|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanWriteFile :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanWriteFile(const SString& cachePath, const bool& opened, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_opened(opened),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanWriteFile()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const bool _opened;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanWriteFile(_cachePath, _opened, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanWriteFile|PATH|" + _cachePath +
|
||||
"|OPN|" + SString::FromBool(_opened) +
|
||||
"|RES|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanSetEndOfFile :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanSetEndOfFile(const SString& cachePath, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanSetEndOfFile()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanSetEndOfFile(_cachePath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanSetEndOfFile|PATH|" + _cachePath +
|
||||
"|RES|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanFlushFileBuffers :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanFlushFileBuffers(const SString& cachePath, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanFlushFileBuffers()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanFlushFileBuffers(_cachePath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanFlushFileBuffers|PATH|" + _cachePath +
|
||||
"|RES|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanDeleteDirectory :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanDeleteDirectory(const SString& cachePath, const NTSTATUS& result) :
|
||||
_cachePath(cachePath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanDeleteDirectory()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanDeleteDirectory(_cachePath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanDeleteDirectory|PATH|" + _cachePath +
|
||||
"|RES|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanDeleteFileW :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanDeleteFileW(const SString& cachePath, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanDeleteFileW()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanDeleteFileW(_cachePath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanDeleteFileW|PATH|" + _cachePath +
|
||||
"|RES|" + SString::FromUInt32(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanSetFileAttributesW :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanSetFileAttributesW(const SString& cachePath, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanSetFileAttributesW()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanSetFileAttributesW(_cachePath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanSetFileAttributesW|PATH|" + _cachePath +
|
||||
"|RES|" + SString::FromUInt64(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanGetFileAttributesW :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanGetFileAttributesW(const SString& cachePath) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanGetFileAttributesW()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanGetFileAttributesW(_cachePath));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanGetFileAttributesW|PATH|" + _cachePath;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanSetFileSecurityW :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanSetFileSecurityW(const SString& cachePath) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanSetFileSecurityW()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanSetFileSecurityW(_cachePath));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanSetFileSecurityW|PATH|" + _cachePath;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanSetFileTime :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanSetFileTime(const SString& cachePath, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanSetFileTime()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanSetFileTime(_cachePath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanSetFileTime|PATH|" + _cachePath +
|
||||
"|RES|" + SString::FromUInt64(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanSetAllocationSize :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanSetAllocationSize(const SString& cachePath, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_cachePath(cachePath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanSetAllocationSize()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _cachePath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanSetAllocationSize(_cachePath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanSetAllocationSize|PATH|" + _cachePath +
|
||||
"|RES|" + SString::FromUInt64(_result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
class SIADRIVE_DOKAN_EXPORTABLE DokanMoveFileW :
|
||||
public CEvent
|
||||
{
|
||||
public:
|
||||
DokanMoveFileW(const SString& srcPath, const SString& destPath, const NTSTATUS& result) :
|
||||
CEvent(EventLevel::Debug),
|
||||
_srcPath(srcPath),
|
||||
_destPath(destPath),
|
||||
_result(result)
|
||||
{
|
||||
}
|
||||
|
||||
public:
|
||||
virtual ~DokanMoveFileW()
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
const SString _srcPath;
|
||||
const SString _destPath;
|
||||
const NTSTATUS _result;
|
||||
|
||||
public:
|
||||
virtual std::shared_ptr<CEvent> Clone() const override
|
||||
{
|
||||
return std::shared_ptr<CEvent>(new DokanMoveFileW(_srcPath, _destPath, _result));
|
||||
}
|
||||
|
||||
virtual SString GetSingleLineMessage() const override
|
||||
{
|
||||
return L"DokanMoveFileW|SRC|" + _srcPath +
|
||||
"|DEST|" + _destPath +
|
||||
"|RES|" + SString::FromUInt64(_result);
|
||||
}
|
||||
};
|
||||
NS_END(3)
|
||||
#endif //_SIADOKANDRIVE_H
|
Reference in New Issue
Block a user