Kephas.Scripting 11.1.0

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

// Install Kephas.Scripting as a Cake Tool
#tool nuget:?package=Kephas.Scripting&version=11.1.0                

Scripting

Introduction

The scripting area in Kephas handles dynamic code execution. The entry point is the IScriptProcessor singleton service, which returns a result through the ExecuteAsync method, provided with a script, execution arguments, and globals.

Check the following packages for more information:

Packages providing scripting implementations:

Usage

// normally you would get the processor injected into the service constructor.
var processor = injector.Resolve<IScriptProcessor>();

// the next line uses C# scripting, so you will need also to reference Kephas.Scripting.CSharp.
var result = processor.ExecuteAsync(new CSharpStringScript("name[..4] + age.ToString()"), new { name = "Johnny", age = 42 }));
Assert.Equals("John42", result);

// the next line uses Python scripting, so you will need also to reference Kephas.Scripting.Python.
// additionally, instead of using typed arguments, it used an Expando - it could use as well a IDictionary<string, object?>.
var result = processor.ExecuteAsync(new PythonStringScript("name[..4] + str(age)"), new Expando { ["name"] = "Johnny", ["age"] = 42 }));
Assert.Equals("John42", result);

The IScriptProcessor service

This service is the central piece providing the ExecuteAsync method through which a script is executed. The script return value is, in turn, returned by the method.

DefaultScriptProcessor is the default implementation of the IScriptProcessor. Just like the other default implementations provided by the Kephas framework, it declares a low override priority, so that it can be easily overridden. By default, it delegates the template processing to a specific ILanguageService handling the provided script. It identifies the language service based on the script's language, which the service declares using the [Language(...)] attribute.

Passing arguments

The arguments passed to the execution can be referenced in the scripts directly by their name. However, if the DeconstructArgs scripting context options is set to false, the arguments can be accessed through the Args global variable.

Example
var processor = injector.Resolve<IScriptProcessor>();
var script = new CSharpStringScript(
    "int Power(int a) => a * a;" +
    "return Power((int)Args.a);");
var result = await processor.ExecuteAsync(script, new { a = 2 }, ctx => ctx.DeconstructArgs(false)); 

Language services

These services implement the ILanguageService contract and handle specific languages. By default, the framework does not provide any language service in the Kephas.Scripting package due to the heavy overhead it brings. However, there are several language services provided in separate packages:

Controlling the script execution

The scripting context

Additional to the script and the arguments, the processing methods receive also a context which can be used to further control the operations. Just like all the other context instances, it is a dynamic expandable object (IExpando) and it aggregates the provided template and the model. Through the Result and Exception properties, the behaviors (see below) can control the processing output.

The scripting behaviors

The DefaultScriptProcessor uses also IScriptingBehavior services to further control the execution. Just like the ILanguageService services, they declare the language they support, and are invoked before and after the selected language service executes the script. They can cover various purposes: authorization, pre-processing/post-processing, audit, and whatever other functionality may be required.

The scripts

A script implements IScript, basically providing a Language (string), a Name (string), and source code (GetSourceCodeAsync(), GetSourceCode()). By default, the framework supports these script sources:

  • StringScript: constructed using a string.
  • StreamScript: constructed using a Stream.
  • FileScript: constructed using a file path. If not provided, the Language is considered to be the file extension.
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.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
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.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Kephas.Scripting:

Package Downloads
Kephas.Scripting.CSharp

Provides the infrastructure for executing C# scripts. Typically used areas and classes/interfaces/services: - CSharpLanguageService. Kephas Framework ("stone" in aramaic) aims to deliver a solid infrastructure for applications and application ecosystems.

Kephas.Scripting.Python

Provides the infrastructure for executing Python scripts. Typically used areas and classes/interfaces/services: - PythonLanguageService. Kephas Framework ("stone" in aramaic) aims to deliver a solid infrastructure for applications and application ecosystems.

Kephas.Scripting.Lua

Provides the infrastructure for executing LUA scripts. Typically used areas and classes/interfaces/services: - LuaLanguageService. Kephas Framework ("stone" in aramaic) aims to deliver a solid infrastructure for applications and application ecosystems.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
11.1.0 1,512 4/13/2022
11.1.0-dev.4 166 4/6/2022
11.1.0-dev.3 149 3/30/2022
11.1.0-dev.2 157 3/23/2022
11.1.0-dev.1 142 3/23/2022
11.0.0 1,281 3/11/2022
11.0.0-dev.7 147 3/7/2022
11.0.0-dev.6 157 2/28/2022
11.0.0-dev.5 150 2/26/2022
11.0.0-dev.4 153 2/24/2022
11.0.0-dev.3 148 2/23/2022
11.0.0-dev.2 147 2/18/2022
11.0.0-dev.1 154 2/7/2022
10.3.0 1,309 1/18/2022
10.2.0 1,303 12/3/2021
10.1.0 5,375 11/23/2021
10.1.0-dev.7 227 11/17/2021
10.1.0-dev.6 192 11/16/2021
10.1.0-dev.5 188 11/10/2021
10.1.0-dev.4 187 11/8/2021
10.1.0-dev.3 163 11/8/2021
10.1.0-dev.2 177 11/4/2021
10.1.0-dev.1 181 11/3/2021
10.0.1 967 10/16/2021
10.0.0 929 10/13/2021
10.0.0-dev.4 173 10/13/2021
10.0.0-dev.3 182 10/11/2021
10.0.0-dev.2 235 10/8/2021
9.3.4 957 8/25/2021
9.3.3 899 8/25/2021
9.3.2 884 8/24/2021
9.3.1 905 8/12/2021
9.3.0 953 8/12/2021
9.2.0 962 6/17/2021
9.1.0 911 6/17/2021
9.1.0-dev.9 214 5/26/2021
9.1.0-dev.8 208 5/26/2021
9.1.0-dev.7 221 5/17/2021
9.1.0-dev.6 200 4/28/2021
9.1.0-dev.5 222 4/23/2021
9.1.0-dev.4 210 4/21/2021
9.1.0-dev.3 209 4/17/2021
9.1.0-dev.2 200 4/12/2021
9.1.0-dev.1 209 4/9/2021
9.0.5 904 3/31/2021
9.0.4 938 3/23/2021
9.0.3 966 3/20/2021
9.0.1 912 3/18/2021
9.0.0 961 3/17/2021
9.0.0-dev.4 205 3/4/2021
9.0.0-dev.3 211 3/1/2021
9.0.0-dev.2 244 2/22/2021
8.4.0 1,059 11/11/2020
8.3.0 1,045 10/28/2020
8.2.0 1,111 10/16/2020
8.1.0 1,143 9/23/2020
8.0.0 1,058 7/1/2020
8.0.0-dev.44 313 6/25/2020
8.0.0-dev.43 302 6/23/2020
8.0.0-dev.42 349 6/22/2020
8.0.0-dev.41 342 6/18/2020
8.0.0-dev.40 295 6/18/2020
8.0.0-dev.39 311 6/15/2020
8.0.0-dev.38 426 6/14/2020
8.0.0-dev.37 282 6/13/2020
8.0.0-dev.36 327 6/13/2020
8.0.0-dev.35 267 6/12/2020
8.0.0-dev.34 322 6/12/2020
8.0.0-dev.33 370 6/10/2020
8.0.0-dev.32 291 6/1/2020
8.0.0-dev.31 314 6/1/2020
8.0.0-dev.30 388 5/30/2020
8.0.0-dev.28 327 5/28/2020
8.0.0-dev.27 310 5/15/2020
8.0.0-dev.26 295 5/14/2020
8.0.0-dev.25 306 5/14/2020
8.0.0-dev.24 302 5/13/2020
8.0.0-dev.23 293 5/13/2020
8.0.0-dev.22 298 5/13/2020
8.0.0-dev.21 303 5/12/2020
8.0.0-dev.20 308 5/12/2020
8.0.0-dev.19 311 5/7/2020
8.0.0-dev.18 297 5/7/2020
8.0.0-dev.17 287 5/6/2020
8.0.0-dev.16 298 5/6/2020
8.0.0-dev.15 298 5/5/2020
8.0.0-dev.14 294 5/5/2020
8.0.0-dev.13 332 5/4/2020
7.6.0-dev.13 318 5/1/2020
7.6.0-dev.12 337 4/30/2020
7.6.0-dev.11 305 4/28/2020
7.6.0-dev.10 306 4/27/2020
7.6.0-dev.9 301 4/24/2020
7.6.0-dev.8 302 4/22/2020
7.6.0-dev.7 292 4/15/2020
7.6.0-dev.6 286 4/15/2020
7.6.0-dev.5 285 4/15/2020
7.6.0-dev.4 415 4/11/2020
7.6.0-dev.3 289 4/10/2020
7.6.0-dev.2 290 4/10/2020
7.6.0-dev.1 367 4/8/2020
7.5.2 1,187 3/20/2020
7.5.1 1,117 3/12/2020
7.5.0 1,170 3/10/2020
7.5.0-dev.18 314 3/5/2020
7.5.0-dev.17 315 3/5/2020
7.5.0-dev.16 342 3/4/2020
7.5.0-dev.15 283 3/3/2020
7.5.0-dev.14 289 3/3/2020
7.5.0-dev.13 276 2/29/2020
7.5.0-dev.12 397 2/29/2020
7.5.0-dev.10 269 2/25/2020
7.5.0-dev.9 325 2/20/2020
7.5.0-dev.8 360 2/18/2020
7.5.0-dev.7 287 2/18/2020
7.5.0-dev.6 299 2/14/2020
7.5.0-dev.5 314 2/12/2020
7.5.0-dev.4 296 2/11/2020
7.5.0-dev.3 273 2/11/2020
7.5.0-dev.2 407 2/8/2020
7.5.0-dev.1 299 2/7/2020
7.4.2 1,101 2/5/2020
7.4.1 1,199 2/3/2020
7.4.0 1,225 1/31/2020
7.4.0-dev.4 351 1/31/2020
7.4.0-dev.3 337 1/29/2020
7.4.0-dev.2 285 1/28/2020
7.4.0-dev.1 292 1/23/2020
7.3.1 1,132 1/21/2020
7.3.1-preview.7 291 1/21/2020
7.3.1-preview.1 322 1/20/2020
7.3.0 1,096 1/19/2020
7.2.6 1,208 1/18/2020
7.2.5 1,138 12/19/2019
7.2.4 1,120 12/19/2019
7.2.3 1,181 12/16/2019
7.2.2 1,136 12/9/2019
7.2.1 1,159 12/4/2019
7.2.0 1,124 11/26/2019
7.2.0-preview.10 294 11/20/2019
7.2.0-preview.9 292 11/19/2019
7.2.0-preview.8 292 11/18/2019
7.2.0-preview.6 297 11/14/2019
7.2.0-preview.5 288 11/14/2019
7.2.0-preview.4 301 11/14/2019
7.2.0-preview.2 305 11/11/2019
7.2.0-preview.1 305 11/9/2019
7.1.0 1,191 11/6/2019
7.1.0-preview.8 302 11/5/2019
7.1.0-preview.7 292 11/4/2019
7.1.0-preview.6 296 11/1/2019
7.1.0-preview.5 329 10/31/2019
7.1.0-preview.4.1 315 10/31/2019
7.1.0-preview.4 322 10/30/2019
7.1.0-preview.3 297 10/26/2019
7.1.0-preview.2 310 10/25/2019
7.1.0-preview.1 304 10/24/2019
7.0.0 1,011 10/16/2019
7.0.0-rc.41 319 10/15/2019
7.0.0-rc.40 316 10/15/2019
7.0.0-rc.39 308 10/12/2019
7.0.0-rc.38 301 10/11/2019
7.0.0-rc.37 306 10/10/2019
7.0.0-rc.36 306 10/9/2019
7.0.0-rc.35 299 10/8/2019
7.0.0-rc.34 308 10/8/2019
7.0.0-rc.33 299 10/7/2019
7.0.0-rc.32 308 10/5/2019
7.0.0-rc.31 308 10/3/2019
7.0.0-rc.30 299 10/1/2019
7.0.0-rc.28 308 10/1/2019
7.0.0-rc.27 304 9/30/2019
7.0.0-rc.26 313 9/30/2019
7.0.0-rc.25 301 9/27/2019
7.0.0-rc.24 298 9/27/2019
7.0.0-rc.23 293 9/26/2019
7.0.0-rc.22 297 9/25/2019
7.0.0-rc.21 304 9/24/2019
7.0.0-rc.20 301 9/23/2019
7.0.0-rc.19 311 9/20/2019
7.0.0-rc.18.1 301 9/20/2019
7.0.0-rc.18 313 9/20/2019
6.5.0-rc.17 320 9/19/2019
6.5.0-rc.16 329 9/18/2019
6.5.0-rc.15 322 9/18/2019
6.5.0-rc.14.1 321 9/18/2019
6.5.0-rc.14 320 9/17/2019
6.5.0-rc.13 314 9/16/2019
6.5.0-rc.12.2 312 9/13/2019
6.5.0-rc.12.1 316 9/12/2019
6.5.0-rc.12 321 9/12/2019
6.5.0-rc.11 309 9/11/2019
6.5.0-rc.10 305 9/10/2019
6.5.0-rc.9 315 9/9/2019
6.5.0-rc.8 299 9/6/2019
6.5.0-rc.7 323 9/6/2019
6.5.0-rc.6 315 9/6/2019
6.5.0-rc.5 305 9/2/2019
6.5.0-rc.4 325 9/2/2019
6.5.0-rc.3 307 8/30/2019
6.5.0-rc.2 331 8/29/2019
6.5.0-rc.1 329 8/28/2019
6.5.0-beta.5 327 8/28/2019
6.5.0-beta.4 320 8/27/2019
6.0.0 863 8/6/2019
6.0.0-rc.7 318 7/19/2019
6.0.0-rc.6 314 6/28/2019
6.0.0-rc.5 302 6/28/2019
6.0.0-rc.4 311 6/25/2019
6.0.0-rc.3 319 6/20/2019
6.0.0-rc.2 310 5/29/2019
6.0.0-rc.1 319 5/28/2019
6.0.0-beta.3 331 4/17/2019
5.3.0-beta.2 329 3/21/2019
5.3.0-beta.1 328 3/20/2019
5.2.0 837 3/19/2019
5.1.0 1,173 1/25/2019
5.0.0 1,187 12/21/2018
5.0.0-rc11 870 12/14/2018
5.0.0-rc10 700 11/16/2018
5.0.0-rc09 709 11/1/2018
5.0.0-rc08 682 10/31/2018
5.0.0-rc07 687 10/31/2018
5.0.0-rc06 716 10/30/2018
5.0.0-rc05 712 10/29/2018
5.0.0-rc04 753 10/29/2018
5.0.0-rc03 731 10/26/2018
5.0.0-rc02 713 10/25/2018
5.0.0-rc01 741 10/12/2018
5.0.0-beta03 783 9/21/2018
5.0.0-beta02 782 9/10/2018
5.0.0-beta01 775 9/7/2018
4.5.1 919 8/7/2018
4.5.0 1,321 8/7/2018
4.5.0-rc01 931 6/7/2018
4.5.0-beta09 801 6/7/2018
4.5.0-beta08 933 5/16/2018
4.5.0-beta07 850 5/9/2018
4.5.0-beta06 904 4/25/2018

Please check https://github.com/kephas-software/kephas/releases for the change log.
           Also check the documentation and the samples from https://github.com/kephas-software/kephas/wiki and https://github.com/kephas-software/kephas/tree/master/Samples.