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

com.firenio.baseio.concurrent.ExecutorEventLoop Maven / Gradle / Ivy

There is a newer version: 3.2.9.beta11
Show newest version
/*
 * Copyright 2015 The Baseio Project
 *  
 * 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.firenio.baseio.concurrent;

import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.TimeUnit;

import com.firenio.baseio.common.Util;
import com.firenio.baseio.log.Logger;
import com.firenio.baseio.log.LoggerFactory;

public final class ExecutorEventLoop extends EventLoop {

    private static final Logger     logger = LoggerFactory.getLogger(ExecutorEventLoop.class);
    private ExecutorEventLoopGroup  group;
    private BlockingQueue jobs;
    private WorkThread[]            workThreads;

    public ExecutorEventLoop(ExecutorEventLoopGroup group) {
        super(group.getEventLoopName());
        this.group = group;
    }

    @Override
    protected void doStart() throws Exception {
        int eventLoopSize = group.getEventLoopSize();
        int maxQueueSize = group.getMaxQueueSize() * eventLoopSize;
        this.jobs = new ArrayBlockingQueue<>(maxQueueSize);
        this.workThreads = new WorkThread[eventLoopSize];
        for (int i = 0; i < eventLoopSize; i++) {
            workThreads[i] = new WorkThread(jobs);
        }
        for (int i = 0; i < eventLoopSize; i++) {
            Util.exec(workThreads[i], group.getEventLoopName() + "-" + i);
        }
    }

    @Override
    protected void doStop() {
        for (int i = 0; i < group.getEventLoopSize(); i++) {
            workThreads[i].stop();
        }
        for (;;) {
            Runnable job = jobs.poll();
            if (job == null) {
                break;
            }
            runJob(job);
        }
    }

    @Override
    public ExecutorEventLoopGroup getGroup() {
        return group;
    }

    @Override
    public BlockingQueue getJobs() {
        return jobs;
    }

    @Override
    public Thread getMonitor() {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean inEventLoop() {
        return false;
    }

    @Override
    public boolean inEventLoop(Thread thread) {
        return false;
    }

    @Override
    public void run() {
        throw new UnsupportedOperationException();
    }

    class WorkThread implements Runnable {

        final BlockingQueue jobs;

        volatile boolean              running = true;

        public WorkThread(BlockingQueue jobs) {
            this.jobs = jobs;
        }

        @Override
        public void run() {
            for (; running;) {
                try {
                    runJob(jobs.poll(1000, TimeUnit.MILLISECONDS));
                } catch (InterruptedException e1) {}
            }
        }

        void stop() {
            running = false;
        }

    }

    private static void runJob(Runnable job) {
        if (job != null) {
            try {
                job.run();
            } catch (Exception e) {
                logger.error(e.getMessage(), e);
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy