swim.uri.UriFragment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swim-uri Show documentation
Show all versions of swim-uri Show documentation
Uploads all artifacts belonging to configuration ':swim-uri:archives'
// Copyright 2015-2019 SWIM.AI inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package swim.uri;
import swim.codec.Debug;
import swim.codec.Display;
import swim.codec.Format;
import swim.codec.Output;
import swim.util.HashGenCacheMap;
public class UriFragment implements Comparable, Debug, Display {
protected final String identifier;
String string;
protected UriFragment(String identifier) {
this.identifier = identifier;
}
public final boolean isDefined() {
return this.identifier != null;
}
public String identifier() {
return this.identifier;
}
@Override
public final int compareTo(UriFragment that) {
return toString().compareTo(that.toString());
}
@Override
public boolean equals(Object other) {
if (this == other) {
return true;
} else if (other instanceof UriFragment) {
final UriFragment that = (UriFragment) other;
return this.identifier == null ? that.identifier == null : this.identifier.equals(that.identifier);
}
return false;
}
@Override
public int hashCode() {
return this.identifier == null ? 0 : this.identifier.hashCode();
}
@Override
public void debug(Output> output) {
output = output.write("UriFragment").write('.');
if (isDefined()) {
output = output.write("parse").write('(').write('"').display(this).write('"').write(')');
} else {
output = output.write("undefined").write('(').write(')');
}
}
@Override
public void display(Output> output) {
if (this.string != null) {
output = output.write(this.string);
} else if (this.identifier != null) {
Uri.writeFragment(this.identifier, output);
}
}
@Override
public String toString() {
if (this.string == null) {
this.string = Format.display(this);
}
return this.string;
}
private static UriFragment undefined;
private static HashGenCacheMap cache;
public static UriFragment undefined() {
if (undefined == null) {
undefined = new UriFragment(null);
}
return undefined;
}
public static UriFragment from(String identifier) {
if (identifier != null) {
final HashGenCacheMap cache = cache();
final UriFragment fragment = cache.get(identifier);
if (fragment != null) {
return fragment;
} else {
return cache.put(identifier, new UriFragment(identifier));
}
} else {
return undefined();
}
}
public static UriFragment parse(String string) {
return Uri.standardParser().parseFragmentString(string);
}
static HashGenCacheMap cache() {
if (cache == null) {
int cacheSize;
try {
cacheSize = Integer.parseInt(System.getProperty("swim.uri.fragment.cache.size"));
} catch (NumberFormatException e) {
cacheSize = 32;
}
cache = new HashGenCacheMap(cacheSize);
}
return cache;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy