update file system

pull/326/head
何冠峰 2024-07-07 00:52:17 +08:00
parent 481711fd75
commit bafd15571a
68 changed files with 483 additions and 889 deletions

View File

@ -0,0 +1,30 @@

namespace YooAsset
{
internal class DownloadParam
{
public readonly int FailedTryAgain;
public readonly int Timeout;
/// <summary>
/// 导入的本地文件路径
/// </summary>
public string ImportFilePath { set; get; }
/// <summary>
/// 主资源地址
/// </summary>
public string MainURL { set; get; }
/// <summary>
/// 备用资源地址
/// </summary>
public string FallbackURL { set; get; }
public DownloadParam(int failedTryAgain, int timeout)
{
FailedTryAgain = failedTryAgain;
Timeout = timeout;
}
}
}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 2c2153284d246964fb2146f9fdda311c guid: 56ea224b45d314e4a86b558404e9b6c8
MonoImporter: MonoImporter:
externalObjects: {} externalObjects: {}
serializedVersion: 2 serializedVersion: 2

View File

@ -41,7 +41,7 @@ namespace YooAsset
#elif UNITY_STANDALONE #elif UNITY_STANDALONE
return StringUtility.Format("file:///{0}", path); return StringUtility.Format("file:///{0}", path);
#elif UNITY_OPENHARMONY #elif UNITY_OPENHARMONY
return path; return StringUtility.Format("file://{0}", path);
#else #else
return path; return path;
#endif #endif

View File

@ -10,6 +10,36 @@ namespace YooAsset
/// </summary> /// </summary>
internal class DefaultBuildinFileSystem : IFileSystem internal class DefaultBuildinFileSystem : IFileSystem
{ {
private class UnpackRemoteServices : IRemoteServices
{
private readonly string _buildinPackageRoot;
protected readonly Dictionary<string, string> _mapping = new Dictionary<string, string>(10000);
public UnpackRemoteServices(string buildinPackRoot)
{
_buildinPackageRoot = buildinPackRoot;
}
string IRemoteServices.GetRemoteMainURL(string fileName)
{
return GetFileLoadURL(fileName);
}
string IRemoteServices.GetRemoteFallbackURL(string fileName)
{
return GetFileLoadURL(fileName);
}
private string GetFileLoadURL(string fileName)
{
if (_mapping.TryGetValue(fileName, out string url) == false)
{
string filePath = PathUtility.Combine(_buildinPackageRoot, fileName);
url = DownloadSystemHelper.ConvertToWWWPath(filePath);
_mapping.Add(fileName, url);
}
return url;
}
}
public class FileWrapper public class FileWrapper
{ {
public string FileName { private set; get; } public string FileName { private set; get; }
@ -23,11 +53,9 @@ namespace YooAsset
protected readonly Dictionary<string, FileWrapper> _wrappers = new Dictionary<string, FileWrapper>(10000); protected readonly Dictionary<string, FileWrapper> _wrappers = new Dictionary<string, FileWrapper>(10000);
protected readonly Dictionary<string, Stream> _loadedStream = new Dictionary<string, Stream>(10000); protected readonly Dictionary<string, Stream> _loadedStream = new Dictionary<string, Stream>(10000);
protected readonly Dictionary<string, string> _buildinFilePaths = new Dictionary<string, string>(10000); protected readonly Dictionary<string, string> _buildinFilePaths = new Dictionary<string, string>(10000);
protected IFileSystem _unpackFileSystem;
protected string _packageRoot; protected string _packageRoot;
// 解压文件系统
public IFileSystem UnpackFileSystem { private set; get; }
/// <summary> /// <summary>
/// 包裹名称 /// 包裹名称
/// </summary> /// </summary>
@ -99,37 +127,38 @@ namespace YooAsset
return operation; return operation;
#endif #endif
} }
public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(params object[] args) public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(string packageVersion, int timeout)
{ {
var operation = new DBFSLoadPackageManifestOperation(this); var operation = new DBFSLoadPackageManifestOperation(this);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(params object[] args) public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{ {
var operation = new DBFSRequestPackageVersionOperation(this); var operation = new DBFSRequestPackageVersionOperation(this);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync(params object[] args) public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync()
{ {
return UnpackFileSystem.ClearAllBundleFilesAsync(); return _unpackFileSystem.ClearAllBundleFilesAsync();
} }
public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(params object[] args) public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(PackageManifest manifest)
{ {
PackageManifest manifest = args[0] as PackageManifest; return _unpackFileSystem.ClearUnusedBundleFilesAsync(manifest);
return UnpackFileSystem.ClearUnusedBundleFilesAsync(manifest);
} }
public virtual FSDownloadFileOperation DownloadFileAsync(params object[] args) public virtual FSDownloadFileOperation DownloadFileAsync(PackageBundle bundle, DownloadParam param)
{ {
PackageBundle bundle = args[0] as PackageBundle; param.ImportFilePath = GetBuildinFileLoadPath(bundle);
int failedTryAgain = (int)args[2]; return _unpackFileSystem.DownloadFileAsync(bundle, param);
int timeout = (int)args[3];
string buidlinFilePath = GetBuildinFileLoadPath(bundle);
return UnpackFileSystem.DownloadFileAsync(bundle, buidlinFilePath, failedTryAgain, timeout);
} }
public virtual FSLoadBundleOperation LoadBundleFile(PackageBundle bundle) public virtual FSLoadBundleOperation LoadBundleFile(PackageBundle bundle)
{ {
if (NeedUnpack(bundle))
{
return _unpackFileSystem.LoadBundleFile(bundle);
}
if (RawFileBuildPipeline) if (RawFileBuildPipeline)
{ {
var operation = new DBFSLoadRawBundleOperation(this, bundle); var operation = new DBFSLoadRawBundleOperation(this, bundle);
@ -149,9 +178,9 @@ namespace YooAsset
if (assetBundle == null) if (assetBundle == null)
return; return;
if (UnpackFileSystem.Exists(bundle)) if (_unpackFileSystem.Exists(bundle))
{ {
UnpackFileSystem.UnloadBundleFile(bundle, assetBundle); _unpackFileSystem.UnloadBundleFile(bundle, assetBundle);
} }
else else
{ {
@ -196,11 +225,13 @@ namespace YooAsset
_packageRoot = PathUtility.Combine(rootDirectory, packageName); _packageRoot = PathUtility.Combine(rootDirectory, packageName);
// 创建解压文件系统 // 创建解压文件系统
UnpackFileSystem = new DefaultUnpackFileSystem(); var remoteServices = new UnpackRemoteServices(_packageRoot);
UnpackFileSystem.SetParameter("FILE_VERIFY_LEVEL", FileVerifyLevel); _unpackFileSystem = new DefaultUnpackFileSystem();
UnpackFileSystem.SetParameter("APPEND_FILE_EXTENSION", AppendFileExtension); _unpackFileSystem.SetParameter("REMOTE_SERVICES", remoteServices);
UnpackFileSystem.SetParameter("RAW_FILE_BUILD_PIPELINE", RawFileBuildPipeline); _unpackFileSystem.SetParameter("FILE_VERIFY_LEVEL", FileVerifyLevel);
UnpackFileSystem.OnCreate(packageName, null); _unpackFileSystem.SetParameter("APPEND_FILE_EXTENSION", AppendFileExtension);
_unpackFileSystem.SetParameter("RAW_FILE_BUILD_PIPELINE", RawFileBuildPipeline);
_unpackFileSystem.OnCreate(packageName, null);
} }
public virtual void OnUpdate() public virtual void OnUpdate()
{ {
@ -237,12 +268,7 @@ namespace YooAsset
#region 内部方法 #region 内部方法
protected string GetDefaultRoot() protected string GetDefaultRoot()
{ {
string path = PathUtility.Combine(UnityEngine.Application.streamingAssetsPath, YooAssetSettingsData.Setting.DefaultYooFolderName); return PathUtility.Combine(Application.streamingAssetsPath, YooAssetSettingsData.Setting.DefaultYooFolderName);
#if UNITY_OPENHARMONY
return $"file://{path}";
#else
return path;
#endif
} }
public string GetBuildinFileLoadPath(PackageBundle bundle) public string GetBuildinFileLoadPath(PackageBundle bundle)
{ {
@ -288,6 +314,14 @@ namespace YooAsset
_wrappers.Add(bundleGUID, wrapper); _wrappers.Add(bundleGUID, wrapper);
return true; return true;
} }
/// <summary>
/// 初始化解压文件系统
/// </summary>
public FSInitializeFileSystemOperation InitializeUpackFileSystem()
{
return _unpackFileSystem.InitializeFileSystemAsync();
}
#endregion #endregion
} }
} }

View File

@ -10,8 +10,8 @@ namespace YooAsset
public int callbackOrder { get { return 0; } } public int callbackOrder { get { return 0; } }
/// <summary> /// <summary>
/// 在构建应用程序前自动生成内置资源清单 /// 在构建应用程序前自动生成内置资源目录文件
/// 原理搜索StreamingAssets目录下的所有资源文件然后将这些文件信息写入内置资源清单并存储在Resources目录下。 /// 原理搜索StreamingAssets目录下的所有资源文件然后将这些文件信息写入文件并存储在Resources目录下。
/// </summary> /// </summary>
public void OnPreprocessBuild(UnityEditor.Build.Reporting.BuildReport report) public void OnPreprocessBuild(UnityEditor.Build.Reporting.BuildReport report)
{ {
@ -24,7 +24,7 @@ namespace YooAsset
DirectoryInfo rootDirectory = new DirectoryInfo(rootPath); DirectoryInfo rootDirectory = new DirectoryInfo(rootPath);
if (rootDirectory.Exists == false) if (rootDirectory.Exists == false)
{ {
Debug.LogWarning($"Not found buildin root folder : {rootPath}"); Debug.LogWarning($"Can not found buildin root folder : {rootPath}");
return; return;
} }
@ -44,7 +44,7 @@ namespace YooAsset
string versionFilePath = $"{pacakgeDirectory}/{versionFileName}"; string versionFilePath = $"{pacakgeDirectory}/{versionFileName}";
if (File.Exists(versionFilePath) == false) if (File.Exists(versionFilePath) == false)
{ {
Debug.LogWarning($"Not found package version file : {versionFilePath}"); Debug.LogWarning($"Can not found package version file : {versionFilePath}");
return; return;
} }
@ -58,7 +58,7 @@ namespace YooAsset
string manifestFilePath = $"{pacakgeDirectory}/{manifestFileName}"; string manifestFilePath = $"{pacakgeDirectory}/{manifestFileName}";
if (File.Exists(manifestFilePath) == false) if (File.Exists(manifestFilePath) == false)
{ {
Debug.LogWarning($"Not found package manifest file : {manifestFilePath}"); Debug.LogWarning($"Can not found package manifest file : {manifestFilePath}");
return; return;
} }
@ -107,7 +107,7 @@ namespace YooAsset
UnityEditor.AssetDatabase.CreateAsset(buildinFileCatalog, saveFilePath); UnityEditor.AssetDatabase.CreateAsset(buildinFileCatalog, saveFilePath);
UnityEditor.AssetDatabase.SaveAssets(); UnityEditor.AssetDatabase.SaveAssets();
UnityEditor.AssetDatabase.Refresh(); UnityEditor.AssetDatabase.Refresh();
Debug.Log($"一共记录{buildinFileCatalog.Wrappers.Count}个内置资源文件,内置资源目录文件保存成功 : {saveFilePath}"); Debug.Log($"Succeed to save buildin file catalog : {saveFilePath}");
} }
} }
} }

View File

@ -34,7 +34,7 @@ namespace YooAsset
if (_steps == ESteps.InitUnpackFileSystem) if (_steps == ESteps.InitUnpackFileSystem)
{ {
if (_initUnpackFIleSystemOp == null) if (_initUnpackFIleSystemOp == null)
_initUnpackFIleSystemOp = _fileSystem.UnpackFileSystem.InitializeFileSystemAsync(); _initUnpackFIleSystemOp = _fileSystem.InitializeUpackFileSystem();
Progress = _initUnpackFIleSystemOp.Progress; Progress = _initUnpackFIleSystemOp.Progress;
if (_initUnpackFIleSystemOp.IsDone == false) if (_initUnpackFIleSystemOp.IsDone == false)
@ -113,7 +113,7 @@ namespace YooAsset
if (_steps == ESteps.InitUnpackFileSystem) if (_steps == ESteps.InitUnpackFileSystem)
{ {
if (_initUnpackFIleSystemOp == null) if (_initUnpackFIleSystemOp == null)
_initUnpackFIleSystemOp = _fileSystem.UnpackFileSystem.InitializeFileSystemAsync(); _initUnpackFIleSystemOp = _fileSystem.InitializeUpackFileSystem();
Progress = _initUnpackFIleSystemOp.Progress; Progress = _initUnpackFIleSystemOp.Progress;
if (_initUnpackFIleSystemOp.IsDone == false) if (_initUnpackFIleSystemOp.IsDone == false)
@ -156,7 +156,7 @@ namespace YooAsset
if (_steps == ESteps.RecordFiles) if (_steps == ESteps.RecordFiles)
{ {
PackageManifest manifest = _loadPackageManifestOp.Result; PackageManifest manifest = _loadPackageManifestOp.Manifest;
string pacakgeDirectory = _fileSystem.FileRoot; string pacakgeDirectory = _fileSystem.FileRoot;
DirectoryInfo rootDirectory = new DirectoryInfo(pacakgeDirectory); DirectoryInfo rootDirectory = new DirectoryInfo(pacakgeDirectory);
FileInfo[] fileInfos = rootDirectory.GetFiles(); FileInfo[] fileInfos = rootDirectory.GetFiles();
@ -174,7 +174,7 @@ namespace YooAsset
} }
else else
{ {
YooLogger.Warning($"Failed mapping file : {fileName}"); YooLogger.Warning($"Failed to mapping buildin bundle file : {fileName}");
} }
} }

View File

@ -3,13 +3,14 @@ using UnityEngine;
namespace YooAsset namespace YooAsset
{ {
/// <summary>
/// 加载AssetBundle文件
/// </summary>
internal class DBFSLoadAssetBundleOperation : FSLoadBundleOperation internal class DBFSLoadAssetBundleOperation : FSLoadBundleOperation
{ {
private enum ESteps private enum ESteps
{ {
None, None,
UnpackAssetBundleFile,
LoadUnpackAssetBundle,
LoadBuidlinAssetBundle, LoadBuidlinAssetBundle,
CheckLoadBuildinResult, CheckLoadBuildinResult,
Done, Done,
@ -17,8 +18,6 @@ namespace YooAsset
private readonly DefaultBuildinFileSystem _fileSystem; private readonly DefaultBuildinFileSystem _fileSystem;
private readonly PackageBundle _bundle; private readonly PackageBundle _bundle;
private FSLoadBundleOperation _loadUnpackBundleOp;
private FSDownloadFileOperation _unpackBundleOp;
private AssetBundleCreateRequest _createRequest; private AssetBundleCreateRequest _createRequest;
private bool _isWaitForAsyncComplete = false; private bool _isWaitForAsyncComplete = false;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
@ -33,67 +32,13 @@ namespace YooAsset
{ {
DownloadProgress = 1f; DownloadProgress = 1f;
DownloadedBytes = _bundle.FileSize; DownloadedBytes = _bundle.FileSize;
_steps = ESteps.LoadBuidlinAssetBundle;
if (_fileSystem.NeedUnpack(_bundle))
{
_steps = ESteps.UnpackAssetBundleFile;
}
else
{
_steps = ESteps.LoadBuidlinAssetBundle;
}
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
{ {
if (_steps == ESteps.None || _steps == ESteps.Done) if (_steps == ESteps.None || _steps == ESteps.Done)
return; return;
if (_steps == ESteps.UnpackAssetBundleFile)
{
if (_unpackBundleOp == null)
{
int failedTryAgain = 0;
int timeout = int.MaxValue;
_unpackBundleOp = _fileSystem.DownloadFileAsync(_bundle, null, failedTryAgain, timeout);
}
if (_unpackBundleOp.IsDone == false)
return;
if (_unpackBundleOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.LoadUnpackAssetBundle;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _unpackBundleOp.Error;
}
}
if (_steps == ESteps.LoadUnpackAssetBundle)
{
if (_loadUnpackBundleOp == null)
_loadUnpackBundleOp = _fileSystem.UnpackFileSystem.LoadBundleFile(_bundle);
if (_loadUnpackBundleOp.IsDone == false)
return;
if (_loadUnpackBundleOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Result = _loadUnpackBundleOp.Result;
Status = EOperationStatus.Succeed;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _loadUnpackBundleOp.Error;
}
}
if (_steps == ESteps.LoadBuidlinAssetBundle) if (_steps == ESteps.LoadBuidlinAssetBundle)
{ {
string filePath = _fileSystem.GetBuildinFileLoadPath(_bundle); string filePath = _fileSystem.GetBuildinFileLoadPath(_bundle);
@ -146,18 +91,6 @@ namespace YooAsset
while (true) while (true)
{ {
if (_unpackBundleOp != null)
{
if (_unpackBundleOp.IsDone == false)
_unpackBundleOp.WaitForAsyncComplete();
}
if (_loadUnpackBundleOp != null)
{
if (_loadUnpackBundleOp.IsDone == false)
_loadUnpackBundleOp.WaitForAsyncComplete();
}
// 驱动流程 // 驱动流程
InternalOnUpdate(); InternalOnUpdate();
@ -168,21 +101,17 @@ namespace YooAsset
} }
public override void AbortDownloadOperation() public override void AbortDownloadOperation()
{ {
if (_steps == ESteps.UnpackAssetBundleFile)
{
if (_unpackBundleOp != null)
_unpackBundleOp.SetAbort();
}
} }
} }
/// <summary>
/// 加载原生文件
/// </summary>
internal class DBFSLoadRawBundleOperation : FSLoadBundleOperation internal class DBFSLoadRawBundleOperation : FSLoadBundleOperation
{ {
private enum ESteps private enum ESteps
{ {
None, None,
UnpackRawBundleFile,
LoadUnpackRawBundle,
LoadBuildinRawBundle, LoadBuildinRawBundle,
CheckLoadBuildinResult, CheckLoadBuildinResult,
Done, Done,
@ -190,8 +119,6 @@ namespace YooAsset
private readonly DefaultBuildinFileSystem _fileSystem; private readonly DefaultBuildinFileSystem _fileSystem;
private readonly PackageBundle _bundle; private readonly PackageBundle _bundle;
private FSLoadBundleOperation _loadUnpackBundleOp;
private FSDownloadFileOperation _unpackBundleOp;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
@ -204,67 +131,13 @@ namespace YooAsset
{ {
DownloadProgress = 1f; DownloadProgress = 1f;
DownloadedBytes = _bundle.FileSize; DownloadedBytes = _bundle.FileSize;
_steps = ESteps.LoadBuildinRawBundle;
if (_fileSystem.NeedUnpack(_bundle))
{
_steps = ESteps.UnpackRawBundleFile;
}
else
{
_steps = ESteps.LoadBuildinRawBundle;
}
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
{ {
if (_steps == ESteps.None || _steps == ESteps.Done) if (_steps == ESteps.None || _steps == ESteps.Done)
return; return;
if (_steps == ESteps.UnpackRawBundleFile)
{
if (_unpackBundleOp == null)
{
int failedTryAgain = 0;
int timeout = int.MaxValue;
_unpackBundleOp = _fileSystem.DownloadFileAsync(_bundle, null, failedTryAgain, timeout);
}
if (_unpackBundleOp.IsDone == false)
return;
if (_unpackBundleOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.LoadUnpackRawBundle;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _unpackBundleOp.Error;
}
}
if (_steps == ESteps.LoadUnpackRawBundle)
{
if (_loadUnpackBundleOp == null)
_loadUnpackBundleOp = _fileSystem.UnpackFileSystem.LoadBundleFile(_bundle);
if (_loadUnpackBundleOp.IsDone == false)
return;
if (_loadUnpackBundleOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Result = _loadUnpackBundleOp.Result;
Status = EOperationStatus.Succeed;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _loadUnpackBundleOp.Error;
}
}
if (_steps == ESteps.LoadBuildinRawBundle) if (_steps == ESteps.LoadBuildinRawBundle)
{ {
string filePath = _fileSystem.GetBuildinFileLoadPath(_bundle); string filePath = _fileSystem.GetBuildinFileLoadPath(_bundle);
@ -302,18 +175,6 @@ namespace YooAsset
{ {
while (true) while (true)
{ {
if (_unpackBundleOp != null)
{
if (_unpackBundleOp.IsDone == false)
_unpackBundleOp.WaitForAsyncComplete();
}
if (_loadUnpackBundleOp != null)
{
if (_loadUnpackBundleOp.IsDone == false)
_loadUnpackBundleOp.WaitForAsyncComplete();
}
// 驱动流程 // 驱动流程
InternalOnUpdate(); InternalOnUpdate();
@ -324,11 +185,6 @@ namespace YooAsset
} }
public override void AbortDownloadOperation() public override void AbortDownloadOperation()
{ {
if (_steps == ESteps.UnpackRawBundleFile)
{
if (_unpackBundleOp != null)
_unpackBundleOp.SetAbort();
}
} }
} }
} }

View File

@ -95,7 +95,7 @@ namespace YooAsset
if (_loadBuildinPackageManifestOp.Status == EOperationStatus.Succeed) if (_loadBuildinPackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Result = _loadBuildinPackageManifestOp.Manifest; Manifest = _loadBuildinPackageManifestOp.Manifest;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else

View File

@ -6,7 +6,7 @@ namespace YooAsset
private enum ESteps private enum ESteps
{ {
None, None,
GetPackageVersion, RequestPackageVersion,
Done, Done,
} }
@ -21,14 +21,14 @@ namespace YooAsset
} }
internal override void InternalOnStart() internal override void InternalOnStart()
{ {
_steps = ESteps.GetPackageVersion; _steps = ESteps.RequestPackageVersion;
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
{ {
if (_steps == ESteps.None || _steps == ESteps.Done) if (_steps == ESteps.None || _steps == ESteps.Done)
return; return;
if (_steps == ESteps.GetPackageVersion) if (_steps == ESteps.RequestPackageVersion)
{ {
if (_requestBuildinPackageVersionOp == null) if (_requestBuildinPackageVersionOp == null)
{ {

View File

@ -44,7 +44,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"The catalog file package name {catalog.PackageName} cannot match the file system package name {_fileSystem.PackageName}"; Error = $"Catalog file package name {catalog.PackageName} cannot match the file system package name {_fileSystem.PackageName}";
return; return;
} }
@ -54,7 +54,7 @@ namespace YooAsset
_fileSystem.RecordFile(wrapper.BundleGUID, fileWrapper); _fileSystem.RecordFile(wrapper.BundleGUID, fileWrapper);
} }
YooLogger.Log($"Package '{_fileSystem.PackageName}' catalog files count : {catalog.Wrappers.Count}"); YooLogger.Log($"Package '{_fileSystem.PackageName}' buildin catalog files count : {catalog.Wrappers.Count}");
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }

View File

@ -20,7 +20,7 @@ namespace YooAsset
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
/// <summary> /// <summary>
/// 加载的清单实例 /// 包裹清单
/// </summary> /// </summary>
public PackageManifest Manifest { private set; get; } public PackageManifest Manifest { private set; get; }
@ -76,7 +76,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = "Failed to verify buildin package manifest file!"; Error = "Failed to verify buildin package manifest file !";
} }
} }

View File

@ -120,42 +120,32 @@ namespace YooAsset
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(params object[] args) public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(string packageVersion, int timeout)
{ {
string packageVersion = args[0] as string;
int timeout = (int)args[1];
var operation = new DCFSLoadPackageManifestOperation(this, packageVersion, timeout); var operation = new DCFSLoadPackageManifestOperation(this, packageVersion, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(params object[] args) public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{ {
bool appendTimeTicks = (bool)args[0];
int timeout = (int)args[1];
var operation = new DCFSRequestPackageVersionOperation(this, appendTimeTicks, timeout); var operation = new DCFSRequestPackageVersionOperation(this, appendTimeTicks, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync(params object[] args) public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync()
{ {
var operation = new DCFSClearAllBundleFilesOperation(this); var operation = new DCFSClearAllBundleFilesOperation(this);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(params object[] args) public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(PackageManifest manifest)
{ {
PackageManifest manifest = args[0] as PackageManifest;
var operation = new DCFSClearUnusedBundleFilesOperation(this, manifest); var operation = new DCFSClearUnusedBundleFilesOperation(this, manifest);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSDownloadFileOperation DownloadFileAsync(params object[] args) public virtual FSDownloadFileOperation DownloadFileAsync(PackageBundle bundle, DownloadParam param)
{ {
PackageBundle bundle = args[0] as PackageBundle;
string localCopyFilePath = (string)args[1];
int failedTryAgain = (int)args[2];
int timeout = (int)args[3];
// 查询旧的下载器 // 查询旧的下载器
if (_downloaders.TryGetValue(bundle.BundleGUID, out var oldDownloader)) if (_downloaders.TryGetValue(bundle.BundleGUID, out var oldDownloader))
{ {
@ -165,23 +155,21 @@ namespace YooAsset
// 创建新的下载器 // 创建新的下载器
{ {
string mainURL; if (string.IsNullOrEmpty(param.ImportFilePath))
string fallbackURL;
if (string.IsNullOrEmpty(localCopyFilePath))
{ {
mainURL = RemoteServices.GetRemoteMainURL(bundle.FileName); param.MainURL = RemoteServices.GetRemoteMainURL(bundle.FileName);
fallbackURL = RemoteServices.GetRemoteFallbackURL(bundle.FileName); param.FallbackURL = RemoteServices.GetRemoteFallbackURL(bundle.FileName);
} }
else else
{ {
// 注意:把本地文件路径指定为远端下载地址 // 注意:把本地文件路径指定为远端下载地址
mainURL = DownloadSystemHelper.ConvertToWWWPath(localCopyFilePath); param.MainURL = DownloadSystemHelper.ConvertToWWWPath(param.ImportFilePath);
fallbackURL = mainURL; param.FallbackURL = param.MainURL;
} }
if (bundle.FileSize >= ResumeDownloadMinimumSize) if (bundle.FileSize >= ResumeDownloadMinimumSize)
{ {
var newDownloader = new DCFSDownloadResumeFileOperation(this, bundle, mainURL, fallbackURL, failedTryAgain, timeout); var newDownloader = new DCFSDownloadResumeFileOperation(this, bundle, param);
newDownloader.Reference(); newDownloader.Reference();
_downloaders.Add(bundle.BundleGUID, newDownloader); _downloaders.Add(bundle.BundleGUID, newDownloader);
OperationSystem.StartOperation(PackageName, newDownloader); OperationSystem.StartOperation(PackageName, newDownloader);
@ -189,7 +177,7 @@ namespace YooAsset
} }
else else
{ {
var newDownloader = new DCFSDownloadNormalFileOperation(this, bundle, mainURL, fallbackURL, failedTryAgain, timeout); var newDownloader = new DCFSDownloadNormalFileOperation(this, bundle, param);
newDownloader.Reference(); newDownloader.Reference();
_downloaders.Add(bundle.BundleGUID, newDownloader); _downloaders.Add(bundle.BundleGUID, newDownloader);
OperationSystem.StartOperation(PackageName, newDownloader); OperationSystem.StartOperation(PackageName, newDownloader);

View File

@ -36,8 +36,8 @@ namespace YooAsset
{ {
_allBundleGUIDs = _fileSystem.GetAllCachedBundleGUIDs(); _allBundleGUIDs = _fileSystem.GetAllCachedBundleGUIDs();
_fileTotalCount = _allBundleGUIDs.Count; _fileTotalCount = _allBundleGUIDs.Count;
YooLogger.Log($"Found all cache file count : {_fileTotalCount}");
_steps = ESteps.ClearAllCacheFiles; _steps = ESteps.ClearAllCacheFiles;
YooLogger.Log($"Found all cache files count : {_fileTotalCount}");
} }
if (_steps == ESteps.ClearAllCacheFiles) if (_steps == ESteps.ClearAllCacheFiles)

View File

@ -36,10 +36,10 @@ namespace YooAsset
if (_steps == ESteps.GetUnusedCacheFiles) if (_steps == ESteps.GetUnusedCacheFiles)
{ {
_steps = ESteps.ClearUnusedCacheFiles;
_unusedBundleGUIDs = GetUnusedBundleGUIDs(); _unusedBundleGUIDs = GetUnusedBundleGUIDs();
_unusedFileTotalCount = _unusedBundleGUIDs.Count; _unusedFileTotalCount = _unusedBundleGUIDs.Count;
YooLogger.Log($"Found unused cache file count : {_unusedFileTotalCount}"); _steps = ESteps.ClearUnusedCacheFiles;
YooLogger.Log($"Found unused cache files count : {_unusedFileTotalCount}");
} }
if (_steps == ESteps.ClearUnusedCacheFiles) if (_steps == ESteps.ClearUnusedCacheFiles)

View File

@ -11,9 +11,7 @@ namespace YooAsset
private string _tempFilePath; private string _tempFilePath;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
internal DCFSDownloadNormalFileOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle, internal DCFSDownloadNormalFileOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle, DownloadParam param) : base(bundle, param)
string mainURL, string fallbackURL, int failedTryAgain, int timeout)
: base(bundle, mainURL, fallbackURL, failedTryAgain, timeout)
{ {
_fileSystem = fileSystem; _fileSystem = fileSystem;
} }
@ -110,7 +108,7 @@ namespace YooAsset
} }
else else
{ {
Error = $"{_fileSystem.GetType().FullName} write file failed !"; Error = $"{_fileSystem.GetType().FullName} failed to write file !";
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
_steps = ESteps.Done; _steps = ESteps.Done;
YooLogger.Error(Error); YooLogger.Error(Error);
@ -198,19 +196,17 @@ namespace YooAsset
private DownloadHandlerFileRange _downloadHandle; private DownloadHandlerFileRange _downloadHandle;
private VerifyTempFileOperation _verifyOperation; private VerifyTempFileOperation _verifyOperation;
private long _fileOriginLength = 0; private long _fileOriginLength = 0;
private string _fileSavePath; private string _tempFilePath;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
internal DCFSDownloadResumeFileOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle, internal DCFSDownloadResumeFileOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle, DownloadParam param) : base(bundle, param)
string mainURL, string fallbackURL, int failedTryAgain, int timeout)
: base(bundle, mainURL, fallbackURL, failedTryAgain, timeout)
{ {
_fileSystem = fileSystem; _fileSystem = fileSystem;
} }
internal override void InternalOnStart() internal override void InternalOnStart()
{ {
_fileSavePath = _fileSystem.GetTempFilePath(Bundle); _tempFilePath = _fileSystem.GetTempFilePath(Bundle);
_steps = ESteps.CheckExists; _steps = ESteps.CheckExists;
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
@ -235,7 +231,7 @@ namespace YooAsset
// 创建下载器 // 创建下载器
if (_steps == ESteps.CreateRequest) if (_steps == ESteps.CreateRequest)
{ {
FileUtility.CreateFileDirectory(_fileSavePath); FileUtility.CreateFileDirectory(_tempFilePath);
// 获取请求地址 // 获取请求地址
_requestURL = GetRequestURL(); _requestURL = GetRequestURL();
@ -246,9 +242,9 @@ namespace YooAsset
// 获取下载起始位置 // 获取下载起始位置
_fileOriginLength = 0; _fileOriginLength = 0;
long fileBeginLength = -1; long fileBeginLength = -1;
if (File.Exists(_fileSavePath)) if (File.Exists(_tempFilePath))
{ {
FileInfo fileInfo = new FileInfo(_fileSavePath); FileInfo fileInfo = new FileInfo(_tempFilePath);
fileBeginLength = fileInfo.Length; fileBeginLength = fileInfo.Length;
_fileOriginLength = fileBeginLength; _fileOriginLength = fileBeginLength;
DownloadedBytes = _fileOriginLength; DownloadedBytes = _fileOriginLength;
@ -258,8 +254,8 @@ namespace YooAsset
if (fileBeginLength >= Bundle.FileSize) if (fileBeginLength >= Bundle.FileSize)
{ {
// 删除临时文件 // 删除临时文件
if (File.Exists(_fileSavePath)) if (File.Exists(_tempFilePath))
File.Delete(_fileSavePath); File.Delete(_tempFilePath);
} }
// 创建下载器 // 创建下载器
@ -295,7 +291,7 @@ namespace YooAsset
// 验证下载文件 // 验证下载文件
if (_steps == ESteps.VerifyTempFile) if (_steps == ESteps.VerifyTempFile)
{ {
var element = new TempFileElement(_fileSavePath, Bundle.FileCRC, Bundle.FileSize); var element = new TempFileElement(_tempFilePath, Bundle.FileCRC, Bundle.FileSize);
_verifyOperation = new VerifyTempFileOperation(element); _verifyOperation = new VerifyTempFileOperation(element);
OperationSystem.StartOperation(_fileSystem.PackageName, _verifyOperation); OperationSystem.StartOperation(_fileSystem.PackageName, _verifyOperation);
_steps = ESteps.CheckVerifyTempFile; _steps = ESteps.CheckVerifyTempFile;
@ -309,14 +305,14 @@ namespace YooAsset
if (_verifyOperation.Status == EOperationStatus.Succeed) if (_verifyOperation.Status == EOperationStatus.Succeed)
{ {
if (_fileSystem.WriteCacheFile(Bundle, _fileSavePath)) if (_fileSystem.WriteCacheFile(Bundle, _tempFilePath))
{ {
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
_steps = ESteps.Done; _steps = ESteps.Done;
} }
else else
{ {
Error = $"{_fileSystem.GetType().FullName} write file failed : {_fileSavePath}"; Error = $"{_fileSystem.GetType().FullName} failed to write file !";
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
_steps = ESteps.Done; _steps = ESteps.Done;
} }
@ -328,8 +324,8 @@ namespace YooAsset
} }
// 注意:验证完成后直接删除文件 // 注意:验证完成后直接删除文件
if (File.Exists(_fileSavePath)) if (File.Exists(_tempFilePath))
File.Delete(_fileSavePath); File.Delete(_tempFilePath);
} }
// 重新尝试下载 // 重新尝试下载
@ -381,7 +377,7 @@ namespace YooAsset
{ {
_webRequest = DownloadSystemHelper.NewUnityWebRequestGet(_requestURL); _webRequest = DownloadSystemHelper.NewUnityWebRequestGet(_requestURL);
#if UNITY_2019_4_OR_NEWER #if UNITY_2019_4_OR_NEWER
var handler = new DownloadHandlerFile(_fileSavePath, true); var handler = new DownloadHandlerFile(_tempFilePath, true);
handler.removeFileOnAbort = false; handler.removeFileOnAbort = false;
#else #else
var handler = new DownloadHandlerFileRange(FileSavePath, Bundle.FileSize, _webRequest); var handler = new DownloadHandlerFileRange(FileSavePath, Bundle.FileSize, _webRequest);
@ -416,8 +412,8 @@ namespace YooAsset
//说明:如果遇到以下错误返回码,验证失败直接删除文件 //说明:如果遇到以下错误返回码,验证失败直接删除文件
if (_fileSystem.ResumeDownloadResponseCodes.Contains(HttpCode)) if (_fileSystem.ResumeDownloadResponseCodes.Contains(HttpCode))
{ {
if (File.Exists(_fileSavePath)) if (File.Exists(_tempFilePath))
File.Delete(_fileSavePath); File.Delete(_tempFilePath);
} }
} }
} }

View File

@ -1,6 +1,4 @@
using System.IO; 
using UnityEngine;
namespace YooAsset namespace YooAsset
{ {
internal class DCFSInitializeOperation : FSInitializeFileSystemOperation internal class DCFSInitializeOperation : FSInitializeFileSystemOperation
@ -43,7 +41,7 @@ namespace YooAsset
{ {
_fileSytem.DeleteAllManifestFiles(); _fileSytem.DeleteAllManifestFiles();
appFootPrint.Coverage(_fileSytem.PackageName); appFootPrint.Coverage(_fileSytem.PackageName);
YooLogger.Log("Delete manifest files when application foot print dirty !"); YooLogger.Warning("Delete manifest files when application foot print dirty !");
} }
_steps = ESteps.SearchCacheFiles; _steps = ESteps.SearchCacheFiles;
@ -76,11 +74,18 @@ namespace YooAsset
if (_verifyCacheFilesOp.IsDone == false) if (_verifyCacheFilesOp.IsDone == false)
return; return;
// 注意:总是返回成功 if (_verifyCacheFilesOp.Status == EOperationStatus.Succeed)
_steps = ESteps.Done; {
Status = EOperationStatus.Succeed; _steps = ESteps.Done;
Status = EOperationStatus.Succeed;
YooLogger.Log($"Package '{_fileSytem.PackageName}' cached files count : {_fileSytem.FileCount}"); YooLogger.Log($"Package '{_fileSytem.PackageName}' cached files count : {_fileSytem.FileCount}");
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _verifyCacheFilesOp.Error;
}
} }
} }
} }

View File

@ -5,21 +5,22 @@ namespace YooAsset
{ {
internal class DCFSLoadAssetBundleOperation : FSLoadBundleOperation internal class DCFSLoadAssetBundleOperation : FSLoadBundleOperation
{ {
private enum ESteps protected enum ESteps
{ {
None, None,
CheckExist,
DownloadFile, DownloadFile,
LoadAssetBundle, LoadAssetBundle,
CheckResult, CheckResult,
Done, Done,
} }
private readonly DefaultCacheFileSystem _fileSystem; protected readonly DefaultCacheFileSystem _fileSystem;
private readonly PackageBundle _bundle; protected readonly PackageBundle _bundle;
private FSDownloadFileOperation _downloadFileOp; protected FSDownloadFileOperation _downloadFileOp;
private AssetBundleCreateRequest _createRequest; protected AssetBundleCreateRequest _createRequest;
private bool _isWaitForAsyncComplete = false; protected bool _isWaitForAsyncComplete = false;
private ESteps _steps = ESteps.None; protected ESteps _steps = ESteps.None;
internal DCFSLoadAssetBundleOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle) internal DCFSLoadAssetBundleOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle)
@ -29,29 +30,33 @@ namespace YooAsset
} }
internal override void InternalOnStart() internal override void InternalOnStart()
{ {
if (_fileSystem.NeedDownload(_bundle)) _steps = ESteps.CheckExist;
{
_steps = ESteps.DownloadFile;
}
else
{
DownloadProgress = 1f;
DownloadedBytes = _bundle.FileSize;
_steps = ESteps.LoadAssetBundle;
}
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
{ {
if (_steps == ESteps.None || _steps == ESteps.Done) if (_steps == ESteps.None || _steps == ESteps.Done)
return; return;
if (_steps == ESteps.CheckExist)
{
if (_fileSystem.Exists(_bundle))
{
DownloadProgress = 1f;
DownloadedBytes = _bundle.FileSize;
_steps = ESteps.LoadAssetBundle;
}
else
{
_steps = ESteps.DownloadFile;
}
}
if (_steps == ESteps.DownloadFile) if (_steps == ESteps.DownloadFile)
{ {
if (_downloadFileOp == null) if (_downloadFileOp == null)
{ {
int failedTryAgain = int.MaxValue; DownloadParam downloadParam = new DownloadParam(int.MaxValue, 60);
int timeout = 60; _downloadFileOp = _fileSystem.DownloadFileAsync(_bundle, downloadParam);
_downloadFileOp = _fileSystem.DownloadFileAsync(_bundle, null, failedTryAgain, timeout);
} }
DownloadProgress = _downloadFileOp.DownloadProgress; DownloadProgress = _downloadFileOp.DownloadProgress;
@ -112,8 +117,8 @@ namespace YooAsset
{ {
// 注意当缓存文件的校验等级为Low的时候并不能保证缓存文件的完整性。 // 注意当缓存文件的校验等级为Low的时候并不能保证缓存文件的完整性。
// 说明在AssetBundle文件加载失败的情况下我们需要重新验证文件的完整性 // 说明在AssetBundle文件加载失败的情况下我们需要重新验证文件的完整性
EFileVerifyResult result = _fileSystem.VerifyCacheFile(_bundle); EFileVerifyResult verifyResult = _fileSystem.VerifyCacheFile(_bundle);
if (result == EFileVerifyResult.Succeed) if (verifyResult == EFileVerifyResult.Succeed)
{ {
// 注意:在安卓移动平台,华为和三星真机上有极小概率加载资源包失败。 // 注意:在安卓移动平台,华为和三星真机上有极小概率加载资源包失败。
// 说明:大多数情况在首次安装下载资源到沙盒内,游戏过程中切换到后台再回到游戏内有很大概率触发! // 说明:大多数情况在首次安装下载资源到沙盒内,游戏过程中切换到后台再回到游戏内有很大概率触发!
@ -193,19 +198,20 @@ namespace YooAsset
internal class DCFSLoadRawBundleOperation : FSLoadBundleOperation internal class DCFSLoadRawBundleOperation : FSLoadBundleOperation
{ {
private enum ESteps protected enum ESteps
{ {
None, None,
CheckExist,
DownloadFile, DownloadFile,
LoadRawBundle, LoadRawBundle,
CheckResult, CheckResult,
Done, Done,
} }
private readonly DefaultCacheFileSystem _fileSystem; protected readonly DefaultCacheFileSystem _fileSystem;
private readonly PackageBundle _bundle; protected readonly PackageBundle _bundle;
private FSDownloadFileOperation _downloadFileOp; protected FSDownloadFileOperation _downloadFileOp;
private ESteps _steps = ESteps.None; protected ESteps _steps = ESteps.None;
internal DCFSLoadRawBundleOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle) internal DCFSLoadRawBundleOperation(DefaultCacheFileSystem fileSystem, PackageBundle bundle)
@ -215,29 +221,33 @@ namespace YooAsset
} }
internal override void InternalOnStart() internal override void InternalOnStart()
{ {
if (_fileSystem.NeedDownload(_bundle)) _steps = ESteps.CheckExist;
{
_steps = ESteps.DownloadFile;
}
else
{
DownloadProgress = 1f;
DownloadedBytes = _bundle.FileSize;
_steps = ESteps.LoadRawBundle;
}
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
{ {
if (_steps == ESteps.None || _steps == ESteps.Done) if (_steps == ESteps.None || _steps == ESteps.Done)
return; return;
if (_steps == ESteps.CheckExist)
{
if (_fileSystem.Exists(_bundle))
{
DownloadProgress = 1f;
DownloadedBytes = _bundle.FileSize;
_steps = ESteps.LoadRawBundle;
}
else
{
_steps = ESteps.DownloadFile;
}
}
if (_steps == ESteps.DownloadFile) if (_steps == ESteps.DownloadFile)
{ {
if (_downloadFileOp == null) if (_downloadFileOp == null)
{ {
int failedTryAgain = int.MaxValue; DownloadParam downloadParam = new DownloadParam(int.MaxValue, 60);
int timeout = 60; _downloadFileOp = _fileSystem.DownloadFileAsync(_bundle, downloadParam);
_downloadFileOp = _fileSystem.DownloadFileAsync(_bundle, null, failedTryAgain, timeout);
} }
DownloadProgress = _downloadFileOp.DownloadProgress; DownloadProgress = _downloadFileOp.DownloadProgress;
@ -278,14 +288,14 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Can not found raw bundle file : {filePath}"; Error = $"Can not found cache raw bundle file : {filePath}";
} }
} }
else else
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Failed load raw bundle file : {_bundle.BundleName}"; Error = $"Failed to load cache raw bundle file : {_bundle.BundleName}";
} }
} }
} }

View File

@ -125,7 +125,7 @@ namespace YooAsset
if (_loadCachePackageManifestOp.Status == EOperationStatus.Succeed) if (_loadCachePackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Result = _loadCachePackageManifestOp.Manifest; Manifest = _loadCachePackageManifestOp.Manifest;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else
@ -144,7 +144,6 @@ namespace YooAsset
string manifestFilePath = _fileSystem.GetCachePackageManifestFilePath(_packageVersion); string manifestFilePath = _fileSystem.GetCachePackageManifestFilePath(_packageVersion);
if (File.Exists(manifestFilePath)) if (File.Exists(manifestFilePath))
{ {
YooLogger.Warning($"Failed to load cache manifest file : {Error}");
YooLogger.Warning($"Invalid cache manifest file have been removed : {manifestFilePath}"); YooLogger.Warning($"Invalid cache manifest file have been removed : {manifestFilePath}");
File.Delete(manifestFilePath); File.Delete(manifestFilePath);
} }

View File

@ -13,7 +13,7 @@ namespace YooAsset
private readonly DefaultCacheFileSystem _fileSystem; private readonly DefaultCacheFileSystem _fileSystem;
private readonly bool _appendTimeTicks; private readonly bool _appendTimeTicks;
private readonly int _timeout; private readonly int _timeout;
private DefaultGetRemotePackageVersionOperation _getRemotePackageVersionOp; private RequestRemotePackageVersionOperation _requestRemotePackageVersionOp;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
@ -34,31 +34,27 @@ namespace YooAsset
if (_steps == ESteps.GetPackageVersion) if (_steps == ESteps.GetPackageVersion)
{ {
if (_getRemotePackageVersionOp == null) if (_requestRemotePackageVersionOp == null)
{ {
string packageName = _fileSystem.PackageName; _requestRemotePackageVersionOp = new RequestRemotePackageVersionOperation(_fileSystem, _appendTimeTicks, _timeout);
string fileName = YooAssetSettingsData.GetPackageVersionFileName(packageName); OperationSystem.StartOperation(_fileSystem.PackageName, _requestRemotePackageVersionOp);
string mainURL = _fileSystem.RemoteServices.GetRemoteMainURL(fileName);
string fallbackURL = _fileSystem.RemoteServices.GetRemoteFallbackURL(fileName);
_getRemotePackageVersionOp = new DefaultGetRemotePackageVersionOperation(packageName, mainURL, fallbackURL, _appendTimeTicks, _timeout);
OperationSystem.StartOperation(packageName, _getRemotePackageVersionOp);
} }
Progress = _getRemotePackageVersionOp.Progress; Progress = _requestRemotePackageVersionOp.Progress;
if (_getRemotePackageVersionOp.IsDone == false) if (_requestRemotePackageVersionOp.IsDone == false)
return; return;
if (_getRemotePackageVersionOp.Status == EOperationStatus.Succeed) if (_requestRemotePackageVersionOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
PackageVersion = _getRemotePackageVersionOp.PackageVersion; PackageVersion = _requestRemotePackageVersionOp.PackageVersion;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = _getRemotePackageVersionOp.Error; Error = _requestRemotePackageVersionOp.Error;
} }
} }
} }

View File

@ -57,7 +57,6 @@ namespace YooAsset
string savePath = _fileSystem.GetCachePackageHashFilePath(_packageVersion); string savePath = _fileSystem.GetCachePackageHashFilePath(_packageVersion);
string fileName = YooAssetSettingsData.GetPackageHashFileName(_fileSystem.PackageName, _packageVersion); string fileName = YooAssetSettingsData.GetPackageHashFileName(_fileSystem.PackageName, _packageVersion);
string webURL = GetWebRequestURL(fileName); string webURL = GetWebRequestURL(fileName);
YooLogger.Log($"Beginning to download package hash file : {webURL}");
_webFileRequestOp = new UnityWebFileRequestOperation(webURL, savePath, _timeout); _webFileRequestOp = new UnityWebFileRequestOperation(webURL, savePath, _timeout);
OperationSystem.StartOperation(_fileSystem.PackageName, _webFileRequestOp); OperationSystem.StartOperation(_fileSystem.PackageName, _webFileRequestOp);
} }

View File

@ -57,7 +57,6 @@ namespace YooAsset
string savePath = _fileSystem.GetCachePackageManifestFilePath(_packageVersion); string savePath = _fileSystem.GetCachePackageManifestFilePath(_packageVersion);
string fileName = YooAssetSettingsData.GetManifestBinaryFileName(_fileSystem.PackageName, _packageVersion); string fileName = YooAssetSettingsData.GetManifestBinaryFileName(_fileSystem.PackageName, _packageVersion);
string webURL = GetDownloadRequestURL(fileName); string webURL = GetDownloadRequestURL(fileName);
YooLogger.Log($"Beginning to download package manifest file : {webURL}");
_webFileRequestOp = new UnityWebFileRequestOperation(webURL, savePath, _timeout); _webFileRequestOp = new UnityWebFileRequestOperation(webURL, savePath, _timeout);
OperationSystem.StartOperation(_fileSystem.PackageName, _webFileRequestOp); OperationSystem.StartOperation(_fileSystem.PackageName, _webFileRequestOp);
} }

View File

@ -42,7 +42,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Cache package hash file not found : {filePath}"; Error = $"Can not found cache package hash file : {filePath}";
return; return;
} }

View File

@ -21,7 +21,7 @@ namespace YooAsset
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
/// <summary> /// <summary>
/// 加载的清单实例 /// 包裹清单
/// </summary> /// </summary>
public PackageManifest Manifest { private set; get; } public PackageManifest Manifest { private set; get; }
@ -53,7 +53,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Cache manifest file not found : {manifestFilePath}"; Error = $"Can not found cache manifest file : {manifestFilePath}";
} }
} }

View File

@ -1,7 +1,7 @@
 
namespace YooAsset namespace YooAsset
{ {
internal class DefaultGetRemotePackageVersionOperation : AsyncOperationBase internal class RequestRemotePackageVersionOperation : AsyncOperationBase
{ {
private enum ESteps private enum ESteps
{ {
@ -10,9 +10,7 @@ namespace YooAsset
Done, Done,
} }
private readonly string _packageName; private readonly DefaultCacheFileSystem _fileSystem;
private readonly string _mainURL;
private readonly string _fallbackURL;
private readonly bool _appendTimeTicks; private readonly bool _appendTimeTicks;
private readonly int _timeout; private readonly int _timeout;
private UnityWebTextRequestOperation _webTextRequestOp; private UnityWebTextRequestOperation _webTextRequestOp;
@ -20,22 +18,20 @@ namespace YooAsset
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
/// <summary> /// <summary>
/// 查询的远端版本信息 /// 包裹版本
/// </summary> /// </summary>
internal string PackageVersion { set; get; } internal string PackageVersion { set; get; }
internal DefaultGetRemotePackageVersionOperation(string packageName, string mainURL, string fallbackURL, bool appendTimeTicks, int timeout) internal RequestRemotePackageVersionOperation(DefaultCacheFileSystem fileSystem, bool appendTimeTicks, int timeout)
{ {
_packageName = packageName; _fileSystem = fileSystem;
_mainURL = mainURL;
_fallbackURL = fallbackURL;
_appendTimeTicks = appendTimeTicks; _appendTimeTicks = appendTimeTicks;
_timeout = timeout; _timeout = timeout;
} }
internal override void InternalOnStart() internal override void InternalOnStart()
{ {
_requestCount = WebRequestCounter.GetRequestFailedCount(_packageName, nameof(DefaultGetRemotePackageVersionOperation)); _requestCount = WebRequestCounter.GetRequestFailedCount(_fileSystem.PackageName, nameof(RequestRemotePackageVersionOperation));
_steps = ESteps.RequestPackageVersion; _steps = ESteps.RequestPackageVersion;
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
@ -47,24 +43,17 @@ namespace YooAsset
{ {
if (_webTextRequestOp == null) if (_webTextRequestOp == null)
{ {
string url = GetPackageVersionRequestURL(); string fileName = YooAssetSettingsData.GetPackageVersionFileName(_fileSystem.PackageName);
YooLogger.Log($"Beginning to request package version : {url}"); string url = GetWebRequestURL(fileName);
_webTextRequestOp = new UnityWebTextRequestOperation(url, _timeout); _webTextRequestOp = new UnityWebTextRequestOperation(url, _timeout);
OperationSystem.StartOperation(_packageName, _webTextRequestOp); OperationSystem.StartOperation(_fileSystem.PackageName, _webTextRequestOp);
} }
Progress = _webTextRequestOp.Progress; Progress = _webTextRequestOp.Progress;
if (_webTextRequestOp.IsDone == false) if (_webTextRequestOp.IsDone == false)
return; return;
if (_webTextRequestOp.Status != EOperationStatus.Succeed) if (_webTextRequestOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webTextRequestOp.Error;
WebRequestCounter.RecordRequestFailed(_packageName, nameof(DefaultGetRemotePackageVersionOperation));
}
else
{ {
PackageVersion = _webTextRequestOp.Result; PackageVersion = _webTextRequestOp.Result;
if (string.IsNullOrEmpty(PackageVersion)) if (string.IsNullOrEmpty(PackageVersion))
@ -79,18 +68,25 @@ namespace YooAsset
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
} }
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webTextRequestOp.Error;
WebRequestCounter.RecordRequestFailed(_fileSystem.PackageName, nameof(RequestRemotePackageVersionOperation));
}
} }
} }
private string GetPackageVersionRequestURL() private string GetWebRequestURL(string fileName)
{ {
string url; string url;
// 轮流返回请求地址 // 轮流返回请求地址
if (_requestCount % 2 == 0) if (_requestCount % 2 == 0)
url = _mainURL; url = _fileSystem.RemoteServices.GetRemoteMainURL(fileName);
else else
url = _fallbackURL; url = _fileSystem.RemoteServices.GetRemoteFallbackURL(fileName);
// 在URL末尾添加时间戳 // 在URL末尾添加时间戳
if (_appendTimeTicks) if (_appendTimeTicks)

View File

@ -56,7 +56,6 @@ namespace YooAsset
if (SearchFiles()) if (SearchFiles())
return; return;
// 注意:总是返回成功
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
float costTime = UnityEngine.Time.realtimeSinceStartup - _verifyStartTime; float costTime = UnityEngine.Time.realtimeSinceStartup - _verifyStartTime;

View File

@ -35,7 +35,7 @@ namespace YooAsset
} }
catch (System.Exception e) catch (System.Exception e)
{ {
YooLogger.Warning($"Failed delete cache bundle folder : {e}"); YooLogger.Warning($"Failed to delete cache bundle folder : {e}");
} }
} }
} }
@ -165,7 +165,7 @@ namespace YooAsset
{ {
_failedCount++; _failedCount++;
YooLogger.Warning($"Failed verify file {element.Result} and delete files : {element.FileRootPath}"); YooLogger.Warning($"Failed to verify file {element.Result} and delete files : {element.FileRootPath}");
element.DeleteFiles(); element.DeleteFiles();
} }
} }

View File

@ -81,7 +81,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Failed verify file : {_element.TempFilePath} ! ErrorCode : {VerifyResult}"; Error = $"Failed to verify file : {_element.TempFilePath} ! ErrorCode : {VerifyResult}";
} }
} }
} }

View File

@ -63,31 +63,31 @@ namespace YooAsset
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(params object[] args) public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(string packageVersion, int timeout)
{ {
var operation = new DEFSLoadPackageManifestOperation(this); var operation = new DEFSLoadPackageManifestOperation(this);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(params object[] args) public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{ {
var operation = new DEFSRequestPackageVersionOperation(this); var operation = new DEFSRequestPackageVersionOperation(this);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync(params object[] args) public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync()
{ {
var operation = new FSClearAllBundleFilesCompleteOperation(); var operation = new FSClearAllBundleFilesCompleteOperation();
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(params object[] args) public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(PackageManifest manifest)
{ {
var operation = new FSClearUnusedBundleFilesCompleteOperation(); var operation = new FSClearUnusedBundleFilesCompleteOperation();
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSDownloadFileOperation DownloadFileAsync(params object[] args) public virtual FSDownloadFileOperation DownloadFileAsync(PackageBundle bundle, DownloadParam param)
{ {
throw new System.NotImplementedException(); throw new System.NotImplementedException();
} }

View File

@ -43,7 +43,7 @@ namespace YooAsset
if (_loadEditorPackageManifestOp.Status == EOperationStatus.Succeed) if (_loadEditorPackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Result = _loadEditorPackageManifestOp.Manifest; Manifest = _loadEditorPackageManifestOp.Manifest;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else

View File

@ -6,7 +6,7 @@ namespace YooAsset
private enum ESteps private enum ESteps
{ {
None, None,
GetPackageVersion, LoadPackageVersion,
Done, Done,
} }
@ -21,14 +21,14 @@ namespace YooAsset
} }
internal override void InternalOnStart() internal override void InternalOnStart()
{ {
_steps = ESteps.GetPackageVersion; _steps = ESteps.LoadPackageVersion;
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
{ {
if (_steps == ESteps.None || _steps == ESteps.Done) if (_steps == ESteps.None || _steps == ESteps.Done)
return; return;
if (_steps == ESteps.GetPackageVersion) if (_steps == ESteps.LoadPackageVersion)
{ {
if (_loadEditorPackageVersionOp == null) if (_loadEditorPackageVersionOp == null)
{ {

View File

@ -18,7 +18,7 @@ namespace YooAsset
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
/// <summary> /// <summary>
/// 加载的清单实例 /// 包裹清单
/// </summary> /// </summary>
public PackageManifest Manifest { private set; get; } public PackageManifest Manifest { private set; get; }
@ -48,7 +48,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Simulation package manifest file not found : {manifestFilePath}"; Error = $"Can not found simulation package manifest file : {manifestFilePath}";
} }
} }

View File

@ -14,6 +14,9 @@ namespace YooAsset
private readonly DefaultEditorFileSystem _fileSystem; private readonly DefaultEditorFileSystem _fileSystem;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
/// <summary>
/// 包裹版本
/// </summary>
public string PackageVersion { private set; get; } public string PackageVersion { private set; get; }
@ -43,7 +46,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Simulation package version file not found : {versionFilePath}"; Error = $"Can not found simulation package version file : {versionFilePath}";
} }
} }
} }

View File

@ -2,7 +2,7 @@
namespace YooAsset namespace YooAsset
{ {
/// <summary> /// <summary>
/// 缓存文件系统 /// 解压文件系统
/// </summary> /// </summary>
internal class DefaultUnpackFileSystem : DefaultCacheFileSystem internal class DefaultUnpackFileSystem : DefaultCacheFileSystem
{ {
@ -17,5 +17,20 @@ namespace YooAsset
_saveFileRoot = PathUtility.Combine(_packageRoot, DefaultUnpackFileSystemDefine.SaveFilesFolderName); _saveFileRoot = PathUtility.Combine(_packageRoot, DefaultUnpackFileSystemDefine.SaveFilesFolderName);
_tempFileRoot = PathUtility.Combine(_packageRoot, DefaultUnpackFileSystemDefine.TempFilesFolderName); _tempFileRoot = PathUtility.Combine(_packageRoot, DefaultUnpackFileSystemDefine.TempFilesFolderName);
} }
public override FSLoadBundleOperation LoadBundleFile(PackageBundle bundle)
{
if (RawFileBuildPipeline)
{
var operation = new DUFSLoadRawBundleOperation(this, bundle);
OperationSystem.StartOperation(PackageName, operation);
return operation;
}
else
{
var operation = new DUFSLoadAssetBundleOperation(this, bundle);
OperationSystem.StartOperation(PackageName, operation);
return operation;
}
}
} }
} }

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 59b123e460757694180175970bf28826
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,57 @@

namespace YooAsset
{
internal class DUFSLoadAssetBundleOperation : DCFSLoadAssetBundleOperation
{
public DUFSLoadAssetBundleOperation(DefaultUnpackFileSystem fileSystem, PackageBundle bundle) : base(fileSystem, bundle)
{
}
public override void WaitForAsyncComplete()
{
_isWaitForAsyncComplete = true;
while (true)
{
// 文件解压
if (_downloadFileOp != null)
{
if (_downloadFileOp.IsDone == false)
_downloadFileOp.WaitForAsyncComplete();
}
// 驱动流程
InternalOnUpdate();
// 完成后退出
if (IsDone)
break;
}
}
}
internal class DUFSLoadRawBundleOperation : DCFSLoadRawBundleOperation
{
public DUFSLoadRawBundleOperation(DefaultUnpackFileSystem fileSystem, PackageBundle bundle) : base(fileSystem, bundle)
{
}
public override void WaitForAsyncComplete()
{
while (true)
{
// 文件解压
if (_downloadFileOp != null)
{
if (_downloadFileOp.IsDone == false)
_downloadFileOp.WaitForAsyncComplete();
}
// 驱动流程
InternalOnUpdate();
// 完成后退出
if (IsDone)
break;
}
}
}
}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3f8269507a575884f935f9fbc71396ea guid: 47f6fe3a815d28e49815db7c09c1fa76
MonoImporter: MonoImporter:
externalObjects: {} externalObjects: {}
serializedVersion: 2 serializedVersion: 2

View File

@ -63,20 +63,10 @@ namespace YooAsset
} }
#region 自定义参数 #region 自定义参数
/// <summary>
/// 自定义参数:远程服务接口
/// </summary>
public IRemoteServices RemoteServices { private set; get; } = null;
/// <summary> /// <summary>
/// 禁用Unity的网络缓存 /// 禁用Unity的网络缓存
/// </summary> /// </summary>
public bool DisableUnityWebCache { private set; get; } = false; public bool DisableUnityWebCache { private set; get; } = false;
/// <summary>
/// 允许跨域访问和下载
/// </summary>
public bool AllowCrossAccess { private set; get; } = false;
#endregion #endregion
@ -89,45 +79,31 @@ namespace YooAsset
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(params object[] args) public virtual FSLoadPackageManifestOperation LoadPackageManifestAsync(string packageVersion, int timeout)
{ {
string packageVersion = args[0] as string; var operation = new DWFSLoadPackageManifestOperation(this, timeout);
int timeout = (int)args[1];
if (AllowCrossAccess)
{
var operation = new DWFSLoadRemotePackageManifestOperation(this, packageVersion, timeout);
OperationSystem.StartOperation(PackageName, operation);
return operation;
}
else
{
var operation = new DWFSLoadWebPackageManifestOperation(this, timeout);
OperationSystem.StartOperation(PackageName, operation);
return operation;
}
}
public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(params object[] args)
{
bool appendTimeTicks = (bool)args[0];
int timeout = (int)args[1];
var operation = new DWFSRequestPackageVersionOperation(this, appendTimeTicks, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync(params object[] args) public virtual FSRequestPackageVersionOperation RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{
var operation = new DWFSRequestPackageVersionOperation(this, timeout);
OperationSystem.StartOperation(PackageName, operation);
return operation;
}
public virtual FSClearAllBundleFilesOperation ClearAllBundleFilesAsync()
{ {
var operation = new FSClearAllBundleFilesCompleteOperation(); var operation = new FSClearAllBundleFilesCompleteOperation();
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(params object[] args) public virtual FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(PackageManifest manifest)
{ {
var operation = new FSClearUnusedBundleFilesCompleteOperation(); var operation = new FSClearUnusedBundleFilesCompleteOperation();
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
public virtual FSDownloadFileOperation DownloadFileAsync(params object[] args) public virtual FSDownloadFileOperation DownloadFileAsync(PackageBundle bundle, DownloadParam param)
{ {
throw new System.NotImplementedException(); throw new System.NotImplementedException();
} }
@ -149,18 +125,10 @@ namespace YooAsset
public virtual void SetParameter(string name, object value) public virtual void SetParameter(string name, object value)
{ {
if (name == "REMOTE_SERVICES") if (name == "DISABLE_UNITY_WEB_CACHE")
{
RemoteServices = (IRemoteServices)value;
}
else if (name == "DISABLE_UNITY_WEB_CACHE")
{ {
DisableUnityWebCache = (bool)value; DisableUnityWebCache = (bool)value;
} }
else if (name == "ALLOW_CROSS_ACCESS")
{
AllowCrossAccess = (bool)value;
}
else else
{ {
YooLogger.Warning($"Invalid parameter : {name}"); YooLogger.Warning($"Invalid parameter : {name}");
@ -189,10 +157,7 @@ namespace YooAsset
} }
public virtual bool NeedDownload(PackageBundle bundle) public virtual bool NeedDownload(PackageBundle bundle)
{ {
if (Belong(bundle) == false) return false;
return false;
return Exists(bundle) == false;
} }
public virtual bool NeedUnpack(PackageBundle bundle) public virtual bool NeedUnpack(PackageBundle bundle)
{ {

View File

@ -1,7 +1,7 @@
 
namespace YooAsset namespace YooAsset
{ {
internal partial class DWFSInitializeOperation : FSInitializeFileSystemOperation internal class DWFSInitializeOperation : FSInitializeFileSystemOperation
{ {
private enum ESteps private enum ESteps
{ {
@ -39,10 +39,17 @@ namespace YooAsset
if (_loadCatalogFileOp.IsDone == false) if (_loadCatalogFileOp.IsDone == false)
return; return;
// 说明:应用程序内不一定存在序列化文件 if (_loadCatalogFileOp.Status == EOperationStatus.Succeed)
// 注意:总是返回成功 {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _loadCatalogFileOp.Error;
}
} }
} }
} }

View File

@ -34,22 +34,11 @@ namespace YooAsset
{ {
if (_downloadhanlderAssetBundleOp == null) if (_downloadhanlderAssetBundleOp == null)
{ {
int failedTryAgain = int.MaxValue; DownloadParam downloadParam = new DownloadParam(int.MaxValue, 60);
int timeout = 60; string fileLoadPath = _fileSystem.GetWebFileLoadPath(_bundle);
string mainURL; downloadParam.MainURL = DownloadSystemHelper.ConvertToWWWPath(fileLoadPath);
string fallbackURL; downloadParam.FallbackURL = downloadParam.MainURL;
if (_fileSystem.AllowCrossAccess) _downloadhanlderAssetBundleOp = new DownloadHandlerAssetBundleOperation(_fileSystem, _bundle, downloadParam);
{
mainURL = _fileSystem.RemoteServices.GetRemoteMainURL(_bundle.FileName);
fallbackURL = _fileSystem.RemoteServices.GetRemoteFallbackURL(_bundle.FileName);
}
else
{
string fileLoadPath = _fileSystem.GetWebFileLoadPath(_bundle);
mainURL = DownloadSystemHelper.ConvertToWWWPath(fileLoadPath);
fallbackURL = mainURL;
}
_downloadhanlderAssetBundleOp = new DownloadHandlerAssetBundleOperation(_fileSystem, _bundle, mainURL, fallbackURL, failedTryAgain, timeout);
OperationSystem.StartOperation(_fileSystem.PackageName, _downloadhanlderAssetBundleOp); OperationSystem.StartOperation(_fileSystem.PackageName, _downloadhanlderAssetBundleOp);
} }

View File

@ -1,7 +1,7 @@
 
namespace YooAsset namespace YooAsset
{ {
internal class DWFSLoadWebPackageManifestOperation : FSLoadPackageManifestOperation internal class DWFSLoadPackageManifestOperation : FSLoadPackageManifestOperation
{ {
private enum ESteps private enum ESteps
{ {
@ -20,7 +20,7 @@ namespace YooAsset
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
public DWFSLoadWebPackageManifestOperation(DefaultWebFileSystem fileSystem, int timeout) public DWFSLoadPackageManifestOperation(DefaultWebFileSystem fileSystem, int timeout)
{ {
_fileSystem = fileSystem; _fileSystem = fileSystem;
_timeout = timeout; _timeout = timeout;
@ -98,7 +98,7 @@ namespace YooAsset
if (_loadWebPackageManifestOp.Status == EOperationStatus.Succeed) if (_loadWebPackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Result = _loadWebPackageManifestOp.Manifest; Manifest = _loadWebPackageManifestOp.Manifest;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else
@ -110,89 +110,4 @@ namespace YooAsset
} }
} }
} }
internal class DWFSLoadRemotePackageManifestOperation : FSLoadPackageManifestOperation
{
private enum ESteps
{
None,
RequestRemotePackageHash,
LoadRemotePackageManifest,
Done,
}
private readonly DefaultWebFileSystem _fileSystem;
private readonly string _packageVersion;
private readonly int _timeout;
private RequestRemotePackageHashOperation _requestRemotePackageHashOp;
private LoadRemotePackageManifestOperation _loadRemotePackageManifestOp;
private ESteps _steps = ESteps.None;
public DWFSLoadRemotePackageManifestOperation(DefaultWebFileSystem fileSystem, string packageVersion, int timeout)
{
_fileSystem = fileSystem;
_packageVersion = packageVersion;
_timeout = timeout;
}
internal override void InternalOnStart()
{
_steps = ESteps.RequestRemotePackageHash;
}
internal override void InternalOnUpdate()
{
if (_steps == ESteps.None || _steps == ESteps.Done)
return;
if (_steps == ESteps.RequestRemotePackageHash)
{
if (_requestRemotePackageHashOp == null)
{
_requestRemotePackageHashOp = new RequestRemotePackageHashOperation(_fileSystem, _packageVersion, _timeout);
OperationSystem.StartOperation(_fileSystem.PackageName, _requestRemotePackageHashOp);
}
if (_requestRemotePackageHashOp.IsDone == false)
return;
if (_requestRemotePackageHashOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.LoadRemotePackageManifest;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _requestRemotePackageHashOp.Error;
}
}
if (_steps == ESteps.LoadRemotePackageManifest)
{
if (_loadRemotePackageManifestOp == null)
{
string packageHash = _requestRemotePackageHashOp.PackageHash;
_loadRemotePackageManifestOp = new LoadRemotePackageManifestOperation(_fileSystem, _packageVersion, packageHash, _timeout);
OperationSystem.StartOperation(_fileSystem.PackageName, _loadRemotePackageManifestOp);
}
Progress = _loadRemotePackageManifestOp.Progress;
if (_loadRemotePackageManifestOp.IsDone == false)
return;
if (_loadRemotePackageManifestOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Result = _loadRemotePackageManifestOp.Manifest;
Status = EOperationStatus.Succeed;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _loadRemotePackageManifestOp.Error;
}
}
}
}
} }

View File

@ -6,70 +6,53 @@ namespace YooAsset
private enum ESteps private enum ESteps
{ {
None, None,
GetPackageVersion, RequestPackageVersion,
Done, Done,
} }
private readonly DefaultWebFileSystem _fileSystem; private readonly DefaultWebFileSystem _fileSystem;
private readonly bool _appendTimeTicks;
private readonly int _timeout; private readonly int _timeout;
private DefaultGetRemotePackageVersionOperation _getRemotePackageVersionOp; private RequestWebPackageVersionOperation _requestWebPackageVersionOp;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
internal DWFSRequestPackageVersionOperation(DefaultWebFileSystem fileSystem, bool appendTimeTicks, int timeout) internal DWFSRequestPackageVersionOperation(DefaultWebFileSystem fileSystem, int timeout)
{ {
_fileSystem = fileSystem; _fileSystem = fileSystem;
_appendTimeTicks = appendTimeTicks;
_timeout = timeout; _timeout = timeout;
} }
internal override void InternalOnStart() internal override void InternalOnStart()
{ {
_steps = ESteps.GetPackageVersion; _steps = ESteps.RequestPackageVersion;
} }
internal override void InternalOnUpdate() internal override void InternalOnUpdate()
{ {
if (_steps == ESteps.None || _steps == ESteps.Done) if (_steps == ESteps.None || _steps == ESteps.Done)
return; return;
if (_steps == ESteps.GetPackageVersion) if (_steps == ESteps.RequestPackageVersion)
{ {
if (_getRemotePackageVersionOp == null) if (_requestWebPackageVersionOp == null)
{ {
string packageName = _fileSystem.PackageName; _requestWebPackageVersionOp = new RequestWebPackageVersionOperation(_fileSystem, _timeout);
string fileName = YooAssetSettingsData.GetPackageVersionFileName(packageName); OperationSystem.StartOperation(_fileSystem.PackageName, _requestWebPackageVersionOp);
string mainURL;
string fallbackURL;
if (_fileSystem.AllowCrossAccess)
{
mainURL = _fileSystem.RemoteServices.GetRemoteMainURL(fileName);
fallbackURL = _fileSystem.RemoteServices.GetRemoteFallbackURL(fileName);
}
else
{
string filePath = _fileSystem.GetWebPackageVersionFilePath();
mainURL = DownloadSystemHelper.ConvertToWWWPath(filePath);
fallbackURL = mainURL;
}
_getRemotePackageVersionOp = new DefaultGetRemotePackageVersionOperation(packageName, mainURL, fallbackURL, _appendTimeTicks, _timeout);
OperationSystem.StartOperation(packageName, _getRemotePackageVersionOp);
} }
Progress = _getRemotePackageVersionOp.Progress; Progress = _requestWebPackageVersionOp.Progress;
if (_getRemotePackageVersionOp.IsDone == false) if (_requestWebPackageVersionOp.IsDone == false)
return; return;
if (_getRemotePackageVersionOp.Status == EOperationStatus.Succeed) if (_requestWebPackageVersionOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
PackageVersion = _getRemotePackageVersionOp.PackageVersion; PackageVersion = _requestWebPackageVersionOp.PackageVersion;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = _getRemotePackageVersionOp.Error; Error = _requestWebPackageVersionOp.Error;
} }
} }
} }

View File

@ -12,9 +12,7 @@ namespace YooAsset
public AssetBundle Result { private set; get; } public AssetBundle Result { private set; get; }
internal DownloadHandlerAssetBundleOperation(DefaultWebFileSystem fileSystem, PackageBundle bundle, internal DownloadHandlerAssetBundleOperation(DefaultWebFileSystem fileSystem, PackageBundle bundle, DownloadParam param) : base(bundle, param)
string mainURL, string fallbackURL, int failedTryAgain, int timeout)
: base(bundle, mainURL, fallbackURL, failedTryAgain, timeout)
{ {
_fileSystem = fileSystem; _fileSystem = fileSystem;
} }

View File

@ -1,125 +0,0 @@

namespace YooAsset
{
internal class LoadRemotePackageManifestOperation : AsyncOperationBase
{
private enum ESteps
{
None,
RequestFileData,
VerifyFileData,
LoadManifest,
Done,
}
private readonly DefaultWebFileSystem _fileSystem;
private readonly string _packageVersion;
private readonly string _packageHash;
private readonly int _timeout;
private UnityWebDataRequestOperation _webDataRequestOp;
private DeserializeManifestOperation _deserializer;
private int _requestCount = 0;
private ESteps _steps = ESteps.None;
/// <summary>
/// 加载的清单实例
/// </summary>
public PackageManifest Manifest { private set; get; }
internal LoadRemotePackageManifestOperation(DefaultWebFileSystem fileSystem, string packageVersion, string packageHash, int timeout)
{
_fileSystem = fileSystem;
_packageVersion = packageVersion;
_packageHash = packageHash;
_timeout = timeout;
}
internal override void InternalOnStart()
{
_requestCount = WebRequestCounter.GetRequestFailedCount(_fileSystem.PackageName, nameof(LoadRemotePackageManifestOperation));
_steps = ESteps.RequestFileData;
}
internal override void InternalOnUpdate()
{
if (_steps == ESteps.None || _steps == ESteps.Done)
return;
if (_steps == ESteps.RequestFileData)
{
if (_webDataRequestOp == null)
{
string fileName = YooAssetSettingsData.GetManifestBinaryFileName(_fileSystem.PackageName, _packageVersion);
string url = GetDownloadRequestURL(fileName);
_webDataRequestOp = new UnityWebDataRequestOperation(url, _timeout);
OperationSystem.StartOperation(_fileSystem.PackageName, _webDataRequestOp);
}
Progress = _webDataRequestOp.Progress;
if (_webDataRequestOp.IsDone == false)
return;
if (_webDataRequestOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.VerifyFileData;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webDataRequestOp.Error;
WebRequestCounter.RecordRequestFailed(_fileSystem.PackageName, nameof(LoadRemotePackageManifestOperation));
}
}
if (_steps == ESteps.VerifyFileData)
{
string fileHash = HashUtility.BytesMD5(_webDataRequestOp.Result);
if (fileHash == _packageHash)
{
_steps = ESteps.LoadManifest;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = "Failed to verify remote package manifest file!";
}
}
if (_steps == ESteps.LoadManifest)
{
if (_deserializer == null)
{
_deserializer = new DeserializeManifestOperation(_webDataRequestOp.Result);
OperationSystem.StartOperation(_fileSystem.PackageName, _deserializer);
}
Progress = _deserializer.Progress;
if (_deserializer.IsDone == false)
return;
if (_deserializer.Status == EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Manifest = _deserializer.Manifest;
Status = EOperationStatus.Succeed;
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _deserializer.Error;
}
}
}
private string GetDownloadRequestURL(string fileName)
{
// 轮流返回请求地址
if (_requestCount % 2 == 0)
return _fileSystem.RemoteServices.GetRemoteMainURL(fileName);
else
return _fileSystem.RemoteServices.GetRemoteFallbackURL(fileName);
}
}
}

View File

@ -44,7 +44,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"Failed to load catalog file : {catalogFilePath}"; Error = $"Failed to load web catalog file : {catalogFilePath}";
return; return;
} }
@ -52,7 +52,7 @@ namespace YooAsset
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Failed; Status = EOperationStatus.Failed;
Error = $"The catalog file package name {catalog.PackageName} cannot match the file system package name {_fileSystem.PackageName}"; Error = $"Web catalog file package name {catalog.PackageName} cannot match the file system package name {_fileSystem.PackageName}";
return; return;
} }

View File

@ -20,10 +20,11 @@ namespace YooAsset
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
/// <summary> /// <summary>
/// 加载的清单实例 /// 包裹清单
/// </summary> /// </summary>
public PackageManifest Manifest { private set; get; } public PackageManifest Manifest { private set; get; }
internal LoadWebPackageManifestOperation(DefaultWebFileSystem fileSystem, string packageVersion, string packageHash) internal LoadWebPackageManifestOperation(DefaultWebFileSystem fileSystem, string packageVersion, string packageHash)
{ {
_fileSystem = fileSystem; _fileSystem = fileSystem;

View File

@ -1,90 +0,0 @@

namespace YooAsset
{
internal class RequestRemotePackageHashOperation : AsyncOperationBase
{
private enum ESteps
{
None,
RequestPackageHash,
Done,
}
private readonly DefaultWebFileSystem _fileSystem;
private readonly string _packageVersion;
private readonly int _timeout;
private UnityWebTextRequestOperation _webTextRequestOp;
private int _requestCount = 0;
private ESteps _steps = ESteps.None;
/// <summary>
/// 包裹哈希值
/// </summary>
public string PackageHash { private set; get; }
public RequestRemotePackageHashOperation(DefaultWebFileSystem fileSystem, string packageVersion, int timeout)
{
_fileSystem = fileSystem;
_packageVersion = packageVersion;
_timeout = timeout;
}
internal override void InternalOnStart()
{
_requestCount = WebRequestCounter.GetRequestFailedCount(_fileSystem.PackageName, nameof(RequestRemotePackageHashOperation));
_steps = ESteps.RequestPackageHash;
}
internal override void InternalOnUpdate()
{
if (_steps == ESteps.None || _steps == ESteps.Done)
return;
if (_steps == ESteps.RequestPackageHash)
{
if (_webTextRequestOp == null)
{
string fileName = YooAssetSettingsData.GetPackageHashFileName(_fileSystem.PackageName, _packageVersion);
string url = GetDownloadRequestURL(fileName);
_webTextRequestOp = new UnityWebTextRequestOperation(url, _timeout);
OperationSystem.StartOperation(_fileSystem.PackageName, _webTextRequestOp);
}
Progress = _webTextRequestOp.Progress;
if (_webTextRequestOp.IsDone == false)
return;
if (_webTextRequestOp.Status != EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webTextRequestOp.Error;
WebRequestCounter.RecordRequestFailed(_fileSystem.PackageName, nameof(RequestRemotePackageHashOperation));
}
else
{
PackageHash = _webTextRequestOp.Result;
if (string.IsNullOrEmpty(PackageHash))
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = $"Remote package hash file content is empty !";
}
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Succeed;
}
}
}
}
private string GetDownloadRequestURL(string fileName)
{
// 轮流返回请求地址
if (_requestCount % 2 == 0)
return _fileSystem.RemoteServices.GetRemoteMainURL(fileName);
else
return _fileSystem.RemoteServices.GetRemoteFallbackURL(fileName);
}
}
}

View File

@ -51,13 +51,7 @@ namespace YooAsset
if (_webTextRequestOp.IsDone == false) if (_webTextRequestOp.IsDone == false)
return; return;
if (_webTextRequestOp.Status != EOperationStatus.Succeed) if (_webTextRequestOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webTextRequestOp.Error;
}
else
{ {
PackageHash = _webTextRequestOp.Result; PackageHash = _webTextRequestOp.Result;
if (string.IsNullOrEmpty(PackageHash)) if (string.IsNullOrEmpty(PackageHash))
@ -72,6 +66,12 @@ namespace YooAsset
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
} }
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webTextRequestOp.Error;
}
} }
} }
} }

View File

@ -48,13 +48,7 @@ namespace YooAsset
if (_webTextRequestOp.IsDone == false) if (_webTextRequestOp.IsDone == false)
return; return;
if (_webTextRequestOp.Status != EOperationStatus.Succeed) if (_webTextRequestOp.Status == EOperationStatus.Succeed)
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webTextRequestOp.Error;
}
else
{ {
PackageVersion = _webTextRequestOp.Result; PackageVersion = _webTextRequestOp.Result;
if (string.IsNullOrEmpty(PackageVersion)) if (string.IsNullOrEmpty(PackageVersion))
@ -69,6 +63,12 @@ namespace YooAsset
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
} }
else
{
_steps = ESteps.Done;
Status = EOperationStatus.Failed;
Error = _webTextRequestOp.Error;
}
} }
} }
} }

View File

@ -32,27 +32,27 @@ namespace YooAsset
/// <summary> /// <summary>
/// 加载包裹清单 /// 加载包裹清单
/// </summary> /// </summary>
FSLoadPackageManifestOperation LoadPackageManifestAsync(params object[] args); FSLoadPackageManifestOperation LoadPackageManifestAsync(string packageVersion, int timeout);
/// <summary> /// <summary>
/// 查询最新的版本 /// 查询最新的版本
/// </summary> /// </summary>
FSRequestPackageVersionOperation RequestPackageVersionAsync(params object[] args); FSRequestPackageVersionOperation RequestPackageVersionAsync(bool appendTimeTicks, int timeout);
/// <summary> /// <summary>
/// 清空所有的文件 /// 清空所有的文件
/// </summary> /// </summary>
FSClearAllBundleFilesOperation ClearAllBundleFilesAsync(params object[] args); FSClearAllBundleFilesOperation ClearAllBundleFilesAsync();
/// <summary> /// <summary>
/// 清空未使用的文件 /// 清空未使用的文件
/// </summary> /// </summary>
FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(params object[] args); FSClearUnusedBundleFilesOperation ClearUnusedBundleFilesAsync(PackageManifest manifest);
/// <summary> /// <summary>
/// 下载远端文件 /// 下载远端文件
/// </summary> /// </summary>
FSDownloadFileOperation DownloadFileAsync(params object[] args); FSDownloadFileOperation DownloadFileAsync(PackageBundle bundle, DownloadParam param);
/// <summary> /// <summary>
/// 加载Bundle文件 /// 加载Bundle文件

View File

@ -4,8 +4,8 @@ namespace YooAsset
internal abstract class FSLoadPackageManifestOperation : AsyncOperationBase internal abstract class FSLoadPackageManifestOperation : AsyncOperationBase
{ {
/// <summary> /// <summary>
/// 加载结果 /// 资源清单
/// </summary> /// </summary>
internal PackageManifest Result { set; get; } internal PackageManifest Manifest { set; get; }
} }
} }

View File

@ -4,7 +4,7 @@ namespace YooAsset
internal abstract class FSRequestPackageVersionOperation : AsyncOperationBase internal abstract class FSRequestPackageVersionOperation : AsyncOperationBase
{ {
/// <summary> /// <summary>
/// 查询的最新版本信息 /// 资源版本
/// </summary> /// </summary>
internal string PackageVersion { set; get; } internal string PackageVersion { set; get; }
} }

View File

@ -17,11 +17,8 @@ namespace YooAsset
Done, Done,
} }
// 初始参数 // 下载参数
protected readonly string _mainURL; protected readonly DownloadParam Param;
protected readonly string _fallbackURL;
protected readonly int _failedTryAgain;
protected readonly int _timeout;
// 请求相关 // 请求相关
protected UnityWebRequest _webRequest; protected UnityWebRequest _webRequest;
@ -38,15 +35,10 @@ namespace YooAsset
protected int FailedTryAgain; protected int FailedTryAgain;
internal DefaultDownloadFileOperation(PackageBundle bundle, internal DefaultDownloadFileOperation(PackageBundle bundle, DownloadParam param) : base(bundle)
string mainURL, string fallbackURL, int failedTryAgain, int timeout) : base(bundle)
{ {
_mainURL = mainURL; Param = param;
_fallbackURL = fallbackURL; FailedTryAgain = param.FailedTryAgain;
_failedTryAgain = failedTryAgain;
_timeout = timeout;
FailedTryAgain = failedTryAgain;
} }
/// <summary> /// <summary>
@ -57,9 +49,9 @@ namespace YooAsset
// 轮流返回请求地址 // 轮流返回请求地址
_requestCount++; _requestCount++;
if (_requestCount % 2 == 0) if (_requestCount % 2 == 0)
return _fallbackURL; return Param.FallbackURL;
else else
return _mainURL; return Param.MainURL;
} }
/// <summary> /// <summary>
@ -95,7 +87,7 @@ namespace YooAsset
} }
float offset = UnityEngine.Time.realtimeSinceStartup - _latestDownloadRealtime; float offset = UnityEngine.Time.realtimeSinceStartup - _latestDownloadRealtime;
if (offset > _timeout) if (offset > Param.Timeout)
{ {
YooLogger.Warning($"Web file request timeout : {_requestURL}"); YooLogger.Warning($"Web file request timeout : {_requestURL}");
if (_webRequest != null) if (_webRequest != null)

View File

@ -87,7 +87,7 @@ namespace YooAsset
/// <summary> /// <summary>
/// 创建默认的编辑器文件系统参数 /// 创建默认的编辑器文件系统参数
/// <param name="SimulateBuildResult">模拟构建结果</param> /// <param name="simulateBuildResult">模拟构建结果</param>
/// </summary> /// </summary>
public static FileSystemParameters CreateDefaultEditorFileSystemParameters(SimulateBuildResult simulateBuildResult) public static FileSystemParameters CreateDefaultEditorFileSystemParameters(SimulateBuildResult simulateBuildResult)
{ {
@ -160,26 +160,12 @@ namespace YooAsset
/// <summary> /// <summary>
/// 创建默认的Web文件系统参数 /// 创建默认的Web文件系统参数
/// </summary> /// </summary>
/// <param name="disableUnityWebCache">禁用Unity的网络缓存</param>
public static FileSystemParameters CreateDefaultWebFileSystemParameters(bool disableUnityWebCache = false) public static FileSystemParameters CreateDefaultWebFileSystemParameters(bool disableUnityWebCache = false)
{ {
string fileSystemClass = typeof(DefaultWebFileSystem).FullName; string fileSystemClass = typeof(DefaultWebFileSystem).FullName;
var fileSystemParams = new FileSystemParameters(fileSystemClass, null); var fileSystemParams = new FileSystemParameters(fileSystemClass, null);
fileSystemParams.AddParameter("DISABLE_UNITY_WEB_CACHE", disableUnityWebCache); fileSystemParams.AddParameter("DISABLE_UNITY_WEB_CACHE", disableUnityWebCache);
fileSystemParams.AddParameter("ALLOW_CROSS_ACCESS", false);
return fileSystemParams;
}
/// <summary>
/// 创建默认的Web文件系统参数
/// </summary>
/// <param name="remoteServices">远端资源地址查询服务类</param>
public static FileSystemParameters CreateDefaultWebFileSystemParameters(IRemoteServices remoteServices, bool disableUnityWebCache = false)
{
string fileSystemClass = typeof(DefaultWebFileSystem).FullName;
var fileSystemParams = new FileSystemParameters(fileSystemClass, null);
fileSystemParams.AddParameter("REMOTE_SERVICES", remoteServices);
fileSystemParams.AddParameter("DISABLE_UNITY_WEB_CACHE", disableUnityWebCache);
fileSystemParams.AddParameter("ALLOW_CROSS_ACCESS", true);
return fileSystemParams; return fileSystemParams;
} }
} }

View File

@ -1,7 +1,4 @@
using System.IO; 
using System.Collections.Generic;
using UnityEngine;
namespace YooAsset namespace YooAsset
{ {
internal class BundleInfo internal class BundleInfo
@ -54,7 +51,9 @@ namespace YooAsset
/// </summary> /// </summary>
public FSDownloadFileOperation CreateDownloader(int failedTryAgain, int timeout) public FSDownloadFileOperation CreateDownloader(int failedTryAgain, int timeout)
{ {
return _fileSystem.DownloadFileAsync(Bundle, _importFilePath, failedTryAgain, timeout); DownloadParam downloadParam = new DownloadParam(failedTryAgain, timeout);
downloadParam.ImportFilePath = _importFilePath;
return _fileSystem.DownloadFileAsync(Bundle, downloadParam);
} }
/// <summary> /// <summary>

View File

@ -7,11 +7,7 @@ namespace YooAsset
public abstract class ClearAllBundleFilesOperation : AsyncOperationBase public abstract class ClearAllBundleFilesOperation : AsyncOperationBase
{ {
} }
internal sealed class ClearAllBundleFilesImplOperation : ClearAllBundleFilesOperation
/// <summary>
/// 通用类
/// </summary>
internal sealed class DefaultClearAllBundleFilesOperation : ClearAllBundleFilesOperation
{ {
private enum ESteps private enum ESteps
{ {
@ -31,7 +27,7 @@ namespace YooAsset
private FSClearAllBundleFilesOperation _clearAllBundleFilesOpC; private FSClearAllBundleFilesOperation _clearAllBundleFilesOpC;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
internal DefaultClearAllBundleFilesOperation(IPlayMode impl, IFileSystem fileSystemA, IFileSystem fileSystemB, IFileSystem fileSystemC) internal ClearAllBundleFilesImplOperation(IPlayMode impl, IFileSystem fileSystemA, IFileSystem fileSystemB, IFileSystem fileSystemC)
{ {
_impl = impl; _impl = impl;
_fileSystemA = fileSystemA; _fileSystemA = fileSystemA;

View File

@ -7,11 +7,7 @@ namespace YooAsset
public abstract class ClearUnusedBundleFilesOperation : AsyncOperationBase public abstract class ClearUnusedBundleFilesOperation : AsyncOperationBase
{ {
} }
internal sealed class ClearUnusedBundleFilesImplOperation : ClearUnusedBundleFilesOperation
/// <summary>
/// 通用类
/// </summary>
internal sealed class DefaultClearUnusedBundleFilesOperation : ClearUnusedBundleFilesOperation
{ {
private enum ESteps private enum ESteps
{ {
@ -31,7 +27,7 @@ namespace YooAsset
private FSClearUnusedBundleFilesOperation _clearUnusedBundleFilesOpC; private FSClearUnusedBundleFilesOperation _clearUnusedBundleFilesOpC;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
internal DefaultClearUnusedBundleFilesOperation(IPlayMode impl, IFileSystem fileSystemA, IFileSystem fileSystemB, IFileSystem fileSystemC) internal ClearUnusedBundleFilesImplOperation(IPlayMode impl, IFileSystem fileSystemA, IFileSystem fileSystemB, IFileSystem fileSystemC)
{ {
_impl = impl; _impl = impl;
_fileSystemA = fileSystemA; _fileSystemA = fileSystemA;

View File

@ -85,7 +85,7 @@ namespace YooAsset
if (_steps == ESteps.LoadManifestFile) if (_steps == ESteps.LoadManifestFile)
{ {
if (_loadPackageManifestOp == null) if (_loadPackageManifestOp == null)
_loadPackageManifestOp = _impl.EditorFileSystem.LoadPackageManifestAsync(null); _loadPackageManifestOp = _impl.EditorFileSystem.LoadPackageManifestAsync(null, int.MaxValue);
Progress = _loadPackageManifestOp.Progress; Progress = _loadPackageManifestOp.Progress;
if (_loadPackageManifestOp.IsDone == false) if (_loadPackageManifestOp.IsDone == false)
@ -94,7 +94,7 @@ namespace YooAsset
if (_loadPackageManifestOp.Status == EOperationStatus.Succeed) if (_loadPackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
_impl.ActiveManifest = _loadPackageManifestOp.Result; _impl.ActiveManifest = _loadPackageManifestOp.Manifest;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else
@ -187,7 +187,7 @@ namespace YooAsset
if (_steps == ESteps.LoadManifestFile) if (_steps == ESteps.LoadManifestFile)
{ {
if (_loadPackageManifestOp == null) if (_loadPackageManifestOp == null)
_loadPackageManifestOp = _impl.BuildinFileSystem.LoadPackageManifestAsync(null); _loadPackageManifestOp = _impl.BuildinFileSystem.LoadPackageManifestAsync(null, int.MaxValue);
Progress = _loadPackageManifestOp.Progress; Progress = _loadPackageManifestOp.Progress;
if (_loadPackageManifestOp.IsDone == false) if (_loadPackageManifestOp.IsDone == false)
@ -196,7 +196,7 @@ namespace YooAsset
if (_loadPackageManifestOp.Status == EOperationStatus.Succeed) if (_loadPackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
_impl.ActiveManifest = _loadPackageManifestOp.Result; _impl.ActiveManifest = _loadPackageManifestOp.Manifest;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else

View File

@ -204,7 +204,7 @@ namespace YooAsset
if (_loadPackageManifestOp.Status == EOperationStatus.Succeed) if (_loadPackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_manifest = _loadPackageManifestOp.Result; _manifest = _loadPackageManifestOp.Manifest;
_steps = ESteps.Done; _steps = ESteps.Done;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }

View File

@ -11,11 +11,7 @@ namespace YooAsset
/// </summary> /// </summary>
public string PackageVersion { protected set; get; } public string PackageVersion { protected set; get; }
} }
internal sealed class RequestPackageVersionImplOperation : RequestPackageVersionOperation
/// <summary>
/// 通用类
/// </summary>
internal sealed class DefaultRequestPackageVersionOperation : RequestPackageVersionOperation
{ {
private enum ESteps private enum ESteps
{ {
@ -30,7 +26,7 @@ namespace YooAsset
private FSRequestPackageVersionOperation _requestPackageVersionOp; private FSRequestPackageVersionOperation _requestPackageVersionOp;
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
internal DefaultRequestPackageVersionOperation(IFileSystem fileSystem, bool appendTimeTicks, int timeout) internal RequestPackageVersionImplOperation(IFileSystem fileSystem, bool appendTimeTicks, int timeout)
{ {
_fileSystem = fileSystem; _fileSystem = fileSystem;
_appendTimeTicks = appendTimeTicks; _appendTimeTicks = appendTimeTicks;

View File

@ -7,11 +7,7 @@ namespace YooAsset
public abstract class UpdatePackageManifestOperation : AsyncOperationBase public abstract class UpdatePackageManifestOperation : AsyncOperationBase
{ {
} }
internal sealed class UpdatePackageManifestImplOperation : UpdatePackageManifestOperation
/// <summary>
/// 通用类
/// </summary>
internal sealed class DefaultUpdatePackageManifestOperation : UpdatePackageManifestOperation
{ {
private enum ESteps private enum ESteps
{ {
@ -30,7 +26,7 @@ namespace YooAsset
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
internal DefaultUpdatePackageManifestOperation(IPlayMode impl, IFileSystem fileSystem, string packageVersion, int timeout) internal UpdatePackageManifestImplOperation(IPlayMode impl, IFileSystem fileSystem, string packageVersion, int timeout)
{ {
_impl = impl; _impl = impl;
_fileSystem = fileSystem; _fileSystem = fileSystem;
@ -85,7 +81,7 @@ namespace YooAsset
if (_loadPackageManifestOp.Status == EOperationStatus.Succeed) if (_loadPackageManifestOp.Status == EOperationStatus.Succeed)
{ {
_steps = ESteps.Done; _steps = ESteps.Done;
_impl.ActiveManifest = _loadPackageManifestOp.Result; _impl.ActiveManifest = _loadPackageManifestOp.Manifest;
Status = EOperationStatus.Succeed; Status = EOperationStatus.Succeed;
} }
else else

View File

@ -36,13 +36,13 @@ namespace YooAsset
RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout) RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{ {
var operation = new DefaultRequestPackageVersionOperation(EditorFileSystem, appendTimeTicks, timeout); var operation = new RequestPackageVersionImplOperation(EditorFileSystem, appendTimeTicks, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout) UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout)
{ {
var operation = new DefaultUpdatePackageManifestOperation(this, EditorFileSystem, packageVersion, timeout); var operation = new UpdatePackageManifestImplOperation(this, EditorFileSystem, packageVersion, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
@ -55,13 +55,13 @@ namespace YooAsset
ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync() ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync()
{ {
var operation = new DefaultClearAllBundleFilesOperation(this, EditorFileSystem, null, null); var operation = new ClearAllBundleFilesImplOperation(this, EditorFileSystem, null, null);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync() ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync()
{ {
var operation = new DefaultClearUnusedBundleFilesOperation(this, EditorFileSystem, null, null); var operation = new ClearUnusedBundleFilesImplOperation(this, EditorFileSystem, null, null);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }

View File

@ -44,13 +44,13 @@ namespace YooAsset
RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout) RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{ {
var operation = new DefaultRequestPackageVersionOperation(CacheFileSystem, appendTimeTicks, timeout); var operation = new RequestPackageVersionImplOperation(CacheFileSystem, appendTimeTicks, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout) UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout)
{ {
var operation = new DefaultUpdatePackageManifestOperation(this, CacheFileSystem, packageVersion, timeout); var operation = new UpdatePackageManifestImplOperation(this, CacheFileSystem, packageVersion, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
@ -63,13 +63,13 @@ namespace YooAsset
ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync() ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync()
{ {
var operation = new DefaultClearAllBundleFilesOperation(this, BuildinFileSystem, DeliveryFileSystem, CacheFileSystem); var operation = new ClearAllBundleFilesImplOperation(this, BuildinFileSystem, DeliveryFileSystem, CacheFileSystem);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync() ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync()
{ {
var operation = new DefaultClearUnusedBundleFilesOperation(this, BuildinFileSystem, DeliveryFileSystem, CacheFileSystem); var operation = new ClearUnusedBundleFilesImplOperation(this, BuildinFileSystem, DeliveryFileSystem, CacheFileSystem);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }

View File

@ -36,13 +36,13 @@ namespace YooAsset
RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout) RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{ {
var operation = new DefaultRequestPackageVersionOperation(BuildinFileSystem, appendTimeTicks, timeout); var operation = new RequestPackageVersionImplOperation(BuildinFileSystem, appendTimeTicks, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout) UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout)
{ {
var operation = new DefaultUpdatePackageManifestOperation(this, BuildinFileSystem, packageVersion, timeout); var operation = new UpdatePackageManifestImplOperation(this, BuildinFileSystem, packageVersion, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
@ -55,13 +55,13 @@ namespace YooAsset
ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync() ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync()
{ {
var operation = new DefaultClearAllBundleFilesOperation(this, BuildinFileSystem, null, null); var operation = new ClearAllBundleFilesImplOperation(this, BuildinFileSystem, null, null);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync() ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync()
{ {
var operation = new DefaultClearUnusedBundleFilesOperation(this, BuildinFileSystem, null, null); var operation = new ClearUnusedBundleFilesImplOperation(this, BuildinFileSystem, null, null);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }

View File

@ -10,7 +10,7 @@ namespace YooAsset
Type classType = Type.GetType(parameters.FileSystemClass); Type classType = Type.GetType(parameters.FileSystemClass);
if (classType == null) if (classType == null)
{ {
YooLogger.Error($"Not found file system class type {parameters.FileSystemClass}"); YooLogger.Error($"Can not found file system class type {parameters.FileSystemClass}");
return null; return null;
} }

View File

@ -36,13 +36,13 @@ namespace YooAsset
RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout) RequestPackageVersionOperation IPlayMode.RequestPackageVersionAsync(bool appendTimeTicks, int timeout)
{ {
var operation = new DefaultRequestPackageVersionOperation(WebFileSystem, appendTimeTicks, timeout); var operation = new RequestPackageVersionImplOperation(WebFileSystem, appendTimeTicks, timeout);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout) UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, int timeout)
{ {
var operation = new DefaultUpdatePackageManifestOperation(this, WebFileSystem, packageVersion, timeout);; var operation = new UpdatePackageManifestImplOperation(this, WebFileSystem, packageVersion, timeout);;
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
@ -55,13 +55,13 @@ namespace YooAsset
ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync() ClearAllBundleFilesOperation IPlayMode.ClearAllBundleFilesAsync()
{ {
var operation = new DefaultClearAllBundleFilesOperation(this, WebFileSystem, null, null); var operation = new ClearAllBundleFilesImplOperation(this, WebFileSystem, null, null);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }
ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync() ClearUnusedBundleFilesOperation IPlayMode.ClearUnusedBundleFilesAsync()
{ {
var operation = new DefaultClearUnusedBundleFilesOperation(this, WebFileSystem, null, null); var operation = new ClearUnusedBundleFilesImplOperation(this, WebFileSystem, null, null);
OperationSystem.StartOperation(PackageName, operation); OperationSystem.StartOperation(PackageName, operation);
return operation; return operation;
} }

View File

@ -1047,7 +1047,7 @@ namespace YooAsset
if (checkActiveManifest) if (checkActiveManifest)
{ {
if (_playModeImpl.ActiveManifest == null) if (_playModeImpl.ActiveManifest == null)
throw new Exception("Not found active package manifest !"); throw new Exception("Can not found active package manifest !");
} }
} }

View File

@ -106,7 +106,7 @@ namespace YooAsset
CheckException(packageName); CheckException(packageName);
var package = GetPackageInternal(packageName); var package = GetPackageInternal(packageName);
if (package == null) if (package == null)
YooLogger.Error($"Not found resource package : {packageName}"); YooLogger.Error($"Can not found resource package : {packageName}");
return package; return package;
} }