Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 912343c890c61121f98cca7dc7401b5da7e3ef79 (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
/*******************************************************************************
 * Copyright (c) 2014 Ericsson
 *
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v1.0 which
 * accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Vincent Perot - Initial API and implementation
 *******************************************************************************/

package org.eclipse.linuxtools.internal.pcap.core.protocol.ethernet2;

import java.util.Arrays;

import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.linuxtools.internal.pcap.core.endpoint.ProtocolEndpoint;
import org.eclipse.linuxtools.internal.pcap.core.util.ConversionHelper;

/**
 * Class that extends the {@link ProtocolEndpoint} class. It represents the
 * endpoint at an Ethernet II level.
 *
 * @author Vincent Perot
 */
public class EthernetIIEndpoint extends ProtocolEndpoint {

    private final byte[] fMacAddress;

    /**
     * Constructor of the {@link EthernetIIEndpoint} class. It takes a packet to
     * get its endpoint. Since every packet has two endpoints (source and
     * destination), the isSourceEndpoint parameter is used to specify which
     * endpoint to take.
     *
     * @param packet
     *            The packet that contains the endpoints.
     * @param isSourceEndpoint
     *            Whether to take the source or the destination endpoint of the
     *            packet.
     */
    public EthernetIIEndpoint(EthernetIIPacket packet, boolean isSourceEndpoint) {
        super(packet, isSourceEndpoint);
        fMacAddress = isSourceEndpoint ? packet.getSourceMacAddress() : packet.getDestinationMacAddress();
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        ProtocolEndpoint endpoint = getParentEndpoint();
        if (endpoint == null) {
            result = 0;
        } else {
            result = endpoint.hashCode();
        }
        result = prime * result + Arrays.hashCode(fMacAddress);
        return result;
    }

    @Override
    public boolean equals(@Nullable Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof EthernetIIEndpoint)) {
            return false;
        }

        EthernetIIEndpoint other = (EthernetIIEndpoint) obj;

        // Check on layer
        boolean localEquals = Arrays.equals(fMacAddress, other.fMacAddress);
        if (!localEquals) {
            return false;
        }

        // Check above layers.
        ProtocolEndpoint endpoint = getParentEndpoint();
        if (endpoint != null) {
            return endpoint.equals(other.getParentEndpoint());
        }
        return true;
    }

    @Override
    public String toString() {
        ProtocolEndpoint endpoint = getParentEndpoint();
        if (endpoint == null) {
            return ConversionHelper.toMacAddress(fMacAddress);
        }
        return (endpoint.toString().equals(EMPTY_STRING) ?
                ConversionHelper.toMacAddress(fMacAddress) :
                endpoint.toString() + '/' + ConversionHelper.toMacAddress(fMacAddress));

    }
}

Back to the top