com.codingapi.txlcn.tc.txmsg.AutoTMClusterEngine Maven / Gradle / Ivy
/*
* Copyright 2017-2019 CodingApi .
*
* 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 com.codingapi.txlcn.tc.txmsg;
import com.codingapi.txlcn.txmsg.exception.RpcException;
import com.codingapi.txlcn.tc.config.TxClientConfig;
import com.codingapi.txlcn.tc.support.listener.RpcEnvStatusListener;
import com.google.common.collect.Sets;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.util.concurrent.atomic.AtomicInteger;
/**
* Description:
* Date: 1/27/19
*
* @author ujued
*/
@Component
@Slf4j
public class AutoTMClusterEngine implements RpcEnvStatusListener {
private AtomicInteger tryConnectCount = new AtomicInteger(0);
private final TxClientConfig txClientConfig;
private final ReliableMessenger reliableMessenger;
@Autowired
public AutoTMClusterEngine(TxClientConfig txClientConfig, ReliableMessenger reliableMessenger) {
this.txClientConfig = txClientConfig;
this.reliableMessenger = reliableMessenger;
}
@Override
public void onConnected(String remoteKey) {
}
@Override
public void onInitialized(String remoteKey) {
if (prepareToResearchTMCluster()) {
TMSearcher.echoTmClusterSize();
}
}
@Override
public void onConnectFail(String remoteKey) {
try {
reliableMessenger.reportInvalidTM(Sets.newHashSet(remoteKey));
} catch (RpcException e) {
log.error("{} on reportInvalidTM.", e.getMessage());
}
if (prepareToResearchTMCluster()) {
TMSearcher.echoTmClusterSize();
}
}
/**
* 准备搜索TM
*
* @return true 搜索结束
*/
private boolean prepareToResearchTMCluster() {
int count = tryConnectCount.incrementAndGet();
int size = txClientConfig.getManagerAddress().size();
if (count == size) {
TMSearcher.search();
return false;
} else if (count > size) {
return !TMSearcher.searchedOne();
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy