blob: d55afc79fd56933f3a526b370143b69c5e796c5a [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.syncope.core.starter;
import java.util.Comparator;
import org.apache.syncope.common.keymaster.client.api.model.NetworkService;
import org.apache.syncope.common.keymaster.client.api.startstop.KeymasterStop;
import org.apache.syncope.core.persistence.api.DomainHolder;
import org.apache.syncope.core.persistence.api.SyncopeCoreLoader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.aop.support.AopUtils;
import org.springframework.context.event.ContextClosedEvent;
import org.springframework.core.Ordered;
/**
* Take care of all disposal needed by Syncope Core to shut down gracefully..
*/
public class SyncopeCoreStop extends KeymasterStop implements Ordered {
private static final Logger LOG = LoggerFactory.getLogger(SyncopeCoreStop.class);
private final DomainHolder domainHolder;
public SyncopeCoreStop(final DomainHolder domainHolder) {
super(NetworkService.Type.CORE);
this.domainHolder = domainHolder;
}
@Override
public int getOrder() {
return 0;
}
@Override
public void onApplicationEvent(final ContextClosedEvent event) {
event.getApplicationContext().getBeansOfType(SyncopeCoreLoader.class).values().stream().
sorted(Comparator.comparing(SyncopeCoreLoader::getOrder).reversed()).
forEachOrdered(loader -> {
String loaderName = AopUtils.getTargetClass(loader).getName();
LOG.debug("[{}#{}] Starting dispose", loaderName, loader.getOrder());
domainHolder.getDomains().forEach((domain, datasource) -> {
LOG.debug("[{}] Starting dispose on domain '{}'", loaderName, domain);
loader.unload(domain);
LOG.debug("[{}] Dispose completed on domain '{}'", loaderName, domain);
});
loader.unload();
LOG.debug("[{}] Dispose completed", loaderName);
});
super.onApplicationEvent(event);
}
}