-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2963 from ReactiveX/StandardProducers
Set of standard producers and updated queue implementations with some
- Loading branch information
Showing
18 changed files
with
2,153 additions
and
94 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
87 changes: 0 additions & 87 deletions
87
src/main/java/rx/internal/operators/SingleDelayedProducer.java
This file was deleted.
Oops, something went wrong.
191 changes: 191 additions & 0 deletions
191
src/main/java/rx/internal/producers/ProducerArbiter.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,191 @@ | ||
/** | ||
* Copyright 2015 Netflix, Inc. | ||
* | ||
* 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 rx.internal.producers; | ||
|
||
import rx.*; | ||
|
||
/** | ||
* Producer that allows changing an underlying producer atomically and correctly resume with the accumulated | ||
* requests. | ||
*/ | ||
public final class ProducerArbiter implements Producer { | ||
long requested; | ||
Producer currentProducer; | ||
|
||
boolean emitting; | ||
long missedRequested; | ||
long missedProduced; | ||
Producer missedProducer; | ||
|
||
static final Producer NULL_PRODUCER = new Producer() { | ||
@Override | ||
public void request(long n) { | ||
|
||
} | ||
}; | ||
|
||
@Override | ||
public void request(long n) { | ||
if (n < 0) { | ||
throw new IllegalArgumentException("n >= 0 required"); | ||
} | ||
if (n == 0) { | ||
return; | ||
} | ||
synchronized (this) { | ||
if (emitting) { | ||
missedRequested += n; | ||
return; | ||
} | ||
emitting = true; | ||
} | ||
boolean skipFinal = false; | ||
try { | ||
long r = requested; | ||
long u = r + n; | ||
if (u < 0) { | ||
u = Long.MAX_VALUE; | ||
} | ||
requested = u; | ||
|
||
Producer p = currentProducer; | ||
if (p != null) { | ||
p.request(n); | ||
} | ||
|
||
emitLoop(); | ||
skipFinal = true; | ||
} finally { | ||
if (!skipFinal) { | ||
synchronized (this) { | ||
emitting = false; | ||
} | ||
} | ||
} | ||
} | ||
|
||
public void produced(long n) { | ||
if (n <= 0) { | ||
throw new IllegalArgumentException("n > 0 required"); | ||
} | ||
synchronized (this) { | ||
if (emitting) { | ||
missedProduced += n; | ||
return; | ||
} | ||
emitting = true; | ||
} | ||
|
||
boolean skipFinal = false; | ||
try { | ||
long r = requested; | ||
if (r != Long.MAX_VALUE) { | ||
long u = r - n; | ||
if (u < 0) { | ||
throw new IllegalStateException(); | ||
} | ||
requested = u; | ||
} | ||
|
||
emitLoop(); | ||
skipFinal = true; | ||
} finally { | ||
if (!skipFinal) { | ||
synchronized (this) { | ||
emitting = false; | ||
} | ||
} | ||
} | ||
} | ||
|
||
public void setProducer(Producer newProducer) { | ||
synchronized (this) { | ||
if (emitting) { | ||
missedProducer = newProducer == null ? NULL_PRODUCER : newProducer; | ||
return; | ||
} | ||
emitting = true; | ||
} | ||
boolean skipFinal = false; | ||
try { | ||
currentProducer = newProducer; | ||
if (newProducer != null) { | ||
newProducer.request(requested); | ||
} | ||
|
||
emitLoop(); | ||
skipFinal = true; | ||
} finally { | ||
if (!skipFinal) { | ||
synchronized (this) { | ||
emitting = false; | ||
} | ||
} | ||
} | ||
} | ||
|
||
public void emitLoop() { | ||
for (;;) { | ||
long localRequested; | ||
long localProduced; | ||
Producer localProducer; | ||
synchronized (this) { | ||
localRequested = missedRequested; | ||
localProduced = missedProduced; | ||
localProducer = missedProducer; | ||
if (localRequested == 0L | ||
&& localProduced == 0L | ||
&& localProducer == null) { | ||
emitting = false; | ||
return; | ||
} | ||
missedRequested = 0L; | ||
missedProduced = 0L; | ||
missedProducer = null; | ||
} | ||
|
||
long r = requested; | ||
|
||
if (r != Long.MAX_VALUE) { | ||
long u = r + localRequested; | ||
if (u < 0 || u == Long.MAX_VALUE) { | ||
r = Long.MAX_VALUE; | ||
requested = r; | ||
} else { | ||
long v = u - localProduced; | ||
if (v < 0) { | ||
throw new IllegalStateException("more produced than requested"); | ||
} | ||
r = v; | ||
requested = v; | ||
} | ||
} | ||
if (localProducer != null) { | ||
if (localProducer == NULL_PRODUCER) { | ||
currentProducer = null; | ||
} else { | ||
currentProducer = localProducer; | ||
localProducer.request(r); | ||
} | ||
} else { | ||
Producer p = currentProducer; | ||
if (p != null && localRequested != 0L) { | ||
p.request(localRequested); | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.