#temporary-files #process #gix #persist #git #mark #marker

git-tempfile

Please use gix-<thiscrate> instead (‘git’ -> ‘gix’)

25 releases (stable)

3.0.3 Feb 17, 2023
3.0.1 Jan 10, 2023
3.0.0 Nov 21, 2022
2.0.6 Nov 6, 2022
0.4.0 Jun 23, 2021

#10 in #persist

Download history 141/week @ 2023-11-27 103/week @ 2023-12-04 124/week @ 2023-12-11 123/week @ 2023-12-18 109/week @ 2023-12-25 64/week @ 2024-01-01 146/week @ 2024-01-08 174/week @ 2024-01-15 114/week @ 2024-01-22 81/week @ 2024-01-29 143/week @ 2024-02-05 132/week @ 2024-02-12 150/week @ 2024-02-19 262/week @ 2024-02-26 187/week @ 2024-03-04 118/week @ 2024-03-11

737 downloads per month
Used in 17 crates (4 directly)

MIT/Apache

42KB
761 lines

Use tempfiles to minimize the risk of resource leakage when preparing to overwrite or create a file with new content in a signal-safe way, making the change atomic.

Tempfiles can also be used as locks as only one tempfile can exist at a given path at a time.

  • registered temporary files which are deleted automatically as the process terminates or on drop
    • write to temporary file and persist it under new name
    • close temporary files to convert them into a marker while saving system resources
    • mark paths with a closed temporary file
  • persist temporary files to prevent them from perishing.
  • signal-handler integration with gix to clean lockfiles before the process is aborted.
  • use a temporary file transparently due thanks to implementations of std::io traits

lib.rs:

git-style registered tempfiles that are removed upon typical termination signals.

To register signal handlers in a typical application that doesn't have its own, call [git_tempfile::setup(Default::default())][setup()] before creating the first tempfile.

Signal handlers are powered by signal-hook to get notified when the application is told to shut down to assure tempfiles are deleted. The deletion is filtered by process id to allow forks to have their own set of tempfiles that won't get deleted when the parent process exits.

Initial Setup

As no handlers for TERMination are installed, it is required to call [setup()] before creating the first tempfile. This also allows to control how git-tempfiles integrates with other handlers under application control.

As a general rule of thumb, use Default::default() as argument to emulate the default behaviour and abort the process after cleaning temporary files. Read more about options in [SignalHandlerMode].

Limitations

Tempfiles might remain on disk

  • Uninterruptible signals are received like SIGKILL
  • The application is performing a write operation on the tempfile when a signal arrives, preventing this tempfile to be removed, but not others. Any other operation dealing with the tempfile suffers from the same issue.

Dependencies

~3–13MB
~138K SLoC