1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game/Online/DownloadTrackingComposite.cs

135 lines
4.4 KiB
C#
Raw Normal View History

2019-01-31 18:17:42 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics.Containers;
using osu.Game.Database;
using osu.Game.Online.API;
namespace osu.Game.Online
{
/// <summary>
/// A component which tracks a beatmap through potential download/import/deletion.
/// </summary>
public abstract class DownloadTrackingComposite<TModel, TModelManager> : CompositeDrawable
2019-06-12 01:53:40 +08:00
where TModel : class, IEquatable<TModel>
2019-06-12 03:11:17 +08:00
where TModelManager : class, IModelDownloader<TModel>
{
protected readonly Bindable<TModel> ModelInfo = new Bindable<TModel>();
private TModelManager manager;
/// <summary>
/// Holds the current download state of the beatmap, whether is has already been downloaded, is in progress, or is not downloaded.
/// </summary>
protected readonly Bindable<DownloadState> State = new Bindable<DownloadState>();
protected readonly Bindable<double> Progress = new Bindable<double>();
protected DownloadTrackingComposite(TModel model = null)
{
ModelInfo.Value = model;
}
[BackgroundDependencyLoader(true)]
private void load(TModelManager manager)
{
this.manager = manager;
ModelInfo.BindValueChanged(modelInfo =>
{
if (modelInfo.NewValue == null)
attachDownload(null);
else if (manager.IsAvailableLocally(modelInfo.NewValue))
State.Value = DownloadState.LocallyAvailable;
else
attachDownload(manager.GetExistingDownload(modelInfo.NewValue));
}, true);
manager.DownloadBegan += download =>
{
2019-06-26 20:52:37 +08:00
if (download.Model.Equals(ModelInfo.Value))
attachDownload(download);
};
manager.ItemAdded += itemAdded;
manager.ItemRemoved += itemRemoved;
}
#region Disposal
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
2019-01-31 18:08:54 +08:00
if (manager != null)
2019-02-27 22:30:13 +08:00
{
manager.DownloadBegan -= attachDownload;
manager.ItemAdded -= itemAdded;
2019-02-27 22:30:13 +08:00
}
2019-01-31 18:08:54 +08:00
State.UnbindAll();
attachDownload(null);
}
#endregion
2019-06-26 20:52:37 +08:00
private ArchiveDownloadRequest<TModel> attachedRequest;
2019-06-26 20:52:37 +08:00
private void attachDownload(ArchiveDownloadRequest<TModel> request)
{
if (attachedRequest != null)
{
attachedRequest.Failure -= onRequestFailure;
attachedRequest.DownloadProgressed -= onRequestProgress;
attachedRequest.Success -= onRequestSuccess;
}
attachedRequest = request;
if (attachedRequest != null)
{
2019-01-31 18:08:45 +08:00
if (attachedRequest.Progress == 1)
{
State.Value = DownloadState.Downloaded;
Progress.Value = 1;
}
else
{
State.Value = DownloadState.Downloading;
Progress.Value = attachedRequest.Progress;
attachedRequest.Failure += onRequestFailure;
attachedRequest.DownloadProgressed += onRequestProgress;
attachedRequest.Success += onRequestSuccess;
}
}
else
{
State.Value = DownloadState.NotDownloaded;
}
}
private void onRequestSuccess(string _) => Schedule(() => State.Value = DownloadState.Downloaded);
private void onRequestProgress(float progress) => Schedule(() => Progress.Value = progress);
private void onRequestFailure(Exception e) => Schedule(() => attachDownload(null));
2019-06-26 20:52:37 +08:00
private void itemAdded(TModel s) => setDownloadStateFromManager(s, DownloadState.LocallyAvailable);
private void itemRemoved(TModel s) => setDownloadStateFromManager(s, DownloadState.NotDownloaded);
private void setDownloadStateFromManager(TModel s, DownloadState state) => Schedule(() =>
{
2019-06-12 03:11:17 +08:00
if (!s.Equals(ModelInfo.Value))
return;
State.Value = state;
});
}
}