mirror of
https://github.com/fluencelabs/gitbook-docs
synced 2025-04-25 07:52:14 +00:00
GitBook: [docs] 53 pages modified
This commit is contained in:
parent
07020f5ef0
commit
6188fd8bce
@ -1,13 +1,13 @@
|
|||||||
# AIR
|
# AIR
|
||||||
|
|
||||||
The Aquamarine Intermediate Representation \(AIR\) is a low level language to program both distributed networks and the services deployed on them. The language is comprised of five instructions:
|
The Aquamarine Intermediate Representation \(AIR\) is a low level language to program both distributed networks and the services deployed on them. The language is comprised of a small number of instructions:
|
||||||
|
|
||||||
* _call_: : execution
|
* _**call**_: : execution
|
||||||
* _seq_ : sequential
|
* _**seq**_ : sequential
|
||||||
* _par :_ parallel
|
* _**par** :_ parallel
|
||||||
* _fold_ : iteration
|
* _**fold**_ : iteration
|
||||||
* _xor :_ branching & error handling
|
* _**xor** :_ branching & error handling
|
||||||
* _null_ : empty instruction
|
* _**null**_ : empty instruction
|
||||||
|
|
||||||
which operate on _peer-id_ \(location\), _service-id_, and _service method_ over an argument list, see Figure 1.
|
which operate on _peer-id_ \(location\), _service-id_, and _service method_ over an argument list, see Figure 1.
|
||||||
|
|
||||||
@ -23,33 +23,33 @@ AIR instructions are intended to launch the execution of a service method as fol
|
|||||||
4. The arguments specified by the argument list are passed to the method
|
4. The arguments specified by the argument list are passed to the method
|
||||||
5. The result of the method returned under the name output name
|
5. The result of the method returned under the name output name
|
||||||
|
|
||||||
**Figure 2: Sequential Instruction** 
|
**Figure 2: Sequential Instruction** 
|
||||||
|
|
||||||
The seq instruction takes two instructions at most as its arguments and executes them sequentially, one after the other.
|
The _**seq**_ instruction takes two instructions at most as its arguments and executes them sequentially, one after the other.
|
||||||
|
|
||||||
**Figure 3: Parallel Instruction** 
|
**Figure 3: Parallel Instruction** 
|
||||||
|
|
||||||
The par</i.> instruction takes two instructions at most as its arguments and particles may execute on parallel paths iff each service referenced is hosted on a different node otherwise particles execute sequentially
|
The _**par**_ instruction takes two instructions at most as its arguments and particles may execute on parallel paths iff each service referenced is hosted on a different node otherwise particles execute sequentially
|
||||||
|
|
||||||
TODO: add better graphic showing the disticntion of branching vs seq.
|
TODO: add better graphic showing the disticntion of branching vs seq.
|
||||||
|
|
||||||
**Figure 4: Fold Instruction** 
|
**Figure 4: Fold Instruction** 
|
||||||
|
|
||||||
The fold instruction iterates over the elements of an array and workds as follows:
|
The _**fold**_ instruction iterates over the elements of an array and workds as follows:
|
||||||
|
|
||||||
* fold instruction takes three arguments: an array, a variable and an instruction
|
* _**fold**_ instruction takes three arguments: an array, a variable and an instruction
|
||||||
* At each iteration, the variable is assigned an element of the array and the argument-instruction is executed
|
* At each iteration, the variable is assigned an element of the array and the argument-instruction is executed
|
||||||
* The argument-instruction can access the variable and uses the next statement to trigger the next iteration
|
* The argument-instruction can access the variable and uses the next statement to trigger the next iteration
|
||||||
|
|
||||||
Figure 5: XOR Instruction 
|
Figure 5: Branching Instruction 
|
||||||
|
|
||||||
This instruction is intended for organizing branches in the flow of execution as well as for handling errors:
|
This instruction is intended for organizing branches in the flow of execution as well as for handling errors:
|
||||||
|
|
||||||
* The XOR instruction takes two instructions as its arguments
|
* The _**XOR**_ instruction takes two instructions as its arguments
|
||||||
* The first instruction is executed and if the execution is successful, then the second instruction is ignored
|
* The first instruction is executed and if the execution is successful, then the second instruction is ignored
|
||||||
* If the first instruction fails, then the second one is executed.
|
* If the first instruction fails, then the second one is executed.
|
||||||
|
|
||||||
**Figure 6: Null Instruction** 
|
**Figure 6: Null Instruction** 
|
||||||
|
|
||||||
This is an empty instruction: it takes no arguments and does nothing. The null instruction is useful for generating code.
|
This is an empty instruction: it takes no arguments and does nothing. The _**null**_ instruction is useful for generating code.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user