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

org.apache.kafka.common.requests.DeleteGroupsRequest Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
/*
 * 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.common.requests;

import org.apache.kafka.common.protocol.ApiKeys;
import org.apache.kafka.common.protocol.Errors;
import org.apache.kafka.common.protocol.types.ArrayOf;
import org.apache.kafka.common.protocol.types.Field;
import org.apache.kafka.common.protocol.types.Schema;
import org.apache.kafka.common.protocol.types.Struct;
import org.apache.kafka.common.utils.Utils;

import java.nio.ByteBuffer;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import static org.apache.kafka.common.protocol.types.Type.STRING;

public class DeleteGroupsRequest extends AbstractRequest {
    private static final String GROUPS_KEY_NAME = "groups";

    /* DeleteGroups api */
    private static final Schema DELETE_GROUPS_REQUEST_V0 = new Schema(
            new Field(GROUPS_KEY_NAME, new ArrayOf(STRING), "An array of groups to be deleted."));

    /**
     * The version number is bumped to indicate that on quota violation brokers send out responses before throttling.
     */
    private static final Schema DELETE_GROUPS_REQUEST_V1 = DELETE_GROUPS_REQUEST_V0;

    public static Schema[] schemaVersions() {
        return new Schema[]{DELETE_GROUPS_REQUEST_V0, DELETE_GROUPS_REQUEST_V1};
    }

    private final Set groups;

    public static class Builder extends AbstractRequest.Builder {
        private final Set groups;

        public Builder(Set groups) {
            super(ApiKeys.DELETE_GROUPS);
            this.groups = groups;
        }

        @Override
        public DeleteGroupsRequest build(short version) {
            return new DeleteGroupsRequest(groups, version);
        }

        @Override
        public String toString() {
            StringBuilder bld = new StringBuilder();
            bld.append("(type=DeleteGroupsRequest").
                append(", groups=(").append(Utils.join(groups, ", ")).append(")").
                append(")");
            return bld.toString();
        }
    }

    private DeleteGroupsRequest(Set groups, short version) {
        super(ApiKeys.DELETE_GROUPS, version);
        this.groups = groups;
    }

    public DeleteGroupsRequest(Struct struct, short version) {
        super(ApiKeys.DELETE_GROUPS, version);
        Object[] groupsArray = struct.getArray(GROUPS_KEY_NAME);
        Set groups = new HashSet<>(groupsArray.length);
        for (Object group : groupsArray)
            groups.add((String) group);

        this.groups = groups;
    }

    @Override
    protected Struct toStruct() {
        Struct struct = new Struct(ApiKeys.DELETE_GROUPS.requestSchema(version()));
        struct.set(GROUPS_KEY_NAME, groups.toArray());
        return struct;
    }

    @Override
    public AbstractResponse getErrorResponse(int throttleTimeMs, Throwable e) {
        Errors error = Errors.forException(e);
        Map groupErrors = new HashMap<>(groups.size());
        for (String group : groups)
            groupErrors.put(group, error);

        switch (version()) {
            case 0:
            case 1:
                return new DeleteGroupsResponse(throttleTimeMs, groupErrors);
            default:
                throw new IllegalArgumentException(String.format("Version %d is not valid. Valid versions for %s are 0 to %d",
                    version(), ApiKeys.DELETE_GROUPS.name, ApiKeys.DELETE_GROUPS.latestVersion()));
        }
    }

    public Set groups() {
        return groups;
    }

    public static DeleteGroupsRequest parse(ByteBuffer buffer, short version) {
        return new DeleteGroupsRequest(ApiKeys.DELETE_GROUPS.parseRequest(version, buffer), version);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy