ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/tribes/transport/RxTaskPool.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/tribes/transport/RxTaskPool.java
Status
scanned
Type
file
Name
RxTaskPool.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
4545 (4.4 KB)
MD5
f7ffe1d086cf3fc6b6da0aa9356c821d
SHA1
52128d50bf3d075ca78c35fa5a0e9cb568dcd288
SHA256
908de90dbe917094c4606dd78ef45e07b2824cee6e4b401d35124fe2ebe0026d
SHA512

      
    
SHA1_git
3c48001522f464888533e4370bb55a1004740a9a
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
RxTaskPool.java | 4.4 KB |

/* * 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.catalina.tribes.transport; import java.util.ArrayList; import java.util.Iterator; import java.util.List; /** * A very simple thread pool class. The pool size is set at construction time and remains fixed. Threads are cycled * through a FIFO idle queue. */ public class RxTaskPool { final List<AbstractRxTask> idle = new ArrayList<>(); final List<AbstractRxTask> used = new ArrayList<>(); final Object mutex = new Object(); boolean running = true; private int maxTasks; private int minTasks; private final TaskCreator creator; public RxTaskPool(int maxTasks, int minTasks, TaskCreator creator) throws Exception { // fill up the pool with worker threads this.maxTasks = maxTasks; this.minTasks = minTasks; this.creator = creator; } protected void configureTask(AbstractRxTask task) { synchronized (task) { task.setTaskPool(this); } } /** * Find an idle worker thread, if any. Could return null. * * @return a worker */ public AbstractRxTask getRxTask() { AbstractRxTask worker = null; synchronized (mutex) { while (worker == null && running) { if (!idle.isEmpty()) { try { worker = idle.remove(0); } catch (java.util.NoSuchElementException ignore) { // Should never happen as access to idle is always synchronized on mutex } } else if (used.size() < this.maxTasks && creator != null) { worker = creator.createRxTask(); configureTask(worker); } else { try { mutex.wait(); } catch (InterruptedException x) { Thread.currentThread().interrupt(); } } } if (worker != null) { used.add(worker); } } return worker; } public int available() { synchronized (mutex) { return idle.size(); } } /** * Called by the worker thread to return itself to the idle pool. * * @param worker The worker */ public void returnWorker(AbstractRxTask worker) { if (running) { synchronized (mutex) { used.remove(worker); if (idle.size() < maxTasks && !idle.contains(worker)) { idle.add(worker); // let max be the upper limit } else { worker.close(); } mutex.notifyAll(); } } else { worker.close(); } } public int getMaxThreads() { return maxTasks; } public int getMinThreads() { return minTasks; } public void stop() { running = false; synchronized (mutex) { Iterator<AbstractRxTask> i = idle.iterator(); while (i.hasNext()) { AbstractRxTask worker = i.next(); returnWorker(worker); i.remove(); } } } public void setMaxTasks(int maxThreads) { this.maxTasks = maxThreads; } public void setMinTasks(int minThreads) { this.minTasks = minThreads; } public TaskCreator getTaskCreator() { return this.creator; } public interface TaskCreator { AbstractRxTask createRxTask(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
27.87
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9