swim.http.header.Origin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swim-http Show documentation
Show all versions of swim-http Show documentation
Uploads all artifacts belonging to configuration ':swim-http: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.http.header;
import swim.codec.Input;
import swim.codec.Output;
import swim.codec.Parser;
import swim.codec.Unicode;
import swim.codec.Writer;
import swim.collections.FingerTrieSeq;
import swim.http.HttpHeader;
import swim.http.HttpParser;
import swim.http.HttpWriter;
import swim.uri.Uri;
import swim.util.Builder;
import swim.util.Murmur3;
public final class Origin extends HttpHeader {
final FingerTrieSeq origins;
Origin(FingerTrieSeq origins) {
this.origins = origins;
}
@Override
public String lowerCaseName() {
return "origin";
}
@Override
public String name() {
return "Origin";
}
public FingerTrieSeq origins() {
return this.origins;
}
@Override
public Writer, ?> writeHttpValue(Output> output, HttpWriter http) {
if (this.origins.isEmpty()) {
return Unicode.writeString("null", output);
} else {
return OriginWriter.write(output, this.origins.iterator());
}
}
@Override
public boolean equals(Object other) {
if (this == other) {
return true;
} else if (other instanceof Origin) {
final Origin that = (Origin) other;
return this.origins.equals(that.origins);
}
return false;
}
@Override
public int hashCode() {
if (hashSeed == 0) {
hashSeed = Murmur3.seed(Origin.class);
}
return Murmur3.mash(Murmur3.mix(hashSeed, this.origins.hashCode()));
}
@Override
public void debug(Output> output) {
output = output.write("Origin").write('.');
final int n = this.origins.size();
if (n > 0) {
output = output.write("from").write('(').debug(this.origins.head().toString());
for (int i = 1; i < n; i += 1) {
output = output.write(", ").write(this.origins.get(i).toString());
}
output = output.write(')');
} else {
output = output.write("empty").write('(').write(')');
}
}
private static int hashSeed;
private static Origin empty;
public static Origin empty() {
if (empty == null) {
empty = new Origin(FingerTrieSeq.empty());
}
return empty;
}
public static Origin from(FingerTrieSeq origins) {
if (origins.isEmpty()) {
return empty();
} else {
return new Origin(origins);
}
}
public static Origin from(Uri... origins) {
if (origins.length == 0) {
return empty();
} else {
return new Origin(FingerTrieSeq.of(origins));
}
}
public static Origin from(String... originStrings) {
final Builder> origins = FingerTrieSeq.builder();
for (int i = 0, n = originStrings.length; i < n; i += 1) {
origins.add(Uri.parse(originStrings[i]));
}
return new Origin(origins.bind());
}
public static Parser parseHttpValue(Input input, HttpParser http) {
return OriginParser.parse(input);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy