HyssosTech.Sdk.C2SIM 1.2.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package HyssosTech.Sdk.C2SIM --version 1.2.0
NuGet\Install-Package HyssosTech.Sdk.C2SIM -Version 1.2.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="HyssosTech.Sdk.C2SIM" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HyssosTech.Sdk.C2SIM --version 1.2.0
#r "nuget: HyssosTech.Sdk.C2SIM, 1.2.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 HyssosTech.Sdk.C2SIM as a Cake Addin
#addin nuget:?package=HyssosTech.Sdk.C2SIM&version=1.2.0

// Install HyssosTech.Sdk.C2SIM as a Cake Tool
#tool nuget:?package=HyssosTech.Sdk.C2SIM&version=1.2.0

C2SIM SDK

Resources for controlling state and handling messages in a C2SIM environment. For an overview of C2SIM and its capabilities to support multiple connected Command and Control (C2) and Simulation systems, see the C2SIM Server Reference Implementation Documentation

The focus of the SDK is specifically on the C2SIM protocol, rather than legacy ones (e.g. CBML, IBML, IBML9, MSDL) which may be supported by C2SIM environments as well.

The SDK is built on top of generic capabilities offered by a (ported) Client Library, configured with specific parameters obtained by examining the C2SIM GUI Editor code use of the Java C2SIMClientLib.

In a nutshell, the SDK:

  • Wraps a series of basic Library Commands required to make a C2SIM server transition to a state where it is ready to accept Initializations, or Orders, or to join an ongoing session
  • Issues Library messages with required parameters for pushing specific messages containing Orders, Initializations and Reports
  • Serializes and deserializes XML messages from/into plain old C# objects
  • Exposes generic Library (STOMP) notification messages as finer grained events signaling the reception of Initialization, Orders, Reports, and server status changes

Nuget Install

The HyssosTeck.Sdk.C2SIM nuget provides support for:

  • .NET 6 projects
  • .NET Standard 2.0 - compatible with recent .NET Framework projects

As such, it should be compatible with Windows, macOs and Linux platforms, provided these have the required .NET Runtime/SDK installed

Quick Start

  1. Create a C2SIMSDK object pointing to a C2SIM server

    // ... obtain reference to logger that should be used by the SDK
    ILogger logger = null; // Create an appropriate logger here
    C2SIMSDK c2SimSDK = new C2SIMSDK(
        logger,
        new C2SIMSDKSettings(
            // Id string of this app - use C2SIMSDK.GetMachineID() to get a unique id based on the client hardware
            <submitter id>, 
            // Full C2SIM server endpoint, including host:port/path, e.g. "http://10.2.10.30:8080/C2SIMServer"
            <rest endpoint>, 
            // C2SIM server password
            <rest password>        
            // Full STOMP service endpoint, including host:port/destination, e.g. "http://10.2.10.30:61613/topic/C2SIM"
            <stomp endpoint>, 
            // Protocol - could also be "BML" for example, but the SDK focuses on C2SIM
            "SISO-STD-C2SIM",
            // Version of the protocol - 1.0.0 is the published standard
            "1.0.0"
        )
    );
    

    NOTE: the SDK supports Dependency Injection as part of a .NET Generic Host, which simplifies handling of logging and configuration settings. See the Sample App for an example of how to implement that.

  2. Subscribe to notification events

    c2SimSDK.StatusChangedReceived += C2SimSDK_StatusChangedReceived;
    c2SimSDK.InitializationReceived += C2SimSDK_InitializationReceived;
    c2SimSDK.OderReceived += C2SimSDK_OderReceived;
    c2SimSDK.ReportReceived += C2SimSDK_ReportReceived;
    
  3. Establish the connection to the C2SIM notification service to start the message flow

    try
    {
        // Connect to the notification service to start receiving messages
        await c2SimSDK.Connect();
    }
    catch (Exception e)
    {
        string msg = e.InnerException != null ? e.InnerException.Message : e.Message;
        // Handle error
        // ...
    }
    
  4. Send commands and messages as required

    See the C2SIM .NET SDK Reference for details of the methods summarized below

    1. Change the state of the server
      • ResetToInitializing() - get the server to an Initializing state, issuing STOP, RESET, INITIALIZE individual commands as needed
      • SwitchToRunning() - get the server to a Running state, issuing SHARE, START individual commands as needed
      • JoinSession() - get the server to issue a late join notification, eventually causing an InitializationReceived event to be triggered
    2. Push messages
      • PushInitializationMessage()
      • PushOrderMessage()
      • PushReportMessage()
    3. Access to raw Library functionality
      • PushCommand() - C2SIM server commands: STOP, RESET, INITIALIZE, SHARE, START, PAUSE, STATUS, QUERYINIT (see C2SIM Server Message Flow for details)
      • PushMessage() - client configured XML messages

C2SIM XSD object serialization

The SDK includes classes for schema versions 1.0.0 and 1.0.1. These classes were generated from the Schemas using the xsd tool, distinguished by the namespace - C2SIM.Schema101 or C2SIM.Schema100:

xsd schemas\C2SIM_SMX_LOX_V1.0.1.xsd /c /l:CS /n:C2SIM.Schema101
xsd schemas\C2SIM_SMX_LOX_V1.0.0.xsd /c /l:CS /n:C2SIM.Schema100

A separate augmented C2SIM_SMX_LOX_v1.0.x_Command.xsd is also provided. It includes some elements that are present in the messages sent by the current C2SIM Reference Server (v4.8.0.11), that are not present int he published schemas (either in v1.0.0 or v1.0.1):

  • SystemCommandBodyType includes an additional element - SessionStateCode
  • SystemCommandTypeCodeType includes an additional ResetScenario enumeration

The class for this specific type is then generated by xsd using the following command:

xsd schemas\C2SIM_SMX_LOX_v1.0.0_Command.xsd /c /l:CS /n:C2SIM.CustomSchema

To be able to support toolsets that have not been updated to v1.0.1, the SDK opts to deliver message bodies as XML strings, rather than already serialized object, so that the client app can decide which version to apply

  • Push messages expect XML strings serialized from the following object types:

    • PushInitializationMessage - C2SIMInitializationBodyType
    • PushOrderMessage - OrderBodyType
    • PushReportMessage - ReportBodyType XML containing wrapping MessageBody and MessageBody/DOmainMessageBody elements are also accepted by the push methods
  • Notification event handlers are invoked by the SDK with XML representations of the message bodies provided as parameters:

    • StatusChangedReceived - SystemCommandBodyType
    • InitializationReceived - C2SIMInitializationBodyType
    • OderReceived - OrderBodyType
    • ReportReceived - ReportBodyType
    • A generic C2SIMMessageReceived notification is issued for every message. The parameter contains the unparsed contend of the received message body. If the Header indicates that the message is C2SIM-compliant (rather than say CBML or other format), then it can be deserialized using a MessageBodyType wrapper type

For convenience, the following utility methods are provided to handle de/serialization:

  • C2SIMSDK.ToC2SIMObject<T>(string xml) - returns an object of type T deserialized from the string parameter
  • C2SIMSDK.FromC2SIMObject<T>(object o) - returns a string with XML serialized from an object of type T

These methods can be used to to handle the desired version of the C2SIM schema by picking the appropriate namespace:

// If using v1.0.0
string xmlOrder = C2SIMSDK.FromC2SIMObject<C2SIM.Schema100.OrderBodyType>(orderObject);
...
// If using v1.0.1
string xmlOrder = C2SIMSDK.FromC2SIMObject<C2SIM.Schema101.OrderBodyType>(orderObject);
...
// If using either version, SystemCommand requires the use of the CustomSchema
var command = C2SIMSDK.ToC2SIMObject<C2SIM.CustomSchema.SystemCommandBodyType>(e.Body);

Sample app

The methods above are used in a sample app, which accepts commands and messages interactively and sends them to a server. The app also displays notifications received from a server, and can provide insight into the traffic generated by the sample itself or other apps connected to the same server, e.g. the Sketch-Thru-Plan Planning Workstation, as can be seen in this demo.

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 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
1.3.0 45 4/17/2024
1.2.14 209 11/21/2023
1.2.13 168 6/9/2023
1.2.12 154 6/8/2023
1.2.11 149 6/7/2023
1.2.10 170 4/27/2023
1.2.9 345 11/8/2022
1.2.9-pre 140 11/8/2022
1.2.8 425 5/18/2022
1.2.7 442 5/5/2022
1.2.6 451 4/21/2022
1.2.5 306 12/20/2021
1.2.5-prerelease 205 12/6/2021
1.2.4 326 12/3/2021
1.2.4-prerelease 195 12/2/2021
1.2.3 310 11/30/2021
1.2.3-prerelease 193 11/30/2021
1.2.2 306 11/30/2021
1.2.1 3,221 11/24/2021
1.2.0 5,652 11/24/2021
1.2.0-prerelease 4,657 11/24/2021
1.1.0 299 11/23/2021
1.0.0 1,280 11/17/2021
0.9.4-prerelease 224 11/16/2021
0.9.3-prerelease 213 11/16/2021
0.9.2-prerelease 181 11/16/2021
0.9.1-prerelease 192 11/16/2021
0.9.0-prerelease 223 11/16/2021
0.0.4-prerelease 205 11/15/2021
0.0.3-prerelease 205 11/15/2021
0.0.2-prerelease 190 11/15/2021
0.0.1-prerelease 213 11/15/2021