-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Oleh Dokuka <[email protected]> # Conflicts: # build.gradle # gradle.properties
- Loading branch information
Showing
6 changed files
with
381 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ | |
# limitations under the License. | ||
# | ||
version=1.2.0 | ||
perfBaselineVersion=1.1.3 | ||
perfBaselineVersion=1.1.4 |
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
137 changes: 137 additions & 0 deletions
137
rsocket-core/src/jcstress/java/io/rsocket/utils/FastLogger.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 |
---|---|---|
@@ -0,0 +1,137 @@ | ||
package io.rsocket.utils; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Comparator; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.concurrent.ConcurrentHashMap; | ||
import java.util.regex.Matcher; | ||
import java.util.regex.Pattern; | ||
import java.util.stream.Collectors; | ||
import reactor.util.Logger; | ||
|
||
/** | ||
* Implementation of {@link Logger} which is based on the {@link ThreadLocal} based queue which | ||
* collects all the events on the per-thread basis. </br> Such logger is designed to have all events | ||
* stored during the stress-test run and then sorted and printed out once all the Threads completed | ||
* execution (inside the {@link org.openjdk.jcstress.annotations.Arbiter} annotated method. </br> | ||
* Note, this implementation only supports trace-level logs and ignores all others, it is intended | ||
* to be used by {@link reactor.core.publisher.StateLogger}. | ||
*/ | ||
public class FastLogger implements Logger { | ||
|
||
final Map<Thread, List<String>> queues = new ConcurrentHashMap<>(); | ||
|
||
final ThreadLocal<List<String>> logsQueueLocal = | ||
ThreadLocal.withInitial( | ||
() -> { | ||
final ArrayList<String> logs = new ArrayList<>(100); | ||
queues.put(Thread.currentThread(), logs); | ||
return logs; | ||
}); | ||
|
||
private final String name; | ||
|
||
public FastLogger(String name) { | ||
this.name = name; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return queues | ||
.values() | ||
.stream() | ||
.flatMap(List::stream) | ||
.sorted( | ||
Comparator.comparingLong( | ||
s -> { | ||
Pattern pattern = Pattern.compile("\\[(.*?)]"); | ||
Matcher matcher = pattern.matcher(s); | ||
matcher.find(); | ||
return Long.parseLong(matcher.group(1)); | ||
})) | ||
.collect(Collectors.joining("\n")); | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return this.name; | ||
} | ||
|
||
@Override | ||
public boolean isTraceEnabled() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public void trace(String msg) { | ||
logsQueueLocal.get().add(String.format("[%s] %s", System.nanoTime(), msg)); | ||
} | ||
|
||
@Override | ||
public void trace(String format, Object... arguments) { | ||
trace(String.format(format, arguments)); | ||
} | ||
|
||
@Override | ||
public void trace(String msg, Throwable t) { | ||
trace(String.format("%s, %s", msg, Arrays.toString(t.getStackTrace()))); | ||
} | ||
|
||
@Override | ||
public boolean isDebugEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void debug(String msg) {} | ||
|
||
@Override | ||
public void debug(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void debug(String msg, Throwable t) {} | ||
|
||
@Override | ||
public boolean isInfoEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void info(String msg) {} | ||
|
||
@Override | ||
public void info(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void info(String msg, Throwable t) {} | ||
|
||
@Override | ||
public boolean isWarnEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void warn(String msg) {} | ||
|
||
@Override | ||
public void warn(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void warn(String msg, Throwable t) {} | ||
|
||
@Override | ||
public boolean isErrorEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void error(String msg) {} | ||
|
||
@Override | ||
public void error(String format, Object... arguments) {} | ||
|
||
@Override | ||
public void error(String msg, Throwable t) {} | ||
} |
Oops, something went wrong.