Grille.IO.BinaryView
3.0.0
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
.NET Framework 4.5
This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
dotnet add package Grille.IO.BinaryView --version 3.0.0
NuGet\Install-Package Grille.IO.BinaryView -Version 3.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Grille.IO.BinaryView" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Grille.IO.BinaryView --version 3.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Grille.IO.BinaryView, 3.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Grille.IO.BinaryView as a Cake Addin #addin nuget:?package=Grille.IO.BinaryView&version=3.0.0 // Install Grille.IO.BinaryView as a Cake Tool #tool nuget:?package=Grille.IO.BinaryView&version=3.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
BinaryView
Libary to easily write and read binary data from streams and files. Available as a NuGet Package.
This library basically provides more advanced versions of the System.IO.BinaryWriter
and System.IO.BinaryReader
classes.
Features
- Asymmetrical and Symmetrical write/read functions.
- Simple to use string functions with encoding options.
- Generic functions to write whole lists and (unmanaged) structs.
- Easy compresion/decompresion of sections or whole stream's with GZip, Deflate, Brotli or ZLib.
- Smart length prefixes depending on size. (42 takes 1 byte, 3000 takes 2 etc.)
- Support for byte endianness and bit order.
Example Write/Read (asymmetrical)
using Grille.IO;
using Grille.IO.Compression;
Write
// Open a file to write
using (var bw = new BinaryViewWriter("file.bin"))
{
// Type used for LengthPrefix by Strings and Arrays
bw.DefaultLengthPrefix = LengthPrefix.UInt32;
// Write data in the file
bw.WriteString(Name);
bw.WriteInt32(Age);
bw.Write<Vector2>(Pos);
// Compress section
bw.BeginCompressedSection(CompressionType.Deflate);
bw.WriteArray<byte>(Data0);
// Override default prefix to use byte instead
bw.WriteArray<Vector2>(Data1, LengthPrefix.Byte);
// Write length manuel
bw.WriteInt32(Data2.Length);
bw.WriteArray<float>(Data2, LengthPrefix.None);
bw.EndCompressedSection();
}
Read
// Open a file to read
using (var br = new BinaryViewReader("file.bin"))
{
br.DefaultLengthPrefix = LengthPrefix.UInt32;
// Read the data in same order of how they were written
Name = br.ReadString();
Age = br.ReadInt32();
Pos = br.Read<Vector2>()
// Decompress section
br.BeginCompressedSection(CompressionType.Deflate);
Data0 = br.ReadArray<byte>();
// Read prefix-type must match written one.
Data1 = br.ReadArray<Vector2>(LengthPrefix.Byte);
// Read length manuel
int length = br.ReadInt32();
Data2 = br.WriteArray<float>(length);
br.EndCompressedSection();
}
Example View (symmetrical)
Uses same code for write and read operations.
using GGL.IO;
using GGL.IO.Compression;
View
// Open a file to read
using (var view = new BinaryView("file.bin", ViewMode.Read /*ViewMode.Write*/))
{
view.DefaultLengthPrefix = LengthPrefix.UInt32;
view.String(ref Name);
view.Int32(ref Age);
view.Struct<Vector2>(ref Pos);
view.BeginCompressedSection(CompressionType.Deflate);
view.Array<byte>(ref Data0);
view.Array<Vector2>(ref Data1, LengthPrefix.Byte);
// Switch when different operations are needed for read and write.
if (view.Mode == ViewMode.Read){
var br = view.Reader;
int length = br.ReadInt32();
Data2 = br.WriteArray<float>(length);
}
else {
var bw = view.Writer;
bw.WriteInt32(Data2.Length);
bw.WriteArray<float>(Data2, LengthPrefix.None);
}
// Above can also be solved this way:
/*
int length = Data2.Length;
view.Int32(ref length);
view.Array<float>(ref Data2, length);
*/
view.EndCompressedSection();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Grille.IO.BinaryView:
Package | Downloads |
---|---|
Grille.BeamNG.Lib
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.0 | 202 | 5/13/2024 |