Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FileStreamExtensions.cs « Extensions « UVtools.Core - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9b530c4d90b36001439c229a476f60ac381a62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 *                     GNU AFFERO GENERAL PUBLIC LICENSE
 *                       Version 3, 19 November 2007
 *  Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 *  Everyone is permitted to copy and distribute verbatim copies
 *  of this license document, but changing it is not allowed.
 */

using System.IO;

namespace UVtools.Core.Extensions
{
    public static class FileStreamExtensions
    {
        public static uint ReadBytes(this FileStream fs, byte[] bytes, int offset = 0)
        {
            return (uint)fs.Read(bytes, offset, bytes.Length);
        }

        public static byte[] ReadBytes(this FileStream fs, int length, int offset = 0)
        {
            var buffer = new byte[length];
            fs.Read(buffer, offset, length);
            return buffer;
        }

        public static byte[] ReadBytes(this FileStream fs, uint length, int offset = 0)
            => fs.ReadBytes((int)length, offset);

        public static uint ReadUShortLittleEndian(this FileStream fs, int offset = 0)
        {
            return BitExtensions.ToUShortLittleEndian(fs.ReadBytes(2, offset));
        }

        public static uint ReadUShortBigEndian(this FileStream fs, int offset = 0)
        {
            return BitExtensions.ToUShortBigEndian(fs.ReadBytes(2, offset));
        }

        public static uint ReadUIntLittleEndian(this FileStream fs, int offset = 0)
        {
            return BitExtensions.ToUIntLittleEndian(fs.ReadBytes(4, offset));
        }

        public static uint ReadUIntBigEndian(this FileStream fs, int offset = 0)
        {
            return BitExtensions.ToUIntBigEndian(fs.ReadBytes(4, offset));
        }

        public static void WriteUShortLittleEndian(this FileStream fs, ushort value, int offset = 0)
        {
            fs.WriteBytes(BitExtensions.ToBytesLittleEndian(value), offset);
        }

        public static void WriteUShortBigEndian(this FileStream fs, ushort value, int offset = 0)
        {
            fs.WriteBytes(BitExtensions.ToBytesBigEndian(value), offset);
        }

        public static void WriteUIntLittleEndian(this FileStream fs, uint value, int offset = 0)
        {
            fs.WriteBytes(BitExtensions.ToBytesLittleEndian(value), offset);
        }

        public static void WriteUIntBigEndian(this FileStream fs, uint value, int offset = 0)
        {
            fs.WriteBytes(BitExtensions.ToBytesBigEndian(value), offset);
        }

        public static uint WriteStream(this FileStream fs, MemoryStream stream, int offset = 0)
        {
            return fs.WriteBytes(stream.ToArray(), offset);
        }

        public static uint WriteBytes(this FileStream fs, byte[] bytes, int offset = 0)
        {
            fs.Write(bytes, offset, bytes.Length);
            return (uint)bytes.Length;
        }

        public static uint WriteBytes(this Stream stream, byte[] bytes, int offset = 0)
        {
            stream.Write(bytes, offset, bytes.Length);
            return (uint)bytes.Length;
        }

        public static uint WriteSerialize(this FileStream fs, object data, int offset = 0)
        {
            return Helpers.SerializeWriteFileStream(fs, data, offset);
        }
    }
}