forked from brianfrankcooper/YCSB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[core] Fix checkstyle for generator package (brianfrankcooper#915)
- Loading branch information
Showing
20 changed files
with
1,194 additions
and
1,232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 29 additions & 30 deletions
59
core/src/main/java/com/yahoo/ycsb/generator/ConstantIntegerGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,43 @@ | ||
/** | ||
* Copyright (c) 2010 Yahoo! Inc. All rights reserved. | ||
* | ||
* 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. See accompanying | ||
* Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors. All rights reserved. | ||
* <p> | ||
* 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 | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* 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. See accompanying | ||
* LICENSE file. | ||
*/ | ||
package com.yahoo.ycsb.generator; | ||
|
||
/** | ||
* A trivial integer generator that always returns the same value. | ||
* | ||
* @author sears | ||
* | ||
*/ | ||
public class ConstantIntegerGenerator extends NumberGenerator { | ||
private final int i; | ||
/** | ||
* @param i The integer that this generator will always return. | ||
*/ | ||
public ConstantIntegerGenerator(int i) { | ||
this.i = i; | ||
} | ||
private final int i; | ||
|
||
@Override | ||
public Integer nextValue() { | ||
return i; | ||
} | ||
/** | ||
* @param i The integer that this generator will always return. | ||
*/ | ||
public ConstantIntegerGenerator(int i) { | ||
this.i = i; | ||
} | ||
|
||
@Override | ||
public double mean() { | ||
return i; | ||
} | ||
@Override | ||
public Integer nextValue() { | ||
return i; | ||
} | ||
|
||
@Override | ||
public double mean() { | ||
return i; | ||
} | ||
|
||
} |
82 changes: 40 additions & 42 deletions
82
core/src/main/java/com/yahoo/ycsb/generator/CounterGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,50 @@ | ||
/** | ||
* Copyright (c) 2010 Yahoo! Inc. All rights reserved. | ||
* | ||
* 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. See accompanying | ||
* LICENSE file. | ||
/** | ||
* Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors. All rights reserved. | ||
* <p> | ||
* 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 | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* 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. See accompanying | ||
* LICENSE file. | ||
*/ | ||
|
||
package com.yahoo.ycsb.generator; | ||
|
||
import java.util.concurrent.atomic.AtomicInteger; | ||
|
||
/** | ||
* Generates a sequence of integers 0, 1, ... | ||
* Generates a sequence of integers. | ||
* (0, 1, ...) | ||
*/ | ||
public class CounterGenerator extends NumberGenerator | ||
{ | ||
private final AtomicInteger counter; | ||
public class CounterGenerator extends NumberGenerator { | ||
private final AtomicInteger counter; | ||
|
||
/** | ||
* Create a counter that starts at countstart. | ||
*/ | ||
public CounterGenerator(int countstart) { | ||
counter = new AtomicInteger(countstart); | ||
} | ||
|
||
@Override | ||
public Integer nextValue() { | ||
return counter.getAndIncrement(); | ||
} | ||
|
||
@Override | ||
public Integer lastValue() { | ||
return counter.get() - 1; | ||
} | ||
|
||
/** | ||
* Create a counter that starts at countstart | ||
*/ | ||
public CounterGenerator(int countstart) | ||
{ | ||
counter=new AtomicInteger(countstart); | ||
} | ||
|
||
@Override | ||
public Integer nextValue() | ||
{ | ||
return counter.getAndIncrement(); | ||
} | ||
|
||
@Override | ||
public Integer lastValue() | ||
{ | ||
return counter.get() - 1; | ||
} | ||
@Override | ||
public double mean() { | ||
throw new UnsupportedOperationException("Can't compute mean of non-stationary distribution!"); | ||
} | ||
@Override | ||
public double mean() { | ||
throw new UnsupportedOperationException("Can't compute mean of non-stationary distribution!"); | ||
} | ||
} |
Oops, something went wrong.