rinoux
3 years ago
2 changed files with 77 additions and 11 deletions
@ -0,0 +1,51 @@ |
|||||||
|
package com.fr.design.data; |
||||||
|
|
||||||
|
import java.util.LinkedHashMap; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author rinoux |
||||||
|
* @version 10.0 |
||||||
|
* Created by rinoux on 2022/3/28 |
||||||
|
*/ |
||||||
|
public final class MapCompareUtils { |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 对比两个map 查找出相比orig,other中有哪些是新增的、删除的或者被修改的,并分别进行处理 |
||||||
|
* |
||||||
|
* @param orig 原始map |
||||||
|
* @param other 参考的新map |
||||||
|
* @param eventHandler 有区别时的事件处理器 |
||||||
|
* @param <K> K |
||||||
|
* @param <V> V |
||||||
|
*/ |
||||||
|
public static <K, V> void contrastMapEntries(Map<K, V> orig, Map<K, V> other, EventHandler<K, V> eventHandler) { |
||||||
|
|
||||||
|
Map<K, V> copiedOrig = new LinkedHashMap<>(orig); |
||||||
|
|
||||||
|
other.forEach((k, v) -> { |
||||||
|
V existedV = copiedOrig.remove(k); |
||||||
|
if (existedV != null) { |
||||||
|
if (!v.equals(existedV)) { |
||||||
|
eventHandler.on(EntryEventKind.UPDATED, k, v); |
||||||
|
} |
||||||
|
} else { |
||||||
|
eventHandler.on(EntryEventKind.ADDED, k, v); |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
copiedOrig.forEach((k, v) -> eventHandler.on(EntryEventKind.REMOVED, k, v)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public interface EventHandler<K, V> { |
||||||
|
void on(EntryEventKind entryEventKind, K k, V v); |
||||||
|
} |
||||||
|
|
||||||
|
public enum EntryEventKind { |
||||||
|
ADDED, |
||||||
|
REMOVED, |
||||||
|
UPDATED; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue