blob: cbb68b1418123a0f56e9ffc0c081fed100f5b64e [file] [log] [blame]
/*
* Copyright 1999-2015 dangdang.com.
* <p>
* 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.
* </p>
*/
package io.elasticjob.cloud.reg.zookeeper;
import io.elasticjob.cloud.reg.base.ElectionCandidate;
import io.elasticjob.cloud.exception.JobSystemException;
import lombok.extern.slf4j.Slf4j;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.recipes.leader.LeaderSelector;
import org.apache.curator.framework.recipes.leader.LeaderSelectorListenerAdapter;
import java.util.concurrent.CountDownLatch;
/**
* 使用{@link LeaderSelector}实现选举服务.
*
* @author gaohongtao
* @author caohao
*/
@Slf4j
public final class ZookeeperElectionService {
private final CountDownLatch leaderLatch = new CountDownLatch(1);
private final LeaderSelector leaderSelector;
public ZookeeperElectionService(final String identity, final CuratorFramework client, final String electionPath, final ElectionCandidate electionCandidate) {
leaderSelector = new LeaderSelector(client, electionPath, new LeaderSelectorListenerAdapter() {
@Override
public void takeLeadership(final CuratorFramework client) throws Exception {
log.info("Elastic job: {} has leadership", identity);
try {
electionCandidate.startLeadership();
leaderLatch.await();
log.warn("Elastic job: {} lost leadership.", identity);
electionCandidate.stopLeadership();
} catch (final JobSystemException exception) {
log.error("Elastic job: Starting error", exception);
System.exit(1);
}
}
});
leaderSelector.autoRequeue();
leaderSelector.setId(identity);
}
/**
* 开始选举.
*/
public void start() {
log.debug("Elastic job: {} start to elect leadership", leaderSelector.getId());
leaderSelector.start();
}
/**
* 停止选举.
*/
public void stop() {
log.info("Elastic job: stop leadership election");
leaderLatch.countDown();
try {
leaderSelector.close();
// CHECKSTYLE:OFF
} catch (final Exception ignored) {
}
// CHECKSTYLE:ON
}
}