6d0bc42b0efbf5bbff17d00929291c3bddfcf3e3
[yangtools.git] / yang / yang-common / src / main / java / org / opendaylight / yangtools / yang / common / UnqualifiedQName.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.common;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.base.MoreObjects;
12 import com.google.common.collect.Interner;
13 import com.google.common.collect.Interners;
14 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
15 import java.io.DataInput;
16 import java.io.DataOutput;
17 import java.io.IOException;
18 import org.eclipse.jdt.annotation.NonNullByDefault;
19 import org.eclipse.jdt.annotation.Nullable;
20
21 /**
22  * An unresolved, unqualified {@link QName}. It is guaranteed to hold a valid {@link #getLocalName()}, in the default
23  * namespace, which is not resolved. A resolved {@link QName} can be constructed through {@link #bindTo(QNameModule)}.
24  */
25 @Beta
26 @NonNullByDefault
27 public final class UnqualifiedQName extends AbstractQName implements Comparable<UnqualifiedQName> {
28     private static final long serialVersionUID = 1L;
29     private static final Interner<UnqualifiedQName> INTERNER = Interners.newWeakInterner();
30
31     private UnqualifiedQName(final String localName) {
32         super(localName);
33     }
34
35     public static UnqualifiedQName of(final String localName) {
36         return new UnqualifiedQName(checkLocalName(localName));
37     }
38
39     /**
40      * Read an UnboundQName from a DataInput. The format is expected to match the output format of
41      * {@link #writeTo(DataOutput)}.
42      *
43      * @param in DataInput to read
44      * @return An UnboundQName instance
45      * @throws IOException if I/O error occurs
46      */
47     public static UnqualifiedQName readFrom(final DataInput in) throws IOException {
48         return of(in.readUTF());
49     }
50
51     @Override
52     @SuppressFBWarnings(value = "ES_COMPARING_STRINGS_WITH_EQ", justification = "Interning identity check")
53     public UnqualifiedQName intern() {
54         // Make sure to intern the string and check whether it refers to the same name as we are
55         final String name = getLocalName();
56         final String internedName = name.intern();
57         final UnqualifiedQName template = internedName == name ? this : new UnqualifiedQName(internedName);
58         return INTERNER.intern(template);
59     }
60
61     @Override
62     @SuppressWarnings("checkstyle:parameterName")
63     public int compareTo(final UnqualifiedQName o) {
64         return getLocalName().compareTo(o.getLocalName());
65     }
66
67     @Override
68     public void writeTo(final DataOutput out) throws IOException {
69         out.writeUTF(getLocalName());
70     }
71
72     @Override
73     public int hashCode() {
74         return getLocalName().hashCode();
75     }
76
77     @Override
78     public boolean equals(final @Nullable Object obj) {
79         return this == obj || obj instanceof UnqualifiedQName
80                 && getLocalName().equals(((AbstractQName) obj).getLocalName());
81     }
82
83     @Override
84     public String toString() {
85         return MoreObjects.toStringHelper(this).add("localName", getLocalName()).toString();
86     }
87
88     @Override
89     Object writeReplace() {
90         return new UQNv1(this);
91     }
92 }