Class RingBufferBundlerLockless

  • All Implemented Interfaces:
    Bundler

    public class RingBufferBundlerLockless
    extends BaseBundler
    Bundler which doesn't use locks but relies on CAS. There is 1 reader thread which gets unparked by (exactly one) writer when the max size has been exceeded, or no other threads are sending messages.
    Since:
    4.0
    Author:
    Bela Ban
    • Field Detail

      • read_index

        protected int read_index
      • write_index

        protected volatile int write_index
      • tmp_write_index

        protected final java.util.concurrent.atomic.AtomicInteger tmp_write_index
      • write_permits

        protected final java.util.concurrent.atomic.AtomicInteger write_permits
      • size

        protected final java.util.concurrent.atomic.AtomicInteger size
      • num_threads

        protected final java.util.concurrent.atomic.AtomicInteger num_threads
      • accumulated_bytes

        protected final java.util.concurrent.atomic.AtomicLong accumulated_bytes
      • unparking

        protected final java.util.concurrent.atomic.AtomicBoolean unparking
      • bundler_thread

        protected Runner bundler_thread
      • run_function

        protected final java.lang.Runnable run_function
    • Constructor Detail

      • RingBufferBundlerLockless

        public RingBufferBundlerLockless()
      • RingBufferBundlerLockless

        public RingBufferBundlerLockless​(int capacity)
    • Method Detail

      • readIndex

        public int readIndex()
      • writeIndex

        public int writeIndex()
      • size

        public int size()
        Description copied from class: BaseBundler
        Returns the total number of messages in the hashmap
        Specified by:
        size in interface Bundler
        Overrides:
        size in class BaseBundler
      • getQueueSize

        public int getQueueSize()
        Description copied from interface: Bundler
        If the bundler has a queue and it should be managed by a queuing discipline (like Random Early Detection), then return the number of elements in the queue, else -1. In the latter case, the queue won't be managed.
        This method needs to be fast as it might get called on every message to be sent.
      • init

        public void init​(TP transport)
        Description copied from interface: Bundler
        Called after creation of the bundler
        Specified by:
        init in interface Bundler
        Overrides:
        init in class BaseBundler
        Parameters:
        transport - the transport, for further reference
      • reset

        public void reset()
      • send

        public void send​(Message msg)
                  throws java.lang.Exception
        Specified by:
        send in interface Bundler
        Overrides:
        send in class BaseBundler
        Throws:
        java.lang.Exception
      • getWriteIndex

        protected int getWriteIndex()
      • getPermitToWrite

        protected int getPermitToWrite()
      • advanceWriteIndex

        protected int advanceWriteIndex()
      • readMessages

        protected void readMessages()
      • sendBundledMessages

        protected int sendBundledMessages​(Message[] buf,
                                          int read_index,
                                          int available_msgs)
        Read and send messages in range [read-index .. read-index+available_msgs-1]
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • _readMessages

        public int _readMessages()
      • marshalMessagesToSameDestination

        protected int marshalMessagesToSameDestination​(Address dest,
                                                       Message[] buf,
                                                       int start_index,
                                                       int available_msgs,
                                                       int max_bundle_size)
                                                throws java.lang.Exception
        Throws:
        java.lang.Exception
      • increment

        protected final int increment​(int index)
      • index

        protected final int index​(int idx)
      • assertPositive

        protected static int assertPositive​(int value,
                                            java.lang.String message)