YooAsset/Assets/YooAsset/Runtime/PatchSystem/PlayMode/HostPlayModeImpl.cs

405 lines
13 KiB
C#
Raw Normal View History

2022-03-01 10:44:12 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
2022-03-01 10:44:12 +08:00
namespace YooAsset
{
internal class HostPlayModeImpl : IBundleServices
{
// 补丁清单
internal PatchManifest LocalPatchManifest { private set; get; }
2022-03-01 10:44:12 +08:00
// 参数相关
private bool _locationToLower;
2022-03-01 10:44:12 +08:00
private string _defaultHostServer;
private string _fallbackHostServer;
public IQueryServices QueryServices { private set; get; }
2022-03-01 10:44:12 +08:00
/// <summary>
/// 异步初始化
/// </summary>
2022-10-27 14:20:05 +08:00
public InitializationOperation InitializeAsync(bool locationToLower, string defaultHostServer, string fallbackHostServer, IQueryServices queryServices, string packageName)
2022-03-01 10:44:12 +08:00
{
_locationToLower = locationToLower;
2022-03-01 10:44:12 +08:00
_defaultHostServer = defaultHostServer;
_fallbackHostServer = fallbackHostServer;
QueryServices = queryServices;
2022-03-01 10:44:12 +08:00
2022-10-27 14:20:05 +08:00
var operation = new HostPlayModeInitializationOperation(this, packageName);
2022-08-06 11:23:43 +08:00
OperationSystem.StartOperation(operation);
2022-03-01 10:44:12 +08:00
return operation;
}
/// <summary>
/// 获取包裹的版本信息
/// </summary>
public string GetPackageVersion()
{
if (LocalPatchManifest == null)
return string.Empty;
return LocalPatchManifest.PackageVersion;
}
/// <summary>
/// 异步更新资源版本号
/// </summary>
public UpdatePackageVersionOperation UpdatePackageVersionAsync(string packageName, int timeout, bool appendTimeTicks)
{
var operation = new HostPlayModeUpdatePackageVersionOperation(this, packageName, timeout, appendTimeTicks);
2022-08-06 11:23:43 +08:00
OperationSystem.StartOperation(operation);
return operation;
}
2022-03-01 10:44:12 +08:00
/// <summary>
/// 异步更新补丁清单
/// </summary>
public UpdatePackageManifestOperation UpdatePackageManifestAsync(string packageName, string packageVersion, int timeout)
2022-03-01 10:44:12 +08:00
{
var operation = new HostPlayModeUpdatePackageManifestOperation(this, packageName, packageVersion, timeout);
2022-08-06 11:23:43 +08:00
OperationSystem.StartOperation(operation);
return operation;
}
/// <summary>
/// 检查本地包裹内容的完整性
/// </summary>
public CheckPackageContentsOperation CheckPackageContentsAsync(string packageName)
{
var operation = new HostPlayModeCheckPackageContentsOperation(this, packageName);
2022-08-06 11:23:43 +08:00
OperationSystem.StartOperation(operation);
return operation;
}
/// <summary>
/// 异步更新资源包裹
/// </summary>
public DownloadPackageOperation DownloadPackageAsync(string packageName, string packageVersion, int timeout)
{
var operation = new HostPlayModeDownloadPackageOperation(this, packageName, packageVersion, timeout);
2022-08-06 11:23:43 +08:00
OperationSystem.StartOperation(operation);
2022-03-01 10:44:12 +08:00
return operation;
}
/// <summary>
/// 创建下载器
/// </summary>
public PatchDownloaderOperation CreatePatchDownloaderByAll(int fileLoadingMaxNumber, int failedTryAgain, int timeout)
{
2022-11-16 14:49:38 +08:00
YooLogger.Log($"Create patch downloader : {LocalPatchManifest.PackageName} {LocalPatchManifest.PackageVersion}");
List<BundleInfo> downloadList = GetDownloadListByAll();
var operation = new PatchDownloaderOperation(downloadList, fileLoadingMaxNumber, failedTryAgain, timeout);
return operation;
}
private List<BundleInfo> GetDownloadListByAll()
{
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
foreach (var patchBundle in LocalPatchManifest.BundleList)
{
// 忽略缓存文件
if (CacheSystem.IsCached(patchBundle))
continue;
// 忽略APP资源
2022-09-28 11:55:12 +08:00
if (IsBuildinPatchBundle(patchBundle))
continue;
downloadList.Add(patchBundle);
}
return ConvertToDownloadList(downloadList);
}
2022-03-01 10:44:12 +08:00
/// <summary>
2022-03-03 18:07:20 +08:00
/// 创建下载器
2022-03-01 10:44:12 +08:00
/// </summary>
public PatchDownloaderOperation CreatePatchDownloaderByTags(string[] tags, int fileLoadingMaxNumber, int failedTryAgain, int timeout)
2022-03-01 10:44:12 +08:00
{
2022-11-16 14:49:38 +08:00
YooLogger.Log($"Create patch downloader : {LocalPatchManifest.PackageName} {LocalPatchManifest.PackageVersion}");
2022-03-07 21:20:58 +08:00
List<BundleInfo> downloadList = GetDownloadListByTags(tags);
var operation = new PatchDownloaderOperation(downloadList, fileLoadingMaxNumber, failedTryAgain, timeout);
2022-03-03 18:07:20 +08:00
return operation;
2022-03-01 10:44:12 +08:00
}
2022-03-07 21:20:58 +08:00
private List<BundleInfo> GetDownloadListByTags(string[] tags)
2022-03-01 10:44:12 +08:00
{
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
foreach (var patchBundle in LocalPatchManifest.BundleList)
{
// 忽略缓存文件
if (CacheSystem.IsCached(patchBundle))
2022-03-01 10:44:12 +08:00
continue;
// 忽略APP资源
2022-09-28 11:55:12 +08:00
if (IsBuildinPatchBundle(patchBundle))
continue;
2022-03-01 10:44:12 +08:00
2022-09-28 11:55:12 +08:00
// 如果未带任何标记,则统一下载
if (patchBundle.HasAnyTags() == false)
2022-03-01 10:44:12 +08:00
{
downloadList.Add(patchBundle);
}
else
{
// 查询DLC资源
2022-03-03 18:07:20 +08:00
if (patchBundle.HasTag(tags))
2022-03-01 10:44:12 +08:00
{
downloadList.Add(patchBundle);
}
}
}
return ConvertToDownloadList(downloadList);
}
/// <summary>
2022-03-03 18:07:20 +08:00
/// 创建下载器
2022-03-01 10:44:12 +08:00
/// </summary>
public PatchDownloaderOperation CreatePatchDownloaderByPaths(AssetInfo[] assetInfos, int fileLoadingMaxNumber, int failedTryAgain, int timeout)
2022-03-01 10:44:12 +08:00
{
2022-11-16 14:49:38 +08:00
YooLogger.Log($"Create patch downloader : {LocalPatchManifest.PackageName} {LocalPatchManifest.PackageVersion}");
List<BundleInfo> downloadList = GetDownloadListByPaths(assetInfos);
var operation = new PatchDownloaderOperation(downloadList, fileLoadingMaxNumber, failedTryAgain, timeout);
2022-03-03 18:07:20 +08:00
return operation;
2022-03-01 10:44:12 +08:00
}
private List<BundleInfo> GetDownloadListByPaths(AssetInfo[] assetInfos)
2022-03-01 10:44:12 +08:00
{
// 获取资源对象的资源包和所有依赖资源包
List<PatchBundle> checkList = new List<PatchBundle>();
foreach (var assetInfo in assetInfos)
2022-03-01 10:44:12 +08:00
{
if (assetInfo.IsInvalid)
2022-03-01 10:44:12 +08:00
{
YooLogger.Warning(assetInfo.Error);
continue;
2022-03-01 10:44:12 +08:00
}
// 注意:如果补丁清单里未找到资源包会抛出异常!
PatchBundle mainBundle = LocalPatchManifest.GetMainPatchBundle(assetInfo.AssetPath);
if (checkList.Contains(mainBundle) == false)
checkList.Add(mainBundle);
// 注意:如果补丁清单里未找到资源包会抛出异常!
PatchBundle[] dependBundles = LocalPatchManifest.GetAllDependencies(assetInfo.AssetPath);
foreach (var dependBundle in dependBundles)
2022-03-01 10:44:12 +08:00
{
if (checkList.Contains(dependBundle) == false)
checkList.Add(dependBundle);
2022-03-01 10:44:12 +08:00
}
}
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
foreach (var patchBundle in checkList)
{
// 忽略缓存文件
if (CacheSystem.IsCached(patchBundle))
2022-03-01 10:44:12 +08:00
continue;
// 忽略APP资源
2022-09-28 11:55:12 +08:00
if (IsBuildinPatchBundle(patchBundle))
continue;
2022-03-01 10:44:12 +08:00
downloadList.Add(patchBundle);
}
return ConvertToDownloadList(downloadList);
}
2022-03-07 20:13:39 +08:00
/// <summary>
/// 创建解压器
/// </summary>
public PatchUnpackerOperation CreatePatchUnpackerByTags(string[] tags, int fileUpackingMaxNumber, int failedTryAgain, int timeout)
2022-03-07 20:13:39 +08:00
{
2022-11-16 14:49:38 +08:00
YooLogger.Log($"Create patch unpacker : {LocalPatchManifest.PackageName} {LocalPatchManifest.PackageVersion}");
List<BundleInfo> unpcakList = GetUnpackListByTags(tags);
var operation = new PatchUnpackerOperation(unpcakList, fileUpackingMaxNumber, failedTryAgain, timeout);
2022-03-07 20:13:39 +08:00
return operation;
}
private List<BundleInfo> GetUnpackListByTags(string[] tags)
{
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
2022-09-28 11:55:12 +08:00
foreach (var patchBundle in LocalPatchManifest.BundleList)
{
// 忽略缓存文件
if (CacheSystem.IsCached(patchBundle))
continue;
// 查询DLC资源
2022-09-28 11:55:12 +08:00
if (IsBuildinPatchBundle(patchBundle))
{
2022-09-28 11:55:12 +08:00
if (patchBundle.HasTag(tags))
{
downloadList.Add(patchBundle);
}
}
}
return ConvertToUnpackList(downloadList);
}
/// <summary>
/// 创建解压器
/// </summary>
public PatchUnpackerOperation CreatePatchUnpackerByAll(int fileUpackingMaxNumber, int failedTryAgain, int timeout)
{
2022-11-16 14:49:38 +08:00
YooLogger.Log($"Create patch unpacker : {LocalPatchManifest.PackageName} {LocalPatchManifest.PackageVersion}");
List<BundleInfo> unpcakList = GetUnpackListByAll();
var operation = new PatchUnpackerOperation(unpcakList, fileUpackingMaxNumber, failedTryAgain, timeout);
return operation;
}
private List<BundleInfo> GetUnpackListByAll()
{
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
2022-09-28 11:55:12 +08:00
foreach (var patchBundle in LocalPatchManifest.BundleList)
{
// 忽略缓存文件
if (CacheSystem.IsCached(patchBundle))
continue;
2022-09-28 11:55:12 +08:00
if (IsBuildinPatchBundle(patchBundle))
{
downloadList.Add(patchBundle);
}
}
return ConvertToUnpackList(downloadList);
}
2022-03-07 20:13:39 +08:00
2022-03-01 10:44:12 +08:00
// WEB相关
public string GetPatchDownloadMainURL(string fileName)
2022-03-01 10:44:12 +08:00
{
return $"{_defaultHostServer}/{fileName}";
2022-03-01 10:44:12 +08:00
}
public string GetPatchDownloadFallbackURL(string fileName)
2022-03-01 10:44:12 +08:00
{
return $"{_fallbackHostServer}/{fileName}";
2022-03-01 10:44:12 +08:00
}
// 下载相关
public List<BundleInfo> ConvertToDownloadList(List<PatchBundle> downloadList)
2022-03-01 10:44:12 +08:00
{
2022-03-07 21:20:58 +08:00
List<BundleInfo> result = new List<BundleInfo>(downloadList.Count);
2022-03-01 10:44:12 +08:00
foreach (var patchBundle in downloadList)
{
var bundleInfo = ConvertToDownloadInfo(patchBundle);
result.Add(bundleInfo);
}
return result;
}
private BundleInfo ConvertToDownloadInfo(PatchBundle patchBundle)
2022-03-07 20:13:39 +08:00
{
2022-07-25 15:46:20 +08:00
string remoteMainURL = GetPatchDownloadMainURL(patchBundle.FileName);
string remoteFallbackURL = GetPatchDownloadFallbackURL(patchBundle.FileName);
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromRemote, remoteMainURL, remoteFallbackURL);
2022-03-07 20:13:39 +08:00
return bundleInfo;
}
// 解压相关
public List<BundleInfo> ConvertToUnpackList(List<PatchBundle> unpackList)
{
List<BundleInfo> result = new List<BundleInfo>(unpackList.Count);
foreach (var patchBundle in unpackList)
{
var bundleInfo = ConvertToUnpackInfo(patchBundle);
result.Add(bundleInfo);
}
return result;
}
public static BundleInfo ConvertToUnpackInfo(PatchBundle patchBundle)
{
// 注意:我们把流加载路径指定为远端下载地址
string streamingPath = PathHelper.ConvertToWWWPath(patchBundle.StreamingFilePath);
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromStreaming, streamingPath, streamingPath);
return bundleInfo;
}
internal void SetLocalPatchManifest(PatchManifest patchManifest)
{
LocalPatchManifest = patchManifest;
LocalPatchManifest.InitAssetPathMapping(_locationToLower);
}
2022-09-28 11:55:12 +08:00
internal bool IsBuildinPatchBundle(PatchBundle patchBundle)
{
return QueryServices.QueryStreamingAssets(patchBundle.FileName);
2022-09-28 11:55:12 +08:00
}
2022-03-01 10:44:12 +08:00
#region IBundleServices接口
private BundleInfo CreateBundleInfo(PatchBundle patchBundle)
2022-03-01 10:44:12 +08:00
{
if (patchBundle == null)
throw new Exception("Should never get here !");
// 查询沙盒资源
if (CacheSystem.IsCached(patchBundle))
2022-03-01 10:44:12 +08:00
{
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromCache);
return bundleInfo;
}
// 查询APP资源
2022-09-28 11:55:12 +08:00
if (IsBuildinPatchBundle(patchBundle))
{
2022-09-28 11:55:12 +08:00
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromStreaming);
return bundleInfo;
2022-03-01 10:44:12 +08:00
}
// 从服务端下载
return ConvertToDownloadInfo(patchBundle);
2022-03-01 10:44:12 +08:00
}
BundleInfo IBundleServices.GetBundleInfo(AssetInfo assetInfo)
{
if (assetInfo.IsInvalid)
throw new Exception("Should never get here !");
// 注意:如果补丁清单里未找到资源包会抛出异常!
var patchBundle = LocalPatchManifest.GetMainPatchBundle(assetInfo.AssetPath);
return CreateBundleInfo(patchBundle);
}
BundleInfo[] IBundleServices.GetAllDependBundleInfos(AssetInfo assetInfo)
{
if (assetInfo.IsInvalid)
throw new Exception("Should never get here !");
// 注意:如果补丁清单里未找到资源包会抛出异常!
var depends = LocalPatchManifest.GetAllDependencies(assetInfo.AssetPath);
List<BundleInfo> result = new List<BundleInfo>(depends.Length);
foreach (var patchBundle in depends)
{
BundleInfo bundleInfo = CreateBundleInfo(patchBundle);
result.Add(bundleInfo);
}
return result.ToArray();
}
AssetInfo[] IBundleServices.GetAssetInfos(string[] tags)
{
return LocalPatchManifest.GetAssetsInfoByTags(tags);
}
PatchAsset IBundleServices.TryGetPatchAsset(string assetPath)
2022-03-01 10:44:12 +08:00
{
if (LocalPatchManifest.TryGetPatchAsset(assetPath, out PatchAsset patchAsset))
return patchAsset;
else
return null;
2022-03-01 10:44:12 +08:00
}
string IBundleServices.MappingToAssetPath(string location)
2022-03-01 10:44:12 +08:00
{
return LocalPatchManifest.MappingToAssetPath(location);
2022-03-01 10:44:12 +08:00
}
string IBundleServices.TryMappingToAssetPath(string location)
{
return LocalPatchManifest.TryMappingToAssetPath(location);
}
2022-09-29 18:40:43 +08:00
string IBundleServices.GetPackageName()
{
return LocalPatchManifest.PackageName;
}
bool IBundleServices.IsIncludeBundleFile(string fileName)
{
return LocalPatchManifest.IsIncludeBundleFile(fileName);
}
bool IBundleServices.IsServicesValid()
{
return LocalPatchManifest != null;
}
2022-03-01 10:44:12 +08:00
#endregion
}
}