Skip to main content

rustc_incremental/persist/
fs.rs

1//! This module manages how the incremental compilation cache is represented in
2//! the file system.
3//!
4//! Incremental compilation caches are managed according to a copy-on-write
5//! strategy: Once a complete, consistent cache version is finalized, it is
6//! never modified. Instead, when a subsequent compilation session is started,
7//! the compiler will allocate a new version of the cache that starts out as
8//! a copy of the previous version. Then only this new copy is modified and it
9//! will not be visible to other processes until it is finalized. This ensures
10//! that multiple compiler processes can be executed concurrently for the same
11//! crate without interfering with each other or blocking each other.
12//!
13//! More concretely this is implemented via the following protocol:
14//!
15//! 1. For a newly started compilation session, the compiler allocates a
16//!    new `session` directory within the incremental compilation directory.
17//!    This session directory will have a unique name that ends with the suffix
18//!    "-working" and that contains a creation timestamp.
19//! 2. Next, the compiler looks for the newest finalized session directory,
20//!    that is, a session directory from a previous compilation session that
21//!    has been marked as valid and consistent. A session directory is
22//!    considered finalized if the "-working" suffix in the directory name has
23//!    been replaced by the SVH of the crate.
24//! 3. Once the compiler has found a valid, finalized session directory, it will
25//!    hard-link/copy its contents into the new "-working" directory. If all
26//!    goes well, it will have its own, private copy of the source directory and
27//!    subsequently not have to worry about synchronizing with other compiler
28//!    processes.
29//! 4. Now the compiler can do its normal compilation process, which involves
30//!    reading and updating its private session directory.
31//! 5. When compilation finishes without errors, the private session directory
32//!    will be in a state where it can be used as input for other compilation
33//!    sessions. That is, it will contain a dependency graph and cache artifacts
34//!    that are consistent with the state of the source code it was compiled
35//!    from, with no need to change them ever again. At this point, the compiler
36//!    finalizes and "publishes" its private session directory by renaming it
37//!    from "s-{timestamp}-{random}-working" to "s-{timestamp}-{SVH}".
38//! 6. At this point the "old" session directory that we copied our data from
39//!    at the beginning of the session has become obsolete because we have just
40//!    published a more current version. Thus the compiler will delete it.
41//!
42//! ## Garbage Collection
43//!
44//! Naively following the above protocol might lead to old session directories
45//! piling up if a compiler instance crashes for some reason before its able to
46//! remove its private session directory. In order to avoid wasting disk space,
47//! the compiler also does some garbage collection each time it is started in
48//! incremental compilation mode. Specifically, it will scan the incremental
49//! compilation directory for private session directories that are not in use
50//! any more and will delete those. It will also delete any finalized session
51//! directories for a given crate except for the most recent one.
52//!
53//! ## Synchronization
54//!
55//! There is some synchronization needed in order for the compiler to be able to
56//! determine whether a given private session directory is not in use any more.
57//! This is done by creating a lock file for each session directory and
58//! locking it while the directory is still being used. Since file locks have
59//! operating system support, we can rely on the lock being released if the
60//! compiler process dies for some unexpected reason. Thus, when garbage
61//! collecting private session directories, the collecting process can determine
62//! whether the directory is still in use by trying to acquire a lock on the
63//! file. If locking the file fails, the original process must still be alive.
64//! If locking the file succeeds, we know that the owning process is not alive
65//! any more and we can safely delete the directory.
66//! There is still a small time window between the original process creating the
67//! lock file and actually locking it. In order to minimize the chance that
68//! another process tries to acquire the lock in just that instance, only
69//! session directories that are older than a few seconds are considered for
70//! garbage collection.
71//!
72//! Another case that has to be considered is what happens if one process
73//! deletes a finalized session directory that another process is currently
74//! trying to copy from. This case is also handled via the lock file. Before
75//! a process starts copying a finalized session directory, it will acquire a
76//! shared lock on the directory's lock file. Any garbage collecting process,
77//! on the other hand, will acquire an exclusive lock on the lock file.
78//! Thus, if a directory is being collected, any reader process will fail
79//! acquiring the shared lock and will leave the directory alone. Conversely,
80//! if a collecting process can't acquire the exclusive lock because the
81//! directory is currently being read from, it will leave collecting that
82//! directory to another process at a later point in time.
83//! The exact same scheme is also used when reading the metadata hashes file
84//! from an extern crate. When a crate is compiled, the hash values of its
85//! metadata are stored in a file in its session directory. When the
86//! compilation session of another crate imports the first crate's metadata,
87//! it also has to read in the accompanying metadata hashes. It thus will access
88//! the finalized session directory of all crates it links to and while doing
89//! so, it will also place a read lock on that the respective session directory
90//! so that it won't be deleted while the metadata hashes are loaded.
91//!
92//! ## Preconditions
93//!
94//! This system relies on two features being available in the file system in
95//! order to work really well: file locking and hard linking.
96//! If hard linking is not available (like on FAT) the data in the cache
97//! actually has to be copied at the beginning of each session.
98//! If file locking does not work reliably (like on NFS), some of the
99//! synchronization will go haywire.
100//! In both cases we recommend to locate the incremental compilation directory
101//! on a file system that supports these things.
102//! It might be a good idea though to try and detect whether we are on an
103//! unsupported file system and emit a warning in that case. This is not yet
104//! implemented.
105
106use std::fs as std_fs;
107use std::io::{self, ErrorKind};
108use std::path::{Path, PathBuf};
109use std::time::{Duration, SystemTime, UNIX_EPOCH};
110
111use rand::{RngCore, rng};
112use rustc_data_structures::base_n::{BaseNString, CASE_INSENSITIVE, ToBaseN};
113use rustc_data_structures::fx::{FxHashSet, FxIndexSet};
114use rustc_data_structures::svh::Svh;
115use rustc_data_structures::unord::{UnordMap, UnordSet};
116use rustc_data_structures::{base_n, flock};
117use rustc_fs_util::{LinkOrCopy, link_or_copy, try_canonicalize};
118use rustc_middle::bug;
119use rustc_session::{Session, StableCrateId};
120use rustc_span::Symbol;
121use tracing::debug;
122
123use crate::diagnostics;
124
125#[cfg(test)]
126mod tests;
127
128const LOCK_FILE_EXT: &str = ".lock";
129const DEP_GRAPH_FILENAME: &str = "dep-graph.bin";
130const STAGING_DEP_GRAPH_FILENAME: &str = "dep-graph.part.bin";
131const WORK_PRODUCTS_FILENAME: &str = "work-products.bin";
132const QUERY_CACHE_FILENAME: &str = "query-cache.bin";
133
134// We encode integers using the following base, so they are shorter than decimal
135// or hexadecimal numbers (we want short file and directory names). Since these
136// numbers will be used in file names, we choose an encoding that is not
137// case-sensitive (as opposed to base64, for example).
138const INT_ENCODE_BASE: usize = base_n::CASE_INSENSITIVE;
139
140/// Returns the path to a session's dependency graph.
141pub(crate) fn dep_graph_path(sess: &Session) -> PathBuf {
142    in_incr_comp_dir_sess(sess, DEP_GRAPH_FILENAME)
143}
144
145/// Returns the path to a session's staging dependency graph.
146///
147/// On the difference between dep-graph and staging dep-graph,
148/// see `build_dep_graph`.
149pub(crate) fn staging_dep_graph_path(sess: &Session) -> PathBuf {
150    in_incr_comp_dir_sess(sess, STAGING_DEP_GRAPH_FILENAME)
151}
152
153pub(crate) fn work_products_path(sess: &Session) -> PathBuf {
154    in_incr_comp_dir_sess(sess, WORK_PRODUCTS_FILENAME)
155}
156
157/// Returns the path to a session's query cache.
158pub(crate) fn query_cache_path(sess: &Session) -> PathBuf {
159    in_incr_comp_dir_sess(sess, QUERY_CACHE_FILENAME)
160}
161
162/// Locks a given session directory.
163fn lock_file_path(session_dir: &Path) -> PathBuf {
164    let crate_dir = session_dir.parent().unwrap();
165
166    let directory_name = session_dir
167        .file_name()
168        .unwrap()
169        .to_str()
170        .expect("malformed session dir name: contains non-Unicode characters");
171
172    let dash_indices: Vec<_> = directory_name.match_indices('-').map(|(idx, _)| idx).collect();
173    if dash_indices.len() != 3 {
174        ::rustc_middle::util::bug::bug_fmt(format_args!("Encountered incremental compilation session directory with malformed name: {0}",
        session_dir.display()))bug!(
175            "Encountered incremental compilation session directory with \
176              malformed name: {}",
177            session_dir.display()
178        )
179    }
180
181    crate_dir.join(&directory_name[0..dash_indices[2]]).with_extension(&LOCK_FILE_EXT[1..])
182}
183
184/// Returns the path for a given filename within the incremental compilation directory
185/// in the current session.
186pub fn in_incr_comp_dir_sess(sess: &Session, file_name: &str) -> PathBuf {
187    sess.incr_comp_session_dir().join(file_name)
188}
189
190/// Allocates the private session directory.
191///
192/// If the result of this function is `Ok`, we have a valid incremental
193/// compilation session directory. A valid session
194/// directory is one that contains a locked lock file. It may or may not contain
195/// a dep-graph and work products from a previous session.
196///
197/// This always attempts to load a dep-graph from the directory.
198/// If loading fails for some reason, we fallback to a disabled `DepGraph`.
199/// See [`rustc_interface::queries::dep_graph`].
200///
201/// If this function returns an error, it may leave behind an invalid session directory.
202/// The garbage collection will take care of it.
203///
204/// [`rustc_interface::queries::dep_graph`]: ../../rustc_interface/struct.Queries.html#structfield.dep_graph
205pub(crate) fn prepare_session_directory(
206    sess: &Session,
207    crate_name: Symbol,
208    stable_crate_id: StableCrateId,
209) {
210    if !sess.opts.incremental.is_some() {
    ::core::panicking::panic("assertion failed: sess.opts.incremental.is_some()")
};assert!(sess.opts.incremental.is_some());
211
212    let _timer = sess.timer("incr_comp_prepare_session_directory");
213
214    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:214",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(214u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("prepare_session_directory")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("prepare_session_directory");
215
216    // {incr-comp-dir}/{crate-name-and-disambiguator}
217    let crate_dir = crate_path(sess, crate_name, stable_crate_id);
218    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:218",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(218u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("crate-dir: {0}",
                                                    crate_dir.display()) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("crate-dir: {}", crate_dir.display());
219    create_dir(sess, &crate_dir, "crate");
220
221    // Hack: canonicalize the path *after creating the directory*
222    // because, on windows, long paths can cause problems;
223    // canonicalization inserts this weird prefix that makes windows
224    // tolerate long paths.
225    let crate_dir = match try_canonicalize(&crate_dir) {
226        Ok(v) => v,
227        Err(err) => {
228            sess.dcx().emit_fatal(diagnostics::CanonicalizePath { path: crate_dir, err });
229        }
230    };
231
232    let mut source_directories_already_tried = FxHashSet::default();
233
234    loop {
235        // Generate a session directory of the form:
236        //
237        // {incr-comp-dir}/{crate-name-and-disambiguator}/s-{timestamp}-{random}-working
238        let session_dir = generate_session_dir_path(&crate_dir);
239        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:239",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(239u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("session-dir: {0}",
                                                    session_dir.display()) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("session-dir: {}", session_dir.display());
240
241        // Lock the new session directory. If this fails, return an
242        // error without retrying
243        let (directory_lock, lock_file_path) = lock_directory(sess, &session_dir);
244
245        // Now that we have the lock, we can actually create the session
246        // directory
247        create_dir(sess, &session_dir, "session");
248
249        // Find a suitable source directory to copy from. Ignore those that we
250        // have already tried before.
251        let source_directory = find_source_directory(&crate_dir, &source_directories_already_tried);
252
253        let Some(source_directory) = source_directory else {
254            // There's nowhere to copy from, we're done
255            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:255",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(255u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("no source directory found. Continuing with empty session directory.")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
256                "no source directory found. Continuing with empty session \
257                    directory."
258            );
259
260            sess.init_incr_comp_session(session_dir, directory_lock);
261            return;
262        };
263
264        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:264",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(264u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("attempting to copy data from source: {0}",
                                                    source_directory.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("attempting to copy data from source: {}", source_directory.display());
265
266        // Try copying over all files from the source directory
267        if let Ok(allows_links) = copy_files(sess, &session_dir, &source_directory) {
268            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:268",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(268u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("successfully copied data from: {0}",
                                                    source_directory.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("successfully copied data from: {}", source_directory.display());
269
270            if !allows_links {
271                sess.dcx().emit_warn(diagnostics::HardLinkFailed { path: &session_dir });
272            }
273
274            sess.init_incr_comp_session(session_dir, directory_lock);
275            return;
276        } else {
277            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:277",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(277u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("copying failed - trying next directory")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("copying failed - trying next directory");
278
279            // Something went wrong while trying to copy/link files from the
280            // source directory. Try again with a different one.
281            source_directories_already_tried.insert(source_directory);
282
283            // Try to remove the session directory we just allocated. We don't
284            // know if there's any garbage in it from the failed copy action.
285            if let Err(err) = std_fs::remove_dir_all(&session_dir) {
286                sess.dcx().emit_warn(diagnostics::DeletePartial { path: &session_dir, err });
287            }
288
289            delete_session_dir_lock_file(sess, &lock_file_path);
290            drop(directory_lock);
291        }
292    }
293}
294
295/// This function finalizes and thus 'publishes' the session directory by
296/// renaming it to `s-{timestamp}-{svh}` and releasing the file lock.
297/// This must not be called if there have been any compilation errors.
298pub fn finalize_session_directory(sess: &Session, svh: Option<Svh>) {
299    if !sess.dcx().has_errors_or_delayed_bugs().is_none() {
    ::core::panicking::panic("assertion failed: sess.dcx().has_errors_or_delayed_bugs().is_none()")
};assert!(sess.dcx().has_errors_or_delayed_bugs().is_none());
300
301    if sess.opts.incremental.is_none() {
302        return;
303    }
304    // The svh is always produced when incr. comp. is enabled.
305    let svh = svh.unwrap();
306
307    let _timer = sess.timer("incr_comp_finalize_session_directory");
308
309    let incr_comp_session_dir: PathBuf = sess.incr_comp_session_dir().clone();
310
311    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:311",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(311u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("finalize_session_directory() - session directory: {0}",
                                                    incr_comp_session_dir.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("finalize_session_directory() - session directory: {}", incr_comp_session_dir.display());
312
313    let mut sub_dir_name = incr_comp_session_dir
314        .file_name()
315        .unwrap()
316        .to_str()
317        .expect("malformed session dir name: contains non-Unicode characters")
318        .to_string();
319
320    // Keep the 's-{timestamp}-{random-number}' prefix, but replace "working" with the SVH of the crate
321    sub_dir_name.truncate(sub_dir_name.len() - "working".len());
322    // Double-check that we kept this: "s-{timestamp}-{random-number}-"
323    if !sub_dir_name.ends_with('-') {
    { ::core::panicking::panic_fmt(format_args!("{0:?}", sub_dir_name)); }
};assert!(sub_dir_name.ends_with('-'), "{:?}", sub_dir_name);
324    if !(sub_dir_name.as_bytes().iter().filter(|b| **b == b'-').count() == 3) {
    ::core::panicking::panic("assertion failed: sub_dir_name.as_bytes().iter().filter(|b| **b == b\'-\').count() == 3")
};assert!(sub_dir_name.as_bytes().iter().filter(|b| **b == b'-').count() == 3);
325
326    // Append the SVH
327    sub_dir_name.push_str(&svh.as_u128().to_base_fixed_len(CASE_INSENSITIVE));
328
329    // Create the full path
330    let new_path = incr_comp_session_dir.parent().unwrap().join(&*sub_dir_name);
331    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:331",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(331u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("finalize_session_directory() - new path: {0}",
                                                    new_path.display()) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("finalize_session_directory() - new path: {}", new_path.display());
332
333    match rename_path_with_retry(&*incr_comp_session_dir, &new_path, 3) {
334        Ok(_) => {
335            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:335",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(335u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("finalize_session_directory() - directory renamed successfully")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("finalize_session_directory() - directory renamed successfully");
336        }
337        Err(e) => {
338            // Warn about the error. However, no need to abort compilation now.
339            sess.dcx().emit_note(diagnostics::Finalize { path: &incr_comp_session_dir, err: e });
340
341            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:341",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(341u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("finalize_session_directory() - error")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("finalize_session_directory() - error");
342        }
343    }
344
345    // This unlocks the directory
346    sess.finalize_incr_comp_session();
347
348    let _ = garbage_collect_session_directories(sess, &new_path);
349}
350
351pub(crate) fn delete_all_session_dir_contents(sess: &Session) -> io::Result<()> {
352    let sess_dir_iterator = sess.incr_comp_session_dir().read_dir()?;
353    for entry in sess_dir_iterator {
354        let entry = entry?;
355        safe_remove_file(&entry.path())?
356    }
357    Ok(())
358}
359
360fn copy_files(sess: &Session, target_dir: &Path, source_dir: &Path) -> Result<bool, ()> {
361    // We acquire a shared lock on the lock file of the directory, so that
362    // nobody deletes it out from under us while we are reading from it.
363    let lock_file_path = lock_file_path(source_dir);
364
365    // not exclusive
366    let Ok(_lock) = flock::Lock::new(
367        &lock_file_path,
368        false, // don't wait,
369        false, // don't create
370        false,
371    ) else {
372        // Could not acquire the lock, don't try to copy from here
373        return Err(());
374    };
375
376    let Ok(source_dir_iterator) = source_dir.read_dir() else {
377        return Err(());
378    };
379
380    let mut files_linked = 0;
381    let mut files_copied = 0;
382
383    for entry in source_dir_iterator {
384        match entry {
385            Ok(entry) => {
386                let file_name = entry.file_name();
387
388                let target_file_path = target_dir.join(file_name);
389                let source_path = entry.path();
390
391                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:391",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(391u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("copying into session dir: {0}",
                                                    source_path.display()) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("copying into session dir: {}", source_path.display());
392                match link_or_copy(source_path, target_file_path) {
393                    Ok(LinkOrCopy::Link) => files_linked += 1,
394                    Ok(LinkOrCopy::Copy) => files_copied += 1,
395                    Err(_) => return Err(()),
396                }
397            }
398            Err(_) => return Err(()),
399        }
400    }
401
402    if sess.opts.unstable_opts.incremental_info {
403        {
    ::std::io::_eprint(format_args!("[incremental] session directory: {0} files hard-linked\n",
            files_linked));
};eprintln!(
404            "[incremental] session directory: \
405                  {files_linked} files hard-linked"
406        );
407        {
    ::std::io::_eprint(format_args!("[incremental] session directory: {0} files copied\n",
            files_copied));
};eprintln!(
408            "[incremental] session directory: \
409                 {files_copied} files copied"
410        );
411    }
412
413    Ok(files_linked > 0 || files_copied == 0)
414}
415
416/// Generates unique directory path of the form:
417/// {crate_dir}/s-{timestamp}-{random-number}-working
418fn generate_session_dir_path(crate_dir: &Path) -> PathBuf {
419    let timestamp = timestamp_to_string(SystemTime::now());
420    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:420",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(420u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("generate_session_dir_path: timestamp = {0}",
                                                    timestamp) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("generate_session_dir_path: timestamp = {}", timestamp);
421    let random_number = rng().next_u32();
422    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:422",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(422u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("generate_session_dir_path: random_number = {0}",
                                                    random_number) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("generate_session_dir_path: random_number = {}", random_number);
423
424    // Chop the first 3 characters off the timestamp. Those 3 bytes will be zero for a while.
425    let (zeroes, timestamp) = timestamp.split_at(3);
426    {
    match (&zeroes, &"000") {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    }
};assert_eq!(zeroes, "000");
427    let directory_name =
428        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("s-{0}-{1}-working", timestamp,
                random_number.to_base_fixed_len(CASE_INSENSITIVE)))
    })format!("s-{}-{}-working", timestamp, random_number.to_base_fixed_len(CASE_INSENSITIVE));
429    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:429",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(429u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("generate_session_dir_path: directory_name = {0}",
                                                    directory_name) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("generate_session_dir_path: directory_name = {}", directory_name);
430    let directory_path = crate_dir.join(directory_name);
431    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:431",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(431u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("generate_session_dir_path: directory_path = {0}",
                                                    directory_path.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("generate_session_dir_path: directory_path = {}", directory_path.display());
432    directory_path
433}
434
435fn create_dir(sess: &Session, path: &Path, dir_tag: &str) {
436    match std_fs::create_dir_all(path) {
437        Ok(()) => {
438            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:438",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(438u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0} directory created successfully",
                                                    dir_tag) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("{} directory created successfully", dir_tag);
439        }
440        Err(err) => {
441            sess.dcx().emit_fatal(diagnostics::CreateIncrCompDir { tag: dir_tag, path, err })
442        }
443    }
444}
445
446/// Allocate the lock-file and lock it.
447fn lock_directory(sess: &Session, session_dir: &Path) -> (flock::Lock, PathBuf) {
448    let lock_file_path = lock_file_path(session_dir);
449    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:449",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(449u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("lock_directory() - lock_file: {0}",
                                                    lock_file_path.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("lock_directory() - lock_file: {}", lock_file_path.display());
450
451    match flock::Lock::new(
452        &lock_file_path,
453        false, // don't wait
454        true,  // create the lock file
455        true,
456    ) {
457        // the lock should be exclusive
458        Ok(lock) => (lock, lock_file_path),
459        Err(lock_err) => {
460            let is_unsupported_lock = flock::Lock::error_unsupported(&lock_err);
461            sess.dcx().emit_fatal(diagnostics::CreateLock {
462                lock_err,
463                session_dir,
464                is_unsupported_lock,
465                is_cargo: rustc_session::utils::was_invoked_from_cargo(),
466            });
467        }
468    }
469}
470
471fn delete_session_dir_lock_file(sess: &Session, lock_file_path: &Path) {
472    if let Err(err) = safe_remove_file(lock_file_path) {
473        sess.dcx().emit_warn(diagnostics::DeleteLock { path: lock_file_path, err });
474    }
475}
476
477/// Finds the most recent published session directory that is not in the
478/// ignore-list.
479fn find_source_directory(
480    crate_dir: &Path,
481    source_directories_already_tried: &FxHashSet<PathBuf>,
482) -> Option<PathBuf> {
483    let iter = crate_dir
484        .read_dir()
485        .unwrap() // FIXME
486        .filter_map(|e| e.ok().map(|e| e.path()));
487
488    find_source_directory_in_iter(iter, source_directories_already_tried)
489}
490
491fn find_source_directory_in_iter<I>(
492    iter: I,
493    source_directories_already_tried: &FxHashSet<PathBuf>,
494) -> Option<PathBuf>
495where
496    I: Iterator<Item = PathBuf>,
497{
498    let mut best_candidate = (UNIX_EPOCH, None);
499
500    for session_dir in iter {
501        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:501",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(501u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("find_source_directory_in_iter - inspecting `{0}`",
                                                    session_dir.display()) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("find_source_directory_in_iter - inspecting `{}`", session_dir.display());
502
503        let Some(directory_name) = session_dir.file_name().unwrap().to_str() else {
504            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:504",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(504u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("find_source_directory_in_iter - ignoring")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("find_source_directory_in_iter - ignoring");
505            continue;
506        };
507
508        if source_directories_already_tried.contains(&session_dir)
509            || !is_session_directory(&directory_name)
510            || !is_finalized(&directory_name)
511        {
512            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:512",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(512u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("find_source_directory_in_iter - ignoring")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("find_source_directory_in_iter - ignoring");
513            continue;
514        }
515
516        let timestamp = match extract_timestamp_from_session_dir(&directory_name) {
517            Ok(timestamp) => timestamp,
518            Err(e) => {
519                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:519",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(519u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("unexpected incr-comp session dir: {0}: {1}",
                                                    session_dir.display(), e) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("unexpected incr-comp session dir: {}: {}", session_dir.display(), e);
520                continue;
521            }
522        };
523
524        if timestamp > best_candidate.0 {
525            best_candidate = (timestamp, Some(session_dir.clone()));
526        }
527    }
528
529    best_candidate.1
530}
531
532fn is_finalized(directory_name: &str) -> bool {
533    !directory_name.ends_with("-working")
534}
535
536fn is_session_directory(directory_name: &str) -> bool {
537    directory_name.starts_with("s-") && !directory_name.ends_with(LOCK_FILE_EXT)
538}
539
540fn is_session_directory_lock_file(file_name: &str) -> bool {
541    file_name.starts_with("s-") && file_name.ends_with(LOCK_FILE_EXT)
542}
543
544fn extract_timestamp_from_session_dir(directory_name: &str) -> Result<SystemTime, &'static str> {
545    if !is_session_directory(directory_name) {
546        return Err("not a directory");
547    }
548
549    let dash_indices: Vec<_> = directory_name.match_indices('-').map(|(idx, _)| idx).collect();
550    if dash_indices.len() != 3 {
551        return Err("not three dashes in name");
552    }
553
554    string_to_timestamp(&directory_name[dash_indices[0] + 1..dash_indices[1]])
555}
556
557fn timestamp_to_string(timestamp: SystemTime) -> BaseNString {
558    let duration = timestamp.duration_since(UNIX_EPOCH).unwrap();
559    let micros: u64 = duration.as_micros().try_into().unwrap();
560    micros.to_base_fixed_len(CASE_INSENSITIVE)
561}
562
563fn string_to_timestamp(s: &str) -> Result<SystemTime, &'static str> {
564    let micros_since_unix_epoch = match u64::from_str_radix(s, INT_ENCODE_BASE as u32) {
565        Ok(micros) => micros,
566        Err(_) => return Err("timestamp not an int"),
567    };
568
569    let duration = Duration::from_micros(micros_since_unix_epoch);
570    Ok(UNIX_EPOCH + duration)
571}
572
573fn crate_path(sess: &Session, crate_name: Symbol, stable_crate_id: StableCrateId) -> PathBuf {
574    let incr_dir = sess.opts.incremental.as_ref().unwrap().clone();
575
576    let crate_name =
577        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{1}-{0}",
                stable_crate_id.as_u64().to_base_fixed_len(CASE_INSENSITIVE),
                crate_name))
    })format!("{crate_name}-{}", stable_crate_id.as_u64().to_base_fixed_len(CASE_INSENSITIVE));
578    incr_dir.join(crate_name)
579}
580
581fn is_old_enough_to_be_collected(timestamp: SystemTime) -> bool {
582    timestamp < SystemTime::now() - Duration::from_secs(10)
583}
584
585/// Runs garbage collection for the current session.
586pub(crate) fn garbage_collect_session_directories(
587    sess: &Session,
588    session_directory: &Path,
589) -> io::Result<()> {
590    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:590",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(590u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - begin")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("garbage_collect_session_directories() - begin");
591
592    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:592",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(592u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - session directory: {0}",
                                                    session_directory.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
593        "garbage_collect_session_directories() - session directory: {}",
594        session_directory.display()
595    );
596
597    let crate_directory = session_directory.parent().unwrap();
598    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:598",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(598u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - crate directory: {0}",
                                                    crate_directory.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
599        "garbage_collect_session_directories() - crate directory: {}",
600        crate_directory.display()
601    );
602
603    // First do a pass over the crate directory, collecting lock files and
604    // session directories
605    let mut session_directories = FxIndexSet::default();
606    let mut lock_files = UnordSet::default();
607
608    for dir_entry in crate_directory.read_dir()? {
609        let Ok(dir_entry) = dir_entry else {
610            // Ignore any errors
611            continue;
612        };
613
614        let entry_name = dir_entry.file_name();
615        let Some(entry_name) = entry_name.to_str() else {
616            continue;
617        };
618
619        if is_session_directory_lock_file(&entry_name) {
620            lock_files.insert(entry_name.to_string());
621        } else if is_session_directory(&entry_name) {
622            session_directories.insert(entry_name.to_string());
623        } else {
624            // This is something we don't know, leave it alone
625        }
626    }
627    session_directories.sort();
628
629    // Now map from lock files to session directories
630    let lock_file_to_session_dir: UnordMap<String, Option<String>> = lock_files
631        .into_items()
632        .map(|lock_file_name| {
633            if !lock_file_name.ends_with(LOCK_FILE_EXT) {
    ::core::panicking::panic("assertion failed: lock_file_name.ends_with(LOCK_FILE_EXT)")
};assert!(lock_file_name.ends_with(LOCK_FILE_EXT));
634            let dir_prefix_end = lock_file_name.len() - LOCK_FILE_EXT.len();
635            let session_dir = {
636                let dir_prefix = &lock_file_name[0..dir_prefix_end];
637                session_directories.iter().find(|dir_name| dir_name.starts_with(dir_prefix))
638            };
639            (lock_file_name, session_dir.map(String::clone))
640        })
641        .into();
642
643    // Delete all lock files, that don't have an associated directory. They must
644    // be some kind of leftover
645    for (lock_file_name, directory_name) in
646        lock_file_to_session_dir.items().into_sorted_stable_ord()
647    {
648        if directory_name.is_none() {
649            let Ok(timestamp) = extract_timestamp_from_session_dir(lock_file_name) else {
650                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:650",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(650u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("found lock-file with malformed timestamp: {0}",
                                                    crate_directory.join(&lock_file_name).display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
651                    "found lock-file with malformed timestamp: {}",
652                    crate_directory.join(&lock_file_name).display()
653                );
654                // Ignore it
655                continue;
656            };
657
658            let lock_file_path = crate_directory.join(&*lock_file_name);
659
660            if is_old_enough_to_be_collected(timestamp) {
661                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:661",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(661u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - deleting garbage lock file: {0}",
                                                    lock_file_path.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
662                    "garbage_collect_session_directories() - deleting \
663                    garbage lock file: {}",
664                    lock_file_path.display()
665                );
666                delete_session_dir_lock_file(sess, &lock_file_path);
667            } else {
668                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:668",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(668u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - lock file with no session dir not old enough to be collected: {0}",
                                                    lock_file_path.display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
669                    "garbage_collect_session_directories() - lock file with \
670                    no session dir not old enough to be collected: {}",
671                    lock_file_path.display()
672                );
673            }
674        }
675    }
676
677    // Filter out `None` directories
678    let lock_file_to_session_dir: UnordMap<String, String> = lock_file_to_session_dir
679        .into_items()
680        .filter_map(|(lock_file_name, directory_name)| directory_name.map(|n| (lock_file_name, n)))
681        .into();
682
683    // Delete all session directories that don't have a lock file.
684    for directory_name in session_directories {
685        if !lock_file_to_session_dir.items().any(|(_, dir)| *dir == directory_name) {
686            let path = crate_directory.join(directory_name);
687            if let Err(err) = std_fs::remove_dir_all(&path) {
688                sess.dcx().emit_warn(diagnostics::InvalidGcFailed { path: &path, err });
689            }
690        }
691    }
692
693    let current_session_directory_name =
694        session_directory.file_name().expect("session directory is not `..`");
695
696    // Now garbage collect the valid session directories.
697    let deletion_candidates =
698        lock_file_to_session_dir.items().filter_map(|(lock_file_name, directory_name)| {
699            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:699",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(699u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - inspecting: {0}",
                                                    directory_name) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("garbage_collect_session_directories() - inspecting: {}", directory_name);
700
701            if directory_name.as_str() == current_session_directory_name {
702                // Skipping our own directory is, unfortunately, important for correctness.
703                //
704                // To summarize #147821: we will try to lock directories before deciding they can be
705                // garbage collected, but the ability of `flock::Lock` to detect a lock held *by the
706                // same process* varies across file locking APIs. Then, if our own session directory
707                // has become old enough to be eligible for GC, we are beholden to platform-specific
708                // details about detecting the our own lock on the session directory.
709                //
710                // POSIX `fcntl(F_SETLK)`-style file locks are maintained across a process. On
711                // systems where this is the mechanism for `flock::Lock`, there is no way to
712                // discover if an `flock::Lock` has been created in the same process on the same
713                // file. Attempting to set a lock on the lockfile again will succeed, even if the
714                // lock was set by another thread, on another file descriptor. Then we would
715                // garbage collect our own live directory, unable to tell it was locked perhaps by
716                // this same thread.
717                //
718                // It's not clear that `flock::Lock` can be fixed for this in general, and our own
719                // incremental session directory is the only one which this process may own, so skip
720                // it here and avoid the problem. We know it's not garbage anyway: we're using it.
721                return None;
722            }
723
724            let Ok(timestamp) = extract_timestamp_from_session_dir(directory_name) else {
725                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:725",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(725u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("found session-dir with malformed timestamp: {0}",
                                                    crate_directory.join(directory_name).display()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
726                    "found session-dir with malformed timestamp: {}",
727                    crate_directory.join(directory_name).display()
728                );
729                // Ignore it
730                return None;
731            };
732
733            if is_finalized(directory_name) {
734                let lock_file_path = crate_directory.join(lock_file_name);
735                match flock::Lock::new(
736                    &lock_file_path,
737                    false, // don't wait
738                    false, // don't create the lock-file
739                    true,
740                ) {
741                    // get an exclusive lock
742                    Ok(lock) => {
743                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:743",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(743u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - successfully acquired lock")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
744                            "garbage_collect_session_directories() - \
745                            successfully acquired lock"
746                        );
747                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:747",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(747u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - adding deletion candidate: {0}",
                                                    directory_name) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
748                            "garbage_collect_session_directories() - adding \
749                            deletion candidate: {}",
750                            directory_name
751                        );
752
753                        // Note that we are holding on to the lock
754                        return Some((
755                            (timestamp, crate_directory.join(directory_name)),
756                            Some(lock),
757                        ));
758                    }
759                    Err(_) => {
760                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:760",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(760u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - not collecting, still in use")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
761                            "garbage_collect_session_directories() - \
762                            not collecting, still in use"
763                        );
764                    }
765                }
766            } else if is_old_enough_to_be_collected(timestamp) {
767                // When cleaning out "-working" session directories, i.e.
768                // session directories that might still be in use by another
769                // compiler instance, we only look a directories that are
770                // at least ten seconds old. This is supposed to reduce the
771                // chance of deleting a directory in the time window where
772                // the process has allocated the directory but has not yet
773                // acquired the file-lock on it.
774
775                // Try to acquire the directory lock. If we can't, it
776                // means that the owning process is still alive and we
777                // leave this directory alone.
778                let lock_file_path = crate_directory.join(lock_file_name);
779                match flock::Lock::new(
780                    &lock_file_path,
781                    false, // don't wait
782                    false, // don't create the lock-file
783                    true,
784                ) {
785                    // get an exclusive lock
786                    Ok(lock) => {
787                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:787",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(787u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - successfully acquired lock")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
788                            "garbage_collect_session_directories() - \
789                            successfully acquired lock"
790                        );
791
792                        delete_old(sess, &crate_directory.join(directory_name));
793
794                        // Let's make it explicit that the file lock is released at this point,
795                        // or rather, that we held on to it until here
796                        drop(lock);
797                    }
798                    Err(_) => {
799                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:799",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(799u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - not collecting, still in use")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
800                            "garbage_collect_session_directories() - \
801                            not collecting, still in use"
802                        );
803                    }
804                }
805            } else {
806                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:806",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(806u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - not finalized, not old enough")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
807                    "garbage_collect_session_directories() - not finalized, not \
808                    old enough"
809                );
810            }
811            None
812        });
813    let deletion_candidates = deletion_candidates.into();
814
815    // Delete all but the most recent of the candidates
816    all_except_most_recent(deletion_candidates).into_items().all(|(path, lock)| {
817        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:817",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(817u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - deleting `{0}`",
                                                    path.display()) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("garbage_collect_session_directories() - deleting `{}`", path.display());
818
819        if let Err(err) = std_fs::remove_dir_all(&path) {
820            sess.dcx().emit_warn(diagnostics::FinalizedGcFailed { path: &path, err });
821        } else {
822            delete_session_dir_lock_file(sess, &lock_file_path(&path));
823        }
824
825        // Let's make it explicit that the file lock is released at this point,
826        // or rather, that we held on to it until here
827        drop(lock);
828        true
829    });
830
831    Ok(())
832}
833
834fn delete_old(sess: &Session, path: &Path) {
835    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_incremental/src/persist/fs.rs:835",
                        "rustc_incremental::persist::fs", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_incremental/src/persist/fs.rs"),
                        ::tracing_core::__macro_support::Option::Some(835u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_incremental::persist::fs"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("garbage_collect_session_directories() - deleting `{0}`",
                                                    path.display()) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("garbage_collect_session_directories() - deleting `{}`", path.display());
836
837    if let Err(err) = std_fs::remove_dir_all(path) {
838        sess.dcx().emit_warn(diagnostics::SessionGcFailed { path, err });
839    } else {
840        delete_session_dir_lock_file(sess, &lock_file_path(path));
841    }
842}
843
844fn all_except_most_recent(
845    deletion_candidates: UnordMap<(SystemTime, PathBuf), Option<flock::Lock>>,
846) -> UnordMap<PathBuf, Option<flock::Lock>> {
847    let most_recent = deletion_candidates.items().map(|(&(timestamp, _), _)| timestamp).max();
848
849    if let Some(most_recent) = most_recent {
850        deletion_candidates
851            .into_items()
852            .filter(|&((timestamp, _), _)| timestamp != most_recent)
853            .map(|((_, path), lock)| (path, lock))
854            .collect()
855    } else {
856        UnordMap::default()
857    }
858}
859
860fn safe_remove_file(p: &Path) -> io::Result<()> {
861    match std_fs::remove_file(p) {
862        Err(err) if err.kind() == io::ErrorKind::NotFound => Ok(()),
863        result => result,
864    }
865}
866
867// On Windows the compiler would sometimes fail to rename the session directory because
868// the OS thought something was still being accessed in it. So we retry a few times to give
869// the OS time to catch up.
870// See https://github.com/rust-lang/rust/issues/86929.
871fn rename_path_with_retry(from: &Path, to: &Path, mut retries_left: usize) -> std::io::Result<()> {
872    loop {
873        match std_fs::rename(from, to) {
874            Ok(()) => return Ok(()),
875            Err(e) => {
876                if retries_left > 0 && e.kind() == ErrorKind::PermissionDenied {
877                    // Try again after a short waiting period.
878                    std::thread::sleep(Duration::from_millis(50));
879                    retries_left -= 1;
880                } else {
881                    return Err(e);
882                }
883            }
884        }
885    }
886}