aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/handler/threadpool/WorkerCompletionTimingThreadPoolExecutor.java
blob: cee2cc54b5b0877c4ca5636ca3a4f7d5460dc4af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.handler.threadpool;

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;

/**
 * A thread pool executor which maintains the last time a worker completed.
 *
 * @author Steinar Knutsen
 * @author baldersheim
 * @author bratseth
 */
class WorkerCompletionTimingThreadPoolExecutor extends ThreadPoolExecutor {

    volatile long lastThreadAssignmentTimeMillis = System.currentTimeMillis();
    private final AtomicLong startedCount = new AtomicLong(0);
    private final AtomicLong completedCount = new AtomicLong(0);
    private final ThreadPoolMetric metric;

    WorkerCompletionTimingThreadPoolExecutor(int corePoolSize,
                                             int maximumPoolSize,
                                             long keepAliveTime,
                                             TimeUnit unit,
                                             BlockingQueue<Runnable> workQueue,
                                             ThreadFactory threadFactory,
                                             ThreadPoolMetric metric) {
        super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory);
        this.metric = metric;
    }

    @Override
    protected void beforeExecute(Thread t, Runnable r) {
        super.beforeExecute(t, r);
        lastThreadAssignmentTimeMillis = System.currentTimeMillis();
        startedCount.incrementAndGet();
    }

    @Override
    protected void afterExecute(Runnable r, Throwable t) {
        super.afterExecute(r, t);
        completedCount.incrementAndGet();
        if (t != null) {
            metric.reportUnhandledException(t);
        }
    }

    @Override
    public int getActiveCount() {
        return (int)(startedCount.get() - completedCount.get());
    }

}