0b6bffb54e2e65442683294a9e83ed23ffa412e3
[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     /**
36      * Create a new unqualified QName.
37      *
38      * @param localName The local name of this unqualified QName
39      * @return An UnqualifiedQName instance
40      * @throws NullPointerException if localName is null
41      * @throws IllegalArgumentException if localName is not a valid YANG identifier
42      */
43     public static UnqualifiedQName of(final String localName) {
44         return new UnqualifiedQName(checkLocalName(localName));
45     }
46
47     /**
48      * Read an UnqualifiedQName from a DataInput. The format is expected to match the output format of
49      * {@link #writeTo(DataOutput)}.
50      *
51      * @param in DataInput to read
52      * @return An UnqualifiedQName instance
53      * @throws IOException if I/O error occurs
54      */
55     public static UnqualifiedQName readFrom(final DataInput in) throws IOException {
56         return of(in.readUTF());
57     }
58
59     @Override
60     @SuppressFBWarnings(value = "ES_COMPARING_STRINGS_WITH_EQ", justification = "Interning identity check")
61     public UnqualifiedQName intern() {
62         // Make sure to intern the string and check whether it refers to the same name as we are
63         final String name = getLocalName();
64         final String internedName = name.intern();
65         final UnqualifiedQName template = internedName == name ? this : new UnqualifiedQName(internedName);
66         return INTERNER.intern(template);
67     }
68
69     @Override
70     @SuppressWarnings("checkstyle:parameterName")
71     public int compareTo(final UnqualifiedQName o) {
72         return getLocalName().compareTo(o.getLocalName());
73     }
74
75     @Override
76     public void writeTo(final DataOutput out) throws IOException {
77         out.writeUTF(getLocalName());
78     }
79
80     @Override
81     public int hashCode() {
82         return getLocalName().hashCode();
83     }
84
85     @Override
86     public boolean equals(final @Nullable Object obj) {
87         return this == obj || obj instanceof UnqualifiedQName
88                 && getLocalName().equals(((AbstractQName) obj).getLocalName());
89     }
90
91     @Override
92     public String toString() {
93         return MoreObjects.toStringHelper(this).add("localName", getLocalName()).toString();
94     }
95
96     @Override
97     Object writeReplace() {
98         return new UQNv1(this);
99     }
100 }