First draft for StreamManager including implementation for int values
This commit is contained in:
parent
c7ea85f912
commit
066f320a36
38
SweetLib.IO/Classes/Streaming/StreamExceptions.cs
Normal file
38
SweetLib.IO/Classes/Streaming/StreamExceptions.cs
Normal file
|
@ -0,0 +1,38 @@
|
|||
using System.IO;
|
||||
|
||||
namespace SweetLib.IO.Classes.Streaming
|
||||
{
|
||||
/// <summary>
|
||||
/// Exception thrown by streaming related operations.
|
||||
/// </summary>
|
||||
public class StreamException : IOException
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="StreamException"/>.
|
||||
/// </summary>
|
||||
public StreamException() { }
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="StreamException"/>.
|
||||
/// </summary>
|
||||
/// <param name="message">Exception message.</param>
|
||||
public StreamException(string message) : base(message) { }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Exception thrown by streaming related operations. May be thrown if the stream types do not match.
|
||||
/// </summary>
|
||||
public class StreamTypeException : StreamException
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="StreamTypeException"/>.
|
||||
/// </summary>
|
||||
public StreamTypeException() { }
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="StreamTypeException"/>.
|
||||
/// </summary>
|
||||
/// <param name="message">Exception message.</param>
|
||||
public StreamTypeException(string message) : base(message) { }
|
||||
}
|
||||
}
|
71
SweetLib.IO/Classes/Streaming/StreamManager.cs
Normal file
71
SweetLib.IO/Classes/Streaming/StreamManager.cs
Normal file
|
@ -0,0 +1,71 @@
|
|||
using System.IO;
|
||||
using SweetLib.Utils.Extensions;
|
||||
|
||||
namespace SweetLib.IO.Classes.Streaming
|
||||
{
|
||||
public static class StreamManager
|
||||
{
|
||||
enum StreamedObjectType : ushort // 2 bytes
|
||||
{
|
||||
Unknown = 0x0000,
|
||||
StringValue = 0x1100,
|
||||
BoolValue = 0x1200,
|
||||
CharValue = 0x1300,
|
||||
IntValue = 0x1400,
|
||||
LongValue = 0x1410,
|
||||
FloatValue = 0x1500,
|
||||
DoubleValue = 0x1600,
|
||||
DateTimeValue = 0x1700,
|
||||
StreamValue = 0x1800,
|
||||
ObjectValue = 0x1900,
|
||||
}
|
||||
|
||||
private static bool SaveMetaToStream(Stream stream, StreamedObjectType type, long length)
|
||||
{
|
||||
stream.Write(((ushort)type).ToBytes(), 0, sizeof(ushort));
|
||||
stream.Write(length.ToBytes(), 0, sizeof(long));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private static bool LoadMetaDataFromStream(Stream stream, out StreamedObjectType type, out long length)
|
||||
{
|
||||
type = StreamedObjectType.Unknown;
|
||||
length = -1;
|
||||
|
||||
// read object type
|
||||
var buffer = new byte[sizeof(ushort)];
|
||||
stream.Read(buffer, 0, buffer.Length);
|
||||
type = (StreamedObjectType) buffer.ToUInt16();
|
||||
|
||||
// read data length
|
||||
buffer = new byte[sizeof(long)];
|
||||
stream.Read(buffer, 0, buffer.Length);
|
||||
length = buffer.ToInt64();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public static void SaveToStream(Stream stream, int value)
|
||||
{
|
||||
SaveMetaToStream(stream, StreamedObjectType.IntValue, sizeof(int));
|
||||
|
||||
stream.Write(value.ToBytes(), 0, sizeof(int));
|
||||
}
|
||||
|
||||
public static void LoadFromStream(Stream stream, out int value)
|
||||
{
|
||||
StreamedObjectType type;
|
||||
long length;
|
||||
|
||||
LoadMetaDataFromStream(stream, out type, out length);
|
||||
|
||||
if(type!=StreamedObjectType.IntValue)
|
||||
throw new StreamTypeException($"Expected {StreamedObjectType.IntValue} but found {type} instead.");
|
||||
|
||||
var buffer = new byte[length];
|
||||
stream.Read(buffer, 0, buffer.Length);
|
||||
value = buffer.ToInt32();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue