1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game/IPC/ArchiveImportIPCChannel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.5 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2017-03-04 17:51:16 +08:00
using System.Diagnostics;
using System.IO;
using System.Linq;
2017-03-04 17:51:16 +08:00
using System.Threading.Tasks;
using osu.Framework.Platform;
using osu.Game.Database;
2018-04-13 17:19:50 +08:00
2017-03-04 17:51:16 +08:00
namespace osu.Game.IPC
{
public class ArchiveImportIPCChannel : IpcChannel<ArchiveImportMessage>
2017-03-04 17:51:16 +08:00
{
2018-02-15 13:19:16 +08:00
private readonly ICanAcceptFiles importer;
2018-04-13 17:19:50 +08:00
2018-02-15 13:19:16 +08:00
public ArchiveImportIPCChannel(IIpcHost host, ICanAcceptFiles importer = null)
2017-03-04 17:51:16 +08:00
: base(host)
{
this.importer = importer;
2017-03-09 13:24:16 +08:00
MessageReceived += msg =>
2017-03-04 17:51:16 +08:00
{
Debug.Assert(importer != null);
ImportAsync(msg.Path).ContinueWith(t =>
{
if (t.Exception != null) throw t.Exception;
}, TaskContinuationOptions.OnlyOnFaulted);
return null;
2017-03-04 17:51:16 +08:00
};
}
2018-04-13 17:19:50 +08:00
2017-03-04 17:51:16 +08:00
public async Task ImportAsync(string path)
{
if (importer == null)
2017-03-04 17:51:16 +08:00
{
2020-05-05 09:31:11 +08:00
// we want to contact a remote osu! to handle the import.
await SendMessageAsync(new ArchiveImportMessage { Path = path }).ConfigureAwait(false);
2017-03-04 17:51:16 +08:00
return;
}
2018-04-13 17:19:50 +08:00
2018-09-26 17:44:03 +08:00
if (importer.HandledExtensions.Contains(Path.GetExtension(path)?.ToLowerInvariant()))
await importer.Import(path).ConfigureAwait(false);
2017-03-04 17:51:16 +08:00
}
}
2018-04-13 17:19:50 +08:00
public class ArchiveImportMessage
2017-03-04 17:51:16 +08:00
{
public string Path;
}
}