magic.lambda.system
14.0.9
See the version list below for details.
dotnet add package magic.lambda.system --version 14.0.9
NuGet\Install-Package magic.lambda.system -Version 14.0.9
<PackageReference Include="magic.lambda.system" Version="14.0.9" />
paket add magic.lambda.system --version 14.0.9
#r "nuget: magic.lambda.system, 14.0.9"
// Install magic.lambda.system as a Cake Addin #addin nuget:?package=magic.lambda.system&version=14.0.9 // Install magic.lambda.system as a Cake Tool #tool nuget:?package=magic.lambda.system&version=14.0.9
System related slots for Hyperlambda
This project contains "system slots" to be able to invoke system commands. More specifically the project contains the following slots.
- [system.terminal.create] - Creates a new terminal process on the server
- [system.terminal.write-line] - Writes a line/command to a previously created terminal process on the server
- [system.terminal.destroy] - Destroys/kills a previously created terminal process on the server
- [system.execute] - Execute the specified command returning the result to caller
By combining the above slots with for instance the magic.lambda.sockets project, you can spawn off terminal/bash processes on your server, creating "virtual web based terminal sessions" on your server. To create a new terminal process, use something such as the following.
system.terminal.create:my-terminal
folder:/
/*
* STDOUT callback, invoked when something is channeled over STDOUT.
*/
.stdOut
/*
* Do standard out stuff here, with the incoming [.arguments]/[cmd] command.
*/
log.info:x:@.arguments/*/cmd
/*
* STDERROR callback, invoked when something is channeled over STDOUT.
*/
.stdErr
/*
* Do standard out stuff here, with the incoming [.arguments]/[cmd] command.
*/
log.info:x:@.arguments/*/cmd
The above [.stdOut] and [.stdErr] lambda objects are invoked when output data or error data is received from the process, allowing you to handle it any ways you see fit. The [folder] argument is the default/initial folder to spawn of the process in. All of these arguments are optional.
The name or the value of the [system.terminal.create] invocation however is important. This becomes a unique reference for you, which you can later use to de-reference the instance, while for instance feeding the terminal lines of input, using for instance the [system.terminal.write-line] slot. To write a command line to an existing terminal window, such as the one created above, you can use something such as the following.
system.terminal.write-line:my-terminal
cmd:ls -l
The above will execute the ls -l
command in your previously create "my-terminal" instance, and
invoke your [.stdOut] callback once for each line of output the command results in. To destroy
the above created terminal, you can use something such as the following.
system.terminal.destroy:my-terminal
All terminal slots requires a name to be able to uniquely identify which instance you wish to create, write to, or destroy. This allows you to create as many terminals as you wish on your server, only restricted by memory on your system, and/or your operating system of choice. The terminal slots works transparently for both Windows, Linux and Mac OS X, except of course the commands you pass into them will differ depending upon your operating system.
Notice - If you don't reference a terminal session for more than 30 minutes, the process will be automatically killed and disposed, and any future attempts to reference it, will resolve in an error. This is to avoid having hanging processes on the server, in case a terminal process is started, and then something happens, which disconnects the client, resulting in "hanging sessions".
[system.execute]
If you only want to execute a specific program in your system you can use [system.execute], and pass in the name of the command as a value, and any arguments as children, optionally applying a [structured] argument to signifiy if you want each line of input to be returned as a single node or not. Below is an example.
system.execute:ls
structured:true
.:-l
The above will result in something such as follows.
system.execute
.:total 64
.:"-rw-r--r-- 1 thomashansen staff 495 9 Nov 10:37 Dockerfile"
.:"-rw-r--r-- 1 thomashansen staff 1084 29 Oct 14:51 LICENSE"
.:"-rw-r--r-- 1 thomashansen staff 604 29 Oct 14:51 Program.cs"
.:"drwxr-xr-x 3 thomashansen staff 96 29 Oct 16:53 Properties"
.:"-rw-r--r-- 1 thomashansen staff 3154 29 Oct 14:51 Startup.cs"
.:"-rw-r--r-- 1 thomashansen staff 1458 11 Nov 10:57 appsettings.json"
.:"-rw-r--r-- 1 thomashansen staff 650 9 Nov 08:26 backend.csproj"
.:"drwxr-xr-x 3 thomashansen staff 96 9 Nov 10:23 bin"
.:"-rw-r--r-- 1 thomashansen staff 700 9 Nov 07:29 dev_backend.csproj"
.:"drwxr-xr-x 9 thomashansen staff 288 12 Nov 10:31 files"
.:"drwxr-xr-x 9 thomashansen staff 288 9 Nov 19:05 obj"
.:"drwxr-xr-x 6 thomashansen staff 192 29 Oct 14:51 slots"
.:"-rw-r--r-- 1 thomashansen staff 1905 29 Oct 14:51 web.config"
Notice - If you ommit the [structured] argument, or set its value to "false", the result of the above invocation will return a single string.
Querying operating system version
In addition to the above slots this project also contains the following slots.
- [system.os] - Returns description of your operating system
- [system.is-os] - Returns true if your underlaying operating system is of the specified type
The last slot above takes an argument such as "Windows", "OSX, "Linux", etc, and will return true of the operating system you are currently running on belongs to the specified family of operating systems. Below is example usage of both.
system.is-os:OSX
system.os
Project website
The source code for this repository can be found at github.com/polterguy/magic.lambda.system, and you can provide feedback, provide bug reports, etc at the same place.
Quality gates
Product | Versions 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 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. |
-
.NETStandard 2.0
- magic.node.extensions (>= 14.0.9)
- magic.signals.contracts (>= 14.0.9)
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
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 |
---|---|---|
17.2.0 | 235 | 1/22/2024 |
17.1.7 | 166 | 1/12/2024 |
17.1.6 | 147 | 1/11/2024 |
17.1.5 | 164 | 1/5/2024 |
17.0.1 | 190 | 1/1/2024 |
17.0.0 | 328 | 12/14/2023 |
16.11.5 | 271 | 11/12/2023 |
16.9.0 | 278 | 10/9/2023 |
16.7.0 | 389 | 7/11/2023 |
16.4.1 | 234 | 7/2/2023 |
16.4.0 | 231 | 6/22/2023 |
16.3.1 | 237 | 6/7/2023 |
16.3.0 | 249 | 5/28/2023 |
16.1.9 | 375 | 4/30/2023 |
15.10.11 | 319 | 4/13/2023 |
15.9.1 | 351 | 3/27/2023 |
15.9.0 | 339 | 3/24/2023 |
15.8.2 | 329 | 3/20/2023 |
15.7.0 | 370 | 3/6/2023 |
15.5.0 | 525 | 1/28/2023 |
15.2.0 | 480 | 1/18/2023 |
15.1.0 | 828 | 12/28/2022 |
14.5.7 | 512 | 12/13/2022 |
14.5.5 | 552 | 12/6/2022 |
14.5.1 | 463 | 11/23/2022 |
14.5.0 | 449 | 11/18/2022 |
14.4.5 | 539 | 10/22/2022 |
14.4.1 | 472 | 10/22/2022 |
14.4.0 | 508 | 10/17/2022 |
14.3.1 | 634 | 9/12/2022 |
14.3.0 | 428 | 9/10/2022 |
14.1.3 | 703 | 8/7/2022 |
14.1.2 | 463 | 8/7/2022 |
14.1.1 | 455 | 8/7/2022 |
14.0.14 | 512 | 7/26/2022 |
14.0.12 | 496 | 7/24/2022 |
14.0.11 | 450 | 7/23/2022 |
14.0.10 | 472 | 7/23/2022 |
14.0.9 | 458 | 7/23/2022 |
14.0.8 | 560 | 7/17/2022 |
14.0.5 | 612 | 7/11/2022 |
14.0.4 | 591 | 7/6/2022 |
14.0.3 | 494 | 7/2/2022 |
14.0.2 | 491 | 7/2/2022 |
14.0.0 | 478 | 6/25/2022 |
13.4.0 | 1,177 | 5/31/2022 |
13.3.4 | 1,451 | 5/9/2022 |
13.3.0 | 918 | 5/1/2022 |
13.2.0 | 1,138 | 4/21/2022 |
13.1.0 | 1,003 | 4/7/2022 |
13.0.0 | 722 | 4/5/2022 |
11.0.5 | 1,396 | 3/2/2022 |
11.0.4 | 741 | 2/22/2022 |
11.0.3 | 745 | 2/9/2022 |
11.0.2 | 771 | 2/6/2022 |
11.0.1 | 758 | 2/5/2022 |
10.0.21 | 739 | 1/28/2022 |
10.0.20 | 742 | 1/27/2022 |
10.0.19 | 732 | 1/23/2022 |
10.0.18 | 720 | 1/17/2022 |
10.0.15 | 934 | 12/31/2021 |
10.0.14 | 536 | 12/28/2021 |
10.0.7 | 1,411 | 12/22/2021 |
10.0.5 | 740 | 12/18/2021 |
9.9.9 | 1,674 | 11/29/2021 |
9.9.4 | 1,018 | 11/21/2021 |
9.9.3 | 556 | 11/9/2021 |
9.9.2 | 611 | 11/4/2021 |
9.9.0 | 722 | 10/30/2021 |
9.8.9 | 712 | 10/29/2021 |
9.8.7 | 622 | 10/27/2021 |
9.8.6 | 632 | 10/27/2021 |
9.8.5 | 714 | 10/26/2021 |
9.8.0 | 1,342 | 10/20/2021 |
9.7.9 | 636 | 10/19/2021 |
9.7.5 | 1,491 | 10/14/2021 |
9.7.0 | 830 | 10/9/2021 |
9.6.6 | 1,193 | 8/14/2021 |
9.2.1 | 6,022 | 6/1/2021 |