Coder Social home page Coder Social logo

kdl-net's Introduction

KdlDotNet

This is a C# implementation of a parser for the KDL Document Language.

It is semi-literally ported from the Java KDL parser implementation kdl4j by Hannah Kolbeck. Many thanks for the original implementation.

Status

The library is up to date as of the KDL 1.0.0. spec. All testcases pass, except for scientific-notation numeric values outside the range representable by a System.Double, which KdlDotNet does not support at this time.

The scope of the library is small and it has what I would consider excellent unit test coverage.

I would be happy to use it in production in a constrained environment, such as loading configuration files, etc. It hasn't had proper performance benchmarking or profiling, so it is probably not suitable for use in a performance-critical codepath such as a tight loop.

Platform

The library is built against .NET Standard 2.0, which means it should work on the .NET Desktop framework 4.7.2 or later, and .NET Core 2.0 and later. The unit tests run against both .NET 4.7.2 and .NET Core 3.1 and all passs.

Installation

Install the KdlDotNet Nuget package, or you can build the source yourself.

License

KDL-net is licensed under the Creative Commons Attribution 4.0 License.

Why KDL?

I have successfully used this library to configure and boot up an ASP.NET Core application, using KDL in place of what would usually be a JSON file. KDL fits very nicely in this kind of environment. I've created an extension library Nuget Package called KdlDotNet.Extensions.Configuration to help with this.

Look at the difference: Here is a snippet from a configuration file, first using the traditional JSON file syntax:

"Logging": {
    "IncludeScopes": false,
    "Debug": {
        "LogLevel": {
            "Default": "Information"
        }
    },
    "Console": {
        "LogLevel": {
            "Microsoft.AspNetCore.Mvc.Razor.Internal": "Warning",
            "Microsoft.AspNetCore.Mvc.Razor": "Error",
            "Default": "Warning"
        }
    },
    "LogLevel": {
        "Default": "Debug"
    }
},

Now look at the same thing in KDL using KdlDotNet.Extensions.Configuration.
It uses the flexibility of KDL's nodes and attributes to make it much shorter, it has less syntactical noise, and is less error prone. You can't screw up the trailing commas and so forth. KDL also has much improved support for comments which is nice.

Logging IncludeScopes=false {
    Debug {
        LogLevel Default="Information"
    }
    Console {
        LogLevel Default="Warning" {
            Microsoft.AspNetCore.Mvc.Razor.Internal "Warning"
            Microsoft.AspNetCore.Mvc.Razor "Error"
        }
    }
    LogLevel Default="Debug"
}

Usage

ASP.NET Core configuration

To use it for your asp.net core projects, simply add a single reference to the nuget package KdlDotNet.Extensions.Configuration - eg

<PackageReference Include="KdlDotNet.Extensions.Configuration" Version="5.0.0" />

Once you have done so, find your ConfigurationBuilder (usually in Program.cs), and change .AddJsonFile to .AddKdlFile, then reformat your JSON into KDL and enjoy

Other non-specific usage

If you want to do something other than configure asp.net core applications, you'll need to interact with the parser directly. Add a nuget package reference to the KdlDotNet package

<PackageReference Include="KdlDotNet" Version="1.1.0" />

Then create a new instance of KdlDotNet.KDLParser and call the Parse method, either on a Stream if you have one from a file/network, or from a string.
You will get back a KDLDocument. You can then iterate the document Nodes, and for each KDLNode, inspect its Args and Props.

For an example, see KdlConfigurationFileParser.cs from KdlDotNet.Extensions.Configuration

Alternatively, you can manually create a KDLDocument and the various child nodes, and then call ToKDLPretty to produce a KDL string, or write to a stream.

Differences from kdl4j

This port is faithful to the original kdl4j in all areas apart from handling of numbers and the "Searcher" type. All of the code has been properly ported from Java, along with all key unit tests

Searcher

I don't think this is as neccessary in C#, given that it has LINQ for traversing object graphs. If you disagree and would like it, please file an issue, preferably with an attached pull request :-)

Numeric Handling

kdl4j uses the java BigDecimal type as the internal representation for all numbers. Presumably this was done for ease of implementation as it lets kdl4j have a simpler code path for handling numbers, however BigDecimal is a large and complex thing, weighing in at a minimum of 32 bytes per instance (over and above the surrounding KDLNumber object).

KdlDotNet in contrast uses a hierarchy of classes derived from an abstract KDLNumber class, each of which uses different backing storage. When parsing KDL documents, KdlDotNet will attempt to use the smallest integer type in the series of Int32, Int64, BigInteger. All floating point or scientific-notation values are stored using Double.

This means KdlDotNet should require a lot less memory and be faster when dealing with numeric values.

PULL REQUESTS APPRECIATED

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.