Skip to content

Commit 5f71fc9

Browse files
committed
[skip ci] doc: update generated wiki pages (Interface)
1 parent 22b5993 commit 5f71fc9

File tree

1 file changed

+24
-12
lines changed

1 file changed

+24
-12
lines changed

wiki/Interface.md

+24-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_This document was generated from 'src/documentation/print-interface-wiki.ts' on 2024-10-13, 06:30:32 UTC presenting an overview of flowR's interfaces (v2.1.2, using R v4.4.0)._
1+
_This document was generated from 'src/documentation/print-interface-wiki.ts' on 2024-10-13, 09:47:46 UTC presenting an overview of flowR's interfaces (v2.1.2, using R v4.4.0)._
22

33
Although far from being as detailed as the in-depth explanation of
44
[_flowR_](https://github.com/flowr-analysis/flowr/wiki//Core),
@@ -226,7 +226,7 @@ _As the code is pretty long, we inhibit pretty printing and syntax highlighting
226226
</li>
227227
</ol>
228228

229-
The complete round-trip took 14.17 ms (including time required to validate the messages, start, and stop the internal mock server).
229+
The complete round-trip took 15.00 ms (including time required to validate the messages, start, and stop the internal mock server).
230230

231231
</details>
232232

@@ -308,7 +308,7 @@ The first message is always a hello message.
308308
"id": "1",
309309
"type": "error",
310310
"fatal": false,
311-
"reason": "Error while analyzing file sample.R: GuardError: unable to parse R code (see the log for more information) for request {\"request\":\"file\",\"content\":\"/tmp/tmp-5424-tF6UET9WEqJF-.R\"}}"
311+
"reason": "Error while analyzing file sample.R: GuardError: unable to parse R code (see the log for more information) for request {\"request\":\"file\",\"content\":\"/tmp/tmp-5571-hEO5OkZqrvoY-.R\"}}"
312312
}
313313
```
314314

@@ -318,7 +318,7 @@ The first message is always a hello message.
318318
</li>
319319
</ol>
320320

321-
The complete round-trip took 1.49 ms (including time required to validate the messages, start, and stop the internal mock server).
321+
The complete round-trip took 1.45 ms (including time required to validate the messages, start, and stop the internal mock server).
322322

323323
</details>
324324

@@ -417,7 +417,7 @@ _As the code is pretty long, we inhibit pretty printing and syntax highlighting
417417
</li>
418418
</ol>
419419

420-
The complete round-trip took 9.09 ms (including time required to validate the messages, start, and stop the internal mock server).
420+
The complete round-trip took 9.01 ms (including time required to validate the messages, start, and stop the internal mock server).
421421

422422
</details>
423423

@@ -517,7 +517,7 @@ _As the code is pretty long, we inhibit pretty printing and syntax highlighting
517517
</li>
518518
</ol>
519519

520-
The complete round-trip took 7.79 ms (including time required to validate the messages, start, and stop the internal mock server).
520+
The complete round-trip took 6.52 ms (including time required to validate the messages, start, and stop the internal mock server).
521521

522522
</details>
523523

@@ -808,7 +808,7 @@ The `results` field of the response contains two keys of importance:
808808
</li>
809809
</ol>
810810

811-
The complete round-trip took 6.43 ms (including time required to validate the messages, start, and stop the internal mock server).
811+
The complete round-trip took 6.27 ms (including time required to validate the messages, start, and stop the internal mock server).
812812

813813
</details>
814814

@@ -1330,7 +1330,7 @@ _As the code is pretty long, we inhibit pretty printing and syntax highlighting
13301330
"results": {
13311331
"call-context": {
13321332
".meta": {
1333-
"timing": 0
1333+
"timing": 1
13341334
},
13351335
"kinds": {
13361336
"visualize": {
@@ -1366,7 +1366,7 @@ _As the code is pretty long, we inhibit pretty printing and syntax highlighting
13661366
</li>
13671367
</ol>
13681368

1369-
The complete round-trip took 18.43 ms (including time required to validate the messages, start, and stop the internal mock server).
1369+
The complete round-trip took 19.29 ms (including time required to validate the messages, start, and stop the internal mock server).
13701370

13711371
</details>
13721372

@@ -1454,6 +1454,13 @@ For the definition of the hello message, please see it's implementation at [`./s
14541454
_Do not reconstruct the slice into readable code._
14551455
- **noMagicComments** boolean [optional]
14561456
_Should the magic comments (force-including lines within the slice) be ignored?_
1457+
- **.** object
1458+
_Lineage query used to find the lineage of a node in the dataflow graph_
1459+
- **type** string [required]
1460+
_The type of the query._
1461+
Allows only the values: 'lineage'
1462+
- **id** string [required]
1463+
_The ID of the node to get the lineage of._
14571464
- **.** alternatives
14581465
_Virtual queries (used for structure)_
14591466
- **.** object
@@ -1500,7 +1507,7 @@ For the definition of the hello message, please see it's implementation at [`./s
15001507
<b>Lineage</b> Message (<code>request-lineage</code>)
15011508
<details>
15021509

1503-
<summary style="color:gray"> View Details. <i>Obtain the lineage of a given slicing criterion.</i> </summary>
1510+
<summary style="color:gray"> View Details. <i>([DEPRECATED](${FlowrWikiBaseRef}/Query%20API)) Obtain the lineage of a given slicing criterion.</i> </summary>
15041511

15051512
```mermaid
15061513
sequenceDiagram
@@ -1522,6 +1529,11 @@ sequenceDiagram
15221529

15231530

15241531

1532+
1533+
> [!WARNING]
1534+
> We deprecated the lineage request in favor of the `lineage` [Query](https://github.com/flowr-analysis/flowr/wiki//Query%20API).
1535+
1536+
15251537
In order to retrieve the lineage of an object, you have to send a file analysis request first. The `filetoken` you assign is of use here as you can re-use it to repeatedly retrieve the lineage of the same file.
15261538
Besides that, you will need to add a [criterion](https://github.com/flowr-analysis/flowr/wiki//Terminology#slicing-criterion) that specifies the object whose lineage you're interested in.
15271539

@@ -1658,7 +1670,7 @@ The response contains the lineage of the desired object in form of an array of I
16581670
</li>
16591671
</ol>
16601672

1661-
The complete round-trip took 3.48 ms (including time required to validate the messages, start, and stop the internal mock server).
1673+
The complete round-trip took 3.23 ms (including time required to validate the messages, start, and stop the internal mock server).
16621674

16631675
</details>
16641676

@@ -1873,7 +1885,7 @@ flowchart LR
18731885

18741886
<summary style="color:gray">R Code of the Dataflow Graph</summary>
18751887

1876-
The analysis required _1.74 ms_ (incl. parse and normalize) within the generation environment.
1888+
The analysis required _1.70 ms_ (incl. parse and normalize) within the generation environment.
18771889
We encountered no unknown side effects during the analysis.
18781890

18791891
```r

0 commit comments

Comments
 (0)