org.yx.rpc.client.route.HostChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sumk Show documentation
Show all versions of sumk Show documentation
A quick developing framewort for internet company
/**
* Copyright (C) 2016 - 2030 youtongluan.
*
* 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 org.yx.rpc.client.route;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit;
import org.yx.common.Host;
import org.yx.conf.AppInfo;
import org.yx.log.Logs;
import org.yx.util.Task;
public class HostChecker {
private static final HostChecker holder = new HostChecker();
private HostChecker() {
Task.scheduleAtFixedRate(new Checker(), 5, AppInfo.getInt("sumk.rpc.hosts.check.period", 3), TimeUnit.SECONDS);
}
public static HostChecker get() {
return holder;
}
private ConcurrentHashMap downUrls = new ConcurrentHashMap<>();
public boolean isDowned(Host url) {
return downUrls.containsKey(url);
}
public List available(List urls) {
List us = new ArrayList<>(urls);
List avas = new ArrayList<>(us.size());
for (Host u : us) {
if (!downUrls.containsKey(u)) {
avas.add(u);
}
}
return avas;
}
public void addDownUrl(Host url) {
downUrls.putIfAbsent(url, System.currentTimeMillis());
Logs.rpc().info("{} is down", url);
}
private class Checker implements Runnable {
private int getTimeOut(int urlSize) {
if (urlSize == 1) {
return AppInfo.getInt("sumk.rpc.socket.connecttimeout.1", 3000);
} else if (urlSize == 2) {
return AppInfo.getInt("sumk.rpc.socket.connecttimeout.2", 2500);
} else if (urlSize > 5) {
return AppInfo.getInt("sumk.rpc.socket.connecttimeout.5", 1000);
}
return AppInfo.getInt("sumk.rpc.socket.connecttimeout.3", 2000);
}
@Override
public void run() {
if (downUrls.isEmpty()) {
return;
}
Host[] urls = downUrls.keySet().toArray(new Host[0]);
int timeout = getTimeOut(urls.length);
for (Host url : urls) {
try (Socket socket = new Socket()) {
socket.connect(url.toInetSocketAddress(), timeout);
if (socket.isConnected()) {
downUrls.remove(url);
Logs.rpc().info("{} reconected", url);
}
} catch (UnknownHostException e) {
Logs.rpc().error(e.getMessage(), e);
} catch (Exception e) {
}
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy