blob: e5e40cb55311828e48773907a717aa6e45b88c71 [file] [log] [blame]
// 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.
using System.Net;
using System.Text;
using Apache.Iggy;
using Apache.Iggy.Contracts;
using Apache.Iggy.Enums;
using Apache.Iggy.Exceptions;
using Apache.Iggy.IggyClient;
using Apache.Iggy.Messages;
using Microsoft.Extensions.Logging;
using Partitioning = Apache.Iggy.Kinds.Partitioning;
namespace Iggy_SDK.Examples.GettingStarted.Producer;
public static class Utils
{
private const string StreamName = "getting-started-example-stream";
private const string TopicName = "getting-started-example-topic";
private const uint PartitionId = 0;
private const uint BatchesLimit = 5;
public static async Task InitSystem(IIggyClient client, ILogger logger)
{
try
{
await client.CreateStreamAsync(StreamName);
logger.LogInformation("Stream was created.");
}
catch (InvalidResponseException)
{
logger.LogWarning("Stream already exists and will not be created again.");
}
try
{
await client.CreateTopicAsync(
Identifier.String(StreamName),
TopicName,
1,
CompressionAlgorithm.None
);
logger.LogInformation("Topic was created.");
}
catch (InvalidResponseException)
{
logger.LogWarning("Topic already exists and will not be created again.");
}
}
public static async Task ProduceMessages(IIggyClient client, ILogger logger)
{
var interval = TimeSpan.FromMilliseconds(500);
logger.LogInformation(
"Messages will be sent to stream: {StreamId}, topic: {TopicId}, partition: {PartitionId} with interval {Interval}.",
StreamName,
TopicName,
PartitionId,
interval
);
var currentId = 0;
var messagesPerBatch = 10;
var sentBatches = 0;
var partitioning = Partitioning.PartitionId((int)PartitionId); // should be uint
while (true)
{
if (sentBatches == BatchesLimit)
{
logger.LogInformation(
"Sent {SentBatches} batches of messages, exiting.",
sentBatches
);
return;
}
var payloads = Enumerable
.Range(currentId, messagesPerBatch)
.Aggregate(new List<string>(), (list, next) =>
{
list.Add($"message-{next}");
return list;
});
var messages = payloads.Select(payload => new Message(Guid.NewGuid(), Encoding.UTF8.GetBytes(payload)))
.ToList();
var streamIdentifier = Identifier.String(StreamName);
var topicIdentifier = Identifier.String(TopicName);
await client.SendMessagesAsync(streamIdentifier, topicIdentifier, partitioning, messages);
currentId += messagesPerBatch;
sentBatches++;
logger.LogInformation("Sent messages: {Messages}.", payloads);
await Task.Delay(interval);
}
}
public static string GetTcpServerAddr(string[] args, ILogger logger)
{
var defaultServerAddr = "127.0.0.1:8090";
var argumentName = args.Length > 0 ? args[0] : null;
var tcpServerAddr = args.Length > 1 ? args[1] : null;
if (argumentName is null && tcpServerAddr is null) return defaultServerAddr;
argumentName = argumentName ?? throw new ArgumentNullException(argumentName);
if (argumentName != "--tcp-server-address")
{
throw new FormatException(
$"Invalid argument {argumentName}! Usage: --tcp-server-address <server-address>"
);
}
tcpServerAddr = tcpServerAddr ?? throw new ArgumentNullException(tcpServerAddr);
if (!IPEndPoint.TryParse(tcpServerAddr, out _))
{
throw new FormatException(
$"Invalid server address {tcpServerAddr}! Usage: --tcp-server-address <server-address>"
);
}
logger.LogInformation("Using server address: {TcpServerAddr}", tcpServerAddr);
return tcpServerAddr;
}
}