/*
* Copyright 2014 the original author or authors.
*
* 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 de.codecentric.boot.admin.config;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.autoconfigure.condition.ConditionalOnSingleCandidate;
import org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.hazelcast.core.EntryAdapter;
import com.hazelcast.core.EntryEvent;
import com.hazelcast.core.EntryListener;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IList;
import com.hazelcast.core.IMap;
import com.hazelcast.core.MapEvent;
import com.hazelcast.map.listener.MapListener;
import de.codecentric.boot.admin.event.ClientApplicationEvent;
import de.codecentric.boot.admin.event.RoutesOutdatedEvent;
import de.codecentric.boot.admin.journal.store.HazelcastJournaledEventStore;
import de.codecentric.boot.admin.journal.store.JournaledEventStore;
import de.codecentric.boot.admin.model.Application;
import de.codecentric.boot.admin.registry.store.ApplicationStore;
import de.codecentric.boot.admin.registry.store.HazelcastApplicationStore;
@Configuration
@ConditionalOnSingleCandidate(HazelcastInstance.class)
@ConditionalOnProperty(prefix = "spring.boot.admin.hazelcast", name = "enabled", matchIfMissing = true)
@AutoConfigureBefore(AdminServerWebConfiguration.class)
@AutoConfigureAfter(HazelcastAutoConfiguration.class)
public class HazelcastStoreConfiguration {
@Value("${spring.boot.admin.hazelcast.application-store:spring-boot-admin-application-store}")
private String hazelcastMapName;
@Value("${spring.boot.admin.hazelcast.event-store:spring-boot-admin-event-store}")
private String eventListName;
@Autowired
private ApplicationEventPublisher publisher;
@Autowired
private HazelcastInstance hazelcastInstance;
@Bean
@ConditionalOnMissingBean
public ApplicationStore applicationStore() {
IMap<String, Application> map = hazelcastInstance.getMap(hazelcastMapName);
map.addIndex("name", false);
map.addEntryListener((MapListener) entryListener(), false);
return new HazelcastApplicationStore(map);
}
@Bean
@ConditionalOnMissingBean
public JournaledEventStore journaledEventStore() {
IList<ClientApplicationEvent> list = hazelcastInstance.getList(eventListName);
return new HazelcastJournaledEventStore(list);
}
@Bean
public EntryListener<String, Application> entryListener() {
return new EntryAdapter<String, Application>() {
@Override
public void onEntryEvent(EntryEvent<String, Application> event) {
publisher.publishEvent(new RoutesOutdatedEvent());
}
@Override
public void onMapEvent(MapEvent event) {
publisher.publishEvent(new RoutesOutdatedEvent());
}
};
}
}