This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a change to branch master
in repository disruptor.
from 564e27c Set minimum source/target version 1.5
adds 7763a4a Imported Upstream version 3.2.1
new aa192be Merge tag 'upstream/3.2.1'
new 1e41b6b New upstream release (3.2.1)
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 12 +-
README.md | 10 +
build.gradle | 13 +-
config/checkstyle/checkstyle.xml | 6 +-
config/checkstyle/suppress.xml | 9 +
debian/changelog | 7 +
debian/pom.xml | 2 +-
docs/ide/eclipse/Disruptor_eclipse_formatting.xml | 291 ++++++++++++++++++++
runme.sh | 20 ++
runoffheap.sh | 17 ++
.../com/lmax/disruptor/BatchEventProcessor.java | 5 -
.../lmax/disruptor/PhasedBackoffWaitStrategy.java | 130 ++-------
.../lmax/disruptor/SingleProducerSequencer.java | 5 +-
.../com/lmax/disruptor/SleepingWaitStrategy.java | 16 +-
.../java/com/lmax/disruptor/util/MutableLong.java | 8 +
...sruptor.java => AbstractPerfTestDisruptor.java} | 32 +--
...VsDisruptor.java => AbstractPerfTestQueue.java} | 38 +--
...ectVsEventTranslatorWithByteArrayBenchmark.java | 124 ---------
...ctVsEventTranslatorWithSingleLongBenchmark.java | 106 --------
...blisherToThreeProcessorPipelineLatencyTest.java | 298 ---------------------
.../com/lmax/disruptor/immutable/Constants.java | 7 +
.../disruptor/immutable/CustomPerformanceTest.java | 58 ++++
.../lmax/disruptor/immutable/CustomRingBuffer.java | 98 +++++++
.../lmax/disruptor/immutable/EventAccessor.java | 6 +
.../com/lmax/disruptor/immutable/EventHolder.java | 18 ++
.../disruptor/immutable/EventHolderHandler.java | 20 ++
.../com/lmax/disruptor/immutable/SimpleEvent.java | 28 ++
.../disruptor/immutable/SimpleEventHandler.java | 14 +
.../disruptor/immutable/SimplePerformanceTest.java | 74 +++++
.../offheap/OneToOneOffHeapThroughputTest.java | 188 +++++++++++++
.../offheap/OneToOneOnHeapThroughputTest.java | 160 +++++++++++
.../queue/OneToOneQueueThroughputTest.java | 102 +++++++
.../OneToThreeDiamondQueueThroughputTest.java} | 76 +-----
.../OneToThreePipelineQueueThroughputTest.java} | 111 ++------
.../OneToThreeQueueThroughputTest.java} | 107 ++------
.../disruptor/queue/PingPongQueueLatencyTest.java | 230 ++++++++++++++++
.../ThreeToOneQueueThroughputTest.java} | 98 +------
.../OneToOneRawBatchThroughputTest.java} | 31 +--
.../OneToOneRawThroughputTest.java} | 29 +-
.../OneToOneSequencedBatchThroughputTest.java} | 99 +++----
.../OneToOneSequencedLongArrayThroughputTest.java} | 111 +++-----
.../OneToOneSequencedThroughputTest.java} | 80 ++----
.../OneToThreeDiamondSequencedThroughputTest.java} | 106 +-------
...OneToThreePipelineSequencedThroughputTest.java} | 102 ++-----
.../OneToThreeSequencedThroughputTest.java} | 109 ++------
.../PingPongSequencedLatencyTest.java} | 205 +-------------
.../ThreeToOneSequencedBatchThroughputTest.java} | 110 ++------
.../ThreeToOneSequencedThroughputTest.java} | 102 ++-----
.../ThreeToThreeSequencedThroughputTest.java | 154 +++++++++++
.../support/EventCountingQueueProcessor.java | 2 +-
.../support/LatencyStepQueueProcessor.java | 104 -------
...ventHandler.java => LongArrayEventHandler.java} | 33 +--
...ValuePublisher.java => LongArrayPublisher.java} | 18 +-
.../support/MultiBufferBatchEventProcessor.java | 136 ++++++++++
.../com/lmax/disruptor/support/PerfTestUtil.java | 16 ++
.../{ => support}/ValueAdditionWorkHandler.java | 6 +-
...aluePublisher.java => ValueBatchPublisher.java} | 23 +-
.../OneToOneTranslatorThroughputTest.java} | 137 ++++------
...eToThreeReleasingWorkerPoolThroughputTest.java} | 81 ++----
.../OneToThreeWorkerPoolThroughputTest.java} | 78 ++----
.../TwoToTwoWorkProcessorThroughputTest.java} | 32 ++-
.../com/lmax/disruptor/RingBufferEventMatcher.java | 56 ++++
.../java/com/lmax/disruptor/RingBufferTest.java | 94 ++-----
.../disruptor/SequenceReportingCallbackTest.java | 5 +
src/test/java/com/lmax/disruptor/TortureTest.java | 8 +-
.../java/com/lmax/disruptor/dsl/DisruptorTest.java | 5 +-
66 files changed, 2248 insertions(+), 2368 deletions(-)
create mode 100644 config/checkstyle/suppress.xml
create mode 100644 docs/ide/eclipse/Disruptor_eclipse_formatting.xml
create mode 100755 runme.sh
create mode 100755 runoffheap.sh
copy
src/perftest/java/com/lmax/disruptor/{AbstractPerfTestQueueVsDisruptor.java =>
AbstractPerfTestDisruptor.java} (65%)
rename
src/perftest/java/com/lmax/disruptor/{AbstractPerfTestQueueVsDisruptor.java =>
AbstractPerfTestQueue.java} (58%)
delete mode 100644
src/perftest/java/com/lmax/disruptor/DirectVsEventTranslatorWithByteArrayBenchmark.java
delete mode 100644
src/perftest/java/com/lmax/disruptor/DirectVsEventTranslatorWithSingleLongBenchmark.java
delete mode 100644
src/perftest/java/com/lmax/disruptor/ThrottledOnePublisherToThreeProcessorPipelineLatencyTest.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/Constants.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/CustomPerformanceTest.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/CustomRingBuffer.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/EventAccessor.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/EventHolder.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/EventHolderHandler.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/SimpleEvent.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/SimpleEventHandler.java
create mode 100644
src/perftest/java/com/lmax/disruptor/immutable/SimplePerformanceTest.java
create mode 100644
src/perftest/java/com/lmax/disruptor/offheap/OneToOneOffHeapThroughputTest.java
create mode 100644
src/perftest/java/com/lmax/disruptor/offheap/OneToOneOnHeapThroughputTest.java
create mode 100644
src/perftest/java/com/lmax/disruptor/queue/OneToOneQueueThroughputTest.java
copy
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeProcessorDiamondThroughputTest.java
=> queue/OneToThreeDiamondQueueThroughputTest.java} (66%)
copy
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeProcessorPipelineThroughputTest.java
=> queue/OneToThreePipelineQueueThroughputTest.java} (50%)
copy
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeProcessorMultiCastThroughputTest.java
=> queue/OneToThreeQueueThroughputTest.java} (52%)
create mode 100644
src/perftest/java/com/lmax/disruptor/queue/PingPongQueueLatencyTest.java
copy
src/perftest/java/com/lmax/disruptor/{ThreePublisherToOneProcessorSequencedThroughputTest.java
=> queue/ThreeToOneQueueThroughputTest.java} (53%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToOneProcessorRawBatchThroughputTest.java
=> raw/OneToOneRawBatchThroughputTest.java} (88%)
copy
src/perftest/java/com/lmax/disruptor/{OnePublisherToOneProcessorRawThroughputTest.java
=> raw/OneToOneRawThroughputTest.java} (89%)
copy
src/perftest/java/com/lmax/disruptor/{OnePublisherToOneProcessorUniCastThroughputTest.java
=> sequenced/OneToOneSequencedBatchThroughputTest.java} (61%)
copy
src/perftest/java/com/lmax/disruptor/{OnePublisherToOneProcessorUniCastThroughputTest.java
=> sequenced/OneToOneSequencedLongArrayThroughputTest.java} (52%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToOneProcessorUniCastThroughputTest.java
=> sequenced/OneToOneSequencedThroughputTest.java} (66%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeProcessorDiamondThroughputTest.java
=> sequenced/OneToThreeDiamondSequencedThroughputTest.java} (61%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeProcessorPipelineThroughputTest.java
=> sequenced/OneToThreePipelineSequencedThroughputTest.java} (65%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeProcessorMultiCastThroughputTest.java
=> sequenced/OneToThreeSequencedThroughputTest.java} (62%)
rename src/perftest/java/com/lmax/disruptor/{PingPongLatencyTest.java =>
sequenced/PingPongSequencedLatencyTest.java} (56%)
copy
src/perftest/java/com/lmax/disruptor/{ThreePublisherToOneProcessorSequencedThroughputTest.java
=> sequenced/ThreeToOneSequencedBatchThroughputTest.java} (59%)
rename
src/perftest/java/com/lmax/disruptor/{ThreePublisherToOneProcessorSequencedThroughputTest.java
=> sequenced/ThreeToOneSequencedThroughputTest.java} (63%)
create mode 100644
src/perftest/java/com/lmax/disruptor/sequenced/ThreeToThreeSequencedThroughputTest.java
delete mode 100644
src/perftest/java/com/lmax/disruptor/support/LatencyStepQueueProcessor.java
rename
src/perftest/java/com/lmax/disruptor/support/{LatencyStepEventHandler.java =>
LongArrayEventHandler.java} (62%)
copy src/perftest/java/com/lmax/disruptor/support/{ValuePublisher.java =>
LongArrayPublisher.java} (68%)
create mode 100644
src/perftest/java/com/lmax/disruptor/support/MultiBufferBatchEventProcessor.java
rename src/perftest/java/com/lmax/disruptor/{ =>
support}/ValueAdditionWorkHandler.java (84%)
copy src/perftest/java/com/lmax/disruptor/support/{ValuePublisher.java =>
ValueBatchPublisher.java} (61%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToOneProcessorRawThroughputTest.java
=> translator/OneToOneTranslatorThroughputTest.java} (51%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeWorkerPoolThroughputReleasingTest.java
=> workhandler/OneToThreeReleasingWorkerPoolThroughputTest.java} (65%)
rename
src/perftest/java/com/lmax/disruptor/{OnePublisherToThreeWorkerPoolThroughputTest.java
=> workhandler/OneToThreeWorkerPoolThroughputTest.java} (73%)
rename
src/perftest/java/com/lmax/disruptor/{TwoPublisherToTwoProcessorWorkProcessorThroughputTest.java
=> workhandler/TwoToTwoWorkProcessorThroughputTest.java} (88%)
create mode 100644 src/test/java/com/lmax/disruptor/RingBufferEventMatcher.java
--
Alioth's /usr/local/bin/git-commit-notice on
/srv/git.debian.org/git/pkg-java/disruptor.git
_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits