@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
178 lines (143 loc) • 4.59 kB
JavaScript
// ets_tracing: off
import "../../Operator/index.mjs";
import * as Chunk from "../../Collections/Immutable/Chunk/index.mjs";
import { Hub, Subscription } from "./Hub.mjs";
export class BoundedHubArb extends Hub {
constructor(requestedCapacity) {
super();
this.publisherIndex = 0;
this.subscriberCount = 0;
this.subscribersIndex = 0;
this.array = Array.from({
length: requestedCapacity
});
this.subscribers = Array.from({
length: requestedCapacity
});
this.capacity = requestedCapacity;
}
isEmpty() {
return this.publisherIndex === this.subscribersIndex;
}
isFull() {
return this.publisherIndex === this.subscribersIndex + this.capacity;
}
publish(a) {
if (this.isFull()) {
return false;
}
if (this.subscriberCount !== 0) {
const index = this.publisherIndex % this.capacity;
this.array[index] = a;
this.subscribers[index] = this.subscriberCount;
this.publisherIndex += 1;
}
return true;
}
publishAll(as) {
const asArray = Chunk.from(as);
const n = Chunk.size(asArray);
const size = this.publisherIndex - this.subscribersIndex;
const available = this.capacity - size;
const forHub = Math.min(n, available);
if (forHub === 0) {
return asArray;
}
let iteratorIndex = 0;
const publishAllIndex = this.publisherIndex + forHub;
while (this.publisherIndex !== publishAllIndex) {
const a = Chunk.unsafeGet_(asArray, iteratorIndex++);
const index = this.publisherIndex % this.capacity;
this.array[index] = a;
this.publisherIndex += 1;
}
return Chunk.drop_(asArray, iteratorIndex - 1);
}
size() {
return this.publisherIndex - this.subscribersIndex;
}
slide() {
if (this.subscribersIndex !== this.publisherIndex) {
const index = this.subscribersIndex % this.capacity;
this.array[index] = null;
this.subscribers[index] = 0;
this.subscribersIndex += 1;
}
}
subscribe() {
this.subscriberCount += 1;
return new BoundedHubArbSubscription(this, this.publisherIndex, false);
}
}
class BoundedHubArbSubscription extends Subscription {
constructor(self, subscriberIndex, unsubscribed) {
super();
this.self = self;
this.subscriberIndex = subscriberIndex;
this.unsubscribed = unsubscribed;
}
isEmpty() {
return this.unsubscribed || this.self.publisherIndex === this.subscriberIndex || this.self.publisherIndex === this.self.subscribersIndex;
}
poll(default_) {
if (this.unsubscribed) {
return default_;
}
this.subscriberIndex = Math.max(this.subscriberIndex, this.self.subscribersIndex);
if (this.subscriberIndex !== this.self.publisherIndex) {
const index = this.subscriberIndex % this.self.capacity;
const a = this.self.array[index];
this.self.subscribers[index] -= 1;
if (this.self.subscribers[index] === 0) {
this.self.array[index] = null;
this.self.subscribersIndex += 1;
}
this.subscriberIndex += 1;
return a;
}
return default_;
}
pollUpTo(n) {
if (this.unsubscribed) {
return Chunk.empty();
}
this.subscriberIndex = Math.max(this.subscriberIndex, this.self.subscribersIndex);
const size = this.self.publisherIndex - this.subscriberIndex;
const toPoll = Math.min(n, size);
if (toPoll <= 0) {
return Chunk.empty();
}
let builder = Chunk.empty();
const pollUpToIndex = this.subscriberIndex + toPoll;
while (this.subscriberIndex !== pollUpToIndex) {
const index = this.subscriberIndex % this.self.capacity;
const a = this.self.array[index];
builder = Chunk.append_(builder, a);
this.subscriberIndex += 1;
}
return builder;
}
size() {
if (this.unsubscribed) {
return 0;
}
return this.self.publisherIndex - Math.max(this.subscriberIndex, this.self.subscribersIndex);
}
unsubscribe() {
if (!this.unsubscribed) {
this.unsubscribed = true;
this.self.subscriberCount -= 1;
this.subscriberIndex = Math.max(this.subscriberIndex, this.self.subscribersIndex);
while (this.subscriberIndex !== this.self.publisherIndex) {
const index = this.subscriberIndex % this.self.capacity;
this.self.subscribers[index] -= 1;
if (this.self.subscribers[index] === 0) {
this.self.array[index] = null;
this.self.subscribersIndex += 1;
}
this.subscriberIndex += 1;
}
}
}
}
//# sourceMappingURL=BoundedHubArb.mjs.map