1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 02:07:24 +08:00
osu-lazer/osu.Game/Beatmaps/IO/ArchiveReader.cs

69 lines
2.2 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 17:56:20 +08:00
using System;
using System.Collections.Generic;
using System.IO;
2016-11-05 19:00:14 +08:00
using osu.Framework.IO.Stores;
2016-10-10 21:20:06 +08:00
using osu.Framework.Platform;
namespace osu.Game.Beatmaps.IO
{
2016-11-05 19:00:14 +08:00
public abstract class ArchiveReader : IDisposable, IResourceStore<byte[]>
{
private class Reader
{
2017-05-08 18:56:04 +08:00
public Func<Storage, string, bool> Test;
public Type Type;
}
2017-05-08 18:56:04 +08:00
private static readonly List<Reader> readers = new List<Reader>();
2017-02-23 14:38:17 +08:00
public static ArchiveReader GetReader(Storage storage, string path)
{
foreach (var reader in readers)
{
if (reader.Test(storage, path))
return (ArchiveReader)Activator.CreateInstance(reader.Type, storage.GetStream(path));
}
throw new IOException(@"Unknown file format");
}
2017-02-23 14:38:17 +08:00
protected static void AddReader<T>(Func<Storage, string, bool> test) where T : ArchiveReader
{
readers.Add(new Reader { Test = test, Type = typeof(T) });
}
/// <summary>
/// Gets a list of beatmap file names.
/// </summary>
public string[] BeatmapFilenames { get; protected set; }
/// <summary>
/// The storyboard filename. Null if no storyboard is present.
/// </summary>
public string StoryboardFilename { get; protected set; }
/// <summary>
/// Opens a stream for reading a specific file from this archive.
/// </summary>
2016-11-05 19:00:14 +08:00
public abstract Stream GetStream(string name);
public abstract void Dispose();
2016-11-05 19:00:14 +08:00
public virtual byte[] Get(string name)
{
using (Stream input = GetStream(name))
{
if (input == null)
return null;
byte[] buffer = new byte[input.Length];
input.Read(buffer, 0, buffer.Length);
return buffer;
2016-11-05 19:00:14 +08:00
}
}
2017-05-23 15:26:51 +08:00
public abstract Stream GetUnderlyingStream();
}
}