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

co.paralleluniverse.strands.queues.CircularWordBuffer Maven / Gradle / Ivy

Go to download

The core library for Fibers on Java, compatible with Java 11-16. Forked from puniverse/quasar

There is a newer version: 10.0.6
Show newest version
/*
 * Quasar: lightweight threads and actors for the JVM.
 * Copyright (c) 2013-2014, Parallel Universe Software Co. All rights reserved.
 * 
 * This program and the accompanying materials are dual-licensed under
 * either the terms of the Eclipse Public License v1.0 as published by
 * the Eclipse Foundation
 *  
 *   or (per the licensee's choosing)
 *  
 * under the terms of the GNU Lesser General Public License version 3.0
 * as published by the Free Software Foundation.
 */
package co.paralleluniverse.strands.queues;

import java.lang.invoke.MethodHandles;
import java.lang.invoke.VarHandle;

/**
 *
 * @author pron
 */
abstract class CircularWordBuffer extends CircularBuffer {
    private final int[] array;

    public CircularWordBuffer(int size, boolean singleProducer) {
        super(size, singleProducer);
        this.array = new int[capacity];
    }

    void enqRaw(int elem) {
        long index = preEnq();
        orderedSet((int) index & mask, elem); // must be orderedSet so as to not be re-ordered with tail bump in postEnq
        postEnq();
    }

    abstract class WordConsumer extends Consumer {
        private int value;

        @Override
        protected void grabValue(int index) {
            value = array[index];
        }

        @Override
        protected void clearValue() {
        }

        int getRawValue() {
            return value;
        }
    }
    //////////////////////////
    private static final VarHandle ARRAY = MethodHandles.arrayElementVarHandle(int[].class);

    private void orderedSet(int i, int value) {
        ARRAY.setOpaque(array, i, value);
    }

//    private static final int base;
//    private static final int shift;
//
//    static {
//        try {
//            base = UNSAFE.arrayBaseOffset(int[].class);
//            int scale = UNSAFE.arrayIndexScale(int[].class);
//            if ((scale & (scale - 1)) != 0)
//                throw new Error("data type scale not a power of two");
//            shift = 31 - Integer.numberOfLeadingZeros(scale);
//        } catch (Exception ex) {
//            throw new Error(ex);
//        }
//    }
//
//    private static long byteOffset(int i) {
//        return ((long) i << shift) + base;
//    }
//
//    private void orderedSet(int i, int value) {
//        UNSAFE.putOrderedInt(array, byteOffset(i), value);
//    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy