File size: 13,957 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | // Copyright Epic Games, Inc. All Rights Reserved.
#include "ContentValidationCommandlet.h"
#include "AssetRegistry/ARFilter.h"
#include "AssetRegistry/AssetData.h"
#include "AssetRegistry/AssetRegistryModule.h"
#include "DataValidationModule.h"
#include "Interfaces/IPluginManager.h"
#include "Misc/CommandLine.h"
#include "Misc/ConfigCacheIni.h"
#include "ShaderCompiler.h"
#include "SourceControlHelpers.h"
#include "Validation/EditorValidator.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(ContentValidationCommandlet)
DEFINE_LOG_CATEGORY_STATIC(LogLyraContentValidation, Log, Log);
class FScopedContentValidationMessageGatherer : public FOutputDevice
{
public:
FScopedContentValidationMessageGatherer()
: bAtLeastOneError(false)
{
GLog->AddOutputDevice(this);
}
~FScopedContentValidationMessageGatherer()
{
GLog->RemoveOutputDevice(this);
}
virtual void Serialize(const TCHAR* V, ELogVerbosity::Type Verbosity, const class FName& Category) override
{
if (Verbosity <= ELogVerbosity::Error)
{
bAtLeastOneError = true;
}
}
bool bAtLeastOneError;
};
UContentValidationCommandlet::UContentValidationCommandlet(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}
int32 UContentValidationCommandlet::Main(const FString& FullCommandLine)
{
UE_LOG(LogLyraContentValidation, Display, TEXT("Running ContentValidationCommandlet commandlet..."));
TArray<FString> Tokens;
TArray<FString> Switches;
TMap<FString, FString> Params;
ParseCommandLine(*FullCommandLine, Tokens, Switches, Params);
FAssetRegistryModule& AssetRegistryModule = FModuleManager::LoadModuleChecked<FAssetRegistryModule>("AssetRegistry");
IAssetRegistry& AssetRegistry = AssetRegistryModule.Get();
AssetRegistry.SearchAllAssets(true);
int32 ReturnVal = 0;
TArray<FString> ChangedPackageNames;
TArray<FString> DeletedPackageNames;
TArray<FString> ChangedCode;
TArray<FString> ChangedOtherFiles;
FString* P4FilterString = Params.Find(TEXT("P4Filter"));
if (P4FilterString && !P4FilterString->IsEmpty())
{
FString P4CmdString = TEXT("files ") + *P4FilterString;
if (!GetAllChangedFiles(AssetRegistry, P4CmdString, ChangedPackageNames, DeletedPackageNames, ChangedCode, ChangedOtherFiles))
{
UE_LOG(LogLyraContentValidation, Display, TEXT("ContentValidation returning 1. Failed to get changed files."));
ReturnVal = 1;
}
}
FString* P4ChangelistString = Params.Find(TEXT("P4Changelist"));
if (P4ChangelistString && !P4ChangelistString->IsEmpty())
{
FString P4CmdString = TEXT("opened -c ") + *P4ChangelistString;
if (!GetAllChangedFiles(AssetRegistry, P4CmdString, ChangedPackageNames, DeletedPackageNames, ChangedCode, ChangedOtherFiles))
{
UE_LOG(LogLyraContentValidation, Display, TEXT("ContentValidation returning 1. Failed to get changed files."));
ReturnVal = 1;
}
}
bool bP4Opened = Switches.Contains(TEXT("P4Opened"));
if (bP4Opened)
{
check(GConfig);
FString Workspace;
FString* P4ClientString = Params.Find(TEXT("P4Client"));
if (P4ClientString && !P4ClientString->IsEmpty())
{
Workspace = *P4ClientString;
}
else
{
const FString& SSCIniFile = SourceControlHelpers::GetSettingsIni();
GConfig->GetString(TEXT("PerforceSourceControl.PerforceSourceControlSettings"), TEXT("Workspace"), Workspace, SSCIniFile);
}
if (!Workspace.IsEmpty())
{
FString P4CmdString = FString::Printf(TEXT("-c%s opened"), *Workspace);
if (!GetAllChangedFiles(AssetRegistry, P4CmdString, ChangedPackageNames, DeletedPackageNames, ChangedCode, ChangedOtherFiles))
{
UE_LOG(LogLyraContentValidation, Display, TEXT("ContentValidation returning 1. Failed to get changed files."));
ReturnVal = 1;
}
}
else
{
UE_LOG(LogLyraContentValidation, Error, TEXT("P4 workspace was not found when using P4Opened"));
UE_LOG(LogLyraContentValidation, Display, TEXT("ContentValidation returning 1. Workspace not found."));
ReturnVal = 1;
}
}
int32 MaxPackagesToLoad = 2000;
FString* InPathString = Params.Find(TEXT("InPath"));
if (InPathString && !InPathString->IsEmpty())
{
GetAllPackagesInPath(AssetRegistry, *InPathString, ChangedPackageNames);
}
FString* OfTypeString = Params.Find(TEXT("OfType"));
if (OfTypeString && !OfTypeString->IsEmpty())
{
const int32 InitialPackages = ChangedPackageNames.Num();
GetAllPackagesOfType(*OfTypeString, ChangedPackageNames);
MaxPackagesToLoad += ChangedPackageNames.Num() - InitialPackages;
}
FString* SpecificPackagesString = Params.Find(TEXT("Packages"));
if (SpecificPackagesString && !SpecificPackagesString->IsEmpty())
{
TArray<FString> PackagePaths;
SpecificPackagesString->ParseIntoArray(PackagePaths, TEXT("+"));
ChangedPackageNames.Append(PackagePaths);
}
// We will be flushing shader compile as we load materials, so don't let other shader warnings be attributed incorrectly to the package that is loading.
if (GShaderCompilingManager)
{
GShaderCompilingManager->FinishAllCompilation();
}
FString* InMaxPackagesToLoadString = Params.Find(TEXT("MaxPackagesToLoad"));
if (InMaxPackagesToLoadString)
{
MaxPackagesToLoad = FCString::Atoi(**InMaxPackagesToLoadString);
}
TArray<FString> AllWarningsAndErrors;
UEditorValidator::ValidatePackages(ChangedPackageNames, DeletedPackageNames, MaxPackagesToLoad, AllWarningsAndErrors, EDataValidationUsecase::Commandlet);
if (!UEditorValidator::ValidateProjectSettings())
{
ReturnVal = 1;
}
return ReturnVal;
}
bool UContentValidationCommandlet::GetAllChangedFiles(IAssetRegistry& AssetRegistry, const FString& P4CmdString, TArray<FString>& OutChangedPackageNames, TArray<FString>& DeletedPackageNames, TArray<FString>& OutChangedCode, TArray<FString>& OutChangedOtherFiles) const
{
TArray<FString> Results;
int32 ReturnCode = 0;
if (LaunchP4(P4CmdString, Results, ReturnCode))
{
if (ReturnCode == 0)
{
for (const FString& Result : Results)
{
FString DepotPathName;
FString ExtraInfoAfterPound;
if (Result.Split(TEXT("#"), &DepotPathName, &ExtraInfoAfterPound))
{
if (DepotPathName.EndsWith(TEXT(".uasset")) || DepotPathName.EndsWith(TEXT(".umap")))
{
FString FullPackageName;
{
// Check for /Game/ assets
FString PostContentPath;
if (DepotPathName.Split(TEXT("LyraGame/Content/"), nullptr, &PostContentPath)) //@TODO: RENAME: Potential issue when modules are renamed
{
if (!PostContentPath.IsEmpty())
{
const FString PostContentPathWithoutExtension = FPaths::GetBaseFilename(PostContentPath, false);
FString PackageNameToTest = TEXT("/Game/") + PostContentPathWithoutExtension;
if (!UEditorValidator::IsInUncookedFolder(PackageNameToTest))
{
FullPackageName = PackageNameToTest;
}
}
}
}
if (FullPackageName.IsEmpty())
{
// Check for plugin assets
FString PostPluginsPath;
if (DepotPathName.Split(TEXT("LyraGame/Plugins/"), nullptr, &PostPluginsPath))
{
const int32 ContentFolderIdx = PostPluginsPath.Find(TEXT("/Content/"));
if (ContentFolderIdx != INDEX_NONE)
{
int32 PluginFolderIdx = PostPluginsPath.Find(TEXT("/"), ESearchCase::CaseSensitive, ESearchDir::FromEnd, ContentFolderIdx - 1);
if (PluginFolderIdx == INDEX_NONE)
{
// No leading /. Directly in the /Plugins/ folder
PluginFolderIdx = 0;
}
else
{
// Skip the leading /. A subfolder in the /Plugins/ folder
PluginFolderIdx++;
}
const int32 PostContentFolderIdx = ContentFolderIdx + FCString::Strlen(TEXT("/Content/"));
const FString PostContentPath = PostPluginsPath.RightChop(PostContentFolderIdx);
const FString PluginName = PostPluginsPath.Mid(PluginFolderIdx, ContentFolderIdx - PluginFolderIdx);
if (!PostContentPath.IsEmpty() && !PluginName.IsEmpty())
{
TSharedPtr<IPlugin> Plugin = IPluginManager::Get().FindPlugin(PluginName);
if (Plugin.IsValid() && Plugin->IsEnabled())
{
const FString PostContentPathWithoutExtension = FPaths::GetBaseFilename(PostContentPath, false);
FullPackageName = FString::Printf(TEXT("/%s/%s"), *PluginName, *PostContentPathWithoutExtension);
}
}
}
}
}
if (!FullPackageName.IsEmpty())
{
if (ExtraInfoAfterPound.Contains(TEXT("delete")))
{
DeletedPackageNames.AddUnique(FullPackageName);
}
else
{
OutChangedPackageNames.AddUnique(FullPackageName);
}
}
}
else
{
FString PostLyraGamePath;
if (DepotPathName.Split(TEXT("/LyraGame/"), nullptr, &PostLyraGamePath))
{
if (DepotPathName.EndsWith(TEXT(".cpp")))
{
OutChangedCode.Add(PostLyraGamePath);
}
else if (DepotPathName.EndsWith(TEXT(".h")))
{
OutChangedCode.Add(PostLyraGamePath);
FString ChangedHeaderLocalFilename = GetLocalPathFromDepotPath(DepotPathName);
if (!ChangedHeaderLocalFilename.IsEmpty())
{
UEditorValidator::GetChangedAssetsForCode(AssetRegistry, ChangedHeaderLocalFilename, OutChangedPackageNames);
}
}
else
{
OutChangedOtherFiles.Add(PostLyraGamePath);
}
}
}
}
}
return true;
}
else
{
UE_LOG(LogLyraContentValidation, Error, TEXT("p4 returned non-zero return code %d"), ReturnCode);
}
}
return false;
}
void UContentValidationCommandlet::GetAllPackagesInPath(IAssetRegistry& AssetRegistry, const FString& InPathString, TArray<FString>& OutPackageNames) const
{
TArray<FString> Paths;
InPathString.ParseIntoArray(Paths, TEXT("+"));
FARFilter Filter;
Filter.bRecursivePaths = true;
Filter.bIncludeOnlyOnDiskAssets = true;
for (const FString& Path : Paths)
{
Filter.PackagePaths.Add(FName(*Path));
}
TArray<FAssetData> AssetsInPaths;
if (AssetRegistry.GetAssets(Filter, AssetsInPaths))
{
for (const FAssetData& AssetData : AssetsInPaths)
{
OutPackageNames.Add(AssetData.PackageName.ToString());
}
}
}
void UContentValidationCommandlet::GetAllPackagesOfType(const FString& OfTypeString, TArray<FString>& OutPackageNames) const
{
FAssetRegistryModule& AssetRegistryModule = FModuleManager::LoadModuleChecked<FAssetRegistryModule>(TEXT("AssetRegistry"));
IAssetRegistry& AssetRegistry = AssetRegistryModule.Get();
TArray<FString> Types;
OfTypeString.ParseIntoArray(Types, TEXT("+"));
FARFilter Filter;
Filter.bRecursivePaths = true;
Filter.bIncludeOnlyOnDiskAssets = true;
for (const FString& Type : Types)
{
FTopLevelAssetPath TypePathName = UClass::TryConvertShortTypeNameToPathName<UStruct>(Type, ELogVerbosity::Error, TEXT("UContentValidationCommandlet"));
if (TypePathName.IsNull())
{
UE_LOG(LogLyraContentValidation, Error, TEXT("Failed to convert short class name \"%s\" to path name. Please use class path names."), *Type);
}
else
{
Filter.ClassPaths.Add(TypePathName);
}
}
TArray<FAssetData> AssetsOfType;
if (AssetRegistry.GetAssets(Filter, AssetsOfType))
{
for (const FAssetData& AssetData : AssetsOfType)
{
OutPackageNames.Add(AssetData.PackageName.ToString());
}
}
}
bool UContentValidationCommandlet::LaunchP4(const FString& Args, TArray<FString>& Output, int32& OutReturnCode) const
{
void* PipeRead = nullptr;
void* PipeWrite = nullptr;
verify(FPlatformProcess::CreatePipe(PipeRead, PipeWrite));
bool bInvoked = false;
OutReturnCode = -1;
FString StringOutput;
FProcHandle ProcHandle = FPlatformProcess::CreateProc(TEXT("p4.exe"), *Args, false, true, true, nullptr, 0, nullptr, PipeWrite);
if (ProcHandle.IsValid())
{
while (FPlatformProcess::IsProcRunning(ProcHandle))
{
StringOutput += FPlatformProcess::ReadPipe(PipeRead);
FPlatformProcess::Sleep(0.1f);
}
StringOutput += FPlatformProcess::ReadPipe(PipeRead);
FPlatformProcess::GetProcReturnCode(ProcHandle, &OutReturnCode);
bInvoked = true;
}
else
{
UE_LOG(LogLyraContentValidation, Error, TEXT("Failed to launch p4."));
}
FPlatformProcess::ClosePipe(PipeRead, PipeWrite);
StringOutput.ParseIntoArrayLines(Output);
return bInvoked;
}
FString UContentValidationCommandlet::GetLocalPathFromDepotPath(const FString& DepotPathName) const
{
FString ReturnString;
const FString& SSCIniFile = SourceControlHelpers::GetSettingsIni();
FString Workspace;
GConfig->GetString(TEXT("PerforceSourceControl.PerforceSourceControlSettings"), TEXT("Workspace"), Workspace, SSCIniFile);
if (Workspace.IsEmpty())
{
FString ParameterValue;
if (FParse::Value(FCommandLine::Get(), TEXT("P4Client="), ParameterValue))
{
Workspace = ParameterValue;
}
}
if (!Workspace.IsEmpty())
{
TArray<FString> WhereResults;
int32 ReturnCode = 0;
FString P4WhereCommand = FString::Printf(TEXT("-ztag -c%s where %s"), *Workspace, *DepotPathName);
if (LaunchP4(P4WhereCommand, WhereResults, ReturnCode))
{
if (WhereResults.Num() >= 2)
{
ReturnString = WhereResults[2];
ReturnString.RemoveFromStart(TEXT("... path "));
FPaths::NormalizeFilename(ReturnString);
}
else
{
UE_LOG(LogLyraContentValidation, Warning, TEXT("GetAllChangedFiles failed to run p4 'where'. WhereResults[0] = '%s'. Not adding any validation for %s"), WhereResults.Num() > 0 ? *WhereResults[0] : TEXT("Invalid"), *DepotPathName);
}
}
}
return ReturnString;
}
|