Kephas.Scripting
11.0.0-dev.3
Prefix Reserved
See the version list below for details.
dotnet add package Kephas.Scripting --version 11.0.0-dev.3
NuGet\Install-Package Kephas.Scripting -Version 11.0.0-dev.3
<PackageReference Include="Kephas.Scripting" Version="11.0.0-dev.3" />
paket add Kephas.Scripting --version 11.0.0-dev.3
#r "nuget: Kephas.Scripting, 11.0.0-dev.3"
// Install Kephas.Scripting as a Cake Addin #addin nuget:?package=Kephas.Scripting&version=11.0.0-dev.3&prerelease // Install Kephas.Scripting as a Cake Tool #tool nuget:?package=Kephas.Scripting&version=11.0.0-dev.3&prerelease
Templating
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.
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:
StringScript
: constructed using a string.StreamScript
: constructed using aStream
.FileScript
: constructed using a file path. If not provided, theLanguage
is considered to be the file extension.
Product | Versions 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. |
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. |
-
.NETStandard 2.1
- Kephas.Injection (>= 11.0.0-dev.3)
- Kephas.Logging (>= 11.0.0-dev.3)
-
net6.0
- Kephas.Injection (>= 11.0.0-dev.3)
- Kephas.Logging (>= 11.0.0-dev.3)
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,480 | 4/13/2022 |
11.1.0-dev.4 | 152 | 4/6/2022 |
11.1.0-dev.3 | 135 | 3/30/2022 |
11.1.0-dev.2 | 143 | 3/23/2022 |
11.1.0-dev.1 | 128 | 3/23/2022 |
11.0.0 | 1,261 | 3/11/2022 |
11.0.0-dev.7 | 132 | 3/7/2022 |
11.0.0-dev.6 | 140 | 2/28/2022 |
11.0.0-dev.5 | 135 | 2/26/2022 |
11.0.0-dev.4 | 137 | 2/24/2022 |
11.0.0-dev.3 | 133 | 2/23/2022 |
11.0.0-dev.2 | 130 | 2/18/2022 |
11.0.0-dev.1 | 139 | 2/7/2022 |
10.3.0 | 1,289 | 1/18/2022 |
10.2.0 | 1,283 | 12/3/2021 |
10.1.0 | 5,355 | 11/23/2021 |
10.1.0-dev.7 | 212 | 11/17/2021 |
10.1.0-dev.6 | 177 | 11/16/2021 |
10.1.0-dev.5 | 174 | 11/10/2021 |
10.1.0-dev.4 | 171 | 11/8/2021 |
10.1.0-dev.3 | 148 | 11/8/2021 |
10.1.0-dev.2 | 161 | 11/4/2021 |
10.1.0-dev.1 | 166 | 11/3/2021 |
10.0.1 | 947 | 10/16/2021 |
10.0.0 | 903 | 10/13/2021 |
10.0.0-dev.4 | 158 | 10/13/2021 |
10.0.0-dev.3 | 167 | 10/11/2021 |
10.0.0-dev.2 | 221 | 10/8/2021 |
9.3.4 | 937 | 8/25/2021 |
9.3.3 | 879 | 8/25/2021 |
9.3.2 | 864 | 8/24/2021 |
9.3.1 | 886 | 8/12/2021 |
9.3.0 | 933 | 8/12/2021 |
9.2.0 | 945 | 6/17/2021 |
9.1.0 | 891 | 6/17/2021 |
9.1.0-dev.9 | 200 | 5/26/2021 |
9.1.0-dev.8 | 194 | 5/26/2021 |
9.1.0-dev.7 | 207 | 5/17/2021 |
9.1.0-dev.6 | 185 | 4/28/2021 |
9.1.0-dev.5 | 207 | 4/23/2021 |
9.1.0-dev.4 | 195 | 4/21/2021 |
9.1.0-dev.3 | 195 | 4/17/2021 |
9.1.0-dev.2 | 185 | 4/12/2021 |
9.1.0-dev.1 | 195 | 4/9/2021 |
9.0.5 | 884 | 3/31/2021 |
9.0.4 | 918 | 3/23/2021 |
9.0.3 | 946 | 3/20/2021 |
9.0.1 | 892 | 3/18/2021 |
9.0.0 | 939 | 3/17/2021 |
9.0.0-dev.4 | 187 | 3/4/2021 |
9.0.0-dev.3 | 192 | 3/1/2021 |
9.0.0-dev.2 | 226 | 2/22/2021 |
8.4.0 | 1,037 | 11/11/2020 |
8.3.0 | 1,025 | 10/28/2020 |
8.2.0 | 1,089 | 10/16/2020 |
8.1.0 | 1,121 | 9/23/2020 |
8.0.0 | 1,035 | 7/1/2020 |
8.0.0-dev.44 | 295 | 6/25/2020 |
8.0.0-dev.43 | 284 | 6/23/2020 |
8.0.0-dev.42 | 330 | 6/22/2020 |
8.0.0-dev.41 | 324 | 6/18/2020 |
8.0.0-dev.40 | 272 | 6/18/2020 |
8.0.0-dev.39 | 293 | 6/15/2020 |
8.0.0-dev.38 | 409 | 6/14/2020 |
8.0.0-dev.37 | 264 | 6/13/2020 |
8.0.0-dev.36 | 309 | 6/13/2020 |
8.0.0-dev.35 | 249 | 6/12/2020 |
8.0.0-dev.34 | 304 | 6/12/2020 |
8.0.0-dev.33 | 350 | 6/10/2020 |
8.0.0-dev.32 | 272 | 6/1/2020 |
8.0.0-dev.31 | 296 | 6/1/2020 |
8.0.0-dev.30 | 369 | 5/30/2020 |
8.0.0-dev.28 | 308 | 5/28/2020 |
8.0.0-dev.27 | 291 | 5/15/2020 |
8.0.0-dev.26 | 272 | 5/14/2020 |
8.0.0-dev.25 | 286 | 5/14/2020 |
8.0.0-dev.24 | 282 | 5/13/2020 |
8.0.0-dev.23 | 272 | 5/13/2020 |
8.0.0-dev.22 | 278 | 5/13/2020 |
8.0.0-dev.21 | 283 | 5/12/2020 |
8.0.0-dev.20 | 288 | 5/12/2020 |
8.0.0-dev.19 | 278 | 5/7/2020 |
8.0.0-dev.18 | 276 | 5/7/2020 |
8.0.0-dev.17 | 266 | 5/6/2020 |
8.0.0-dev.16 | 277 | 5/6/2020 |
8.0.0-dev.15 | 276 | 5/5/2020 |
8.0.0-dev.14 | 273 | 5/5/2020 |
8.0.0-dev.13 | 302 | 5/4/2020 |
7.6.0-dev.13 | 298 | 5/1/2020 |
7.6.0-dev.12 | 317 | 4/30/2020 |
7.6.0-dev.11 | 284 | 4/28/2020 |
7.6.0-dev.10 | 273 | 4/27/2020 |
7.6.0-dev.9 | 281 | 4/24/2020 |
7.6.0-dev.8 | 282 | 4/22/2020 |
7.6.0-dev.7 | 271 | 4/15/2020 |
7.6.0-dev.6 | 267 | 4/15/2020 |
7.6.0-dev.5 | 265 | 4/15/2020 |
7.6.0-dev.4 | 393 | 4/11/2020 |
7.6.0-dev.3 | 269 | 4/10/2020 |
7.6.0-dev.2 | 270 | 4/10/2020 |
7.6.0-dev.1 | 347 | 4/8/2020 |
7.5.2 | 1,163 | 3/20/2020 |
7.5.1 | 1,095 | 3/12/2020 |
7.5.0 | 1,146 | 3/10/2020 |
7.5.0-dev.18 | 294 | 3/5/2020 |
7.5.0-dev.17 | 295 | 3/5/2020 |
7.5.0-dev.16 | 322 | 3/4/2020 |
7.5.0-dev.15 | 263 | 3/3/2020 |
7.5.0-dev.14 | 269 | 3/3/2020 |
7.5.0-dev.13 | 256 | 2/29/2020 |
7.5.0-dev.12 | 378 | 2/29/2020 |
7.5.0-dev.10 | 249 | 2/25/2020 |
7.5.0-dev.9 | 306 | 2/20/2020 |
7.5.0-dev.8 | 339 | 2/18/2020 |
7.5.0-dev.7 | 266 | 2/18/2020 |
7.5.0-dev.6 | 279 | 2/14/2020 |
7.5.0-dev.5 | 294 | 2/12/2020 |
7.5.0-dev.4 | 276 | 2/11/2020 |
7.5.0-dev.3 | 253 | 2/11/2020 |
7.5.0-dev.2 | 387 | 2/8/2020 |
7.5.0-dev.1 | 281 | 2/7/2020 |
7.4.2 | 1,077 | 2/5/2020 |
7.4.1 | 1,175 | 2/3/2020 |
7.4.0 | 1,200 | 1/31/2020 |
7.4.0-dev.4 | 330 | 1/31/2020 |
7.4.0-dev.3 | 317 | 1/29/2020 |
7.4.0-dev.2 | 265 | 1/28/2020 |
7.4.0-dev.1 | 271 | 1/23/2020 |
7.3.1 | 1,108 | 1/21/2020 |
7.3.1-preview.7 | 271 | 1/21/2020 |
7.3.1-preview.1 | 303 | 1/20/2020 |
7.3.0 | 1,072 | 1/19/2020 |
7.2.6 | 1,183 | 1/18/2020 |
7.2.5 | 1,115 | 12/19/2019 |
7.2.4 | 1,096 | 12/19/2019 |
7.2.3 | 1,157 | 12/16/2019 |
7.2.2 | 1,113 | 12/9/2019 |
7.2.1 | 1,135 | 12/4/2019 |
7.2.0 | 1,100 | 11/26/2019 |
7.2.0-preview.10 | 274 | 11/20/2019 |
7.2.0-preview.9 | 272 | 11/19/2019 |
7.2.0-preview.8 | 272 | 11/18/2019 |
7.2.0-preview.6 | 277 | 11/14/2019 |
7.2.0-preview.5 | 268 | 11/14/2019 |
7.2.0-preview.4 | 280 | 11/14/2019 |
7.2.0-preview.2 | 286 | 11/11/2019 |
7.2.0-preview.1 | 285 | 11/9/2019 |
7.1.0 | 1,167 | 11/6/2019 |
7.1.0-preview.8 | 282 | 11/5/2019 |
7.1.0-preview.7 | 272 | 11/4/2019 |
7.1.0-preview.6 | 275 | 11/1/2019 |
7.1.0-preview.5 | 308 | 10/31/2019 |
7.1.0-preview.4.1 | 294 | 10/31/2019 |
7.1.0-preview.4 | 301 | 10/30/2019 |
7.1.0-preview.3 | 276 | 10/26/2019 |
7.1.0-preview.2 | 289 | 10/25/2019 |
7.1.0-preview.1 | 281 | 10/24/2019 |
7.0.0 | 987 | 10/16/2019 |
7.0.0-rc.41 | 298 | 10/15/2019 |
7.0.0-rc.40 | 295 | 10/15/2019 |
7.0.0-rc.39 | 287 | 10/12/2019 |
7.0.0-rc.38 | 280 | 10/11/2019 |
7.0.0-rc.37 | 285 | 10/10/2019 |
7.0.0-rc.36 | 284 | 10/9/2019 |
7.0.0-rc.35 | 279 | 10/8/2019 |
7.0.0-rc.34 | 286 | 10/8/2019 |
7.0.0-rc.33 | 279 | 10/7/2019 |
7.0.0-rc.32 | 285 | 10/5/2019 |
7.0.0-rc.31 | 287 | 10/3/2019 |
7.0.0-rc.30 | 279 | 10/1/2019 |
7.0.0-rc.28 | 287 | 10/1/2019 |
7.0.0-rc.27 | 283 | 9/30/2019 |
7.0.0-rc.26 | 291 | 9/30/2019 |
7.0.0-rc.25 | 279 | 9/27/2019 |
7.0.0-rc.24 | 278 | 9/27/2019 |
7.0.0-rc.23 | 272 | 9/26/2019 |
7.0.0-rc.22 | 277 | 9/25/2019 |
7.0.0-rc.21 | 283 | 9/24/2019 |
7.0.0-rc.20 | 280 | 9/23/2019 |
7.0.0-rc.19 | 289 | 9/20/2019 |
7.0.0-rc.18.1 | 279 | 9/20/2019 |
7.0.0-rc.18 | 291 | 9/20/2019 |
6.5.0-rc.17 | 301 | 9/19/2019 |
6.5.0-rc.16 | 304 | 9/18/2019 |
6.5.0-rc.15 | 300 | 9/18/2019 |
6.5.0-rc.14.1 | 299 | 9/18/2019 |
6.5.0-rc.14 | 298 | 9/17/2019 |
6.5.0-rc.13 | 289 | 9/16/2019 |
6.5.0-rc.12.2 | 291 | 9/13/2019 |
6.5.0-rc.12.1 | 297 | 9/12/2019 |
6.5.0-rc.12 | 302 | 9/12/2019 |
6.5.0-rc.11 | 288 | 9/11/2019 |
6.5.0-rc.10 | 286 | 9/10/2019 |
6.5.0-rc.9 | 296 | 9/9/2019 |
6.5.0-rc.8 | 280 | 9/6/2019 |
6.5.0-rc.7 | 303 | 9/6/2019 |
6.5.0-rc.6 | 297 | 9/6/2019 |
6.5.0-rc.5 | 286 | 9/2/2019 |
6.5.0-rc.4 | 304 | 9/2/2019 |
6.5.0-rc.3 | 288 | 8/30/2019 |
6.5.0-rc.2 | 311 | 8/29/2019 |
6.5.0-rc.1 | 309 | 8/28/2019 |
6.5.0-beta.5 | 301 | 8/28/2019 |
6.5.0-beta.4 | 300 | 8/27/2019 |
6.0.0 | 840 | 8/6/2019 |
6.0.0-rc.7 | 300 | 7/19/2019 |
6.0.0-rc.6 | 296 | 6/28/2019 |
6.0.0-rc.5 | 283 | 6/28/2019 |
6.0.0-rc.4 | 291 | 6/25/2019 |
6.0.0-rc.3 | 298 | 6/20/2019 |
6.0.0-rc.2 | 290 | 5/29/2019 |
6.0.0-rc.1 | 300 | 5/28/2019 |
6.0.0-beta.3 | 310 | 4/17/2019 |
5.3.0-beta.2 | 308 | 3/21/2019 |
5.3.0-beta.1 | 308 | 3/20/2019 |
5.2.0 | 808 | 3/19/2019 |
5.1.0 | 1,130 | 1/25/2019 |
5.0.0 | 1,144 | 12/21/2018 |
5.0.0-rc11 | 833 | 12/14/2018 |
5.0.0-rc10 | 663 | 11/16/2018 |
5.0.0-rc09 | 678 | 11/1/2018 |
5.0.0-rc08 | 648 | 10/31/2018 |
5.0.0-rc07 | 655 | 10/31/2018 |
5.0.0-rc06 | 682 | 10/30/2018 |
5.0.0-rc05 | 680 | 10/29/2018 |
5.0.0-rc04 | 719 | 10/29/2018 |
5.0.0-rc03 | 697 | 10/26/2018 |
5.0.0-rc02 | 677 | 10/25/2018 |
5.0.0-rc01 | 706 | 10/12/2018 |
5.0.0-beta03 | 747 | 9/21/2018 |
5.0.0-beta02 | 748 | 9/10/2018 |
5.0.0-beta01 | 738 | 9/7/2018 |
4.5.1 | 868 | 8/7/2018 |
4.5.0 | 1,268 | 8/7/2018 |
4.5.0-rc01 | 864 | 6/7/2018 |
4.5.0-beta09 | 757 | 6/7/2018 |
4.5.0-beta08 | 858 | 5/16/2018 |
4.5.0-beta07 | 774 | 5/9/2018 |
4.5.0-beta06 | 826 | 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.