aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/viatra-runtime/src/main/java/tools/refinery/viatra/runtime/matchers/util/SingletonMemoryView.java
blob: b303f9adf282bec4251d242ba154860d2727f7a4 (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
103
104
105
/*******************************************************************************
 * 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.Collections;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Set;

/**
 * An immutable memory view that consists of a single non-null element with multiplicity 1.
 * @author Gabor Bergmann
 * @since 2.0
 */
public final class SingletonMemoryView<Value> implements IMemoryView<Value> {

    private Value wrapped;
    private static final int ONE_HASH = Integer.valueOf(1).hashCode();

    public SingletonMemoryView(Value value) {
        this.wrapped = value;
    }

    @Override
    public Iterator<Value> iterator() {
        return new Iterator<Value>() {
            boolean hasNext = true;
            
            @Override
            public boolean hasNext() {
                return hasNext;
            }

            @Override
            public Value next() {
                if (hasNext) {
                    hasNext = false;
                    return wrapped;
                } else throw new NoSuchElementException();
            }
        };
    }

    @Override
    public int getCount(Value value) {
        return wrapped.equals(value) ? 1 : 0;
    }

    @Override
    public int getCountUnsafe(Object value) {
        return wrapped.equals(value) ? 1 : 0;
    }

    @Override
    public boolean containsNonZero(Value value) {
        return wrapped.equals(value);
    }

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

    @Override
    public int size() {
        return 1;
    }

    @Override
    public boolean isEmpty() {
        return false;
    }

    @Override
    public Set<Value> distinctValues() {
        return Collections.singleton(wrapped);
    }
    
    @Override
    public boolean equals(Object obj) {
        if (obj instanceof IMemoryView<?>) {
            IMemoryView<?> other = (IMemoryView<?>) obj;
            if (1 != other.size()) return false;
            if (1 != other.getCountUnsafe(wrapped)) return false;
            return true;
        }
        return false;
    }
    
    @Override
    public int hashCode() {
        return wrapped.hashCode() ^ ONE_HASH;
    }

    @Override
    public String toString() {
        return "{" + wrapped + "}";
    }
}