com.rabbitmq.client.amqp.ByteCapacity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amqp-client Show documentation
Show all versions of amqp-client Show documentation
The RabbitMQ AMQP 1.0 Java client library defines an API to access RabbitMQ
with the AMQP 1.0 protocol.
// Copyright (c) 2024 Broadcom. All Rights Reserved.
// The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
//
// Licensed 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.
//
// If you have any questions regarding licensing, please contact us at
// [email protected].
package com.rabbitmq.client.amqp;
import java.util.Map;
import java.util.Objects;
import java.util.function.BiFunction;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/** API to easily configure byte capacities. */
public class ByteCapacity implements Comparable {
private static final String UNIT_MB = "mb";
private static final int KILOBYTES_MULTIPLIER = 1000;
private static final int MEGABYTES_MULTIPLIER = 1000 * 1000;
private static final int GIGABYTES_MULTIPLIER = 1000 * 1000 * 1000;
private static final long TERABYTES_MULTIPLIER = 1000L * 1000L * 1000L * 1000L;
private static final Pattern PATTERN =
Pattern.compile("^(?\\d*)((?kb|mb|gb|tb))?$", Pattern.CASE_INSENSITIVE);
private static final String GROUP_SIZE = "size";
private static final String GROUP_UNIT = "unit";
private static final String UNIT_KB = "kb";
private static final String UNIT_GB = "gb";
private static final String UNIT_TB = "tb";
private static final Map> CONSTRUCTORS =
Map.of(
UNIT_KB,
ByteCapacity::kB,
UNIT_MB,
ByteCapacity::MB,
UNIT_GB,
ByteCapacity::GB,
UNIT_TB,
ByteCapacity::TB);
private final long bytes;
private final String input;
private ByteCapacity(long bytes) {
this(bytes, String.valueOf(bytes));
}
private ByteCapacity(long bytes, String input) {
this.bytes = bytes;
this.input = input;
}
public static ByteCapacity B(long bytes) {
return new ByteCapacity(bytes);
}
public static ByteCapacity kB(long kilobytes) {
return new ByteCapacity(kilobytes * KILOBYTES_MULTIPLIER);
}
public static ByteCapacity MB(long megabytes) {
return new ByteCapacity(megabytes * MEGABYTES_MULTIPLIER);
}
public static ByteCapacity GB(long gigabytes) {
return new ByteCapacity(gigabytes * GIGABYTES_MULTIPLIER);
}
public static ByteCapacity TB(long terabytes) {
return new ByteCapacity(terabytes * TERABYTES_MULTIPLIER);
}
private static ByteCapacity kB(long kilobytes, String input) {
return new ByteCapacity(kilobytes * KILOBYTES_MULTIPLIER, input);
}
private static ByteCapacity MB(long megabytes, String input) {
return new ByteCapacity(megabytes * MEGABYTES_MULTIPLIER, input);
}
private static ByteCapacity GB(long gigabytes, String input) {
return new ByteCapacity(gigabytes * GIGABYTES_MULTIPLIER, input);
}
private static ByteCapacity TB(long terabytes, String input) {
return new ByteCapacity(terabytes * TERABYTES_MULTIPLIER, input);
}
public long toBytes() {
return bytes;
}
public static ByteCapacity from(String value) {
Matcher matcher = PATTERN.matcher(value);
if (matcher.matches()) {
long size = Long.parseLong(matcher.group(GROUP_SIZE));
String unit = matcher.group(GROUP_UNIT);
ByteCapacity result;
if (unit == null) {
result = ByteCapacity.B(size);
} else {
return CONSTRUCTORS
.getOrDefault(
unit.toLowerCase(),
(v, input) -> {
throw new IllegalArgumentException("Unknown capacity unit: " + unit);
})
.apply(size, value);
}
return result;
} else {
throw new IllegalArgumentException("Cannot parse value for byte capacity: " + value);
}
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ByteCapacity that = (ByteCapacity) o;
return bytes == that.bytes;
}
@Override
public int hashCode() {
return Objects.hash(bytes);
}
@Override
public String toString() {
return this.input;
}
@Override
public int compareTo(ByteCapacity other) {
return Long.compare(this.bytes, other.bytes);
}
}