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

io.zeebe.broker.system.log.TopicsIndex Maven / Gradle / Ivy

There is a newer version: 0.21.0-alpha1
Show newest version
/*
 * Zeebe Broker Core
 * Copyright © 2017 camunda services GmbH ([email protected])
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */
package io.zeebe.broker.system.log;

import java.nio.ByteOrder;

import org.agrona.BitUtil;
import org.agrona.DirectBuffer;
import org.agrona.MutableDirectBuffer;
import org.agrona.concurrent.UnsafeBuffer;

import io.zeebe.logstreams.log.LogStream;
import io.zeebe.map.Bytes2BytesZbMap;

/**
 * Maps
 *
 * topic name => (remaining partitions, request position)
 *
 * where remaining partitions is the number of partitions that are still pending to be created.
 */
public class TopicsIndex
{

    protected static final ByteOrder BYTE_ORDER = ByteOrder.LITTLE_ENDIAN;
    public static final int MAX_TOPIC_NAME_LENGTH = LogStream.MAX_TOPIC_NAME_LENGTH; // TODO: could be configurable

    protected static final int REMAINING_PARTITIONS_OFFSET = 0;
    protected static final int REQUEST_OFFSET = BitUtil.SIZE_OF_INT;

    protected static final int VALUE_LENGTH = REQUEST_OFFSET + BitUtil.SIZE_OF_LONG;

    protected final Bytes2BytesZbMap topics;

    protected MutableDirectBuffer inputValue = new UnsafeBuffer(new byte[VALUE_LENGTH]);
    protected DirectBuffer currentValue;

    public TopicsIndex()
    {
        this.topics = new Bytes2BytesZbMap(MAX_TOPIC_NAME_LENGTH, VALUE_LENGTH);
    }

    public Bytes2BytesZbMap getRawMap()
    {
        return topics;
    }

    public boolean moveTo(DirectBuffer topicName)
    {
        currentValue = topics.get(topicName);
        return currentValue != null;
    }

    public int getRemainingPartitions()
    {
        return currentValue.getInt(REMAINING_PARTITIONS_OFFSET, BYTE_ORDER);
    }

    public long getRequestPosition()
    {
        return currentValue.getLong(REQUEST_OFFSET, BYTE_ORDER);
    }

    public void put(DirectBuffer topicName, int remainingPartitions, long requestPosition)
    {
        inputValue.putInt(REMAINING_PARTITIONS_OFFSET, remainingPartitions, BYTE_ORDER);
        inputValue.putLong(REQUEST_OFFSET, requestPosition, BYTE_ORDER);

        topics.put(topicName, inputValue);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy