Show More
@@ -1,933 +1,762 b'' | |||||
1 | use crate::utils::hg_path::HgPath; |
|
1 | use crate::utils::hg_path::HgPath; | |
2 | use crate::utils::hg_path::HgPathBuf; |
|
2 | use crate::utils::hg_path::HgPathBuf; | |
3 | use crate::Revision; |
|
3 | use crate::Revision; | |
4 | use crate::NULL_REVISION; |
|
4 | use crate::NULL_REVISION; | |
5 |
|
5 | |||
6 | use im_rc::ordmap::DiffItem; |
|
|||
7 | use im_rc::ordmap::Entry; |
|
6 | use im_rc::ordmap::Entry; | |
8 | use im_rc::ordmap::OrdMap; |
|
7 | use im_rc::ordmap::OrdMap; | |
9 | use im_rc::OrdSet; |
|
8 | use im_rc::OrdSet; | |
10 |
|
9 | |||
11 | use std::cmp::Ordering; |
|
10 | use std::cmp::Ordering; | |
12 | use std::collections::HashMap; |
|
11 | use std::collections::HashMap; | |
13 | use std::convert::TryInto; |
|
12 | use std::convert::TryInto; | |
14 |
|
13 | |||
15 | pub type PathCopies = HashMap<HgPathBuf, HgPathBuf>; |
|
14 | pub type PathCopies = HashMap<HgPathBuf, HgPathBuf>; | |
16 |
|
15 | |||
17 | type PathToken = usize; |
|
16 | type PathToken = usize; | |
18 |
|
17 | |||
19 | #[derive(Clone, Debug)] |
|
18 | #[derive(Clone, Debug)] | |
20 | struct CopySource { |
|
19 | struct CopySource { | |
21 | /// revision at which the copy information was added |
|
20 | /// revision at which the copy information was added | |
22 | rev: Revision, |
|
21 | rev: Revision, | |
23 | /// the copy source, (Set to None in case of deletion of the associated |
|
22 | /// the copy source, (Set to None in case of deletion of the associated | |
24 | /// key) |
|
23 | /// key) | |
25 | path: Option<PathToken>, |
|
24 | path: Option<PathToken>, | |
26 | /// a set of previous `CopySource.rev` value directly or indirectly |
|
25 | /// a set of previous `CopySource.rev` value directly or indirectly | |
27 | /// overwritten by this one. |
|
26 | /// overwritten by this one. | |
28 | overwritten: OrdSet<Revision>, |
|
27 | overwritten: OrdSet<Revision>, | |
29 | } |
|
28 | } | |
30 |
|
29 | |||
31 | impl CopySource { |
|
30 | impl CopySource { | |
32 | /// create a new CopySource |
|
31 | /// create a new CopySource | |
33 | /// |
|
32 | /// | |
34 | /// Use this when no previous copy source existed. |
|
33 | /// Use this when no previous copy source existed. | |
35 | fn new(rev: Revision, path: Option<PathToken>) -> Self { |
|
34 | fn new(rev: Revision, path: Option<PathToken>) -> Self { | |
36 | Self { |
|
35 | Self { | |
37 | rev, |
|
36 | rev, | |
38 | path, |
|
37 | path, | |
39 | overwritten: OrdSet::new(), |
|
38 | overwritten: OrdSet::new(), | |
40 | } |
|
39 | } | |
41 | } |
|
40 | } | |
42 |
|
41 | |||
43 | /// create a new CopySource from merging two others |
|
42 | /// create a new CopySource from merging two others | |
44 | /// |
|
43 | /// | |
45 | /// Use this when merging two InternalPathCopies requires active merging of |
|
44 | /// Use this when merging two InternalPathCopies requires active merging of | |
46 | /// some entries. |
|
45 | /// some entries. | |
47 | fn new_from_merge(rev: Revision, winner: &Self, loser: &Self) -> Self { |
|
46 | fn new_from_merge(rev: Revision, winner: &Self, loser: &Self) -> Self { | |
48 | let mut overwritten = OrdSet::new(); |
|
47 | let mut overwritten = OrdSet::new(); | |
49 | overwritten.extend(winner.overwritten.iter().copied()); |
|
48 | overwritten.extend(winner.overwritten.iter().copied()); | |
50 | overwritten.extend(loser.overwritten.iter().copied()); |
|
49 | overwritten.extend(loser.overwritten.iter().copied()); | |
51 | overwritten.insert(winner.rev); |
|
50 | overwritten.insert(winner.rev); | |
52 | overwritten.insert(loser.rev); |
|
51 | overwritten.insert(loser.rev); | |
53 | Self { |
|
52 | Self { | |
54 | rev, |
|
53 | rev, | |
55 | path: winner.path, |
|
54 | path: winner.path, | |
56 | overwritten: overwritten, |
|
55 | overwritten: overwritten, | |
57 | } |
|
56 | } | |
58 | } |
|
57 | } | |
59 |
|
58 | |||
60 | /// Update the value of a pre-existing CopySource |
|
59 | /// Update the value of a pre-existing CopySource | |
61 | /// |
|
60 | /// | |
62 | /// Use this when recording copy information from parent β child edges |
|
61 | /// Use this when recording copy information from parent β child edges | |
63 | fn overwrite(&mut self, rev: Revision, path: Option<PathToken>) { |
|
62 | fn overwrite(&mut self, rev: Revision, path: Option<PathToken>) { | |
64 | self.overwritten.insert(self.rev); |
|
63 | self.overwritten.insert(self.rev); | |
65 | self.rev = rev; |
|
64 | self.rev = rev; | |
66 | self.path = path; |
|
65 | self.path = path; | |
67 | } |
|
66 | } | |
68 |
|
67 | |||
69 | /// Mark pre-existing copy information as "dropped" by a file deletion |
|
68 | /// Mark pre-existing copy information as "dropped" by a file deletion | |
70 | /// |
|
69 | /// | |
71 | /// Use this when recording copy information from parent β child edges |
|
70 | /// Use this when recording copy information from parent β child edges | |
72 | fn mark_delete(&mut self, rev: Revision) { |
|
71 | fn mark_delete(&mut self, rev: Revision) { | |
73 | self.overwritten.insert(self.rev); |
|
72 | self.overwritten.insert(self.rev); | |
74 | self.rev = rev; |
|
73 | self.rev = rev; | |
75 | self.path = None; |
|
74 | self.path = None; | |
76 | } |
|
75 | } | |
77 |
|
76 | |||
78 | /// Mark pre-existing copy information as "dropped" by a file deletion |
|
77 | /// Mark pre-existing copy information as "dropped" by a file deletion | |
79 | /// |
|
78 | /// | |
80 | /// Use this when recording copy information from parent β child edges |
|
79 | /// Use this when recording copy information from parent β child edges | |
81 | fn mark_delete_with_pair(&mut self, rev: Revision, other: &Self) { |
|
80 | fn mark_delete_with_pair(&mut self, rev: Revision, other: &Self) { | |
82 | self.overwritten.insert(self.rev); |
|
81 | self.overwritten.insert(self.rev); | |
83 | if other.rev != rev { |
|
82 | if other.rev != rev { | |
84 | self.overwritten.insert(other.rev); |
|
83 | self.overwritten.insert(other.rev); | |
85 | } |
|
84 | } | |
86 | self.overwritten.extend(other.overwritten.iter().copied()); |
|
85 | self.overwritten.extend(other.overwritten.iter().copied()); | |
87 | self.rev = rev; |
|
86 | self.rev = rev; | |
88 | self.path = None; |
|
87 | self.path = None; | |
89 | } |
|
88 | } | |
90 |
|
89 | |||
91 | fn is_overwritten_by(&self, other: &Self) -> bool { |
|
90 | fn is_overwritten_by(&self, other: &Self) -> bool { | |
92 | other.overwritten.contains(&self.rev) |
|
91 | other.overwritten.contains(&self.rev) | |
93 | } |
|
92 | } | |
94 | } |
|
93 | } | |
95 |
|
94 | |||
96 | // For the same "dest", content generated for a given revision will always be |
|
95 | // For the same "dest", content generated for a given revision will always be | |
97 | // the same. |
|
96 | // the same. | |
98 | impl PartialEq for CopySource { |
|
97 | impl PartialEq for CopySource { | |
99 | fn eq(&self, other: &Self) -> bool { |
|
98 | fn eq(&self, other: &Self) -> bool { | |
100 | #[cfg(debug_assertions)] |
|
99 | #[cfg(debug_assertions)] | |
101 | { |
|
100 | { | |
102 | if self.rev == other.rev { |
|
101 | if self.rev == other.rev { | |
103 | debug_assert!(self.path == other.path); |
|
102 | debug_assert!(self.path == other.path); | |
104 | debug_assert!(self.overwritten == other.overwritten); |
|
103 | debug_assert!(self.overwritten == other.overwritten); | |
105 | } |
|
104 | } | |
106 | } |
|
105 | } | |
107 | self.rev == other.rev |
|
106 | self.rev == other.rev | |
108 | } |
|
107 | } | |
109 | } |
|
108 | } | |
110 |
|
109 | |||
111 | /// maps CopyDestination to Copy Source (+ a "timestamp" for the operation) |
|
110 | /// maps CopyDestination to Copy Source (+ a "timestamp" for the operation) | |
112 | type InternalPathCopies = OrdMap<PathToken, CopySource>; |
|
111 | type InternalPathCopies = OrdMap<PathToken, CopySource>; | |
113 |
|
112 | |||
114 | /// hold parent 1, parent 2 and relevant files actions. |
|
113 | /// hold parent 1, parent 2 and relevant files actions. | |
115 | pub type RevInfo<'a> = (Revision, Revision, ChangedFiles<'a>); |
|
114 | pub type RevInfo<'a> = (Revision, Revision, ChangedFiles<'a>); | |
116 |
|
115 | |||
117 | /// represent the files affected by a changesets |
|
116 | /// represent the files affected by a changesets | |
118 | /// |
|
117 | /// | |
119 | /// This hold a subset of mercurial.metadata.ChangingFiles as we do not need |
|
118 | /// This hold a subset of mercurial.metadata.ChangingFiles as we do not need | |
120 | /// all the data categories tracked by it. |
|
119 | /// all the data categories tracked by it. | |
121 | /// This hold a subset of mercurial.metadata.ChangingFiles as we do not need |
|
120 | /// This hold a subset of mercurial.metadata.ChangingFiles as we do not need | |
122 | /// all the data categories tracked by it. |
|
121 | /// all the data categories tracked by it. | |
123 | pub struct ChangedFiles<'a> { |
|
122 | pub struct ChangedFiles<'a> { | |
124 | nb_items: u32, |
|
123 | nb_items: u32, | |
125 | index: &'a [u8], |
|
124 | index: &'a [u8], | |
126 | data: &'a [u8], |
|
125 | data: &'a [u8], | |
127 | } |
|
126 | } | |
128 |
|
127 | |||
129 | /// Represent active changes that affect the copy tracing. |
|
128 | /// Represent active changes that affect the copy tracing. | |
130 | enum Action<'a> { |
|
129 | enum Action<'a> { | |
131 | /// The parent ? children edge is removing a file |
|
130 | /// The parent ? children edge is removing a file | |
132 | /// |
|
131 | /// | |
133 | /// (actually, this could be the edge from the other parent, but it does |
|
132 | /// (actually, this could be the edge from the other parent, but it does | |
134 | /// not matters) |
|
133 | /// not matters) | |
135 | Removed(&'a HgPath), |
|
134 | Removed(&'a HgPath), | |
136 | /// The parent ? children edge introduce copy information between (dest, |
|
135 | /// The parent ? children edge introduce copy information between (dest, | |
137 | /// source) |
|
136 | /// source) | |
138 | CopiedFromP1(&'a HgPath, &'a HgPath), |
|
137 | CopiedFromP1(&'a HgPath, &'a HgPath), | |
139 | CopiedFromP2(&'a HgPath, &'a HgPath), |
|
138 | CopiedFromP2(&'a HgPath, &'a HgPath), | |
140 | } |
|
139 | } | |
141 |
|
140 | |||
142 | /// This express the possible "special" case we can get in a merge |
|
141 | /// This express the possible "special" case we can get in a merge | |
143 | /// |
|
142 | /// | |
144 | /// See mercurial/metadata.py for details on these values. |
|
143 | /// See mercurial/metadata.py for details on these values. | |
145 | #[derive(PartialEq)] |
|
144 | #[derive(PartialEq)] | |
146 | enum MergeCase { |
|
145 | enum MergeCase { | |
147 | /// Merged: file had history on both side that needed to be merged |
|
146 | /// Merged: file had history on both side that needed to be merged | |
148 | Merged, |
|
147 | Merged, | |
149 | /// Salvaged: file was candidate for deletion, but survived the merge |
|
148 | /// Salvaged: file was candidate for deletion, but survived the merge | |
150 | Salvaged, |
|
149 | Salvaged, | |
151 | /// Normal: Not one of the two cases above |
|
150 | /// Normal: Not one of the two cases above | |
152 | Normal, |
|
151 | Normal, | |
153 | } |
|
152 | } | |
154 |
|
153 | |||
155 | type FileChange<'a> = (u8, &'a HgPath, &'a HgPath); |
|
154 | type FileChange<'a> = (u8, &'a HgPath, &'a HgPath); | |
156 |
|
155 | |||
157 | const EMPTY: &[u8] = b""; |
|
156 | const EMPTY: &[u8] = b""; | |
158 | const COPY_MASK: u8 = 3; |
|
157 | const COPY_MASK: u8 = 3; | |
159 | const P1_COPY: u8 = 2; |
|
158 | const P1_COPY: u8 = 2; | |
160 | const P2_COPY: u8 = 3; |
|
159 | const P2_COPY: u8 = 3; | |
161 | const ACTION_MASK: u8 = 28; |
|
160 | const ACTION_MASK: u8 = 28; | |
162 | const REMOVED: u8 = 12; |
|
161 | const REMOVED: u8 = 12; | |
163 | const MERGED: u8 = 8; |
|
162 | const MERGED: u8 = 8; | |
164 | const SALVAGED: u8 = 16; |
|
163 | const SALVAGED: u8 = 16; | |
165 |
|
164 | |||
166 | impl<'a> ChangedFiles<'a> { |
|
165 | impl<'a> ChangedFiles<'a> { | |
167 | const INDEX_START: usize = 4; |
|
166 | const INDEX_START: usize = 4; | |
168 | const ENTRY_SIZE: u32 = 9; |
|
167 | const ENTRY_SIZE: u32 = 9; | |
169 | const FILENAME_START: u32 = 1; |
|
168 | const FILENAME_START: u32 = 1; | |
170 | const COPY_SOURCE_START: u32 = 5; |
|
169 | const COPY_SOURCE_START: u32 = 5; | |
171 |
|
170 | |||
172 | pub fn new(data: &'a [u8]) -> Self { |
|
171 | pub fn new(data: &'a [u8]) -> Self { | |
173 | assert!( |
|
172 | assert!( | |
174 | data.len() >= 4, |
|
173 | data.len() >= 4, | |
175 | "data size ({}) is too small to contain the header (4)", |
|
174 | "data size ({}) is too small to contain the header (4)", | |
176 | data.len() |
|
175 | data.len() | |
177 | ); |
|
176 | ); | |
178 | let nb_items_raw: [u8; 4] = (&data[0..=3]) |
|
177 | let nb_items_raw: [u8; 4] = (&data[0..=3]) | |
179 | .try_into() |
|
178 | .try_into() | |
180 | .expect("failed to turn 4 bytes into 4 bytes"); |
|
179 | .expect("failed to turn 4 bytes into 4 bytes"); | |
181 | let nb_items = u32::from_be_bytes(nb_items_raw); |
|
180 | let nb_items = u32::from_be_bytes(nb_items_raw); | |
182 |
|
181 | |||
183 | let index_size = (nb_items * Self::ENTRY_SIZE) as usize; |
|
182 | let index_size = (nb_items * Self::ENTRY_SIZE) as usize; | |
184 | let index_end = Self::INDEX_START + index_size; |
|
183 | let index_end = Self::INDEX_START + index_size; | |
185 |
|
184 | |||
186 | assert!( |
|
185 | assert!( | |
187 | data.len() >= index_end, |
|
186 | data.len() >= index_end, | |
188 | "data size ({}) is too small to fit the index_data ({})", |
|
187 | "data size ({}) is too small to fit the index_data ({})", | |
189 | data.len(), |
|
188 | data.len(), | |
190 | index_end |
|
189 | index_end | |
191 | ); |
|
190 | ); | |
192 |
|
191 | |||
193 | let ret = ChangedFiles { |
|
192 | let ret = ChangedFiles { | |
194 | nb_items, |
|
193 | nb_items, | |
195 | index: &data[Self::INDEX_START..index_end], |
|
194 | index: &data[Self::INDEX_START..index_end], | |
196 | data: &data[index_end..], |
|
195 | data: &data[index_end..], | |
197 | }; |
|
196 | }; | |
198 | let max_data = ret.filename_end(nb_items - 1) as usize; |
|
197 | let max_data = ret.filename_end(nb_items - 1) as usize; | |
199 | assert!( |
|
198 | assert!( | |
200 | ret.data.len() >= max_data, |
|
199 | ret.data.len() >= max_data, | |
201 | "data size ({}) is too small to fit all data ({})", |
|
200 | "data size ({}) is too small to fit all data ({})", | |
202 | data.len(), |
|
201 | data.len(), | |
203 | index_end + max_data |
|
202 | index_end + max_data | |
204 | ); |
|
203 | ); | |
205 | ret |
|
204 | ret | |
206 | } |
|
205 | } | |
207 |
|
206 | |||
208 | pub fn new_empty() -> Self { |
|
207 | pub fn new_empty() -> Self { | |
209 | ChangedFiles { |
|
208 | ChangedFiles { | |
210 | nb_items: 0, |
|
209 | nb_items: 0, | |
211 | index: EMPTY, |
|
210 | index: EMPTY, | |
212 | data: EMPTY, |
|
211 | data: EMPTY, | |
213 | } |
|
212 | } | |
214 | } |
|
213 | } | |
215 |
|
214 | |||
216 | /// internal function to return an individual entry at a given index |
|
215 | /// internal function to return an individual entry at a given index | |
217 | fn entry(&'a self, idx: u32) -> FileChange<'a> { |
|
216 | fn entry(&'a self, idx: u32) -> FileChange<'a> { | |
218 | if idx >= self.nb_items { |
|
217 | if idx >= self.nb_items { | |
219 | panic!( |
|
218 | panic!( | |
220 | "index for entry is higher that the number of file {} >= {}", |
|
219 | "index for entry is higher that the number of file {} >= {}", | |
221 | idx, self.nb_items |
|
220 | idx, self.nb_items | |
222 | ) |
|
221 | ) | |
223 | } |
|
222 | } | |
224 | let flags = self.flags(idx); |
|
223 | let flags = self.flags(idx); | |
225 | let filename = self.filename(idx); |
|
224 | let filename = self.filename(idx); | |
226 | let copy_idx = self.copy_idx(idx); |
|
225 | let copy_idx = self.copy_idx(idx); | |
227 | let copy_source = self.filename(copy_idx); |
|
226 | let copy_source = self.filename(copy_idx); | |
228 | (flags, filename, copy_source) |
|
227 | (flags, filename, copy_source) | |
229 | } |
|
228 | } | |
230 |
|
229 | |||
231 | /// internal function to return the filename of the entry at a given index |
|
230 | /// internal function to return the filename of the entry at a given index | |
232 | fn filename(&self, idx: u32) -> &HgPath { |
|
231 | fn filename(&self, idx: u32) -> &HgPath { | |
233 | let filename_start; |
|
232 | let filename_start; | |
234 | if idx == 0 { |
|
233 | if idx == 0 { | |
235 | filename_start = 0; |
|
234 | filename_start = 0; | |
236 | } else { |
|
235 | } else { | |
237 | filename_start = self.filename_end(idx - 1) |
|
236 | filename_start = self.filename_end(idx - 1) | |
238 | } |
|
237 | } | |
239 | let filename_end = self.filename_end(idx); |
|
238 | let filename_end = self.filename_end(idx); | |
240 | let filename_start = filename_start as usize; |
|
239 | let filename_start = filename_start as usize; | |
241 | let filename_end = filename_end as usize; |
|
240 | let filename_end = filename_end as usize; | |
242 | HgPath::new(&self.data[filename_start..filename_end]) |
|
241 | HgPath::new(&self.data[filename_start..filename_end]) | |
243 | } |
|
242 | } | |
244 |
|
243 | |||
245 | /// internal function to return the flag field of the entry at a given |
|
244 | /// internal function to return the flag field of the entry at a given | |
246 | /// index |
|
245 | /// index | |
247 | fn flags(&self, idx: u32) -> u8 { |
|
246 | fn flags(&self, idx: u32) -> u8 { | |
248 | let idx = idx as usize; |
|
247 | let idx = idx as usize; | |
249 | self.index[idx * (Self::ENTRY_SIZE as usize)] |
|
248 | self.index[idx * (Self::ENTRY_SIZE as usize)] | |
250 | } |
|
249 | } | |
251 |
|
250 | |||
252 | /// internal function to return the end of a filename part at a given index |
|
251 | /// internal function to return the end of a filename part at a given index | |
253 | fn filename_end(&self, idx: u32) -> u32 { |
|
252 | fn filename_end(&self, idx: u32) -> u32 { | |
254 | let start = (idx * Self::ENTRY_SIZE) + Self::FILENAME_START; |
|
253 | let start = (idx * Self::ENTRY_SIZE) + Self::FILENAME_START; | |
255 | let end = (idx * Self::ENTRY_SIZE) + Self::COPY_SOURCE_START; |
|
254 | let end = (idx * Self::ENTRY_SIZE) + Self::COPY_SOURCE_START; | |
256 | let start = start as usize; |
|
255 | let start = start as usize; | |
257 | let end = end as usize; |
|
256 | let end = end as usize; | |
258 | let raw = (&self.index[start..end]) |
|
257 | let raw = (&self.index[start..end]) | |
259 | .try_into() |
|
258 | .try_into() | |
260 | .expect("failed to turn 4 bytes into 4 bytes"); |
|
259 | .expect("failed to turn 4 bytes into 4 bytes"); | |
261 | u32::from_be_bytes(raw) |
|
260 | u32::from_be_bytes(raw) | |
262 | } |
|
261 | } | |
263 |
|
262 | |||
264 | /// internal function to return index of the copy source of the entry at a |
|
263 | /// internal function to return index of the copy source of the entry at a | |
265 | /// given index |
|
264 | /// given index | |
266 | fn copy_idx(&self, idx: u32) -> u32 { |
|
265 | fn copy_idx(&self, idx: u32) -> u32 { | |
267 | let start = (idx * Self::ENTRY_SIZE) + Self::COPY_SOURCE_START; |
|
266 | let start = (idx * Self::ENTRY_SIZE) + Self::COPY_SOURCE_START; | |
268 | let end = (idx + 1) * Self::ENTRY_SIZE; |
|
267 | let end = (idx + 1) * Self::ENTRY_SIZE; | |
269 | let start = start as usize; |
|
268 | let start = start as usize; | |
270 | let end = end as usize; |
|
269 | let end = end as usize; | |
271 | let raw = (&self.index[start..end]) |
|
270 | let raw = (&self.index[start..end]) | |
272 | .try_into() |
|
271 | .try_into() | |
273 | .expect("failed to turn 4 bytes into 4 bytes"); |
|
272 | .expect("failed to turn 4 bytes into 4 bytes"); | |
274 | u32::from_be_bytes(raw) |
|
273 | u32::from_be_bytes(raw) | |
275 | } |
|
274 | } | |
276 |
|
275 | |||
277 | /// Return an iterator over all the `Action` in this instance. |
|
276 | /// Return an iterator over all the `Action` in this instance. | |
278 | fn iter_actions(&self) -> ActionsIterator { |
|
277 | fn iter_actions(&self) -> ActionsIterator { | |
279 | ActionsIterator { |
|
278 | ActionsIterator { | |
280 | changes: &self, |
|
279 | changes: &self, | |
281 | current: 0, |
|
280 | current: 0, | |
282 | } |
|
281 | } | |
283 | } |
|
282 | } | |
284 |
|
283 | |||
285 | /// return the MergeCase value associated with a filename |
|
284 | /// return the MergeCase value associated with a filename | |
286 | fn get_merge_case(&self, path: &HgPath) -> MergeCase { |
|
285 | fn get_merge_case(&self, path: &HgPath) -> MergeCase { | |
287 | if self.nb_items == 0 { |
|
286 | if self.nb_items == 0 { | |
288 | return MergeCase::Normal; |
|
287 | return MergeCase::Normal; | |
289 | } |
|
288 | } | |
290 | let mut low_part = 0; |
|
289 | let mut low_part = 0; | |
291 | let mut high_part = self.nb_items; |
|
290 | let mut high_part = self.nb_items; | |
292 |
|
291 | |||
293 | while low_part < high_part { |
|
292 | while low_part < high_part { | |
294 | let cursor = (low_part + high_part - 1) / 2; |
|
293 | let cursor = (low_part + high_part - 1) / 2; | |
295 | let (flags, filename, _source) = self.entry(cursor); |
|
294 | let (flags, filename, _source) = self.entry(cursor); | |
296 | match path.cmp(filename) { |
|
295 | match path.cmp(filename) { | |
297 | Ordering::Less => low_part = cursor + 1, |
|
296 | Ordering::Less => low_part = cursor + 1, | |
298 | Ordering::Greater => high_part = cursor, |
|
297 | Ordering::Greater => high_part = cursor, | |
299 | Ordering::Equal => { |
|
298 | Ordering::Equal => { | |
300 | return match flags & ACTION_MASK { |
|
299 | return match flags & ACTION_MASK { | |
301 | MERGED => MergeCase::Merged, |
|
300 | MERGED => MergeCase::Merged, | |
302 | SALVAGED => MergeCase::Salvaged, |
|
301 | SALVAGED => MergeCase::Salvaged, | |
303 | _ => MergeCase::Normal, |
|
302 | _ => MergeCase::Normal, | |
304 | }; |
|
303 | }; | |
305 | } |
|
304 | } | |
306 | } |
|
305 | } | |
307 | } |
|
306 | } | |
308 | MergeCase::Normal |
|
307 | MergeCase::Normal | |
309 | } |
|
308 | } | |
310 | } |
|
309 | } | |
311 |
|
310 | |||
312 | struct ActionsIterator<'a> { |
|
311 | struct ActionsIterator<'a> { | |
313 | changes: &'a ChangedFiles<'a>, |
|
312 | changes: &'a ChangedFiles<'a>, | |
314 | current: u32, |
|
313 | current: u32, | |
315 | } |
|
314 | } | |
316 |
|
315 | |||
317 | impl<'a> Iterator for ActionsIterator<'a> { |
|
316 | impl<'a> Iterator for ActionsIterator<'a> { | |
318 | type Item = Action<'a>; |
|
317 | type Item = Action<'a>; | |
319 |
|
318 | |||
320 | fn next(&mut self) -> Option<Action<'a>> { |
|
319 | fn next(&mut self) -> Option<Action<'a>> { | |
321 | while self.current < self.changes.nb_items { |
|
320 | while self.current < self.changes.nb_items { | |
322 | let (flags, file, source) = self.changes.entry(self.current); |
|
321 | let (flags, file, source) = self.changes.entry(self.current); | |
323 | self.current += 1; |
|
322 | self.current += 1; | |
324 | if (flags & ACTION_MASK) == REMOVED { |
|
323 | if (flags & ACTION_MASK) == REMOVED { | |
325 | return Some(Action::Removed(file)); |
|
324 | return Some(Action::Removed(file)); | |
326 | } |
|
325 | } | |
327 | let copy = flags & COPY_MASK; |
|
326 | let copy = flags & COPY_MASK; | |
328 | if copy == P1_COPY { |
|
327 | if copy == P1_COPY { | |
329 | return Some(Action::CopiedFromP1(file, source)); |
|
328 | return Some(Action::CopiedFromP1(file, source)); | |
330 | } else if copy == P2_COPY { |
|
329 | } else if copy == P2_COPY { | |
331 | return Some(Action::CopiedFromP2(file, source)); |
|
330 | return Some(Action::CopiedFromP2(file, source)); | |
332 | } |
|
331 | } | |
333 | } |
|
332 | } | |
334 | return None; |
|
333 | return None; | |
335 | } |
|
334 | } | |
336 | } |
|
335 | } | |
337 |
|
336 | |||
338 | /// A small struct whose purpose is to ensure lifetime of bytes referenced in |
|
337 | /// A small struct whose purpose is to ensure lifetime of bytes referenced in | |
339 | /// ChangedFiles |
|
338 | /// ChangedFiles | |
340 | /// |
|
339 | /// | |
341 | /// It is passed to the RevInfoMaker callback who can assign any necessary |
|
340 | /// It is passed to the RevInfoMaker callback who can assign any necessary | |
342 | /// content to the `data` attribute. The copy tracing code is responsible for |
|
341 | /// content to the `data` attribute. The copy tracing code is responsible for | |
343 | /// keeping the DataHolder alive at least as long as the ChangedFiles object. |
|
342 | /// keeping the DataHolder alive at least as long as the ChangedFiles object. | |
344 | pub struct DataHolder<D> { |
|
343 | pub struct DataHolder<D> { | |
345 | /// RevInfoMaker callback should assign data referenced by the |
|
344 | /// RevInfoMaker callback should assign data referenced by the | |
346 | /// ChangedFiles struct it return to this attribute. The DataHolder |
|
345 | /// ChangedFiles struct it return to this attribute. The DataHolder | |
347 | /// lifetime will be at least as long as the ChangedFiles one. |
|
346 | /// lifetime will be at least as long as the ChangedFiles one. | |
348 | pub data: Option<D>, |
|
347 | pub data: Option<D>, | |
349 | } |
|
348 | } | |
350 |
|
349 | |||
351 | pub type RevInfoMaker<'a, D> = |
|
350 | pub type RevInfoMaker<'a, D> = | |
352 | Box<dyn for<'r> Fn(Revision, &'r mut DataHolder<D>) -> RevInfo<'r> + 'a>; |
|
351 | Box<dyn for<'r> Fn(Revision, &'r mut DataHolder<D>) -> RevInfo<'r> + 'a>; | |
353 |
|
352 | |||
354 | /// A small "tokenizer" responsible of turning full HgPath into lighter |
|
353 | /// A small "tokenizer" responsible of turning full HgPath into lighter | |
355 | /// PathToken |
|
354 | /// PathToken | |
356 | /// |
|
355 | /// | |
357 | /// Dealing with small object, like integer is much faster, so HgPath input are |
|
356 | /// Dealing with small object, like integer is much faster, so HgPath input are | |
358 | /// turned into integer "PathToken" and converted back in the end. |
|
357 | /// turned into integer "PathToken" and converted back in the end. | |
359 | #[derive(Clone, Debug, Default)] |
|
358 | #[derive(Clone, Debug, Default)] | |
360 | struct TwoWayPathMap { |
|
359 | struct TwoWayPathMap { | |
361 | token: HashMap<HgPathBuf, PathToken>, |
|
360 | token: HashMap<HgPathBuf, PathToken>, | |
362 | path: Vec<HgPathBuf>, |
|
361 | path: Vec<HgPathBuf>, | |
363 | } |
|
362 | } | |
364 |
|
363 | |||
365 | impl TwoWayPathMap { |
|
364 | impl TwoWayPathMap { | |
366 | fn tokenize(&mut self, path: &HgPath) -> PathToken { |
|
365 | fn tokenize(&mut self, path: &HgPath) -> PathToken { | |
367 | match self.token.get(path) { |
|
366 | match self.token.get(path) { | |
368 | Some(a) => *a, |
|
367 | Some(a) => *a, | |
369 | None => { |
|
368 | None => { | |
370 | let a = self.token.len(); |
|
369 | let a = self.token.len(); | |
371 | let buf = path.to_owned(); |
|
370 | let buf = path.to_owned(); | |
372 | self.path.push(buf.clone()); |
|
371 | self.path.push(buf.clone()); | |
373 | self.token.insert(buf, a); |
|
372 | self.token.insert(buf, a); | |
374 | a |
|
373 | a | |
375 | } |
|
374 | } | |
376 | } |
|
375 | } | |
377 | } |
|
376 | } | |
378 |
|
377 | |||
379 | fn untokenize(&self, token: PathToken) -> &HgPathBuf { |
|
378 | fn untokenize(&self, token: PathToken) -> &HgPathBuf { | |
380 | assert!(token < self.path.len(), format!("Unknown token: {}", token)); |
|
379 | assert!(token < self.path.len(), format!("Unknown token: {}", token)); | |
381 | &self.path[token] |
|
380 | &self.path[token] | |
382 | } |
|
381 | } | |
383 | } |
|
382 | } | |
384 |
|
383 | |||
385 | /// Same as mercurial.copies._combine_changeset_copies, but in Rust. |
|
384 | /// Same as mercurial.copies._combine_changeset_copies, but in Rust. | |
386 | /// |
|
385 | /// | |
387 | /// Arguments are: |
|
386 | /// Arguments are: | |
388 | /// |
|
387 | /// | |
389 | /// revs: all revisions to be considered |
|
388 | /// revs: all revisions to be considered | |
390 | /// children: a {parent ? [childrens]} mapping |
|
389 | /// children: a {parent ? [childrens]} mapping | |
391 | /// target_rev: the final revision we are combining copies to |
|
390 | /// target_rev: the final revision we are combining copies to | |
392 | /// rev_info(rev): callback to get revision information: |
|
391 | /// rev_info(rev): callback to get revision information: | |
393 | /// * first parent |
|
392 | /// * first parent | |
394 | /// * second parent |
|
393 | /// * second parent | |
395 | /// * ChangedFiles |
|
394 | /// * ChangedFiles | |
396 | /// isancestors(low_rev, high_rev): callback to check if a revision is an |
|
395 | /// isancestors(low_rev, high_rev): callback to check if a revision is an | |
397 | /// ancestor of another |
|
396 | /// ancestor of another | |
398 | pub fn combine_changeset_copies<D>( |
|
397 | pub fn combine_changeset_copies<D>( | |
399 | revs: Vec<Revision>, |
|
398 | revs: Vec<Revision>, | |
400 | mut children_count: HashMap<Revision, usize>, |
|
399 | mut children_count: HashMap<Revision, usize>, | |
401 | target_rev: Revision, |
|
400 | target_rev: Revision, | |
402 | rev_info: RevInfoMaker<D>, |
|
401 | rev_info: RevInfoMaker<D>, | |
403 | ) -> PathCopies { |
|
402 | ) -> PathCopies { | |
404 | let mut all_copies = HashMap::new(); |
|
403 | let mut all_copies = HashMap::new(); | |
405 |
|
404 | |||
406 | let mut path_map = TwoWayPathMap::default(); |
|
405 | let mut path_map = TwoWayPathMap::default(); | |
407 |
|
406 | |||
408 | for rev in revs { |
|
407 | for rev in revs { | |
409 | let mut d: DataHolder<D> = DataHolder { data: None }; |
|
408 | let mut d: DataHolder<D> = DataHolder { data: None }; | |
410 | let (p1, p2, changes) = rev_info(rev, &mut d); |
|
409 | let (p1, p2, changes) = rev_info(rev, &mut d); | |
411 |
|
410 | |||
412 | // We will chain the copies information accumulated for the parent with |
|
411 | // We will chain the copies information accumulated for the parent with | |
413 | // the individual copies information the curent revision. Creating a |
|
412 | // the individual copies information the curent revision. Creating a | |
414 | // new TimeStampedPath for each `rev` β `children` vertex. |
|
413 | // new TimeStampedPath for each `rev` β `children` vertex. | |
415 | // Retrieve data computed in a previous iteration |
|
414 | // Retrieve data computed in a previous iteration | |
416 | let p1_copies = match p1 { |
|
415 | let p1_copies = match p1 { | |
417 | NULL_REVISION => None, |
|
416 | NULL_REVISION => None, | |
418 | _ => get_and_clean_parent_copies( |
|
417 | _ => get_and_clean_parent_copies( | |
419 | &mut all_copies, |
|
418 | &mut all_copies, | |
420 | &mut children_count, |
|
419 | &mut children_count, | |
421 | p1, |
|
420 | p1, | |
422 | ), // will be None if the vertex is not to be traversed |
|
421 | ), // will be None if the vertex is not to be traversed | |
423 | }; |
|
422 | }; | |
424 | let p2_copies = match p2 { |
|
423 | let p2_copies = match p2 { | |
425 | NULL_REVISION => None, |
|
424 | NULL_REVISION => None, | |
426 | _ => get_and_clean_parent_copies( |
|
425 | _ => get_and_clean_parent_copies( | |
427 | &mut all_copies, |
|
426 | &mut all_copies, | |
428 | &mut children_count, |
|
427 | &mut children_count, | |
429 | p2, |
|
428 | p2, | |
430 | ), // will be None if the vertex is not to be traversed |
|
429 | ), // will be None if the vertex is not to be traversed | |
431 | }; |
|
430 | }; | |
432 | // combine it with data for that revision |
|
431 | // combine it with data for that revision | |
433 | let (p1_copies, p2_copies) = |
|
432 | let (p1_copies, p2_copies) = | |
434 | chain_changes(&mut path_map, p1_copies, p2_copies, &changes, rev); |
|
433 | chain_changes(&mut path_map, p1_copies, p2_copies, &changes, rev); | |
435 | let copies = match (p1_copies, p2_copies) { |
|
434 | let copies = match (p1_copies, p2_copies) { | |
436 | (None, None) => None, |
|
435 | (None, None) => None, | |
437 | (c, None) => c, |
|
436 | (c, None) => c, | |
438 | (None, c) => c, |
|
437 | (None, c) => c, | |
439 | (Some(p1_copies), Some(p2_copies)) => Some(merge_copies_dict( |
|
438 | (Some(p1_copies), Some(p2_copies)) => Some(merge_copies_dict( | |
440 | &path_map, rev, p2_copies, p1_copies, &changes, |
|
439 | &path_map, rev, p2_copies, p1_copies, &changes, | |
441 | )), |
|
440 | )), | |
442 | }; |
|
441 | }; | |
443 | if let Some(c) = copies { |
|
442 | if let Some(c) = copies { | |
444 | all_copies.insert(rev, c); |
|
443 | all_copies.insert(rev, c); | |
445 | } |
|
444 | } | |
446 | } |
|
445 | } | |
447 |
|
446 | |||
448 | // Drop internal information (like the timestamp) and return the final |
|
447 | // Drop internal information (like the timestamp) and return the final | |
449 | // mapping. |
|
448 | // mapping. | |
450 | let tt_result = all_copies |
|
449 | let tt_result = all_copies | |
451 | .remove(&target_rev) |
|
450 | .remove(&target_rev) | |
452 | .expect("target revision was not processed"); |
|
451 | .expect("target revision was not processed"); | |
453 | let mut result = PathCopies::default(); |
|
452 | let mut result = PathCopies::default(); | |
454 | for (dest, tt_source) in tt_result { |
|
453 | for (dest, tt_source) in tt_result { | |
455 | if let Some(path) = tt_source.path { |
|
454 | if let Some(path) = tt_source.path { | |
456 | let path_dest = path_map.untokenize(dest).to_owned(); |
|
455 | let path_dest = path_map.untokenize(dest).to_owned(); | |
457 | let path_path = path_map.untokenize(path).to_owned(); |
|
456 | let path_path = path_map.untokenize(path).to_owned(); | |
458 | result.insert(path_dest, path_path); |
|
457 | result.insert(path_dest, path_path); | |
459 | } |
|
458 | } | |
460 | } |
|
459 | } | |
461 | result |
|
460 | result | |
462 | } |
|
461 | } | |
463 |
|
462 | |||
464 | /// fetch previous computed information |
|
463 | /// fetch previous computed information | |
465 | /// |
|
464 | /// | |
466 | /// If no other children are expected to need this information, we drop it from |
|
465 | /// If no other children are expected to need this information, we drop it from | |
467 | /// the cache. |
|
466 | /// the cache. | |
468 | /// |
|
467 | /// | |
469 | /// If parent is not part of the set we are expected to walk, return None. |
|
468 | /// If parent is not part of the set we are expected to walk, return None. | |
470 | fn get_and_clean_parent_copies( |
|
469 | fn get_and_clean_parent_copies( | |
471 | all_copies: &mut HashMap<Revision, InternalPathCopies>, |
|
470 | all_copies: &mut HashMap<Revision, InternalPathCopies>, | |
472 | children_count: &mut HashMap<Revision, usize>, |
|
471 | children_count: &mut HashMap<Revision, usize>, | |
473 | parent_rev: Revision, |
|
472 | parent_rev: Revision, | |
474 | ) -> Option<InternalPathCopies> { |
|
473 | ) -> Option<InternalPathCopies> { | |
475 | let count = children_count.get_mut(&parent_rev)?; |
|
474 | let count = children_count.get_mut(&parent_rev)?; | |
476 | *count -= 1; |
|
475 | *count -= 1; | |
477 | if *count == 0 { |
|
476 | if *count == 0 { | |
478 | match all_copies.remove(&parent_rev) { |
|
477 | match all_copies.remove(&parent_rev) { | |
479 | Some(c) => Some(c), |
|
478 | Some(c) => Some(c), | |
480 | None => Some(InternalPathCopies::default()), |
|
479 | None => Some(InternalPathCopies::default()), | |
481 | } |
|
480 | } | |
482 | } else { |
|
481 | } else { | |
483 | match all_copies.get(&parent_rev) { |
|
482 | match all_copies.get(&parent_rev) { | |
484 | Some(c) => Some(c.clone()), |
|
483 | Some(c) => Some(c.clone()), | |
485 | None => Some(InternalPathCopies::default()), |
|
484 | None => Some(InternalPathCopies::default()), | |
486 | } |
|
485 | } | |
487 | } |
|
486 | } | |
488 | } |
|
487 | } | |
489 |
|
488 | |||
490 | /// Combine ChangedFiles with some existing PathCopies information and return |
|
489 | /// Combine ChangedFiles with some existing PathCopies information and return | |
491 | /// the result |
|
490 | /// the result | |
492 | fn chain_changes( |
|
491 | fn chain_changes( | |
493 | path_map: &mut TwoWayPathMap, |
|
492 | path_map: &mut TwoWayPathMap, | |
494 | base_p1_copies: Option<InternalPathCopies>, |
|
493 | base_p1_copies: Option<InternalPathCopies>, | |
495 | base_p2_copies: Option<InternalPathCopies>, |
|
494 | base_p2_copies: Option<InternalPathCopies>, | |
496 | changes: &ChangedFiles, |
|
495 | changes: &ChangedFiles, | |
497 | current_rev: Revision, |
|
496 | current_rev: Revision, | |
498 | ) -> (Option<InternalPathCopies>, Option<InternalPathCopies>) { |
|
497 | ) -> (Option<InternalPathCopies>, Option<InternalPathCopies>) { | |
499 | // Fast path the "nothing to do" case. |
|
498 | // Fast path the "nothing to do" case. | |
500 | if let (None, None) = (&base_p1_copies, &base_p2_copies) { |
|
499 | if let (None, None) = (&base_p1_copies, &base_p2_copies) { | |
501 | return (None, None); |
|
500 | return (None, None); | |
502 | } |
|
501 | } | |
503 |
|
502 | |||
504 | let mut p1_copies = base_p1_copies.clone(); |
|
503 | let mut p1_copies = base_p1_copies.clone(); | |
505 | let mut p2_copies = base_p2_copies.clone(); |
|
504 | let mut p2_copies = base_p2_copies.clone(); | |
506 | for action in changes.iter_actions() { |
|
505 | for action in changes.iter_actions() { | |
507 | match action { |
|
506 | match action { | |
508 | Action::CopiedFromP1(path_dest, path_source) => { |
|
507 | Action::CopiedFromP1(path_dest, path_source) => { | |
509 | match &mut p1_copies { |
|
508 | match &mut p1_copies { | |
510 | None => (), // This is not a vertex we should proceed. |
|
509 | None => (), // This is not a vertex we should proceed. | |
511 | Some(copies) => add_one_copy( |
|
510 | Some(copies) => add_one_copy( | |
512 | current_rev, |
|
511 | current_rev, | |
513 | path_map, |
|
512 | path_map, | |
514 | copies, |
|
513 | copies, | |
515 | base_p1_copies.as_ref().unwrap(), |
|
514 | base_p1_copies.as_ref().unwrap(), | |
516 | path_dest, |
|
515 | path_dest, | |
517 | path_source, |
|
516 | path_source, | |
518 | ), |
|
517 | ), | |
519 | } |
|
518 | } | |
520 | } |
|
519 | } | |
521 | Action::CopiedFromP2(path_dest, path_source) => { |
|
520 | Action::CopiedFromP2(path_dest, path_source) => { | |
522 | match &mut p2_copies { |
|
521 | match &mut p2_copies { | |
523 | None => (), // This is not a vertex we should proceed. |
|
522 | None => (), // This is not a vertex we should proceed. | |
524 | Some(copies) => add_one_copy( |
|
523 | Some(copies) => add_one_copy( | |
525 | current_rev, |
|
524 | current_rev, | |
526 | path_map, |
|
525 | path_map, | |
527 | copies, |
|
526 | copies, | |
528 | base_p2_copies.as_ref().unwrap(), |
|
527 | base_p2_copies.as_ref().unwrap(), | |
529 | path_dest, |
|
528 | path_dest, | |
530 | path_source, |
|
529 | path_source, | |
531 | ), |
|
530 | ), | |
532 | } |
|
531 | } | |
533 | } |
|
532 | } | |
534 | Action::Removed(deleted_path) => { |
|
533 | Action::Removed(deleted_path) => { | |
535 | // We must drop copy information for removed file. |
|
534 | // We must drop copy information for removed file. | |
536 | // |
|
535 | // | |
537 | // We need to explicitly record them as dropped to |
|
536 | // We need to explicitly record them as dropped to | |
538 | // propagate this information when merging two |
|
537 | // propagate this information when merging two | |
539 | // InternalPathCopies object. |
|
538 | // InternalPathCopies object. | |
540 | let deleted = path_map.tokenize(deleted_path); |
|
539 | let deleted = path_map.tokenize(deleted_path); | |
541 |
|
540 | |||
542 | let p1_entry = match &mut p1_copies { |
|
541 | let p1_entry = match &mut p1_copies { | |
543 | None => None, |
|
542 | None => None, | |
544 | Some(copies) => match copies.entry(deleted) { |
|
543 | Some(copies) => match copies.entry(deleted) { | |
545 | Entry::Occupied(e) => Some(e), |
|
544 | Entry::Occupied(e) => Some(e), | |
546 | Entry::Vacant(_) => None, |
|
545 | Entry::Vacant(_) => None, | |
547 | }, |
|
546 | }, | |
548 | }; |
|
547 | }; | |
549 | let p2_entry = match &mut p2_copies { |
|
548 | let p2_entry = match &mut p2_copies { | |
550 | None => None, |
|
549 | None => None, | |
551 | Some(copies) => match copies.entry(deleted) { |
|
550 | Some(copies) => match copies.entry(deleted) { | |
552 | Entry::Occupied(e) => Some(e), |
|
551 | Entry::Occupied(e) => Some(e), | |
553 | Entry::Vacant(_) => None, |
|
552 | Entry::Vacant(_) => None, | |
554 | }, |
|
553 | }, | |
555 | }; |
|
554 | }; | |
556 |
|
555 | |||
557 | match (p1_entry, p2_entry) { |
|
556 | match (p1_entry, p2_entry) { | |
558 | (None, None) => (), |
|
557 | (None, None) => (), | |
559 | (Some(mut e), None) => { |
|
558 | (Some(mut e), None) => { | |
560 | e.get_mut().mark_delete(current_rev) |
|
559 | e.get_mut().mark_delete(current_rev) | |
561 | } |
|
560 | } | |
562 | (None, Some(mut e)) => { |
|
561 | (None, Some(mut e)) => { | |
563 | e.get_mut().mark_delete(current_rev) |
|
562 | e.get_mut().mark_delete(current_rev) | |
564 | } |
|
563 | } | |
565 | (Some(mut e1), Some(mut e2)) => { |
|
564 | (Some(mut e1), Some(mut e2)) => { | |
566 | let cs1 = e1.get_mut(); |
|
565 | let cs1 = e1.get_mut(); | |
567 | let cs2 = e2.get(); |
|
566 | let cs2 = e2.get(); | |
568 | if cs1 == cs2 { |
|
567 | if cs1 == cs2 { | |
569 | cs1.mark_delete(current_rev); |
|
568 | cs1.mark_delete(current_rev); | |
570 | } else { |
|
569 | } else { | |
571 | cs1.mark_delete_with_pair(current_rev, &cs2); |
|
570 | cs1.mark_delete_with_pair(current_rev, &cs2); | |
572 | } |
|
571 | } | |
573 | e2.insert(cs1.clone()); |
|
572 | e2.insert(cs1.clone()); | |
574 | } |
|
573 | } | |
575 | } |
|
574 | } | |
576 | } |
|
575 | } | |
577 | } |
|
576 | } | |
578 | } |
|
577 | } | |
579 | (p1_copies, p2_copies) |
|
578 | (p1_copies, p2_copies) | |
580 | } |
|
579 | } | |
581 |
|
580 | |||
582 | // insert one new copy information in an InternalPathCopies |
|
581 | // insert one new copy information in an InternalPathCopies | |
583 | // |
|
582 | // | |
584 | // This deal with chaining and overwrite. |
|
583 | // This deal with chaining and overwrite. | |
585 | fn add_one_copy( |
|
584 | fn add_one_copy( | |
586 | current_rev: Revision, |
|
585 | current_rev: Revision, | |
587 | path_map: &mut TwoWayPathMap, |
|
586 | path_map: &mut TwoWayPathMap, | |
588 | copies: &mut InternalPathCopies, |
|
587 | copies: &mut InternalPathCopies, | |
589 | base_copies: &InternalPathCopies, |
|
588 | base_copies: &InternalPathCopies, | |
590 | path_dest: &HgPath, |
|
589 | path_dest: &HgPath, | |
591 | path_source: &HgPath, |
|
590 | path_source: &HgPath, | |
592 | ) { |
|
591 | ) { | |
593 | let dest = path_map.tokenize(path_dest); |
|
592 | let dest = path_map.tokenize(path_dest); | |
594 | let source = path_map.tokenize(path_source); |
|
593 | let source = path_map.tokenize(path_source); | |
595 | let entry; |
|
594 | let entry; | |
596 | if let Some(v) = base_copies.get(&source) { |
|
595 | if let Some(v) = base_copies.get(&source) { | |
597 | entry = match &v.path { |
|
596 | entry = match &v.path { | |
598 | Some(path) => Some((*(path)).to_owned()), |
|
597 | Some(path) => Some((*(path)).to_owned()), | |
599 | None => Some(source.to_owned()), |
|
598 | None => Some(source.to_owned()), | |
600 | } |
|
599 | } | |
601 | } else { |
|
600 | } else { | |
602 | entry = Some(source.to_owned()); |
|
601 | entry = Some(source.to_owned()); | |
603 | } |
|
602 | } | |
604 | // Each new entry is introduced by the children, we |
|
603 | // Each new entry is introduced by the children, we | |
605 | // record this information as we will need it to take |
|
604 | // record this information as we will need it to take | |
606 | // the right decision when merging conflicting copy |
|
605 | // the right decision when merging conflicting copy | |
607 | // information. See merge_copies_dict for details. |
|
606 | // information. See merge_copies_dict for details. | |
608 | match copies.entry(dest) { |
|
607 | match copies.entry(dest) { | |
609 | Entry::Vacant(slot) => { |
|
608 | Entry::Vacant(slot) => { | |
610 | let ttpc = CopySource::new(current_rev, entry); |
|
609 | let ttpc = CopySource::new(current_rev, entry); | |
611 | slot.insert(ttpc); |
|
610 | slot.insert(ttpc); | |
612 | } |
|
611 | } | |
613 | Entry::Occupied(mut slot) => { |
|
612 | Entry::Occupied(mut slot) => { | |
614 | let ttpc = slot.get_mut(); |
|
613 | let ttpc = slot.get_mut(); | |
615 | ttpc.overwrite(current_rev, entry); |
|
614 | ttpc.overwrite(current_rev, entry); | |
616 | } |
|
615 | } | |
617 | } |
|
616 | } | |
618 | } |
|
617 | } | |
619 |
|
618 | |||
620 | /// merge two copies-mapping together, minor and major |
|
619 | /// merge two copies-mapping together, minor and major | |
621 | /// |
|
620 | /// | |
622 | /// In case of conflict, value from "major" will be picked, unless in some |
|
621 | /// In case of conflict, value from "major" will be picked, unless in some | |
623 | /// cases. See inline documentation for details. |
|
622 | /// cases. See inline documentation for details. | |
624 | fn merge_copies_dict( |
|
623 | fn merge_copies_dict( | |
625 | path_map: &TwoWayPathMap, |
|
624 | path_map: &TwoWayPathMap, | |
626 | current_merge: Revision, |
|
625 | current_merge: Revision, | |
627 |
|
|
626 | minor: InternalPathCopies, | |
628 |
|
|
627 | major: InternalPathCopies, | |
629 | changes: &ChangedFiles, |
|
628 | changes: &ChangedFiles, | |
630 | ) -> InternalPathCopies { |
|
629 | ) -> InternalPathCopies { | |
631 | // This closure exist as temporary help while multiple developper are |
|
630 | use crate::utils::{ordmap_union_with_merge, MergeResult}; | |
632 | // actively working on this code. Feel free to re-inline it once this |
|
631 | ||
633 | // code is more settled. |
|
632 | ordmap_union_with_merge(minor, major, |dest, src_minor, src_major| { | |
634 | let cmp_value = |
|
633 | let (pick, overwrite) = compare_value( | |
635 | |dest: &PathToken, src_minor: &CopySource, src_major: &CopySource| { |
|
634 | path_map, | |
636 |
c |
|
635 | current_merge, | |
637 |
|
|
636 | changes, | |
|
637 | dest, | |||
|
638 | src_minor, | |||
|
639 | src_major, | |||
|
640 | ); | |||
|
641 | if overwrite { | |||
|
642 | let (winner, loser) = match pick { | |||
|
643 | MergePick::Major | MergePick::Any => (src_major, src_minor), | |||
|
644 | MergePick::Minor => (src_minor, src_major), | |||
|
645 | }; | |||
|
646 | MergeResult::UseNewValue(CopySource::new_from_merge( | |||
638 | current_merge, |
|
647 | current_merge, | |
639 |
|
|
648 | winner, | |
640 |
|
|
649 | loser, | |
641 |
|
|
650 | )) | |
642 | src_major, |
|
651 | } else { | |
643 |
|
|
652 | match pick { | |
644 | }; |
|
653 | MergePick::Any | MergePick::Major => { | |
645 | if minor.is_empty() { |
|
654 | MergeResult::UseRightValue | |
646 | major |
|
|||
647 | } else if major.is_empty() { |
|
|||
648 | minor |
|
|||
649 | } else if minor.len() * 2 < major.len() { |
|
|||
650 | // Lets says we are merging two InternalPathCopies instance A and B. |
|
|||
651 | // |
|
|||
652 | // If A contains N items, the merge result will never contains more |
|
|||
653 | // than N values differents than the one in A |
|
|||
654 | // |
|
|||
655 | // If B contains M items, with M > N, the merge result will always |
|
|||
656 | // result in a minimum of M - N value differents than the on in |
|
|||
657 | // A |
|
|||
658 | // |
|
|||
659 | // As a result, if N < (M-N), we know that simply iterating over A will |
|
|||
660 | // yield less difference than iterating over the difference |
|
|||
661 | // between A and B. |
|
|||
662 | // |
|
|||
663 | // This help performance a lot in case were a tiny |
|
|||
664 | // InternalPathCopies is merged with a much larger one. |
|
|||
665 | for (dest, src_minor) in minor { |
|
|||
666 | let src_major = major.get(&dest); |
|
|||
667 | match src_major { |
|
|||
668 | None => { |
|
|||
669 | major.insert(dest, src_minor); |
|
|||
670 | } |
|
|||
671 | Some(src_major) => { |
|
|||
672 | let (pick, overwrite) = |
|
|||
673 | cmp_value(&dest, &src_minor, src_major); |
|
|||
674 | if overwrite { |
|
|||
675 | let src = match pick { |
|
|||
676 | MergePick::Major => CopySource::new_from_merge( |
|
|||
677 | current_merge, |
|
|||
678 | src_major, |
|
|||
679 | &src_minor, |
|
|||
680 | ), |
|
|||
681 | MergePick::Minor => CopySource::new_from_merge( |
|
|||
682 | current_merge, |
|
|||
683 | &src_minor, |
|
|||
684 | src_major, |
|
|||
685 | ), |
|
|||
686 | MergePick::Any => CopySource::new_from_merge( |
|
|||
687 | current_merge, |
|
|||
688 | src_major, |
|
|||
689 | &src_minor, |
|
|||
690 | ), |
|
|||
691 | }; |
|
|||
692 | major.insert(dest, src); |
|
|||
693 | } else { |
|
|||
694 | match pick { |
|
|||
695 | MergePick::Any | MergePick::Major => None, |
|
|||
696 | MergePick::Minor => major.insert(dest, src_minor), |
|
|||
697 | }; |
|
|||
698 | } |
|
|||
699 | } |
|
|||
700 | }; |
|
|||
701 | } |
|
|||
702 | major |
|
|||
703 | } else if major.len() * 2 < minor.len() { |
|
|||
704 | // This use the same rational than the previous block. |
|
|||
705 | // (Check previous block documentation for details.) |
|
|||
706 | for (dest, src_major) in major { |
|
|||
707 | let src_minor = minor.get(&dest); |
|
|||
708 | match src_minor { |
|
|||
709 | None => { |
|
|||
710 | minor.insert(dest, src_major); |
|
|||
711 | } |
|
655 | } | |
712 | Some(src_minor) => { |
|
656 | MergePick::Minor => MergeResult::UseLeftValue, | |
713 | let (pick, overwrite) = |
|
|||
714 | cmp_value(&dest, src_minor, &src_major); |
|
|||
715 | if overwrite { |
|
|||
716 | let src = match pick { |
|
|||
717 | MergePick::Major => CopySource::new_from_merge( |
|
|||
718 | current_merge, |
|
|||
719 | &src_major, |
|
|||
720 | src_minor, |
|
|||
721 | ), |
|
|||
722 | MergePick::Minor => CopySource::new_from_merge( |
|
|||
723 | current_merge, |
|
|||
724 | src_minor, |
|
|||
725 | &src_major, |
|
|||
726 | ), |
|
|||
727 | MergePick::Any => CopySource::new_from_merge( |
|
|||
728 | current_merge, |
|
|||
729 | &src_major, |
|
|||
730 | src_minor, |
|
|||
731 | ), |
|
|||
732 | }; |
|
|||
733 | minor.insert(dest, src); |
|
|||
734 | } else { |
|
|||
735 | match pick { |
|
|||
736 | MergePick::Any | MergePick::Minor => None, |
|
|||
737 | MergePick::Major => minor.insert(dest, src_major), |
|
|||
738 | }; |
|
|||
739 | } |
|
|||
740 | } |
|
|||
741 | }; |
|
|||
742 | } |
|
|||
743 | minor |
|
|||
744 | } else { |
|
|||
745 | let mut override_minor = Vec::new(); |
|
|||
746 | let mut override_major = Vec::new(); |
|
|||
747 |
|
||||
748 | let mut to_major = |k: &PathToken, v: &CopySource| { |
|
|||
749 | override_major.push((k.clone(), v.clone())) |
|
|||
750 | }; |
|
|||
751 | let mut to_minor = |k: &PathToken, v: &CopySource| { |
|
|||
752 | override_minor.push((k.clone(), v.clone())) |
|
|||
753 | }; |
|
|||
754 |
|
||||
755 | // The diff function leverage detection of the identical subpart if |
|
|||
756 | // minor and major has some common ancestors. This make it very |
|
|||
757 | // fast is most case. |
|
|||
758 | // |
|
|||
759 | // In case where the two map are vastly different in size, the current |
|
|||
760 | // approach is still slowish because the iteration will iterate over |
|
|||
761 | // all the "exclusive" content of the larger on. This situation can be |
|
|||
762 | // frequent when the subgraph of revision we are processing has a lot |
|
|||
763 | // of roots. Each roots adding they own fully new map to the mix (and |
|
|||
764 | // likely a small map, if the path from the root to the "main path" is |
|
|||
765 | // small. |
|
|||
766 | // |
|
|||
767 | // We could do better by detecting such situation and processing them |
|
|||
768 | // differently. |
|
|||
769 | for d in minor.diff(&major) { |
|
|||
770 | match d { |
|
|||
771 | DiffItem::Add(k, v) => to_minor(k, v), |
|
|||
772 | DiffItem::Remove(k, v) => to_major(k, v), |
|
|||
773 | DiffItem::Update { old, new } => { |
|
|||
774 | let (dest, src_major) = new; |
|
|||
775 | let (_, src_minor) = old; |
|
|||
776 | let (pick, overwrite) = |
|
|||
777 | cmp_value(dest, src_minor, src_major); |
|
|||
778 | if overwrite { |
|
|||
779 | let src = match pick { |
|
|||
780 | MergePick::Major => CopySource::new_from_merge( |
|
|||
781 | current_merge, |
|
|||
782 | src_major, |
|
|||
783 | src_minor, |
|
|||
784 | ), |
|
|||
785 | MergePick::Minor => CopySource::new_from_merge( |
|
|||
786 | current_merge, |
|
|||
787 | src_minor, |
|
|||
788 | src_major, |
|
|||
789 | ), |
|
|||
790 | MergePick::Any => CopySource::new_from_merge( |
|
|||
791 | current_merge, |
|
|||
792 | src_major, |
|
|||
793 | src_minor, |
|
|||
794 | ), |
|
|||
795 | }; |
|
|||
796 | to_minor(dest, &src); |
|
|||
797 | to_major(dest, &src); |
|
|||
798 | } else { |
|
|||
799 | match pick { |
|
|||
800 | MergePick::Major => to_minor(dest, src_major), |
|
|||
801 | MergePick::Minor => to_major(dest, src_minor), |
|
|||
802 | // If the two entry are identical, no need to do |
|
|||
803 | // anything (but diff should not have yield them) |
|
|||
804 | MergePick::Any => unreachable!(), |
|
|||
805 | } |
|
|||
806 | } |
|
|||
807 | } |
|
|||
808 | }; |
|
|||
809 | } |
|
|||
810 |
|
||||
811 | let updates; |
|
|||
812 | let mut result; |
|
|||
813 | if override_major.is_empty() { |
|
|||
814 | result = major |
|
|||
815 | } else if override_minor.is_empty() { |
|
|||
816 | result = minor |
|
|||
817 | } else { |
|
|||
818 | if override_minor.len() < override_major.len() { |
|
|||
819 | updates = override_minor; |
|
|||
820 | result = minor; |
|
|||
821 | } else { |
|
|||
822 | updates = override_major; |
|
|||
823 | result = major; |
|
|||
824 | } |
|
|||
825 | for (k, v) in updates { |
|
|||
826 | result.insert(k, v); |
|
|||
827 | } |
|
657 | } | |
828 | } |
|
658 | } | |
829 | result |
|
659 | }) | |
830 | } |
|
|||
831 | } |
|
660 | } | |
832 |
|
661 | |||
833 | /// represent the side that should prevail when merging two |
|
662 | /// represent the side that should prevail when merging two | |
834 | /// InternalPathCopies |
|
663 | /// InternalPathCopies | |
835 | enum MergePick { |
|
664 | enum MergePick { | |
836 | /// The "major" (p1) side prevails |
|
665 | /// The "major" (p1) side prevails | |
837 | Major, |
|
666 | Major, | |
838 | /// The "minor" (p2) side prevails |
|
667 | /// The "minor" (p2) side prevails | |
839 | Minor, |
|
668 | Minor, | |
840 | /// Any side could be used (because they are the same) |
|
669 | /// Any side could be used (because they are the same) | |
841 | Any, |
|
670 | Any, | |
842 | } |
|
671 | } | |
843 |
|
672 | |||
844 | /// decide which side prevails in case of conflicting values |
|
673 | /// decide which side prevails in case of conflicting values | |
845 | #[allow(clippy::if_same_then_else)] |
|
674 | #[allow(clippy::if_same_then_else)] | |
846 | fn compare_value( |
|
675 | fn compare_value( | |
847 | path_map: &TwoWayPathMap, |
|
676 | path_map: &TwoWayPathMap, | |
848 | current_merge: Revision, |
|
677 | current_merge: Revision, | |
849 | changes: &ChangedFiles, |
|
678 | changes: &ChangedFiles, | |
850 | dest: &PathToken, |
|
679 | dest: &PathToken, | |
851 | src_minor: &CopySource, |
|
680 | src_minor: &CopySource, | |
852 | src_major: &CopySource, |
|
681 | src_major: &CopySource, | |
853 | ) -> (MergePick, bool) { |
|
682 | ) -> (MergePick, bool) { | |
854 | if src_major == src_minor { |
|
683 | if src_major == src_minor { | |
855 | (MergePick::Any, false) |
|
684 | (MergePick::Any, false) | |
856 | } else if src_major.rev == current_merge { |
|
685 | } else if src_major.rev == current_merge { | |
857 | // minor is different according to per minor == major check earlier |
|
686 | // minor is different according to per minor == major check earlier | |
858 | debug_assert!(src_minor.rev != current_merge); |
|
687 | debug_assert!(src_minor.rev != current_merge); | |
859 |
|
688 | |||
860 | // The last value comes the current merge, this value -will- win |
|
689 | // The last value comes the current merge, this value -will- win | |
861 | // eventually. |
|
690 | // eventually. | |
862 | (MergePick::Major, true) |
|
691 | (MergePick::Major, true) | |
863 | } else if src_minor.rev == current_merge { |
|
692 | } else if src_minor.rev == current_merge { | |
864 | // The last value comes the current merge, this value -will- win |
|
693 | // The last value comes the current merge, this value -will- win | |
865 | // eventually. |
|
694 | // eventually. | |
866 | (MergePick::Minor, true) |
|
695 | (MergePick::Minor, true) | |
867 | } else if src_major.path == src_minor.path { |
|
696 | } else if src_major.path == src_minor.path { | |
868 | debug_assert!(src_major.rev != src_major.rev); |
|
697 | debug_assert!(src_major.rev != src_major.rev); | |
869 | // we have the same value, but from other source; |
|
698 | // we have the same value, but from other source; | |
870 | if src_major.is_overwritten_by(src_minor) { |
|
699 | if src_major.is_overwritten_by(src_minor) { | |
871 | (MergePick::Minor, false) |
|
700 | (MergePick::Minor, false) | |
872 | } else if src_minor.is_overwritten_by(src_major) { |
|
701 | } else if src_minor.is_overwritten_by(src_major) { | |
873 | (MergePick::Major, false) |
|
702 | (MergePick::Major, false) | |
874 | } else { |
|
703 | } else { | |
875 | (MergePick::Any, true) |
|
704 | (MergePick::Any, true) | |
876 | } |
|
705 | } | |
877 | } else { |
|
706 | } else { | |
878 | debug_assert!(src_major.rev != src_major.rev); |
|
707 | debug_assert!(src_major.rev != src_major.rev); | |
879 | let dest_path = path_map.untokenize(*dest); |
|
708 | let dest_path = path_map.untokenize(*dest); | |
880 | let action = changes.get_merge_case(dest_path); |
|
709 | let action = changes.get_merge_case(dest_path); | |
881 | if src_minor.path.is_some() |
|
710 | if src_minor.path.is_some() | |
882 | && src_major.path.is_none() |
|
711 | && src_major.path.is_none() | |
883 | && action == MergeCase::Salvaged |
|
712 | && action == MergeCase::Salvaged | |
884 | { |
|
713 | { | |
885 | // If the file is "deleted" in the major side but was |
|
714 | // If the file is "deleted" in the major side but was | |
886 | // salvaged by the merge, we keep the minor side alive |
|
715 | // salvaged by the merge, we keep the minor side alive | |
887 | (MergePick::Minor, true) |
|
716 | (MergePick::Minor, true) | |
888 | } else if src_major.path.is_some() |
|
717 | } else if src_major.path.is_some() | |
889 | && src_minor.path.is_none() |
|
718 | && src_minor.path.is_none() | |
890 | && action == MergeCase::Salvaged |
|
719 | && action == MergeCase::Salvaged | |
891 | { |
|
720 | { | |
892 | // If the file is "deleted" in the minor side but was |
|
721 | // If the file is "deleted" in the minor side but was | |
893 | // salvaged by the merge, unconditionnaly preserve the |
|
722 | // salvaged by the merge, unconditionnaly preserve the | |
894 | // major side. |
|
723 | // major side. | |
895 | (MergePick::Major, true) |
|
724 | (MergePick::Major, true) | |
896 | } else if src_minor.is_overwritten_by(src_major) { |
|
725 | } else if src_minor.is_overwritten_by(src_major) { | |
897 | // The information from the minor version are strictly older than |
|
726 | // The information from the minor version are strictly older than | |
898 | // the major version |
|
727 | // the major version | |
899 | if action == MergeCase::Merged { |
|
728 | if action == MergeCase::Merged { | |
900 | // If the file was actively merged, its means some non-copy |
|
729 | // If the file was actively merged, its means some non-copy | |
901 | // activity happened on the other branch. It |
|
730 | // activity happened on the other branch. It | |
902 | // mean the older copy information are still relevant. |
|
731 | // mean the older copy information are still relevant. | |
903 | // |
|
732 | // | |
904 | // The major side wins such conflict. |
|
733 | // The major side wins such conflict. | |
905 | (MergePick::Major, true) |
|
734 | (MergePick::Major, true) | |
906 | } else { |
|
735 | } else { | |
907 | // No activity on the minor branch, pick the newer one. |
|
736 | // No activity on the minor branch, pick the newer one. | |
908 | (MergePick::Major, false) |
|
737 | (MergePick::Major, false) | |
909 | } |
|
738 | } | |
910 | } else if src_major.is_overwritten_by(src_minor) { |
|
739 | } else if src_major.is_overwritten_by(src_minor) { | |
911 | if action == MergeCase::Merged { |
|
740 | if action == MergeCase::Merged { | |
912 | // If the file was actively merged, its means some non-copy |
|
741 | // If the file was actively merged, its means some non-copy | |
913 | // activity happened on the other branch. It |
|
742 | // activity happened on the other branch. It | |
914 | // mean the older copy information are still relevant. |
|
743 | // mean the older copy information are still relevant. | |
915 | // |
|
744 | // | |
916 | // The major side wins such conflict. |
|
745 | // The major side wins such conflict. | |
917 | (MergePick::Major, true) |
|
746 | (MergePick::Major, true) | |
918 | } else { |
|
747 | } else { | |
919 | // No activity on the minor branch, pick the newer one. |
|
748 | // No activity on the minor branch, pick the newer one. | |
920 | (MergePick::Minor, false) |
|
749 | (MergePick::Minor, false) | |
921 | } |
|
750 | } | |
922 | } else if src_minor.path.is_none() { |
|
751 | } else if src_minor.path.is_none() { | |
923 | // the minor side has no relevant information, pick the alive one |
|
752 | // the minor side has no relevant information, pick the alive one | |
924 | (MergePick::Major, true) |
|
753 | (MergePick::Major, true) | |
925 | } else if src_major.path.is_none() { |
|
754 | } else if src_major.path.is_none() { | |
926 | // the major side has no relevant information, pick the alive one |
|
755 | // the major side has no relevant information, pick the alive one | |
927 | (MergePick::Minor, true) |
|
756 | (MergePick::Minor, true) | |
928 | } else { |
|
757 | } else { | |
929 | // by default the major side wins |
|
758 | // by default the major side wins | |
930 | (MergePick::Major, true) |
|
759 | (MergePick::Major, true) | |
931 | } |
|
760 | } | |
932 | } |
|
761 | } | |
933 | } |
|
762 | } |
@@ -1,201 +1,351 b'' | |||||
1 | // utils module |
|
1 | // utils module | |
2 | // |
|
2 | // | |
3 | // Copyright 2019 Raphaël Gomès <rgomes@octobus.net> |
|
3 | // Copyright 2019 Raphaël Gomès <rgomes@octobus.net> | |
4 | // |
|
4 | // | |
5 | // This software may be used and distributed according to the terms of the |
|
5 | // This software may be used and distributed according to the terms of the | |
6 | // GNU General Public License version 2 or any later version. |
|
6 | // GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | //! Contains useful functions, traits, structs, etc. for use in core. |
|
8 | //! Contains useful functions, traits, structs, etc. for use in core. | |
9 |
|
9 | |||
10 | use crate::errors::{HgError, IoErrorContext}; |
|
10 | use crate::errors::{HgError, IoErrorContext}; | |
11 | use crate::utils::hg_path::HgPath; |
|
11 | use crate::utils::hg_path::HgPath; | |
|
12 | use im_rc::ordmap::DiffItem; | |||
|
13 | use im_rc::ordmap::OrdMap; | |||
12 | use std::{io::Write, ops::Deref}; |
|
14 | use std::{io::Write, ops::Deref}; | |
13 |
|
15 | |||
14 | pub mod files; |
|
16 | pub mod files; | |
15 | pub mod hg_path; |
|
17 | pub mod hg_path; | |
16 | pub mod path_auditor; |
|
18 | pub mod path_auditor; | |
17 |
|
19 | |||
18 | /// Useful until rust/issues/56345 is stable |
|
20 | /// Useful until rust/issues/56345 is stable | |
19 | /// |
|
21 | /// | |
20 | /// # Examples |
|
22 | /// # Examples | |
21 | /// |
|
23 | /// | |
22 | /// ``` |
|
24 | /// ``` | |
23 | /// use crate::hg::utils::find_slice_in_slice; |
|
25 | /// use crate::hg::utils::find_slice_in_slice; | |
24 | /// |
|
26 | /// | |
25 | /// let haystack = b"This is the haystack".to_vec(); |
|
27 | /// let haystack = b"This is the haystack".to_vec(); | |
26 | /// assert_eq!(find_slice_in_slice(&haystack, b"the"), Some(8)); |
|
28 | /// assert_eq!(find_slice_in_slice(&haystack, b"the"), Some(8)); | |
27 | /// assert_eq!(find_slice_in_slice(&haystack, b"not here"), None); |
|
29 | /// assert_eq!(find_slice_in_slice(&haystack, b"not here"), None); | |
28 | /// ``` |
|
30 | /// ``` | |
29 | pub fn find_slice_in_slice<T>(slice: &[T], needle: &[T]) -> Option<usize> |
|
31 | pub fn find_slice_in_slice<T>(slice: &[T], needle: &[T]) -> Option<usize> | |
30 | where |
|
32 | where | |
31 | for<'a> &'a [T]: PartialEq, |
|
33 | for<'a> &'a [T]: PartialEq, | |
32 | { |
|
34 | { | |
33 | slice |
|
35 | slice | |
34 | .windows(needle.len()) |
|
36 | .windows(needle.len()) | |
35 | .position(|window| window == needle) |
|
37 | .position(|window| window == needle) | |
36 | } |
|
38 | } | |
37 |
|
39 | |||
38 | /// Replaces the `from` slice with the `to` slice inside the `buf` slice. |
|
40 | /// Replaces the `from` slice with the `to` slice inside the `buf` slice. | |
39 | /// |
|
41 | /// | |
40 | /// # Examples |
|
42 | /// # Examples | |
41 | /// |
|
43 | /// | |
42 | /// ``` |
|
44 | /// ``` | |
43 | /// use crate::hg::utils::replace_slice; |
|
45 | /// use crate::hg::utils::replace_slice; | |
44 | /// let mut line = b"I hate writing tests!".to_vec(); |
|
46 | /// let mut line = b"I hate writing tests!".to_vec(); | |
45 | /// replace_slice(&mut line, b"hate", b"love"); |
|
47 | /// replace_slice(&mut line, b"hate", b"love"); | |
46 | /// assert_eq!( |
|
48 | /// assert_eq!( | |
47 | /// line, |
|
49 | /// line, | |
48 | /// b"I love writing tests!".to_vec() |
|
50 | /// b"I love writing tests!".to_vec() | |
49 | /// ); |
|
51 | /// ); | |
50 | /// ``` |
|
52 | /// ``` | |
51 | pub fn replace_slice<T>(buf: &mut [T], from: &[T], to: &[T]) |
|
53 | pub fn replace_slice<T>(buf: &mut [T], from: &[T], to: &[T]) | |
52 | where |
|
54 | where | |
53 | T: Clone + PartialEq, |
|
55 | T: Clone + PartialEq, | |
54 | { |
|
56 | { | |
55 | if buf.len() < from.len() || from.len() != to.len() { |
|
57 | if buf.len() < from.len() || from.len() != to.len() { | |
56 | return; |
|
58 | return; | |
57 | } |
|
59 | } | |
58 | for i in 0..=buf.len() - from.len() { |
|
60 | for i in 0..=buf.len() - from.len() { | |
59 | if buf[i..].starts_with(from) { |
|
61 | if buf[i..].starts_with(from) { | |
60 | buf[i..(i + from.len())].clone_from_slice(to); |
|
62 | buf[i..(i + from.len())].clone_from_slice(to); | |
61 | } |
|
63 | } | |
62 | } |
|
64 | } | |
63 | } |
|
65 | } | |
64 |
|
66 | |||
65 | pub trait SliceExt { |
|
67 | pub trait SliceExt { | |
66 | fn trim_end(&self) -> &Self; |
|
68 | fn trim_end(&self) -> &Self; | |
67 | fn trim_start(&self) -> &Self; |
|
69 | fn trim_start(&self) -> &Self; | |
68 | fn trim(&self) -> &Self; |
|
70 | fn trim(&self) -> &Self; | |
69 | fn drop_prefix(&self, needle: &Self) -> Option<&Self>; |
|
71 | fn drop_prefix(&self, needle: &Self) -> Option<&Self>; | |
70 | fn split_2(&self, separator: u8) -> Option<(&[u8], &[u8])>; |
|
72 | fn split_2(&self, separator: u8) -> Option<(&[u8], &[u8])>; | |
71 | } |
|
73 | } | |
72 |
|
74 | |||
73 | #[allow(clippy::trivially_copy_pass_by_ref)] |
|
75 | #[allow(clippy::trivially_copy_pass_by_ref)] | |
74 | fn is_not_whitespace(c: &u8) -> bool { |
|
76 | fn is_not_whitespace(c: &u8) -> bool { | |
75 | !(*c as char).is_whitespace() |
|
77 | !(*c as char).is_whitespace() | |
76 | } |
|
78 | } | |
77 |
|
79 | |||
78 | impl SliceExt for [u8] { |
|
80 | impl SliceExt for [u8] { | |
79 | fn trim_end(&self) -> &[u8] { |
|
81 | fn trim_end(&self) -> &[u8] { | |
80 | if let Some(last) = self.iter().rposition(is_not_whitespace) { |
|
82 | if let Some(last) = self.iter().rposition(is_not_whitespace) { | |
81 | &self[..=last] |
|
83 | &self[..=last] | |
82 | } else { |
|
84 | } else { | |
83 | &[] |
|
85 | &[] | |
84 | } |
|
86 | } | |
85 | } |
|
87 | } | |
86 | fn trim_start(&self) -> &[u8] { |
|
88 | fn trim_start(&self) -> &[u8] { | |
87 | if let Some(first) = self.iter().position(is_not_whitespace) { |
|
89 | if let Some(first) = self.iter().position(is_not_whitespace) { | |
88 | &self[first..] |
|
90 | &self[first..] | |
89 | } else { |
|
91 | } else { | |
90 | &[] |
|
92 | &[] | |
91 | } |
|
93 | } | |
92 | } |
|
94 | } | |
93 |
|
95 | |||
94 | /// ``` |
|
96 | /// ``` | |
95 | /// use hg::utils::SliceExt; |
|
97 | /// use hg::utils::SliceExt; | |
96 | /// assert_eq!( |
|
98 | /// assert_eq!( | |
97 | /// b" to trim ".trim(), |
|
99 | /// b" to trim ".trim(), | |
98 | /// b"to trim" |
|
100 | /// b"to trim" | |
99 | /// ); |
|
101 | /// ); | |
100 | /// assert_eq!( |
|
102 | /// assert_eq!( | |
101 | /// b"to trim ".trim(), |
|
103 | /// b"to trim ".trim(), | |
102 | /// b"to trim" |
|
104 | /// b"to trim" | |
103 | /// ); |
|
105 | /// ); | |
104 | /// assert_eq!( |
|
106 | /// assert_eq!( | |
105 | /// b" to trim".trim(), |
|
107 | /// b" to trim".trim(), | |
106 | /// b"to trim" |
|
108 | /// b"to trim" | |
107 | /// ); |
|
109 | /// ); | |
108 | /// ``` |
|
110 | /// ``` | |
109 | fn trim(&self) -> &[u8] { |
|
111 | fn trim(&self) -> &[u8] { | |
110 | self.trim_start().trim_end() |
|
112 | self.trim_start().trim_end() | |
111 | } |
|
113 | } | |
112 |
|
114 | |||
113 | fn drop_prefix(&self, needle: &Self) -> Option<&Self> { |
|
115 | fn drop_prefix(&self, needle: &Self) -> Option<&Self> { | |
114 | if self.starts_with(needle) { |
|
116 | if self.starts_with(needle) { | |
115 | Some(&self[needle.len()..]) |
|
117 | Some(&self[needle.len()..]) | |
116 | } else { |
|
118 | } else { | |
117 | None |
|
119 | None | |
118 | } |
|
120 | } | |
119 | } |
|
121 | } | |
120 |
|
122 | |||
121 | fn split_2(&self, separator: u8) -> Option<(&[u8], &[u8])> { |
|
123 | fn split_2(&self, separator: u8) -> Option<(&[u8], &[u8])> { | |
122 | let mut iter = self.splitn(2, |&byte| byte == separator); |
|
124 | let mut iter = self.splitn(2, |&byte| byte == separator); | |
123 | let a = iter.next()?; |
|
125 | let a = iter.next()?; | |
124 | let b = iter.next()?; |
|
126 | let b = iter.next()?; | |
125 | Some((a, b)) |
|
127 | Some((a, b)) | |
126 | } |
|
128 | } | |
127 | } |
|
129 | } | |
128 |
|
130 | |||
129 | pub trait Escaped { |
|
131 | pub trait Escaped { | |
130 | /// Return bytes escaped for display to the user |
|
132 | /// Return bytes escaped for display to the user | |
131 | fn escaped_bytes(&self) -> Vec<u8>; |
|
133 | fn escaped_bytes(&self) -> Vec<u8>; | |
132 | } |
|
134 | } | |
133 |
|
135 | |||
134 | impl Escaped for u8 { |
|
136 | impl Escaped for u8 { | |
135 | fn escaped_bytes(&self) -> Vec<u8> { |
|
137 | fn escaped_bytes(&self) -> Vec<u8> { | |
136 | let mut acc = vec![]; |
|
138 | let mut acc = vec![]; | |
137 | match self { |
|
139 | match self { | |
138 | c @ b'\'' | c @ b'\\' => { |
|
140 | c @ b'\'' | c @ b'\\' => { | |
139 | acc.push(b'\\'); |
|
141 | acc.push(b'\\'); | |
140 | acc.push(*c); |
|
142 | acc.push(*c); | |
141 | } |
|
143 | } | |
142 | b'\t' => { |
|
144 | b'\t' => { | |
143 | acc.extend(br"\\t"); |
|
145 | acc.extend(br"\\t"); | |
144 | } |
|
146 | } | |
145 | b'\n' => { |
|
147 | b'\n' => { | |
146 | acc.extend(br"\\n"); |
|
148 | acc.extend(br"\\n"); | |
147 | } |
|
149 | } | |
148 | b'\r' => { |
|
150 | b'\r' => { | |
149 | acc.extend(br"\\r"); |
|
151 | acc.extend(br"\\r"); | |
150 | } |
|
152 | } | |
151 | c if (*c < b' ' || *c >= 127) => { |
|
153 | c if (*c < b' ' || *c >= 127) => { | |
152 | write!(acc, "\\x{:x}", self).unwrap(); |
|
154 | write!(acc, "\\x{:x}", self).unwrap(); | |
153 | } |
|
155 | } | |
154 | c => { |
|
156 | c => { | |
155 | acc.push(*c); |
|
157 | acc.push(*c); | |
156 | } |
|
158 | } | |
157 | } |
|
159 | } | |
158 | acc |
|
160 | acc | |
159 | } |
|
161 | } | |
160 | } |
|
162 | } | |
161 |
|
163 | |||
162 | impl<'a, T: Escaped> Escaped for &'a [T] { |
|
164 | impl<'a, T: Escaped> Escaped for &'a [T] { | |
163 | fn escaped_bytes(&self) -> Vec<u8> { |
|
165 | fn escaped_bytes(&self) -> Vec<u8> { | |
164 | self.iter().flat_map(Escaped::escaped_bytes).collect() |
|
166 | self.iter().flat_map(Escaped::escaped_bytes).collect() | |
165 | } |
|
167 | } | |
166 | } |
|
168 | } | |
167 |
|
169 | |||
168 | impl<T: Escaped> Escaped for Vec<T> { |
|
170 | impl<T: Escaped> Escaped for Vec<T> { | |
169 | fn escaped_bytes(&self) -> Vec<u8> { |
|
171 | fn escaped_bytes(&self) -> Vec<u8> { | |
170 | self.deref().escaped_bytes() |
|
172 | self.deref().escaped_bytes() | |
171 | } |
|
173 | } | |
172 | } |
|
174 | } | |
173 |
|
175 | |||
174 | impl<'a> Escaped for &'a HgPath { |
|
176 | impl<'a> Escaped for &'a HgPath { | |
175 | fn escaped_bytes(&self) -> Vec<u8> { |
|
177 | fn escaped_bytes(&self) -> Vec<u8> { | |
176 | self.as_bytes().escaped_bytes() |
|
178 | self.as_bytes().escaped_bytes() | |
177 | } |
|
179 | } | |
178 | } |
|
180 | } | |
179 |
|
181 | |||
180 | // TODO: use the str method when we require Rust 1.45 |
|
182 | // TODO: use the str method when we require Rust 1.45 | |
181 | pub(crate) fn strip_suffix<'a>(s: &'a str, suffix: &str) -> Option<&'a str> { |
|
183 | pub(crate) fn strip_suffix<'a>(s: &'a str, suffix: &str) -> Option<&'a str> { | |
182 | if s.ends_with(suffix) { |
|
184 | if s.ends_with(suffix) { | |
183 | Some(&s[..s.len() - suffix.len()]) |
|
185 | Some(&s[..s.len() - suffix.len()]) | |
184 | } else { |
|
186 | } else { | |
185 | None |
|
187 | None | |
186 | } |
|
188 | } | |
187 | } |
|
189 | } | |
188 |
|
190 | |||
189 | pub fn current_dir() -> Result<std::path::PathBuf, HgError> { |
|
191 | pub fn current_dir() -> Result<std::path::PathBuf, HgError> { | |
190 | std::env::current_dir().map_err(|error| HgError::IoError { |
|
192 | std::env::current_dir().map_err(|error| HgError::IoError { | |
191 | error, |
|
193 | error, | |
192 | context: IoErrorContext::CurrentDir, |
|
194 | context: IoErrorContext::CurrentDir, | |
193 | }) |
|
195 | }) | |
194 | } |
|
196 | } | |
195 |
|
197 | |||
196 | pub fn current_exe() -> Result<std::path::PathBuf, HgError> { |
|
198 | pub fn current_exe() -> Result<std::path::PathBuf, HgError> { | |
197 | std::env::current_exe().map_err(|error| HgError::IoError { |
|
199 | std::env::current_exe().map_err(|error| HgError::IoError { | |
198 | error, |
|
200 | error, | |
199 | context: IoErrorContext::CurrentExe, |
|
201 | context: IoErrorContext::CurrentExe, | |
200 | }) |
|
202 | }) | |
201 | } |
|
203 | } | |
|
204 | ||||
|
205 | pub(crate) enum MergeResult<V> { | |||
|
206 | UseLeftValue, | |||
|
207 | UseRightValue, | |||
|
208 | UseNewValue(V), | |||
|
209 | } | |||
|
210 | ||||
|
211 | /// Return the union of the two given maps, | |||
|
212 | /// calling `merge(key, left_value, right_value)` to resolve keys that exist in | |||
|
213 | /// both. | |||
|
214 | /// | |||
|
215 | /// CC https://github.com/bodil/im-rs/issues/166 | |||
|
216 | pub(crate) fn ordmap_union_with_merge<K, V>( | |||
|
217 | left: OrdMap<K, V>, | |||
|
218 | right: OrdMap<K, V>, | |||
|
219 | mut merge: impl FnMut(&K, &V, &V) -> MergeResult<V>, | |||
|
220 | ) -> OrdMap<K, V> | |||
|
221 | where | |||
|
222 | K: Clone + Ord, | |||
|
223 | V: Clone + PartialEq, | |||
|
224 | { | |||
|
225 | if left.ptr_eq(&right) { | |||
|
226 | // One of the two maps is an unmodified clone of the other | |||
|
227 | left | |||
|
228 | } else if left.len() / 2 > right.len() { | |||
|
229 | // When two maps have different sizes, | |||
|
230 | // their size difference is a lower bound on | |||
|
231 | // how many keys of the larger map are not also in the smaller map. | |||
|
232 | // This in turn is a lower bound on the number of differences in | |||
|
233 | // `OrdMap::diff` and the "amount of work" that would be done | |||
|
234 | // by `ordmap_union_with_merge_by_diff`. | |||
|
235 | // | |||
|
236 | // Here `left` is more than twice the size of `right`, | |||
|
237 | // so the number of differences is more than the total size of | |||
|
238 | // `right`. Therefore an algorithm based on iterating `right` | |||
|
239 | // is more efficient. | |||
|
240 | // | |||
|
241 | // This helps a lot when a tiny (or empty) map is merged | |||
|
242 | // with a large one. | |||
|
243 | ordmap_union_with_merge_by_iter(left, right, merge) | |||
|
244 | } else if left.len() < right.len() / 2 { | |||
|
245 | // Same as above but with `left` and `right` swapped | |||
|
246 | ordmap_union_with_merge_by_iter(right, left, |key, a, b| { | |||
|
247 | // Also swapped in `merge` arguments: | |||
|
248 | match merge(key, b, a) { | |||
|
249 | MergeResult::UseNewValue(v) => MergeResult::UseNewValue(v), | |||
|
250 | // β¦ and swap back in `merge` result: | |||
|
251 | MergeResult::UseLeftValue => MergeResult::UseRightValue, | |||
|
252 | MergeResult::UseRightValue => MergeResult::UseLeftValue, | |||
|
253 | } | |||
|
254 | }) | |||
|
255 | } else { | |||
|
256 | // For maps of similar size, use the algorithm based on `OrdMap::diff` | |||
|
257 | ordmap_union_with_merge_by_diff(left, right, merge) | |||
|
258 | } | |||
|
259 | } | |||
|
260 | ||||
|
261 | /// Efficient if `right` is much smaller than `left` | |||
|
262 | fn ordmap_union_with_merge_by_iter<K, V>( | |||
|
263 | mut left: OrdMap<K, V>, | |||
|
264 | right: OrdMap<K, V>, | |||
|
265 | mut merge: impl FnMut(&K, &V, &V) -> MergeResult<V>, | |||
|
266 | ) -> OrdMap<K, V> | |||
|
267 | where | |||
|
268 | K: Clone + Ord, | |||
|
269 | V: Clone, | |||
|
270 | { | |||
|
271 | for (key, right_value) in right { | |||
|
272 | match left.get(&key) { | |||
|
273 | None => { | |||
|
274 | left.insert(key, right_value); | |||
|
275 | } | |||
|
276 | Some(left_value) => match merge(&key, left_value, &right_value) { | |||
|
277 | MergeResult::UseLeftValue => {} | |||
|
278 | MergeResult::UseRightValue => { | |||
|
279 | left.insert(key, right_value); | |||
|
280 | } | |||
|
281 | MergeResult::UseNewValue(new_value) => { | |||
|
282 | left.insert(key, new_value); | |||
|
283 | } | |||
|
284 | }, | |||
|
285 | } | |||
|
286 | } | |||
|
287 | left | |||
|
288 | } | |||
|
289 | ||||
|
290 | /// Fallback when both maps are of similar size | |||
|
291 | fn ordmap_union_with_merge_by_diff<K, V>( | |||
|
292 | mut left: OrdMap<K, V>, | |||
|
293 | mut right: OrdMap<K, V>, | |||
|
294 | mut merge: impl FnMut(&K, &V, &V) -> MergeResult<V>, | |||
|
295 | ) -> OrdMap<K, V> | |||
|
296 | where | |||
|
297 | K: Clone + Ord, | |||
|
298 | V: Clone + PartialEq, | |||
|
299 | { | |||
|
300 | // (key, value) pairs that would need to be inserted in either map | |||
|
301 | // in order to turn it into the union. | |||
|
302 | // | |||
|
303 | // TODO: if/when https://github.com/bodil/im-rs/pull/168 is accepted, | |||
|
304 | // change these from `Vec<(K, V)>` to `Vec<(&K, Cow<V>)>` | |||
|
305 | // with `left_updates` only borrowing from `right` and `right_updates` from | |||
|
306 | // `left`, and with `Cow::Owned` used for `MergeResult::UseNewValue`. | |||
|
307 | // | |||
|
308 | // This would allow moving all `.clone()` calls to after weβve decided | |||
|
309 | // which of `right_updates` or `left_updates` to use | |||
|
310 | // (value ones becoming `Cow::into_owned`), | |||
|
311 | // and avoid making clones we donβt end up using. | |||
|
312 | let mut left_updates = Vec::new(); | |||
|
313 | let mut right_updates = Vec::new(); | |||
|
314 | ||||
|
315 | for difference in left.diff(&right) { | |||
|
316 | match difference { | |||
|
317 | DiffItem::Add(key, value) => { | |||
|
318 | left_updates.push((key.clone(), value.clone())) | |||
|
319 | } | |||
|
320 | DiffItem::Remove(key, value) => { | |||
|
321 | right_updates.push((key.clone(), value.clone())) | |||
|
322 | } | |||
|
323 | DiffItem::Update { | |||
|
324 | old: (key, left_value), | |||
|
325 | new: (_, right_value), | |||
|
326 | } => match merge(key, left_value, right_value) { | |||
|
327 | MergeResult::UseLeftValue => { | |||
|
328 | right_updates.push((key.clone(), left_value.clone())) | |||
|
329 | } | |||
|
330 | MergeResult::UseRightValue => { | |||
|
331 | left_updates.push((key.clone(), right_value.clone())) | |||
|
332 | } | |||
|
333 | MergeResult::UseNewValue(new_value) => { | |||
|
334 | left_updates.push((key.clone(), new_value.clone())); | |||
|
335 | right_updates.push((key.clone(), new_value)) | |||
|
336 | } | |||
|
337 | }, | |||
|
338 | } | |||
|
339 | } | |||
|
340 | if left_updates.len() < right_updates.len() { | |||
|
341 | for (key, value) in left_updates { | |||
|
342 | left.insert(key, value); | |||
|
343 | } | |||
|
344 | left | |||
|
345 | } else { | |||
|
346 | for (key, value) in right_updates { | |||
|
347 | right.insert(key, value); | |||
|
348 | } | |||
|
349 | right | |||
|
350 | } | |||
|
351 | } |
General Comments 0
You need to be logged in to leave comments.
Login now