aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumPacketKey.java
blob: a3b5a6f57b687cc62589d7b4016a41aecee12e5d (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.fastsearch;

import com.yahoo.document.GlobalId;


/**
 * Key for each entry in the packet cache.
 *
 * @author Mathias Mølster Lidal
 */
public class DocsumPacketKey {

    private GlobalId globalId;
    private int partid;
    private String summaryClass;

    private static boolean strEquals(String a, String b) {
        if (a == null || b == null) {
            return (a == null && b == null);
        }
        return a.equals(b);
    }

    private static int strHashCode(String s) {
        if (s == null) {
            return 0;
        }
        return s.hashCode();
    }

    public DocsumPacketKey(GlobalId globalId, int partid, String summaryClass) {
        this.globalId = globalId;
        this.partid = partid;
        this.summaryClass = summaryClass;
    }

    public GlobalId getGlobalId() {
        return globalId;
    }

    public int getPartid() {
        return partid;
    }

    @Override
    public boolean equals(Object o) {
        if (o instanceof DocsumPacketKey) {
            DocsumPacketKey other = (DocsumPacketKey) o;

            if (globalId.equals(other.getGlobalId())
                    && partid == other.getPartid()
                    && strEquals(summaryClass, other.summaryClass))
            {
                return true;
            }
        }
        return false;
    }

    @Override
    public int hashCode() {
        return globalId.hashCode() + 10 * partid + strHashCode(summaryClass);
    }

}