com.hivemq.extensions.AbstractHiveMQExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hivemq-community-edition-embedded Show documentation
Show all versions of hivemq-community-edition-embedded Show documentation
HiveMQ CE is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5
The newest version!
/*
* Copyright 2019-present HiveMQ GmbH
*
* 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.hivemq.extensions;
import com.hivemq.extension.sdk.api.ExtensionMain;
import com.hivemq.extension.sdk.api.annotations.NotNull;
import com.hivemq.extension.sdk.api.annotations.Nullable;
import com.hivemq.extension.sdk.api.parameter.ExtensionStartInput;
import com.hivemq.extension.sdk.api.parameter.ExtensionStartOutput;
import com.hivemq.extension.sdk.api.parameter.ExtensionStopInput;
import com.hivemq.extension.sdk.api.parameter.ExtensionStopOutput;
import com.hivemq.util.Checkpoints;
import org.slf4j.Logger;
import java.io.IOException;
import java.nio.file.Path;
import java.util.concurrent.atomic.AtomicBoolean;
/**
* @author Florian Limpöck
*/
public abstract class AbstractHiveMQExtension implements HiveMQExtension {
private final @NotNull String id;
private final @NotNull String version;
private final @NotNull String name;
private final @Nullable String author;
private final @NotNull Path extensionFolderPath;
private final int priority;
private final int startPriority;
private final @NotNull AtomicBoolean enabled;
private @Nullable String previousVersion;
protected @Nullable ExtensionMain extensionMain;
public AbstractHiveMQExtension(
final @NotNull String id,
final @NotNull String version,
final @NotNull String name,
final @Nullable String author,
final int priority,
final int startPriority,
final @NotNull ExtensionMain extensionMain,
final boolean enabled,
final @NotNull Path extensionFolderPath) {
this.id = id;
this.version = version;
this.name = name;
this.author = author;
this.extensionFolderPath = extensionFolderPath;
this.priority = priority;
this.startPriority = startPriority;
this.enabled = new AtomicBoolean(enabled);
this.extensionMain = extensionMain;
}
@Override
public @NotNull String getId() {
return id;
}
@Override
public @NotNull String getVersion() {
return version;
}
@Override
public @NotNull String getName() {
return name;
}
@Override
public @Nullable String getAuthor() {
return author;
}
@Override
public @NotNull Path getExtensionFolderPath() {
return this.extensionFolderPath;
}
@Override
public int getPriority() {
return priority;
}
@Override
public int getStartPriority() {
return startPriority;
}
@Override
public @Nullable Class extends ExtensionMain> getExtensionMainClazz() {
return extensionMain != null ? extensionMain.getClass() : null;
}
@Override
public boolean isEnabled() {
return enabled.get();
}
@Override
public void setDisabled() {
enabled.set(false);
}
@Override
public @Nullable String getPreviousVersion() {
return this.previousVersion;
}
@Override
public void setPreviousVersion(@Nullable final String previousVersion) {
this.previousVersion = previousVersion;
}
@Override
public abstract @Nullable ClassLoader getExtensionClassloader();
@NotNull
public abstract Logger getLogger();
@Override
public void start(
final @NotNull ExtensionStartInput extensionStartInput,
final @NotNull ExtensionStartOutput extensionStartOutput) {
if (extensionMain != null) {
extensionMain.extensionStart(extensionStartInput, extensionStartOutput);
}
}
@Override
public void stop(
final @NotNull ExtensionStopInput extensionStopInput,
final @NotNull ExtensionStopOutput extensionStopOutput) {
if (extensionMain != null) {
extensionMain.extensionStop(extensionStopInput, extensionStopOutput);
}
}
@Override
public void clean(final boolean disable) {
extensionMain = null;
if (disable) {
final boolean disabled;
try {
if (extensionFolderPath.toFile().exists()) {
disabled = ExtensionUtil.disableExtensionFolder(extensionFolderPath);
} else {
getLogger().trace(
"Extension folder {} was already removed and cannot be disabled, continuing normally",
extensionFolderPath.toFile().getAbsolutePath());
disabled = true;
}
if (!disabled) {
getLogger().warn("Could not disable extension folder {}.", extensionFolderPath);
}
} catch (final IOException e) {
getLogger().warn("Could not disable extension folder {}, reason {}",
extensionFolderPath,
e.getMessage());
getLogger().trace("Original exception", e);
}
Checkpoints.checkpoint("extension-disabled");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy