com.acgist.snail.system.config.DhtConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snail Show documentation
Show all versions of snail Show documentation
基于Java开发的下载工具,支持下载协议:BT(BitTorrent、磁力链接、种子文件)、HLS(M3U8)、FTP、HTTP。
package com.acgist.snail.system.config;
import java.time.Duration;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Properties;
import java.util.stream.Collectors;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.acgist.snail.net.torrent.dht.bootstrap.NodeManager;
import com.acgist.snail.pojo.session.NodeSession;
import com.acgist.snail.utils.FileUtils;
import com.acgist.snail.utils.StringUtils;
/**
* DHT服务器列表配置
* 优先使用用户自定义配置文件(UserDir目录)加载,如果不存在加载默认配置。
* TODO:保存UserDir
*
* @author acgist
* @since 1.0.0
*/
public class DhtConfig extends PropertiesConfig {
private static final Logger LOGGER = LoggerFactory.getLogger(DhtConfig.class);
private static final DhtConfig INSTANCE = new DhtConfig();
private static final String DHT_CONFIG = "/config/bt.dht.properties";
public static final String KEY_T = "t"; // 标记ID:请求ID,默认两个字节
public static final String KEY_Y = "y"; // 消息类型:请求、响应
public static final String KEY_Q = "q"; // 请求、请求类型
public static final String KEY_A = "a"; // 请求参数
public static final String KEY_R = "r"; // 响应、响应参数
public static final String KEY_E = "e"; // 错误
public static final String KEY_V = "v"; // 客户端版本:不一定存在
public static final String KEY_ID = "id"; // NodeId
public static final String KEY_PORT = "port"; // 下载端口
public static final String KEY_NODES = "nodes"; // 节点信息
public static final String KEY_TOKEN = "token"; // announce_peer token
public static final String KEY_VALUES = "values"; // Peers
public static final String KEY_TARGET = "target"; // 被查找的NodeId
public static final String KEY_INFO_HASH = "info_hash"; // infoHash
/**
* 0|1:存在且等于“1”时忽略端口参数,使用UDP包的源端口为对等端端口,并且支持uTP。
*/
public static final String KEY_IMPLIED_PORT = "implied_port";
public static final Integer IMPLIED_PORT_AUTO = 1; // 自动获取
public static final Integer IMPLIED_PORT_CONFIG = 0; // 使用配置
public static final int GET_PEER_LENGTH = 100; // GetPeer,Peer列表长度。
public static final int DHT_CLEAR_INTERVAL = 10; // DHT请求清理周期
/**
* DHT响应错误:
*
* -
* [0]:错误代码:
*
* - 201:一般错误
* - 202:服务错误
* - 203:协议错误,不规范的包、无效参数、错误token
* - 204:未知方法
*
*
* - [1]:错误描述
*
*/
public enum ErrorCode {
E_201(201),
E_202(202),
E_203(203),
E_204(204);
ErrorCode(int code) {
this.code = code;
}
private int code;
public int code() {
return this.code;
}
}
/**
* DHT响应超时
*/
public static final Duration TIMEOUT = Duration.ofSeconds(4);
/**
* 请求类型
*/
public enum QType {
ping,
find_node,
get_peers,
announce_peer;
}
public DhtConfig() {
super(DHT_CONFIG);
}
static {
LOGGER.info("初始化DHT配置");
INSTANCE.init();
}
public static final DhtConfig getInstance() {
return INSTANCE;
}
/**
* 默认DHT节点:nodeID=host:port
*/
private final Map nodes = new LinkedHashMap<>();
private void init() {
final Properties properties = this.properties.properties();
properties.entrySet().forEach(entry -> {
final String nodeId = (String) entry.getKey();
final String address = (String) entry.getValue();
if(StringUtils.isNotEmpty(nodeId) && StringUtils.isNotEmpty(address)) {
this.nodes.put(nodeId, address);
} else {
LOGGER.warn("注册默认DHT节点失败:{}-{}", nodeId, address);
}
});
}
/**
* 获取配置的DHT节点
*/
public Map nodes() {
return this.nodes;
}
/**
* 保存DHT节点(可用)
*/
public void persistent() {
LOGGER.debug("保存DHT节点");
final var nodes = NodeManager.getInstance().nodes();
final var map = nodes.stream()
.filter(node -> node.getStatus() != NodeSession.STATUS_VERIFY)
.limit(NodeManager.MAX_NODE_SIZE)
.collect(Collectors.toMap(node -> StringUtils.hex(node.getId()), node -> node.getHost() + ":" + node.getPort()));
persistent(map, FileUtils.userDirFile(DHT_CONFIG));
}
}