8 releases (4 breaking)

0.5.0 Dec 28, 2023
0.4.0 Jun 13, 2023
0.3.0 Feb 28, 2021
0.2.0 Nov 24, 2020
0.1.0 Oct 31, 2020

#109 in Filesystem

Download history 13598/week @ 2024-01-05 14622/week @ 2024-01-12 11821/week @ 2024-01-19 12045/week @ 2024-01-26 13763/week @ 2024-02-02 12609/week @ 2024-02-09 13416/week @ 2024-02-16 13069/week @ 2024-02-23 14349/week @ 2024-03-01 10467/week @ 2024-03-08 10877/week @ 2024-03-15 11063/week @ 2024-03-22 15856/week @ 2024-03-29 16589/week @ 2024-04-05 14951/week @ 2024-04-12 12290/week @ 2024-04-19

61,730 downloads per month
Used in 53 crates (2 directly)

MIT/Apache

23KB
367 lines

Clircle

CI crates.io version MSRV

Clircle provides a cross-platform API to detect read / write cycles from your user-supplied arguments. You can get the important identifiers of a file (from a path) and for all three stdio streams, if they are piped from or to a file as well.

Why?

Imagine you want to read data from a couple of files and output something according to the contents of these files. If the user redirects the output of your program to one of the input files, you might end up in an infinite circle of reading and writing.

The crate provides the struct Identifier which is a platform dependent type alias, so that you can use it on all platforms and do not need to introduce any conditional compilation yourself. On both Unix and Windows systems, Identifier holds information to identify a file on a disk.

The Clircle trait is implemented on both of these structs and requires TryFrom for the clircle::Stdio enum and for &Path, so that all possible inputs can be represented as an Identifier. Finally, Clircle is a subtrait of Eq, so that the identifiers can be conveniently compared and circles can be detected. The clircle crate also provides some convenience functions around the comparison of Clircle implementors.

Why should I use this and not just fs::Metadata?

The clircle crate seamlessly works on Linux and Windows through a single API, so no conditional compilation is needed at all. Furthermore, MetadataExt is not stable on Windows yet, meaning you would have to dig into the Windows APIs yourself to get the information needed to identify a file.

Where did this crate come from?

This crate originated in a pull request to the bat project. The bat tool strives to be a drop-in replacement for the unix tool cat. Since cat detects these cycles, bat has to do so too, which is where most of this code came into play. However, it was decided, that the new logic was

  • useful for other projects and
  • too platform specific for bats scope.

So now, you can use clircle too!

Dependencies

~115–580KB