LunarLabs.Parser 1.5.6

dotnet add package LunarLabs.Parser --version 1.5.6                
NuGet\Install-Package LunarLabs.Parser -Version 1.5.6                
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="LunarLabs.Parser" Version="1.5.6" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LunarLabs.Parser --version 1.5.6                
#r "nuget: LunarLabs.Parser, 1.5.6"                
#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 LunarLabs.Parser as a Cake Addin
#addin nuget:?package=LunarLabs.Parser&version=1.5.6

// Install LunarLabs.Parser as a Cake Tool
#tool nuget:?package=LunarLabs.Parser&version=1.5.6                

Lunar Parser

XML/JSON/YAML/CSV parsers for C#.

Why Lunar Parser?

There already excellent solutions for parsing JSON, XML and YAML in C#. However they usually require one of the following:

  • Creating classes by hand
  • C# Dynamic feature
  • Cumbersome casting to things like Dictionary<Dictionary<string, object>>

Besides that, each file format requires a different library that works in completly different way.

Lunar Parser was written with the intent of making parsing of data as easy as possible and in with a way that makes possible to read or write a JSON or XML using exactly the same code for each.

Get a string and pass it to the proper parser and get data back in a tree structure. It's also possible to manually create your own data nodes and then serialize them into a string. And there's also some utility methods to convert back and forth between data nodes and dictionaries, or even serialize an object to a DataNode in a generic way.

Installation

PM> Install-Package LunarParser

Since this is a .NET standard package, to use with .NET framework projects please set the target to .NET Framework 4.5 or higher, otherwise Nuget will give you installation errors.

Getting Started

LunarParser supports:

  • .NET Core
  • .NET Framework 3.5 and above
  • Mono & Xamarin
  • UWP

Supported Formats

  • XML
  • JSON
  • YAML
  • CSV
  • BIN (custom format)

Usage

Import the package:

using LunarParser;

And the formats you want to use, eg:

using LunarParser.XML;

Here's some examples.

// reading XML
var root = XMLReader.ReadFromString("<message><content>Hello world!</content></message>");
var msg = root["message"];
var content = msg.GetString("content");
Console.WriteLine("Message: " + content);
// reading JSON
var root = JSONReader.ReadFromString("{\"message\": { \"content\": \"Hello world!\" } }");
var msg = root["message"];
var content = msg.GetString("content");
Console.WriteLine("Message: " + content);
// writing XML (same could be done for json, using JSONWriter or yaml with YAMLWriter)
var msg = DataSource.CreateObject("message");
msg.AddField("content", "Hello world!");

var xml = XMLWriter.WriteToString(msg);
Console.WriteLine("XML: " + xml);
System.IO.File.WriteAllText("hello.xml", xml);
// converting a dictionary to a data node
var dic = new Dictionary<string, string>();
dic["dog"] = "barf";
dic["cat"] = "meow";
dic["fish"] = "blublu";
var data = dic.ToDataSource(dic);

// its also easy to iterate on child nodes
foreach (var child in data.Children) {
	Console.WriteLine(child.Name + " = " + child.Value);
}

//same could be done for json, using JSONWriter
var xml = XMLWriter.WriteToString(msg);
Console.WriteLine("XML: " + xml);

// you can also do the opposite...
dic = data.ToDictionary<string>();
// converting a hashset to a data node
var set = new HashSet<string>();

set.Add("one");
set.Add("two");
set.Add("three");

var node = set.FromHashSet<string>("my_hashset_name");

// you can also do the opposite...
dic = node.ToHashSet<string>();
// Conversion between formats
var xml = File.ReadAllText("some_file.xml");
var root = XMLReader.ReadFromString(content);
var json = JSONWriter.WriteToString(root);

//OR

// content type is auto-detected based on extension
var root = DataFormats.LoadFromFile("some_file.xml"); 
DataFormats.WriteToFile("some_file.json", root);

Notes

DateTime type

Lunar Parser automatically converts DateTime to UNIX timestamps (and does the opposite when loading).

So if you serialize it to JSON or XML you will find just a very long number instead of multiple fields.

This saves space without losing any data down to seconds (miliseconds will be lost, any dates before UNIX epoch will be lost).

If this behavior is not suitable for your program, please compile Lunar Parser from source, with the DATETIME_AS_TIMESTAMPS conditional symbol removed.

Binary format

Lunar Parser supports reading and writing data nodes in a custom binary format.

This format will preserve the tree structure and node values, same as in XML and JSON formats, however it is much faster to parse and write and the file size is smaller.

Very useful to send data in a tree format over a network connection.

Generic serialization of objects

In the latest version there is ToObject() / FromDataSource extension methods that allow converting any C# object to a DataSource and back to the same object.

This works by inspecting public fields with reflection. Properties are currently ignored.

However note that those methods are still experimental, and currently they won't supported nested objects, but will work fine with simple structs / classes.

XML format

When saving in XML format, by default XMLWriter will save any node that contains zero childs as an attribute instead of full XML node. If this is not desirable, pass true as argument to the expand parameter of XMLWriter.WriteToString

As default, writing XML does not support escaping characters, which can produce invalid XML depending on your input data. If you need this, please pass true to the parameter "escape" of XMLWriter.WriteToString().

CSV format

The CSV format can not handle nested nodes. This is a limitation of the format itself, so be careful if converting from other formats to CSV.

Contact

Let me know if you find bugs or if you have suggestions to improve the code.

And maybe follow me @onihunters 😃

Product 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 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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 is compatible.  net472 was computed.  net48 is compatible.  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.6.1

    • No dependencies.
  • .NETFramework 4.7.1

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on LunarLabs.Parser:

Package Downloads
LunarLabs.Server

HTTP server with minimal dependencies

LunarLabs.Bots

Makes it easier to create Telegram and Discord bots

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.6 100 8/10/2024
1.5.5 1,432 9/4/2023
1.5.4 652 7/29/2023
1.5.3 153 7/29/2023
1.5.2 150 6/2/2023
1.5.1 779 5/4/2023
1.4.1 4,906 10/17/2022
1.4.0 400 10/17/2022
1.3.7 10,891 1/9/2021
1.3.6 1,676 12/27/2020
1.3.5 2,282 12/26/2020
1.3.4 403 12/23/2020
1.3.3 1,318 12/19/2020
1.3.2 439 12/16/2020
1.3.1 1,691 10/29/2020
1.3.0 1,171 10/23/2020
1.2.9 1,219 8/30/2020
1.2.8 1,585 5/11/2020
1.2.7 2,282 9/14/2019
1.2.6 5,045 2/9/2019
1.2.5 12,416 11/28/2018
1.2.4 8,593 11/11/2018