aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/viatra-runtime/src/main/java/tools/refinery/viatra/runtime/matchers/util/MapBackedMemoryView.java
blob: 3be078bdad4f3f872fe68907342caf8c8802e677 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*******************************************************************************
 * Copyright (c) 2010-2018, Gabor Bergmann, IncQuery Labs Ltd.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-v20.html.
 * 
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package tools.refinery.viatra.runtime.matchers.util;

import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.function.BiConsumer;

/**
 * Wraps a Map<T, Integer> (mapping elements to non-zero multiplicities) into an {@link IMemoryView}.
 * 
 * @author Gabor Bergmann
 * @since 2.0
 */
public class MapBackedMemoryView<T> implements IMemoryView<T> {

    private Map<T, Integer> wrapped;

    /**
     * @param wrapped an equivalent map from contained objects to multiplicities
     */
    protected MapBackedMemoryView(Map<T, Integer> wrapped) {
        super();
        this.wrapped = wrapped;
    }

    @Override
    public Iterator<T> iterator() {
        return wrapped.keySet().iterator();
    }

    @Override
    public int getCount(T value) {
        return getCountUnsafe(value);
    }

    @Override
    public int getCountUnsafe(Object value) {
        Integer count = wrapped.get(value);
        return count == null ? 0 : count;
    }

    @Override
    public boolean containsNonZero(T value) {
        return wrapped.containsKey(value);
    }

    @Override
    public boolean containsNonZeroUnsafe(Object value) {
        return wrapped.containsKey(value);
    }

    @Override
    public int size() {
        return wrapped.size();
    }

    @Override
    public boolean isEmpty() {
        return wrapped.isEmpty();
    }

    @Override
    public Set<T> distinctValues() {
        return wrapped.keySet();
    }
    
    
    @Override
    public void forEachEntryWithMultiplicities(BiConsumer<T, Integer> entryConsumer) {
        for (Entry<T, Integer> entry : wrapped.entrySet()) {
            entryConsumer.accept(entry.getKey(), entry.getValue());
        }
    }
    
    @Override
    public Iterable<Entry<T, Integer>> entriesWithMultiplicities() {
        return wrapped.entrySet();
    }
    
    @Override
    public int hashCode() {
        return IMemoryView.hashCode(this);
    }
    @Override
    public boolean equals(Object obj) {
        return IMemoryView.equals(this, obj);
    }
    
    @Override
    public String toString() {
        return wrapped.toString();
    }
}