Hsu.Formats.Dataset 2026.7.13

dotnet add package Hsu.Formats.Dataset --version 2026.7.13
                    
NuGet\Install-Package Hsu.Formats.Dataset -Version 2026.7.13
                    
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="Hsu.Formats.Dataset" Version="2026.7.13" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Hsu.Formats.Dataset" Version="2026.7.13" />
                    
Directory.Packages.props
<PackageReference Include="Hsu.Formats.Dataset" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Hsu.Formats.Dataset --version 2026.7.13
                    
#r "nuget: Hsu.Formats.Dataset, 2026.7.13"
                    
#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.
#:package Hsu.Formats.Dataset@2026.7.13
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Hsu.Formats.Dataset&version=2026.7.13
                    
Install as a Cake Addin
#tool nuget:?package=Hsu.Formats.Dataset&version=2026.7.13
                    
Install as a Cake Tool

Hsu.Formats.Dataset

NuGet .NET Standard 2.0 .NET 8.0+ AOT Compatible ASAM A2L CAN DBC ASAM ODX AUTOSAR ARXML

Automotive dataset, calibration, and diagnostic format support for the Hsu.Formats library.

Supported Formats

Format Extension Description
ASAM A2L .a2l ASAM MCD-2 MC calibration description
A2ML .aml Embedded or standalone A2ML schema definitions
CAN DBC .dbc CAN database — messages, signals, nodes, attributes
ASAM ODX .odx Open Diagnostic Data Exchange (XML)
AUTOSAR ARXML .arxml AUTOSAR XML — signals, frames, PDUs, ECUs, service interfaces, and SOME/IP deployments

Features

  • AOT-compatible (IsAotCompatible=true on net8.0+)
  • Marker model coverage aligned with the shared abstractions:
    • A2LModelICalibrationDescription
    • DbcModelINetworkDescription
    • OdxModelIDiagnosticDescription
    • ArxmlModelIFormatModel
  • A2LParser supports /include resolution through IFilePathParser
  • DbcModel exposes messages, signals, nodes, value tables, attributes, and comments
  • ArxmlParser supports AUTOSAR 3.x and 4.x and exposes flattened cross-package views for high-value entities
  • ArxmlModel.Diagnostics accumulates non-fatal parse diagnostics for unknown or skipped content
  • All parsers implement IAsyncFormatParser

Quick Start

Parse a DBC CAN database

using Hsu.Formats.Dbc;

using var stream = File.OpenRead("can_db.dbc");
var model = (DbcModel)new DbcParser().Parse(stream);

Console.WriteLine($"Nodes: {string.Join(", ", model.Nodes)}");
foreach (var msg in model.Messages)
{
    Console.WriteLine($"[{msg.Id:X3}] {msg.Name}  DLC={msg.Dlc}  TX={msg.Transmitter}");
    foreach (var sig in msg.Signals)
        Console.WriteLine($"  {sig.Name}  factor={sig.Factor}  offset={sig.Offset}  unit={sig.Unit}");
}

Parse an A2L calibration file

using Hsu.Formats.A2L;

// Use ParseFile to resolve /include directives relative to the source file.
var model = (A2LModel)new A2LParser().ParseFile("ecu.a2l");

Console.WriteLine($"Measurements: {model.Measurements.Count}");
Console.WriteLine($"Characteristics: {model.Characteristics.Count}");

Parse an AUTOSAR ARXML file

using Hsu.Formats.Arxml;

using var stream = File.OpenRead("system.arxml");
var model = (ArxmlModel)new ArxmlParser().Parse(stream);

Console.WriteLine($"Version: {model.Version}");
Console.WriteLine($"Packages: {model.Packages.Count}");
Console.WriteLine($"Signals: {model.AllSystemSignals.Count}");
Console.WriteLine($"Frames: {model.AllFrames.Count}");
Console.WriteLine($"PDUs: {model.AllPdus.Count}");
Console.WriteLine($"Service interfaces: {model.AllServiceInterfaces.Count}");

Async Parsing

All dataset parsers implement IAsyncFormatParser.

  • Text or XML-heavy parsers expose async entry points for callers
  • Current implementations are CPU-oriented and use Task.Run(() => Parse(...)) rather than line-by-line async streaming
using Hsu.Formats.Dbc;
using Hsu.Formats.Arxml;

using var dbcStream = File.OpenRead("can_db.dbc");
var dbcModel = (DbcModel)await new DbcParser().ParseAsync(dbcStream);

using var arxmlStream = File.OpenRead("system.arxml");
var arxmlModel = (ArxmlModel)await new ArxmlParser().ParseAsync(arxmlStream);

Documentation

  • Standard format specifications, when present, are documented in the project repository.
  • Project-level architecture and feature design notes are documented in the project repository.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.7.13 106 7/13/2026
2026.5.11-preview.100100 66 5/11/2026
2026.5.7 121 5/7/2026
2026.4.20 126 4/20/2026