U8XmlParser 1.0.0
See the version list below for details.
dotnet add package U8XmlParser --version 1.0.0
NuGet\Install-Package U8XmlParser -Version 1.0.0
<PackageReference Include="U8XmlParser" Version="1.0.0" />
paket add U8XmlParser --version 1.0.0
#r "nuget: U8XmlParser, 1.0.0"
// Install U8XmlParser as a Cake Addin #addin nuget:?package=U8XmlParser&version=1.0.0 // Install U8XmlParser as a Cake Tool #tool nuget:?package=U8XmlParser&version=1.0.0
U8XmlParser
High performance, thread-safe and IL2CPP-safe C# xml parser.
U8XmlParser is faster than any other xml libraries. (See the following benchmark for more info)
Install
For .NET
.net standard2.0, 2.1, .net framework4.8, .net core3.1, .net5 are supported.
Install from Nuget package
$ dotnet add package U8XmlParser
For Unity
If Unity 2020 or newer, install the package from UPM by git URL.
git URL: (https://github.com/ikorin24/U8XmlParser.git?path=src/U8XmlParserUnity/Assets/Plugins)
For Unity 2019 or older, add the following libraries built for .net standard2.0 to your project. You can get them at the release page.
- U8XmlParser.dll (built for .net standard 2.0)
- System.Buffers.dll
- System.Memory.dll
- System.Runtime.CompilerServices.Unsafe.dll
How to Build
It requires dotnet cli tools. (or Visual Studio)
$ git clone https://github.com/ikorin24/U8XmlParser.git
$ cd U8XmlParser
$ dotnet src/U8XmlParser/U8XmlParser.csproj -c Release
How to Use
General usage
/* ------- your_file.xml ----------
<?xml version="1.0" encoding="UTF-8">
<SomeData>
<Data aa="20">bbb</Data>
<Data aa="30">ccc</Data>
</SomeData>
----------------------------------- */
// using System.IO;
// using U8Xml;
using (Stream stream = File.OpenRead("your_file.xml"))
using (XmlObject xml = XmlParser.Parse(stream))
{
XmlNode root = xml.Root;
string rootName = root.Name.ToString(); // "SomeData"
// node
XmlNode child = root.Children.First();
string childName = child.Name.ToString(); // "Data"
string innerText = child.InnerText.ToString(); // "bbb"
// attribute
XmlAttribute attr = child.Attributes.First();
string attrName = attr.Name.ToString(); // "aa"
int attrValue = attr.Value.ToInt32(); // 20
// children nodes enumeration
foreach(XmlNode node in root.Children)
{
// do something
}
}
// *** DO NOT use any object from the parser. ***
// XmlObject, XmlNode, RawString, etc... are no longer accessible here.
// Their all memories are released when XmlObject.Dispose() called !!
// They must be evaluated and converted to string, int, and so on.
Entity resolving
Some xml has DTD; Document Type Declaration, and it can contain Entity Declaration. Entity defines alias of string in the xml. (For example, 'lt'
is defined as alias of '<'
by default. We have to resolve it when appears <
in xml.)
/* ------- your_file.xml ----------
<?xml version="1.0" encoding="UTF-8">
<SomeData>
<foo>
</SomeData>
----------------------------------- */
// using System.IO;
// using U8Xml;
using (Stream stream = File.OpenRead("your_file.xml"))
using (XmlObject xml = XmlParser.Parse(stream))
{
RawString innerText = xml.Root.InnerText; // "<foo>"
XmlEntityTable entities = xml.EntityTable;
string resolvedText = entities.ResolveToString(innerText); // "<foo>"
}
Benchmark
Benchmarking Yourself
$ cd src/Benchmark
$ dotnet run -c Release -f net5.0
Results (on .net5)
Benchmarked by BenchmarkDotNet.
Large XML File (about 1MB)
BenchmarkDotNet=v0.12.1, OS=Windows 10.0.19042
Intel Core i7-10700 CPU 2.90GHz, 1 CPU, 16 logical and 8 physical cores
.NET Core SDK=5.0.202
[Host] : .NET Core 5.0.5 (CoreCLR 5.0.521.16609, CoreFX 5.0.521.16609), X64 RyuJIT
Job-MDJTNK : .NET Core 5.0.5 (CoreCLR 5.0.521.16609, CoreFX 5.0.521.16609), X64 RyuJIT
Jit=RyuJit Platform=X64 InvocationCount=1
IterationCount=100 UnrollFactor=1
Method | Mean | Error | StdDev | Ratio | RatioSD | Rank | Gen 0 | Gen 1 | Gen 2 | Allocated |
---|---|---|---|---|---|---|---|---|---|---|
'U8Xml.XmlParser (my lib)' | 21.63 ms | 0.044 ms | 0.123 ms | 1.00 | 0.00 | 1 | - | - | - | 128 B |
System.Xml.Linq.XDocument | 118.53 ms | 0.591 ms | 1.732 ms | 5.48 | 0.08 | 3 | 7000.0000 | 4000.0000 | 1000.0000 | 51898640 B |
System.Xml.XmlDocument | 177.19 ms | 1.615 ms | 4.763 ms | 8.19 | 0.22 | 4 | 10000.0000 | 5000.0000 | 1000.0000 | 76709520 B |
System.Xml.XmlReader | 33.55 ms | 0.036 ms | 0.102 ms | 1.55 | 0.01 | 2 | - | - | - | 132712 B |
Samll XML File (about 100KB)
BenchmarkDotNet=v0.12.1, OS=Windows 10.0.19042
Intel Core i7-10700 CPU 2.90GHz, 1 CPU, 16 logical and 8 physical cores
.NET Core SDK=5.0.202
[Host] : .NET Core 5.0.5 (CoreCLR 5.0.521.16609, CoreFX 5.0.521.16609), X64 RyuJIT
Job-JOKSVC : .NET Core 5.0.5 (CoreCLR 5.0.521.16609, CoreFX 5.0.521.16609), X64 RyuJIT
Jit=RyuJit Platform=X64 InvocationCount=1
IterationCount=100 UnrollFactor=1
Method | Mean | Error | StdDev | Median | Ratio | RatioSD | Rank | Gen 0 | Gen 1 | Gen 2 | Allocated |
---|---|---|---|---|---|---|---|---|---|---|---|
'U8Xml.XmlParser (my lib)' | 251.9 μs | 1.76 μs | 4.93 μs | 250.3 μs | 1.00 | 0.00 | 1 | - | - | - | 128 B |
System.Xml.Linq.XDocument | 1,114.4 μs | 12.27 μs | 35.80 μs | 1,113.3 μs | 4.43 | 0.17 | 3 | - | - | - | 547336 B |
System.Xml.XmlDocument | 1,481.3 μs | 3.59 μs | 10.35 μs | 1,480.7 μs | 5.88 | 0.12 | 4 | - | - | - | 796912 B |
System.Xml.XmlReader | 579.6 μs | 0.54 μs | 1.50 μs | 579.7 μs | 2.30 | 0.04 | 2 | - | - | - | 29360 B |
License
This repository is licensed under MIT.
See Licenses of other libraries this repository contains from here.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- No dependencies.
-
.NETFramework 4.8
- System.Memory (>= 4.5.3)
- System.Runtime.CompilerServices.Unsafe (>= 5.0.0)
-
.NETStandard 2.0
- System.Memory (>= 4.5.3)
- System.Runtime.CompilerServices.Unsafe (>= 5.0.0)
-
.NETStandard 2.1
- System.Runtime.CompilerServices.Unsafe (>= 5.0.0)
-
net5.0
- No dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on U8XmlParser:
Package | Downloads |
---|---|
OEmbed
A simple oEmbed consumer library for .NET |
|
NiconicoToolkit
ニコニコ動画/生放送の.Net向けサードパーティライブラリです。 - Account (Login with mail/password) - Video (Play, Comment) - Activity (Video History) - Channels (Videos) - Follow (Tag, User, Mylist, Channel, Community) - Likes (Video) - Live (Play, Comment, TimeShift) - Mylist (List videos, Edit MylistGroup) - NicoRepo - Ranking (Video) - Series (List videos) - User - SnapshotSearchV2 (Video) - Search (Video/Mylist/Live) |
|
UnsafeGbxConnector
Package Description |
|
Heroes.XmlData
Library to directly parse the Heroes of the Storm game data. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on U8XmlParser:
Repository | Stars |
---|---|
ingen084/KyoshinEewViewerIngen
Custom client for Kyoshin Monitor
|