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

org.apache.tika.server.ServerStatus Maven / Gradle / Ivy

There is a newer version: 3.0.0-BETA2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.tika.server;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.time.Instant;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.atomic.AtomicLong;

public class ServerStatus {

    enum DIRECTIVES {
        PING((byte)0),
        PING_ACTIVE_SERVER_TASKS((byte)1),
        SHUTDOWN((byte)2);

        private final byte b;
        DIRECTIVES(byte b) {
            this.b = b;
        }
        byte getByte() { return b;}
    }

    public enum STATUS {
        OPERATING(0),
        HIT_MAX(1),
        TIMEOUT(2),
        ERROR(3),
        PARENT_REQUESTED_SHUTDOWN(4),
        PARENT_EXCEPTION(5);

        private final int shutdownCode;

        static STATUS lookup(int i) {
            STATUS[] values = STATUS.values();
            if (i < 0 || i >= values.length) {
                throw new ArrayIndexOutOfBoundsException(i +
                        " is not acceptable for an array of length "+values.length);
            }
            return STATUS.values()[i];
        }

        STATUS(int shutdownCode) {
            this.shutdownCode = shutdownCode;
        }
        int getShutdownCode() {
            return shutdownCode;
        }
        byte getByte() { return (byte) shutdownCode;}

    }
    public enum TASK {
        PARSE,
        DETECT,
        TRANSLATE
    };
    private static final Logger LOG = LoggerFactory.getLogger(ServerStatus.class);

    private AtomicLong counter = new AtomicLong(0);
    private Map tasks = new HashMap<>();

    private STATUS status = STATUS.OPERATING;

    public synchronized long start(TASK task, String fileName) {
        long taskId = counter.incrementAndGet();
        tasks.put(taskId, new TaskStatus(task, Instant.now(), fileName));
        return taskId;
    }

    /**
     * Removes the task from the collection of currently running tasks.
     *
     * @param taskId
     * @throws IllegalArgumentException if there is no task by that taskId in the collection
     */
    public synchronized void complete(long taskId) throws IllegalArgumentException {
        TaskStatus status = tasks.remove(taskId);
        if (status == null) {
            throw new IllegalArgumentException("TaskId is not in map:"+taskId);
        }
    }

    public synchronized void setStatus(STATUS status) {
        this.status = status;
    }

    public synchronized STATUS getStatus() {
        return status;
    }

    public synchronized Map getTasks() {
        Map ret = new HashMap<>();
        ret.putAll(tasks);
        return ret;
    }

    public synchronized long getFilesProcessed() {
        return counter.get();
    }

    public synchronized boolean isOperating() {
        return status == STATUS.OPERATING;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy