org.opendaylight.netconf.northbound.DefaultNetconfMonitoringService Maven / Gradle / Ivy
/*
* Copyright (c) 2023 PANTHEON.tech, s.r.o. and others. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
package org.opendaylight.netconf.northbound;
import static java.util.Objects.requireNonNull;
import com.google.common.util.concurrent.ThreadFactoryBuilder;
import java.util.Map;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.TimeUnit;
import org.opendaylight.netconf.server.api.monitoring.NetconfMonitoringService;
import org.opendaylight.netconf.server.api.operations.NetconfOperationServiceFactory;
import org.opendaylight.netconf.server.osgi.NetconfMonitoringServiceImpl;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
@Component(factory = DefaultNetconfMonitoringService.FACTORY_NAME, service = NetconfMonitoringService.class)
public final class DefaultNetconfMonitoringService extends NetconfMonitoringServiceImpl {
static final String FACTORY_NAME = "org.opendaylight.netconf.impl.mdsal.DefaultNetconfMonitoringService";
private static final ThreadFactory THREAD_FACTORY = new ThreadFactoryBuilder()
.setNameFormat("netconf-server-monitoring-%d")
.setDaemon(true)
.build();
private static final String OP_PROVIDER_PROP = ".opProvider";
private static final String UPDATE_INTERVAL_PROP = ".updateInterval";
private DefaultNetconfMonitoringService(final NetconfOperationServiceFactory opProvider, final long periodSeconds) {
super(opProvider, THREAD_FACTORY, periodSeconds, TimeUnit.SECONDS);
}
@Activate
public DefaultNetconfMonitoringService(final Map properties) {
this(OSGiNetconfServer.extractProp(properties, OP_PROVIDER_PROP, NetconfOperationServiceFactory.class),
OSGiNetconfServer.extractProp(properties, UPDATE_INTERVAL_PROP, Long.class));
}
@Override
@Deactivate
public void close() {
super.close();
}
static Map props(final NetconfOperationServiceFactory opProvider, final long updateInterval) {
return Map.of(
"type", "netconf-server-monitoring",
OP_PROVIDER_PROP, requireNonNull(opProvider),
UPDATE_INTERVAL_PROP, updateInterval);
}
}