com.sitewhere.microservice.configuration.InstanceConfigurationMonitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sitewhere-microservice Show documentation
Show all versions of sitewhere-microservice Show documentation
SiteWhere Microservice Components Library
The newest version!
/**
* Copyright © 2014-2021 The SiteWhere 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 com.sitewhere.microservice.configuration;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.sitewhere.spi.microservice.IMicroservice;
import com.sitewhere.spi.microservice.configuration.IInstanceConfigurationListener;
import com.sitewhere.spi.microservice.configuration.IInstanceConfigurationMonitor;
import io.fabric8.kubernetes.client.KubernetesClient;
import io.fabric8.kubernetes.client.informers.SharedIndexInformer;
import io.fabric8.kubernetes.client.informers.SharedInformerFactory;
import io.sitewhere.k8s.crd.ResourceContexts;
import io.sitewhere.k8s.crd.controller.ResourceChangeType;
import io.sitewhere.k8s.crd.controller.SiteWhereResourceController;
import io.sitewhere.k8s.crd.instance.SiteWhereInstance;
import io.sitewhere.k8s.crd.instance.SiteWhereInstanceList;
/**
* Monitors instance resources for changes.
*/
public class InstanceConfigurationMonitor extends SiteWhereResourceController
implements IInstanceConfigurationMonitor {
/** Static logger instance */
private static Logger LOGGER = LoggerFactory.getLogger(InstanceConfigurationMonitor.class);
/** Resync period in milliseconds */
private static final int RESYNC_PERIOD_MS = 10 * 60 * 1000;
/** Get instance resource */
private IMicroservice, ?> microservice;
/** Get instance resource */
private SiteWhereInstance instanceResource;
/** Handles processing of queued updates */
private ExecutorService queueProcessor = Executors.newSingleThreadExecutor(new MonitorThreadFactory());
/** Listeners */
private List listeners = new ArrayList<>();
public InstanceConfigurationMonitor(IMicroservice, ?> microservice, KubernetesClient client,
SharedInformerFactory informerFactory) {
super(client, informerFactory);
this.microservice = microservice;
}
/*
* @see
* com.sitewhere.spi.microservice.configuration.IInstanceConfigurationMonitor#
* start()
*/
@Override
public void start() {
getQueueProcessor().execute(createEventLoop());
}
/*
* @see
* io.sitewhere.k8s.crd.controller.SiteWhereResourceController#createInformer()
*/
@Override
public SharedIndexInformer createInformer() {
return getInformerFactory().sharedIndexInformerForCustomResource(ResourceContexts.INSTANCE_CONTEXT,
SiteWhereInstance.class, SiteWhereInstanceList.class, RESYNC_PERIOD_MS);
}
/*
* @see
* com.sitewhere.spi.microservice.configuration.IInstanceConfigurationMonitor#
* getResource()
*/
@Override
public SiteWhereInstance getResource() {
return this.instanceResource;
}
/*
* @see io.sitewhere.operator.controller.SiteWhereResourceController#
* reconcileResourceChange(io.sitewhere.operator.controller.ResourceChangeType,
* io.fabric8.kubernetes.client.CustomResource)
*/
@Override
public void reconcileResourceChange(ResourceChangeType type, SiteWhereInstance instance) {
// Skip changes for other instances or that don't affect specification.
boolean sameInstance = instance.getMetadata().getName()
.equals(getMicroservice().getInstanceSettings().getKubernetesNamespace());
boolean differentGeneration = getResource() == null ? true
: getResource().getMetadata().getGeneration() != instance.getMetadata().getGeneration();
if (!sameInstance) {
LOGGER.debug(String.format("Skipping %s resource change in instance %s due to wrong instance (%s).",
type.name(), instance.getMetadata().getName(),
getMicroservice().getInstanceSettings().getKubernetesNamespace()));
return;
}
if (!differentGeneration) {
LOGGER.debug(String.format("Skipping %s resource change in instance %s due to same generation.",
type.name(), instance.getMetadata().getName()));
return;
}
LOGGER.debug(String.format("Detected %s resource change in instance %s.", type.name(),
instance.getMetadata().getName()));
this.instanceResource = instance;
switch (type) {
case CREATE: {
break;
}
case UPDATE: {
getListeners().forEach(listener -> listener.onInstanceSpecificationUpdated(instance.getSpec()));
break;
}
case DELETE: {
break;
}
}
}
/*
* @see
* com.sitewhere.spi.microservice.configuration.IInstanceConfigurationMonitor#
* getListeners()
*/
@Override
public List getListeners() {
return this.listeners;
}
protected IMicroservice, ?> getMicroservice() {
return microservice;
}
protected ExecutorService getQueueProcessor() {
return queueProcessor;
}
/** Used for naming threads */
private class MonitorThreadFactory implements ThreadFactory {
public Thread newThread(Runnable r) {
return new Thread(r, "Instance Cfg");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy