monix.execution.atomic.AtomicInt.scala Maven / Gradle / Ivy
/*
* Copyright (c) 2016 by its authors. Some rights reserved.
* See the project homepage at: https://sincron.org
*
* 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 monix.execution.atomic
/** Atomic references wrapping `Int` values.
*
* Note that the equality test in `compareAndSet` is value based,
* since `Int` is a primitive.
*/
final class AtomicInt private[atomic]
(initialValue: Int) extends AtomicNumber[Int] {
private[this] var ref = initialValue
def getAndSet(update: Int): Int = {
val current = ref
ref = update
current
}
def compareAndSet(expect: Int, update: Int): Boolean = {
if (ref == expect) {
ref = update
true
}
else
false
}
def set(update: Int): Unit = {
ref = update
}
def get: Int = ref
def getAndSubtract(v: Int): Int = {
val c = ref
ref = ref - v
c
}
def subtractAndGet(v: Int): Int = {
ref = ref - v
ref
}
def subtract(v: Int): Unit = {
ref = ref - v
}
def getAndAdd(v: Int): Int = {
val c = ref
ref = ref + v
c
}
def getAndIncrement(v: Int = 1): Int = {
val c = ref
ref = ref + v
c
}
def addAndGet(v: Int): Int = {
ref = ref + v
ref
}
def incrementAndGet(v: Int = 1): Int = {
ref = ref + v
ref
}
def add(v: Int): Unit = {
ref = ref + v
}
def increment(v: Int = 1): Unit = {
ref = ref + v
}
def decrement(v: Int = 1): Unit = increment(-v)
def decrementAndGet(v: Int = 1): Int = incrementAndGet(-v)
def getAndDecrement(v: Int = 1): Int = getAndIncrement(-v)
}
object AtomicInt {
/** Constructs an [[AtomicInt]] reference.
*
* @param initialValue is the initial value with which to initialize the atomic
*/
def apply(initialValue: Int): AtomicInt =
new AtomicInt(initialValue)
/** Constructs an [[AtomicInt]] reference, applying the provided
* [[PaddingStrategy]] in order to counter the "false sharing"
* problem.
*
* Note that for ''Scala.js'' we aren't applying any padding, as it
* doesn't make much sense, since Javascript execution is single
* threaded, but this builder is provided for syntax compatibility
* anyway across the JVM and Javascript and we never know how
* Javascript engines will evolve.
*
* @param initialValue is the initial value with which to initialize the atomic
* @param padding is the [[PaddingStrategy]] to apply
*/
def withPadding(initialValue: Int, padding: PaddingStrategy): AtomicInt =
new AtomicInt(initialValue)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy