using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using UnityEditor.Build.Content;
using UnityEditor.Build.Pipeline.Injector;
using UnityEditor.Build.Pipeline.Interfaces;
using UnityEditor.Build.Pipeline.Utilities;
using UnityEngine;
using UnityEngine.Build.Pipeline;
namespace UnityEditor.Build.Pipeline.Tasks
{
#if UNITY_2018_3_OR_NEWER
using BuildCompression = UnityEngine.BuildCompression;
#else
using BuildCompression = UnityEditor.Build.Content.BuildCompression;
#endif
///
/// Archives and compresses all asset bundles.
///
public class ArchiveAndCompressBundles : IBuildTask
{
private const int kVersion = 2;
///
public int Version { get { return kVersion; } }
#pragma warning disable 649
[InjectContext(ContextUsage.In)]
IBuildParameters m_Parameters;
[InjectContext(ContextUsage.In)]
IBundleWriteData m_WriteData;
#if UNITY_2019_3_OR_NEWER
[InjectContext(ContextUsage.In)]
IBundleBuildContent m_Content;
#endif
[InjectContext]
IBundleBuildResults m_Results;
[InjectContext(ContextUsage.In, true)]
IProgressTracker m_Tracker;
[InjectContext(ContextUsage.In, true)]
IBuildCache m_Cache;
[InjectContext(ContextUsage.In, true)]
IBuildLogger m_Log;
#pragma warning restore 649
internal static void CopyFileWithTimestampIfDifferent(string srcPath, string destPath, IBuildLogger log)
{
if (srcPath == destPath)
return;
srcPath = Path.GetFullPath(srcPath);
destPath = Path.GetFullPath(destPath);
#if UNITY_EDITOR_WIN
// Max path length per MS Path code.
const int MaxPath = 260;
if (srcPath.Length > MaxPath)
throw new PathTooLongException(srcPath);
if (destPath.Length > MaxPath)
throw new PathTooLongException(destPath);
#endif
DateTime time = File.GetLastWriteTime(srcPath);
DateTime destTime = File.Exists(destPath) ? File.GetLastWriteTime(destPath) : new DateTime();
if (destTime == time)
return;
using (log.ScopedStep(LogLevel.Verbose, "Copying From Cache", $"{srcPath} -> {destPath}"))
{
var directory = Path.GetDirectoryName(destPath);
Directory.CreateDirectory(directory);
File.Copy(srcPath, destPath, true);
}
}
static CacheEntry GetCacheEntry(IBuildCache cache, string bundleName, IEnumerable resources, BuildCompression compression, List hashes)
{
var entry = new CacheEntry();
entry.Type = CacheEntry.EntryType.Data;
entry.Guid = HashingMethods.Calculate("ArchiveAndCompressBundles", bundleName).ToGUID();
List