netty5/resolver-dns/src/main/java/io/netty/resolver/dns/DefaultDnsCnameCache.java
田欧 e8efcd82a8 migrate java8: use requireNonNull (#8840)
Motivation:

We can just use Objects.requireNonNull(...) as a replacement for ObjectUtil.checkNotNull(....)

Modifications:

- Use Objects.requireNonNull(...)

Result:

Less code to maintain.
2019-02-04 10:32:25 +01:00

102 lines
3.2 KiB
Java

/*
* Copyright 2018 The Netty Project
*
* The Netty Project licenses this file to you 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 io.netty.resolver.dns;
import io.netty.channel.EventLoop;
import io.netty.util.AsciiString;
import io.netty.util.internal.UnstableApi;
import java.util.List;
import static io.netty.util.internal.ObjectUtil.checkPositive;
import static io.netty.util.internal.ObjectUtil.checkPositiveOrZero;
import static java.util.Objects.requireNonNull;
/**
* Default implementation of a {@link DnsCnameCache}.
*/
@UnstableApi
public final class DefaultDnsCnameCache implements DnsCnameCache {
private final int minTtl;
private final int maxTtl;
private final Cache<String> cache = new Cache<String>() {
@Override
protected boolean shouldReplaceAll(String entry) {
// Only one 1:1 mapping is supported as specified in the RFC.
return true;
}
@Override
protected boolean equals(String entry, String otherEntry) {
return AsciiString.contentEqualsIgnoreCase(entry, otherEntry);
}
};
/**
* Create a cache that respects the TTL returned by the DNS server.
*/
public DefaultDnsCnameCache() {
this(0, Cache.MAX_SUPPORTED_TTL_SECS);
}
/**
* Create a cache.
*
* @param minTtl the minimum TTL
* @param maxTtl the maximum TTL
*/
public DefaultDnsCnameCache(int minTtl, int maxTtl) {
this.minTtl = Math.min(Cache.MAX_SUPPORTED_TTL_SECS, checkPositiveOrZero(minTtl, "minTtl"));
this.maxTtl = Math.min(Cache.MAX_SUPPORTED_TTL_SECS, checkPositive(maxTtl, "maxTtl"));
if (minTtl > maxTtl) {
throw new IllegalArgumentException(
"minTtl: " + minTtl + ", maxTtl: " + maxTtl + " (expected: 0 <= minTtl <= maxTtl)");
}
}
@SuppressWarnings("unchecked")
@Override
public String get(String hostname) {
requireNonNull(hostname, "hostname");
List<? extends String> cached = cache.get(hostname);
if (cached == null || cached.isEmpty()) {
return null;
}
// We can never have more then one record.
return cached.get(0);
}
@Override
public void cache(String hostname, String cname, long originalTtl, EventLoop loop) {
requireNonNull(hostname, "hostname");
requireNonNull(cname, "cname");
requireNonNull(loop, "loop");
cache.cache(hostname, cname, Math.max(minTtl, (int) Math.min(maxTtl, originalTtl)), loop);
}
@Override
public void clear() {
cache.clear();
}
@Override
public boolean clear(String hostname) {
requireNonNull(hostname, "hostname");
return cache.clear(hostname);
}
}