Skip to content

Commit 403453a

Browse files
committed
Fix struct-in-map diffing
1 parent f5c05cf commit 403453a

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

Cargo.toml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "serde-diff"
33
version = "0.4.1"
4-
authors = ["Karl Bergström <[email protected]>", "Philip Degarmo <[email protected]>"]
4+
authors = [
5+
"Karl Bergström <[email protected]>",
6+
"Philip Degarmo <[email protected]>",
7+
]
58
readme = "README.md"
69
exclude = ["examples/*"]
710
license = "Apache-2.0 OR MIT"
@@ -17,10 +20,11 @@ maintenance = { status = "experimental" }
1720

1821
[dependencies]
1922
serde-diff-derive = { version = "0.4.0", path = "serde-diff-derive" }
20-
serde = { version = "1", features = [ "derive" ] }
21-
serde_derive = { version = "1", features = ["deserialize_in_place"]}
23+
serde = { version = "1", features = ["derive"] }
24+
serde_derive = { version = "1", features = ["deserialize_in_place"] }
2225

2326
[dev-dependencies]
2427
serde_json = "1.0"
2528
bincode = "1.2"
2629
rmp-serde = "0.15.0"
30+
maplit = "1.0.2"

src/difference.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub struct DiffContext<'a, S: SerializeSeq> {
2727
/// Mode for serializing field paths
2828
field_path_mode: FieldPathMode,
2929
/// Set to true if any change is detected
30-
has_changes: bool,
30+
has_changes: &'a mut bool,
3131
}
3232

3333
impl<'a, S: SerializeSeq> Drop for DiffContext<'a, S> {
@@ -52,7 +52,7 @@ impl<'a, S: SerializeSeq> DiffContext<'a, S> {
5252

5353
/// True if a change operation has been written
5454
pub fn has_changes(&self) -> bool {
55-
self.has_changes
55+
*self.has_changes
5656
}
5757

5858
/// Called when we visit a field. If the structure is recursive (i.e. struct within struct,
@@ -186,7 +186,7 @@ impl<'a, S: SerializeSeq> DiffContext<'a, S> {
186186
}
187187
self.element_stack_start = 0;
188188
}
189-
self.has_changes |= is_change;
189+
*self.has_changes |= is_change;
190190
self.implicit_exit_written = implicit_exit;
191191
self.serializer.serialize_element(value)
192192
}
@@ -225,7 +225,7 @@ impl<'a, S: SerializeSeq> DiffContext<'a, S> {
225225
serializer: &mut *self.serializer,
226226
implicit_exit_written: self.implicit_exit_written,
227227
field_path_mode: self.field_path_mode,
228-
has_changes: false,
228+
has_changes: self.has_changes,
229229
}
230230
}
231231
}
@@ -294,7 +294,7 @@ impl<'a, 'b, T: SerdeDiff> Serialize for Diff<'a, 'b, T> {
294294
implicit_exit_written: false,
295295
parent_element_stack: None,
296296
field_path_mode: self.field_path_mode,
297-
has_changes: false,
297+
has_changes: &mut false,
298298
};
299299
self.old.diff(&mut ctx, &self.new).unwrap();
300300
}
@@ -314,13 +314,13 @@ impl<'a, 'b, T: SerdeDiff> Serialize for Diff<'a, 'b, T> {
314314
implicit_exit_written: false,
315315
parent_element_stack: None,
316316
field_path_mode: self.field_path_mode,
317-
has_changes: false,
317+
has_changes: &mut false,
318318
};
319319

320320
// Do the actual comparison, writing diff commands (see DiffCommandRef, DiffCommandValue)
321321
// into the sequence
322322
self.old.diff(&mut ctx, &self.new)?;
323-
self.has_changes.set(ctx.has_changes);
323+
self.has_changes.set(*ctx.has_changes);
324324
}
325325

326326
// End the sequence on the serializer

src/implementation.rs

+4-9
Original file line numberDiff line numberDiff line change
@@ -172,25 +172,23 @@ macro_rules! map_serde_diff {
172172
if <V as SerdeDiff>::diff(self_value, &mut subctx, other_value)? {
173173
changed = true;
174174
}
175+
subctx.pop_path_element()?;
175176
},
176177
None => {
177-
ctx.save_command(&DiffCommandRef::RemoveKey(key), true, true)?;
178+
ctx.save_command(&DiffCommandRef::RemoveKey(key), false, true)?;
178179
changed = true;
179180
},
180181
}
181182
}
182183

183184
for (key, other_value) in other.iter() {
184185
if !self.contains_key(key) {
185-
ctx.save_command(&DiffCommandRef::AddKey(key), true, true)?;
186-
ctx.save_command(&DiffCommandRef::Value(other_value), true, true)?;
186+
ctx.save_command(&DiffCommandRef::AddKey(key), false, true)?;
187+
ctx.save_command(&DiffCommandRef::Value(other_value), false, true)?;
187188
changed = true;
188189
}
189190
}
190191

191-
if changed {
192-
ctx.save_command::<()>(&DiffCommandRef::Exit, true, false)?;
193-
}
194192
Ok(changed)
195193
}
196194

@@ -268,9 +266,6 @@ macro_rules! set_serde_diff {
268266
}
269267
}
270268

271-
if changed {
272-
ctx.save_command::<()>(&DiffCommandRef::Exit, true, false)?;
273-
}
274269
Ok(changed)
275270
}
276271

0 commit comments

Comments
 (0)