Package org.apache.sling.event.impl.jobs.queues

Source Code of org.apache.sling.event.impl.jobs.queues.ParallelJobQueue

/*
* 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.sling.event.impl.jobs.queues;

import java.util.Date;
import java.util.Set;
import java.util.concurrent.Semaphore;

import org.apache.sling.event.impl.jobs.JobHandler;
import org.apache.sling.event.impl.jobs.config.InternalQueueConfiguration;

/**
* The default parallel job queue processing the entries FIFO.
* Failing jobs are rescheduled and put at the end of the queue.
*/
public final class ParallelJobQueue extends AbstractJobQueue {

    private final Semaphore available;

    public ParallelJobQueue(final String name,
                           final InternalQueueConfiguration config,
                           final QueueServices services,
                           final Set<String> topics) {
        super(name, config, services, topics);
        this.available = new Semaphore(config.getMaxParallel(), true);
    }

    @Override
    public String getStateInfo() {
        return super.getStateInfo() + ", jobCount=" + String.valueOf(this.configuration.getMaxParallel() - this.available.availablePermits());
    }

    @Override
    protected void start(final JobHandler handler) {
        // acquire a slot
        boolean hasSlot = false;
        while ( !hasSlot ) {
            try {
                this.available.acquire();
                hasSlot = true;
            } catch ( final InterruptedException ie) {
                Thread.currentThread().interrupt();
            }
        }

        // check if we got outdated in the meantime, otherwise execute
        if ( this.isOutdated() || !this.running || !this.executeJob(handler)) {
            this.available.release();
        }
    }

    @Override
    protected boolean canBeClosed() {
        boolean result = super.canBeClosed();
        if ( result ) {
            result = this.available.availablePermits() == this.configuration.getMaxParallel();
        }
        return result;
    }

    @Override
    protected void notifyFinished(final boolean reschedule) {
        this.available.release();
    }

    @Override
    protected void reschedule(final JobHandler handler) {
        // we just sleep for the delay time - if none, we continue and retry
        // this job again
        final long delay = this.getRetryDelay(handler);
        if ( delay > 0 ) {
            handler.addToRetryList();
            final Date fireDate = new Date();
            fireDate.setTime(System.currentTimeMillis() + delay);

            final String jobName = "Waiting:" + queueName + ":" + handler.hashCode();
            final Runnable t = new Runnable() {
                @Override
                public void run() {
                    if ( handler.removeFromRetryList() ) {
                        ParallelJobQueue.super.reschedule(handler);
                    }
                }
            };
            services.scheduler.schedule(t, services.scheduler.AT(fireDate).name(jobName));
        } else {
            // put directly into queue
            super.reschedule(handler);
        }
    }
}
TOP

Related Classes of org.apache.sling.event.impl.jobs.queues.ParallelJobQueue

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.