1#[derive(Default, Copy, Clone, Debug, PartialEq, Eq, Ord, PartialOrd, Hash)]
3pub enum Stage {
4 #[default]
6 Unconflicted = 0,
7 Base = 1,
9 Ours = 2,
11 Theirs = 3,
13}
14
15pub type StageRaw = u32;
21
22pub mod mode;
24
25mod flags;
26pub(crate) use flags::at_rest;
27pub use flags::Flags;
28
29pub mod stat;
31mod write;
32
33use bitflags::bitflags;
34
35bitflags! {
36 #[derive(Copy, Clone, Debug, PartialEq, Eq, Ord, PartialOrd)]
38 pub struct Mode: u32 {
39 const DIR = 0o040000;
42 const FILE = 0o100644;
44 const FILE_EXECUTABLE = 0o100755;
46 const SYMLINK = 0o120000;
48 const COMMIT = 0o160000;
50 }
51}
52
53#[derive(Debug, Default, PartialEq, Eq, Hash, Ord, PartialOrd, Clone, Copy)]
55#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
56pub struct Stat {
57 pub mtime: stat::Time,
59 pub ctime: stat::Time,
61 pub dev: u32,
63 pub ino: u32,
65 pub uid: u32,
67 pub gid: u32,
69 pub size: u32,
71}
72
73mod access {
74 use bstr::{BStr, ByteSlice};
75
76 use crate::{entry, Entry, State};
77
78 impl Entry {
79 pub fn path<'a>(&self, state: &'a State) -> &'a BStr {
81 state.path_backing[self.path.clone()].as_bstr()
82 }
83
84 pub fn path_in<'backing>(&self, backing: &'backing crate::PathStorageRef) -> &'backing BStr {
86 backing[self.path.clone()].as_bstr()
87 }
88
89 pub fn stage(&self) -> entry::Stage {
91 self.flags.stage()
92 }
93
94 pub fn stage_raw(&self) -> u32 {
102 self.flags.stage_raw()
103 }
104 }
105}
106
107mod _impls {
108 use std::cmp::Ordering;
109
110 use crate::{entry, Entry, State};
111 use bstr::BStr;
112 use gix_object::tree::EntryKind;
113
114 impl From<EntryKind> for entry::Mode {
115 fn from(value: EntryKind) -> Self {
116 match value {
117 EntryKind::Tree => entry::Mode::DIR,
118 EntryKind::Blob => entry::Mode::FILE,
119 EntryKind::BlobExecutable => entry::Mode::FILE_EXECUTABLE,
120 EntryKind::Link => entry::Mode::SYMLINK,
121 EntryKind::Commit => entry::Mode::COMMIT,
122 }
123 }
124 }
125
126 impl Entry {
127 pub fn cmp(&self, other: &Self, state: &State) -> Ordering {
130 let lhs = self.path(state);
131 let rhs = other.path(state);
132 Entry::cmp_filepaths(lhs, rhs).then_with(|| self.stage().cmp(&other.stage()))
133 }
134
135 pub fn cmp_filepaths(a: &BStr, b: &BStr) -> Ordering {
138 let common_len = a.len().min(b.len());
139 a[..common_len]
140 .cmp(&b[..common_len])
141 .then_with(|| a.len().cmp(&b.len()))
142 }
143 }
144}