blob: 2b691c5e69424fee0270a55b1e3fa518bec6894c [file]
// 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.
//
import type { CommandResponse } from '../../client/client.type.js';
import { serializeIdentifier, type Id } from '../identifier.utils.js';
import { wrapCommand } from '../command.utils.js';
import { COMMAND_CODE } from '../command.code.js';
import { deserializeConsumerGroup, type ConsumerGroup } from './group.utils.js';
/**
* Parameters for the create consumer group command.
*/
export type CreateGroup = {
/** Stream identifier (ID or name) */
streamId: Id,
/** Topic identifier (ID or name) */
topicId: Id,
/** Consumer group name (1-255 bytes) */
name: string,
};
/**
* Create consumer group command definition.
* Creates a new consumer group within a topic.
*/
export const CREATE_GROUP = {
code: COMMAND_CODE.CreateGroup,
serialize: ({ streamId, topicId, name }: CreateGroup) => {
// Consumer group ID is now auto-assigned by the server, not sent in the protocol
const bName = Buffer.from(name);
if (bName.length < 1 || bName.length > 255)
throw new Error('Consumer group name should be between 1 and 255 bytes');
const b = Buffer.allocUnsafe(1);
b.writeUInt8(bName.length, 0);
return Buffer.concat([
serializeIdentifier(streamId),
serializeIdentifier(topicId),
b,
bName
]);
},
deserialize: (r: CommandResponse) => {
return deserializeConsumerGroup(r.data).data;
}
};
/**
* Executable create consumer group command function.
*/
export const createGroup = wrapCommand<CreateGroup, ConsumerGroup>(CREATE_GROUP);