com.fluxtion.agrona.concurrent.ControllableIdleStrategy Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2014-2024 Real Logic Limited.
*
* 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
*
* https://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.fluxtion.agrona.concurrent;
import com.fluxtion.agrona.concurrent.status.StatusIndicatorReader;
import com.fluxtion.agrona.hints.ThreadHints;
import java.util.concurrent.locks.LockSupport;
/**
* {@link IdleStrategy} which can be controlled by a counter so its mode of operation can be switched between
* doing nothing (NOOP), busy spinning by calling {@link ThreadHints#onSpinWait()}, yielding by calling
* {@link Thread#yield()}, or sleeping for the minimum period by calling {@link LockSupport#parkNanos(long)} when
* work count is zero, so it idles.
*/
public final class ControllableIdleStrategy implements IdleStrategy
{
/**
* Name to be returned from {@link #alias()}.
*/
public static final String ALIAS = "controllable";
/**
* Not controlled so will go with default of {@link #PARK}.
*/
public static final int NOT_CONTROLLED = 0;
/**
* Apply {@link NoOpIdleStrategy}.
*/
public static final int NOOP = 1;
/**
* Apply {@link BusySpinIdleStrategy}.
*/
public static final int BUSY_SPIN = 2;
/**
* Apply {@link YieldingIdleStrategy}.
*/
public static final int YIELD = 3;
/**
* Apply {@link SleepingIdleStrategy} with minimum sleep interval.
*/
public static final int PARK = 4;
private static final long PARK_PERIOD_NANOSECONDS = 1000;
private final StatusIndicatorReader statusIndicator;
/**
* Configure idle strategy taking an indicator of which strategy should be applied.
*
* @param statusIndicator indicator of which strategy should be applied.
*/
public ControllableIdleStrategy(final StatusIndicatorReader statusIndicator)
{
this.statusIndicator = statusIndicator;
}
/**
* Idle based on current status indication value
*
* @param workCount performed in last duty cycle.
* @see IdleStrategy#idle(int)
*/
public void idle(final int workCount)
{
if (workCount > 0)
{
return;
}
idle();
}
/**
* {@inheritDoc}
*/
public void idle()
{
final int status = (int)statusIndicator.getVolatile();
switch (status)
{
case NOOP:
break;
case BUSY_SPIN:
ThreadHints.onSpinWait();
break;
case YIELD:
Thread.yield();
break;
case PARK:
default:
LockSupport.parkNanos(PARK_PERIOD_NANOSECONDS);
break;
}
}
/**
* {@inheritDoc}
*/
public void reset()
{
}
/**
* {@inheritDoc}
*/
public String alias()
{
return ALIAS;
}
/**
* {@inheritDoc}
*/
public String toString()
{
return "ControllableIdleStrategy{" +
"alias=" + ALIAS +
", statusIndicator=" + statusIndicator +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy