<stdin>
)Read the stdin belonging to the parent code block
This is used inside functions and other code blocks to pass that block’s stdin down a pipeline
<stdin> -> <stdout>
When writing more complex scripts, you cannot always invoke your read as the first command in a code block. For example a simple pipeline might be:
» function example { -> match 2 }
But this only works if ->
is the very first command. The following would fail:
# Incorrect code
function example {
out "only match 2"
-> match 2
}
This is where <stdin>
comes to our rescue:
function example {
out "only match 2"
<stdin> -> match 2
}
This could also be written as:
function example { out "only match 2"; <stdin> -> match 2 }
<stdin>
makes use of a feature called named pipes, which are a way of piping data between processes without chaining them together as a single command pipeline (eg commands delimited with |
, ->
, =>
, ?
tokens).
In POSIX, there is a concept of stdin, stdout and stderr, these are FIFO files while are “piped” from one executable to another. ie stdout for application ‘A’ would be the same file as stdin for application ‘B’ when A is piped to B: A | B
. Murex adds a another layer around this to enable support for passing data types and builtins which are agnostic to the data serialization format traversing the pipeline. While this does add overhead the advantage is this new wrapper can be used as a primitive for channelling any data from one point to another.
Murex named pipes are where these pipes are created in a global store, decoupled from any executing functions, named and can then be used to pass data along asynchronously.
For example
pipe example
bg {
<example> -> match Hello
}
out "foobar" -> <example>
out "Hello, world!" -> <example>
out "foobar" -> <example>
!pipe example
This returns Hello, world!
because out
is writing to the example named pipe and match
is also reading from it in the background (bg
).
Named pipes can also be inlined into the command parameters with <>
tags
pipe example
bg {
<example> -> match: Hello
}
out <example> "foobar"
out <example> "Hello, world!"
out <example> "foobar"
!pipe example
Please note this is also how
test
works.
Murex named pipes can also represent network sockets, files on a disk or any other read and/or write endpoint. Custom builtins can also be written in Golang to support different abstractions so your Murex code can work with those read or write endpoints transparently.
To see the different supported types run
runtime --pipes
Pipes created via pipe
are created in the global namespace. This allows pipes to be used across different functions easily however it does pose a risk with name clashes where Murex named pipes are used heavily. Thus is it recommended that pipes created in modules should be prefixed with the name of its package.
<stdin>
pipe
): Manage Murex named pipesmatch
): Match an exact value in an arrayout
): Print a string to the stdout with a trailing new line characterfunction
): Define a function block<pipe>
): Reads from a Murex named piperuntime
): Returns runtime information on the internal state of MurexThis document was generated from builtins/core/pipe/namedpipe_doc.yaml.
This site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Sat Nov 23 00:50:15 UTC 2024 against commit 69c17da69c17da3bd9db98ca508f6a03a402f074ee24cec.
Current version is 6.4.0375 (develop) which has been verified against tests cases.