78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "IO/IoDispatcher.h"
|
|
#include "Misc/Optional.h"
|
|
|
|
class ITargetPlatform;
|
|
class FArchive;
|
|
|
|
struct FZenFileSystemManifestEntry
|
|
{
|
|
FString ServerPath;
|
|
FString ClientPath;
|
|
FIoChunkId FileChunkId;
|
|
};
|
|
|
|
class FZenFileSystemManifest
|
|
{
|
|
public:
|
|
FZenFileSystemManifest(const ITargetPlatform& InTargetPlatform, FString InCookDirectory);
|
|
|
|
/**
|
|
* Scan the local Cooked folder for files on disk, create and append Entries for any files not already
|
|
* present in the manifest. Files in the manifest do not contain any payload data, so no update is necessary
|
|
* for Entries that already exist. Returns the number of new entries.
|
|
*/
|
|
int32 Generate();
|
|
|
|
const FZenFileSystemManifestEntry& CreateManifestEntry(const FString& Filename);
|
|
|
|
const FZenFileSystemManifestEntry& AddManifestEntry(const FIoChunkId& FileChunkId, FString ServerPath, FString ClientPath);
|
|
|
|
TArrayView<const FZenFileSystemManifestEntry> ManifestEntries() const
|
|
{
|
|
return Entries;
|
|
}
|
|
|
|
bool Save(const TCHAR* Filename);
|
|
|
|
int32 NumEntries() const
|
|
{
|
|
return Entries.Num();
|
|
}
|
|
|
|
const FString& ServerRootPath() const
|
|
{
|
|
return ServerRoot;
|
|
}
|
|
|
|
/**
|
|
* Return the ManifestEntry that was found for the ReferencedSet.txt artifact left by the cooker in the Metadata
|
|
* directory. The ReferencedSet reports which packages in the oplog were cooked in the most recent incremental
|
|
* cook. ZenServer needs to read it, so we report it separately to ZenServer rather than reporting it with the
|
|
* rest of the cook artifacts reported in the EndCook op.
|
|
*/
|
|
TOptional<FZenFileSystemManifestEntry> GetReferencedSet() const
|
|
{
|
|
return ReferencedSet;
|
|
}
|
|
|
|
private:
|
|
static void GetExtensionDirs(TArray<FString>& OutExtensionDirs, const TCHAR* BaseDir, const TCHAR* SubDir, const TArray<FString>& PlatformDirectoryNames);
|
|
|
|
const ITargetPlatform& TargetPlatform;
|
|
FString CookDirectory;
|
|
FString ServerRoot;
|
|
TMap<FString, int32> ServerPathToEntry;
|
|
TArray<FZenFileSystemManifestEntry> Entries;
|
|
TOptional<FZenFileSystemManifestEntry> ReferencedSet;
|
|
#if WITH_EDITOR
|
|
FString ReferencedSetClientPath;
|
|
#endif
|
|
|
|
static const FZenFileSystemManifestEntry InvalidEntry;
|
|
};
|