All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.system.jobs.SystemJob Maven / Gradle / Ivy

There is a newer version: 6.0.6
Show newest version
/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see .
 */
package org.graylog2.system.jobs;

import com.google.common.collect.ImmutableMap;
import org.graylog2.plugin.ServerStatus;
import org.graylog2.plugin.Tools;
import org.joda.time.DateTime;

import javax.annotation.Nonnull;
import java.util.Map;

public abstract class SystemJob {

    private final ServerStatus serverStatus;

    // Known types that can be resolved in the SystemJobFactory.
    public enum Type {
        FIX_DEFLECTOR_DELETE_INDEX,
        FIX_DEFLECTOR_MOVE_INDEX
    }

    public abstract void execute();

    public abstract void requestCancel();

    public abstract int getProgress();

    public abstract int maxConcurrency();

    public abstract boolean providesProgress();

    public abstract boolean isCancelable();

    public abstract String getDescription();

    public abstract String getClassName();

    //protected Core core;
    protected String id;
    protected DateTime startedAt;

    protected SystemJob(@Nonnull ServerStatus serverStatus) {
        this.serverStatus = serverStatus;
    }

    public String getId() {
        if (id == null) {
            throw new IllegalStateException("Cannot return ID if the job has not been started yet.");
        }

        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public void markStarted() {
        startedAt = Tools.iso8601();
    }

    public DateTime getStartedAt() {
        return startedAt;
    }

    public Map toMap() {
        return ImmutableMap.builder()
                .put("id", id)
                .put("name", getClassName()) // getting the concrete class, not this abstract one
                .put("description", getDescription())
                .put("started_at", Tools.getISO8601String(getStartedAt()))
                .put("percent_complete", getProgress())
                .put("provides_progress", providesProgress())
                .put("is_cancelable", isCancelable())
                .put("node_id", serverStatus.getNodeId().toString())
                .build();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy