qi(1): Quirks #153

Open
opened 2024-08-04 09:41:42 -06:00 by emma · 2 comments
Owner

Redirects and pipes should be atomic—one should wait for another to conclude before beginning—as it would allow an interesting flow of data (including the ability to pipe a stream and redirect a file into a utility).

Redirects and pipes should be atomic—one should wait for another to conclude before beginning—as it would allow an interesting flow of data (including the ability to pipe a stream *and* redirect a file into a utility).
emma added the
enhancement
help wanted
question
labels 2024-08-04 09:41:42 -06:00
emma added this to the `qi(1)` project 2024-08-04 09:41:42 -06:00

one should wait for another to conclude before beginning

What do you mean by this? Because I take it to mean that if you have:

ar | bar | car

Then ar runs, its output is buffered and then sent to bar, which then does the same thing to car, which then outputs to stdout or what have you. The problem with this is if ar outputs 2 gigabytes of data, now you have 2 gigabytes of data sitting in memory, and ar must generate all of it before bar or car can run at all. Only one factory worker on the assembly line can move their arms at a time and you produce only one car per day.

> one should wait for another to conclude before beginning What do you mean by this? Because I take it to mean that if you have: ```sh ar | bar | car ``` Then `ar` runs, its output is buffered and then sent to `bar`, which then does the same thing to `car`, which then outputs to stdout or what have you. The problem with this is if `ar` outputs 2 gigabytes of data, now you have 2 gigabytes of data sitting in memory, and `ar` must generate all of it before `bar` or `car` can run at all. Only one factory worker on the assembly line can move their arms at a time and you produce only one `car` per day.
Author
Owner

In this example:
ar | bar | car <file
data flows through the pipes to car first, before attempting to read in file using a redirect to car. This assumes car attempts two reads in the course of its execution.

In this example: `ar | bar | car <file` data flows through the pipes to `car` *first*, before attempting to read in `file` using a redirect to `car`. This assumes `car` attempts two reads in the course of its execution.
Sign in to join this conversation.
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: bonsai/harakit#153
No description provided.