kafka ClientQuotasDelta 源码

  • 2022-10-20
  • 浏览 (226)

kafka ClientQuotasDelta 代码

文件路径:/metadata/src/main/java/org/apache/kafka/image/ClientQuotasDelta.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.kafka.image;

import org.apache.kafka.common.metadata.ClientQuotaRecord;
import org.apache.kafka.common.quota.ClientQuotaEntity;
import org.apache.kafka.server.common.MetadataVersion;

import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;


public final class ClientQuotasDelta {
    private final ClientQuotasImage image;
    private final Map<ClientQuotaEntity, ClientQuotaDelta> changes = new HashMap<>();

    public ClientQuotasDelta(ClientQuotasImage image) {
        this.image = image;
    }

    public Map<ClientQuotaEntity, ClientQuotaDelta> changes() {
        return changes;
    }

    public void finishSnapshot() {
        for (Entry<ClientQuotaEntity, ClientQuotaImage> entry : image.entities().entrySet()) {
            ClientQuotaEntity entity = entry.getKey();
            ClientQuotaImage quotaImage = entry.getValue();
            ClientQuotaDelta quotaDelta = changes.computeIfAbsent(entity,
                __ -> new ClientQuotaDelta(quotaImage));
            quotaDelta.finishSnapshot();
        }
    }

    public void handleMetadataVersionChange(MetadataVersion newVersion) {
        // no-op
    }

    public void replay(ClientQuotaRecord record) {
        ClientQuotaEntity entity = ClientQuotaImage.dataToEntity(record.entity());
        ClientQuotaDelta change = changes.computeIfAbsent(entity, __ ->
            new ClientQuotaDelta(image.entities().
                getOrDefault(entity, ClientQuotaImage.EMPTY)));
        change.replay(record);
    }

    public ClientQuotasImage apply() {
        Map<ClientQuotaEntity, ClientQuotaImage> newEntities =
            new HashMap<>(image.entities().size());
        for (Entry<ClientQuotaEntity, ClientQuotaImage> entry : image.entities().entrySet()) {
            ClientQuotaEntity entity = entry.getKey();
            ClientQuotaDelta change = changes.get(entity);
            if (change == null) {
                newEntities.put(entity, entry.getValue());
            } else {
                ClientQuotaImage quotaImage = change.apply();
                if (!quotaImage.isEmpty()) {
                    newEntities.put(entity, quotaImage);
                }
            }
        }
        for (Entry<ClientQuotaEntity, ClientQuotaDelta> entry : changes.entrySet()) {
            ClientQuotaEntity entity = entry.getKey();
            if (!newEntities.containsKey(entity)) {
                ClientQuotaImage quotaImage = entry.getValue().apply();
                if (!quotaImage.isEmpty()) {
                    newEntities.put(entity, quotaImage);
                }
            }
        }
        return new ClientQuotasImage(newEntities);
    }

    @Override
    public String toString() {
        return "ClientQuotasDelta(" +
            "changes=" + changes +
            ')';
    }
}

相关信息

kafka 源码目录

相关文章

kafka AclsDelta 源码

kafka AclsImage 源码

kafka ClientQuotaDelta 源码

kafka ClientQuotaImage 源码

kafka ClientQuotasImage 源码

kafka ClusterDelta 源码

kafka ClusterImage 源码

kafka ConfigurationDelta 源码

kafka ConfigurationImage 源码

kafka ConfigurationsDelta 源码

0  赞