time(1p) equivalent #123

Open
opened 2024-06-21 02:22:33 -06:00 by emma · 4 comments
Owner

We need a utility that can test the length of time a line of shell takes to complete execution and output data formatted as ASV.

We need a utility that can test the length of time a line of shell takes to complete execution and output data formatted as ASV.
emma added the
enhancement
question
labels 2024-06-21 02:22:33 -06:00
Owner

I think this should be a separate utility and not a shell built-in. This would just be an exec(2) and a couple timer calls, right? How precise does this need to be?

I think this should be a separate utility and not a shell built-in. This would just be an exec(2) and a couple timer calls, right? How precise does this need to be?
Owner

Would a simple wrapper around https://doc.rust-lang.org/std/time/struct.SystemTime.html suffice?

Would a simple wrapper around https://doc.rust-lang.org/std/time/struct.SystemTime.html suffice?

I think this should be a separate utility and not a shell built-in. This would just be an exec(2) and a couple timer calls, right? How precise does this need to be?

Having it be a shell builtin would not grant more precision, so I'd say yes. As for how precise, in bash, time outputs values in millisecond precision. It should achieve that at least.

> I think this should be a separate utility and not a shell built-in. This would just be an exec(2) and a couple timer calls, right? How precise does this need to be? Having it be a shell builtin would not grant more precision, so I'd say yes. As for how precise, in bash, time outputs values in millisecond precision. It should achieve that at least.

Would a simple wrapper around https://doc.rust-lang.org/std/time/struct.SystemTime.html suffice?

From the doc:

Distinct from the Instant type, this time measurement is not monotonic. This means that you can save a file to the file system, then save another file to the file system, and the second file has a SystemTime measurement earlier than the first. In other words, an operation that happens after another operation in real time may have an earlier SystemTime!

So probably not. If the system clock changes while the command is running, the output would be erroneous. This ought to be used instead: https://doc.rust-lang.org/std/time/struct.Instant.html

> Would a simple wrapper around https://doc.rust-lang.org/std/time/struct.SystemTime.html suffice? From the doc: > Distinct from the Instant type, this time measurement is not monotonic. This means that you can save a file to the file system, then save another file to the file system, and the second file has a SystemTime measurement earlier than the first. In other words, an operation that happens after another operation in real time may have an earlier SystemTime! So probably not. If the system clock changes while the command is running, the output would be erroneous. This ought to be used instead: https://doc.rust-lang.org/std/time/struct.Instant.html
Sign in to join this conversation.
No Milestone
No project
No Assignees
3 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#123
No description provided.