blob: 4f4a99aa3ef809528146870d046b69ac21b20dff [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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 org.apache.shardingsphere.orchestration.core.registrycenter.listener;
import com.google.common.base.Strings;
import org.apache.shardingsphere.infra.yaml.engine.YamlEngine;
import org.apache.shardingsphere.orchestration.center.RegistryCenterRepository;
import org.apache.shardingsphere.orchestration.center.listener.DataChangedEvent;
import org.apache.shardingsphere.orchestration.core.common.listener.PostShardingCenterRepositoryEventListener;
import org.apache.shardingsphere.orchestration.core.registrycenter.event.CircuitStateChangedEvent;
import org.apache.shardingsphere.orchestration.core.registrycenter.instance.InstanceState;
import org.apache.shardingsphere.orchestration.core.registrycenter.instance.OrchestrationInstance;
import org.apache.shardingsphere.orchestration.core.registrycenter.RegistryCenterNode;
import org.apache.shardingsphere.orchestration.core.registrycenter.RegistryCenterNodeStatus;
import java.util.Collections;
/**
* Instance state changed listener.
*/
public final class InstanceStateChangedListener extends PostShardingCenterRepositoryEventListener {
public InstanceStateChangedListener(final String name, final RegistryCenterRepository registryCenterRepository) {
super(registryCenterRepository, Collections.singleton(new RegistryCenterNode(name).getInstancesNodeFullPath(OrchestrationInstance.getInstance().getInstanceId())));
}
@Override
protected CircuitStateChangedEvent createShardingOrchestrationEvent(final DataChangedEvent event) {
return new CircuitStateChangedEvent(isCircuitBreak(event.getValue()));
}
private boolean isCircuitBreak(final String value) {
if (!Strings.isNullOrEmpty(value)) {
return RegistryCenterNodeStatus.DISABLED.toString()
.equalsIgnoreCase(YamlEngine.unmarshal(value, InstanceState.class).getState().toString());
}
return false;
}
}