Merge pull request #1936 from nosqlbench/nosqlbench-1935-pluscycles

nosqlbench-1935 Allow for +increment format in cycles and recycles intervals
This commit is contained in:
Jonathan Shook 2024-05-01 12:58:29 -07:00 committed by GitHub
commit 4500d05a83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 107 additions and 8 deletions

View File

@ -22,7 +22,12 @@ import org.apache.logging.log4j.Logger;
import java.security.InvalidParameterException;
public record CyclesSpec(long first_inclusive, long last_exclusive, String firstSpec, String lastSpec) {
public record CyclesSpec(
long first_inclusive,
long last_exclusive,
String firstSpec,
String lastSpec
) {
private final static Logger logger = LogManager.getLogger(CyclesSpec.class);
public CyclesSpec {
if (first_inclusive>last_exclusive) {
@ -32,16 +37,24 @@ public record CyclesSpec(long first_inclusive, long last_exclusive, String first
public static CyclesSpec parse(String spec) {
int rangeAt = spec.indexOf("..");
String beginningInclusive = "0";
String endingExclusive = spec;
String beginningSpec = "0";
String endingSpec = spec;
if (0 < rangeAt) {
beginningInclusive = spec.substring(0, rangeAt);
endingExclusive = spec.substring(rangeAt+2);
beginningSpec = spec.substring(0, rangeAt);
endingSpec = spec.substring(rangeAt+2);
}
long first = Unit.longCountFor(beginningSpec).orElseThrow(() -> new RuntimeException("Unable to parse start cycles from " + spec));
long last=first;
if (endingSpec.startsWith("+")) {
long added=Unit.longCountFor(endingSpec.substring(1)).orElseThrow(() -> new RuntimeException(
"Unable to parse incremental cycle interval. Use one of these forms: 100 or 0..100 or 0..+100"
));
last = first+added;
} else {
last = Unit.longCountFor(endingSpec).orElseThrow(() -> new RuntimeException("Unable to parse start cycles from " + spec));
}
long first = Unit.longCountFor(beginningInclusive).orElseThrow(() -> new RuntimeException("Unable to parse start cycles from " + spec));
long last = Unit.longCountFor(endingExclusive).orElseThrow(() -> new RuntimeException("Unable to parse start cycles from " + spec));
return new CyclesSpec(first, last, beginningInclusive, endingExclusive);
return new CyclesSpec(first, last, beginningSpec, endingSpec);
}
public String summary() {
@ -74,4 +87,30 @@ public record CyclesSpec(long first_inclusive, long last_exclusive, String first
public long cycle_count() {
return last_exclusive -first_inclusive;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (!(o instanceof CyclesSpec that))
return false;
if (last_exclusive!=that.last_exclusive)
return false;
if (first_inclusive!=that.first_inclusive)
return false;
if (!firstSpec.equals(that.firstSpec))
return false;
if (!lastSpec.equals(that.lastSpec))
return false;
return true;
}
@Override
public int hashCode() {
int result = Long.hashCode(first_inclusive);
result = 31 * result + Long.hashCode(last_exclusive);
result = 31 * result + firstSpec.hashCode();
result = 31 * result + lastSpec.hashCode();
return result;
}
}

View File

@ -0,0 +1,60 @@
/*
* Copyright (c) 2024 nosqlbench
*
* 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.
*/
package io.nosqlbench.nb.api.engine.activityimpl;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.*;
public class CyclesSpecTest {
@Test
public void testSingleNumberSpec() {
assertThat(CyclesSpec.parse("100")).isEqualTo(
new CyclesSpec(0,100,"0","100")
);
}
@Test
public void testIntervalSpec() {
assertThat(CyclesSpec.parse("3..13")).isEqualTo(
new CyclesSpec(3,13,"3","13")
);
}
@Test
public void testUnitsSupport() {
assertThat(CyclesSpec.parse("5M")).isEqualTo(
new CyclesSpec(0,5_000_000L,"0","5M")
);
}
@Test
public void testIncrementalSupport() {
assertThat(CyclesSpec.parse("5M..+100")).isEqualTo(
new CyclesSpec(5_000_000L,5_000_100L,"5M","+100")
);
}
@Test
public void testIncrementalUnitsSupport() {
assertThat(CyclesSpec.parse("5M..+1M")).isEqualTo(
new CyclesSpec(5_000_000L,6_000_000L,"5M","+1M")
);
}
}