comparison mercurial/dicthelpers.py @ 18820:a45e44d76c81

mercurial: implement diff and join for dicts Given two dicts, diff returns a dict containing all the keys that are present in one dict but not the other, or whose values are different between the dicts. The values are pairs of the values from the dicts, with missing values being represented as an optional argument, defaulting to None. Given two dicts, join performs what is known as an outer join in relational database land: it returns a dict containing all the keys across both dicts. The values are pairs as above, except they aren't compared to see if they're the same.
author Siddharth Agarwal <sid0@fb.com>
date Mon, 25 Mar 2013 17:40:39 -0700
parents
children 860d36b763ae
comparison
equal deleted inserted replaced
18819:05acdf8e1f23 18820:a45e44d76c81
1 # dicthelpers.py - helper routines for Python dicts
2 #
3 # Copyright 2013 Facebook
4 #
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.
7
8 def _diffjoin(d1, d2, default, compare):
9 res = {}
10 if d1 is d2 and compare:
11 # same dict, so diff is empty
12 return res
13
14 for k1, v1 in d1.iteritems():
15 if k1 in d2:
16 v2 = d2[k1]
17 if not compare or v1 != v2:
18 res[k1] = (v1, v2)
19 else:
20 res[k1] = (v1, default)
21
22 if d1 is d2:
23 return res
24
25 for k2 in d2:
26 if k2 not in d1:
27 res[k2] = (default, d2[k2])
28
29 return res
30
31 def diff(d1, d2, default=None):
32 return _diffjoin(d1, d2, default, True)
33
34 def join(d1, d2, default=None):
35 return _diffjoin(d1, d2, default, False)