All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reactor.core.publisher.FluxTimed Maven / Gradle / Ivy

Go to download

Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC

The newest version!
/*
 * Copyright (c) 2020-2021 VMware Inc. or its affiliates, 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
 *
 *   https://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 reactor.core.publisher;

import java.time.Duration;
import java.time.Instant;
import java.util.Objects;
import java.util.concurrent.TimeUnit;

import org.reactivestreams.Subscription;

import reactor.core.CoreSubscriber;
import reactor.core.scheduler.Scheduler;
import reactor.util.annotation.Nullable;

/**
 * @author Simon Baslé
 */
final class FluxTimed extends InternalFluxOperator> {

	final Scheduler clock;

	FluxTimed(Flux source, Scheduler clock) {
		super(source);
		this.clock = clock;
	}

	@Override
	public CoreSubscriber subscribeOrReturn(CoreSubscriber> actual) {
		return new TimedSubscriber<>(actual, this.clock);
	}

	@Override
	public int getPrefetch() {
		return 0;
	}

	@Nullable
	@Override
	public Object scanUnsafe(Attr key) {
		if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;

		return super.scanUnsafe(key);
	}

	/**
	 * Immutable version of {@link Timed}. This is preferable to the subscriber implementing
	 * Timed interface, as timestamps are likely to be collected for later use (so flyweight
	 * would get in the way).
	 *
	 * @param 
	 */
	static final class ImmutableTimed implements Timed {

		final long eventElapsedSinceSubscriptionNanos;
		final long eventElapsedNanos;
		final long eventTimestampEpochMillis;
		final T    event;

		ImmutableTimed(long eventElapsedSinceSubscriptionNanos,
				long eventElapsedNanos,
				long eventTimestampEpochMillis,
				T event) {
			this.eventElapsedSinceSubscriptionNanos = eventElapsedSinceSubscriptionNanos;
			this.eventElapsedNanos = eventElapsedNanos;
			this.eventTimestampEpochMillis = eventTimestampEpochMillis;
			this.event = event;
		}

		@Override
		public T get() {
			return this.event;
		}

		@Override
		public Duration elapsed() {
			return Duration.ofNanos(eventElapsedNanos);
		}

		@Override
		public Duration elapsedSinceSubscription() {
			return Duration.ofNanos(eventElapsedSinceSubscriptionNanos);
		}

		@Override
		public Instant timestamp() {
			return Instant.ofEpochMilli(eventTimestampEpochMillis);
		}

		@Override
		public boolean equals(Object o) {
			if (this == o) {
				return true;
			}
			if (o == null || getClass() != o.getClass()) {
				return false;
			}
			ImmutableTimed timed = (ImmutableTimed) o;
			return eventElapsedSinceSubscriptionNanos == timed.eventElapsedSinceSubscriptionNanos && eventElapsedNanos == timed.eventElapsedNanos && eventTimestampEpochMillis == timed.eventTimestampEpochMillis && event.equals(
					timed.event);
		}

		@Override
		public int hashCode() {
			return Objects.hash(eventElapsedSinceSubscriptionNanos,
					eventElapsedNanos,
					eventTimestampEpochMillis,
					event);
		}

		@Override
		public String toString() {
			return "Timed(" + event + "){eventElapsedNanos=" + eventElapsedNanos + ", eventElapsedSinceSubscriptionNanos=" + eventElapsedSinceSubscriptionNanos + ",  eventTimestampEpochMillis=" + eventTimestampEpochMillis + '}';
		}
	}

	static final class TimedSubscriber implements InnerOperator> {

		final CoreSubscriber> actual;
		final Scheduler clock;

		long subscriptionNanos;
		long lastEventNanos;

		boolean done;
		Subscription s;

		TimedSubscriber(CoreSubscriber> actual, Scheduler clock) {
			this.actual = actual;
			this.clock = clock;
		}

		@Override
		public CoreSubscriber> actual() {
			return this.actual;
		}

		@Override
		public void onSubscribe(Subscription s) {
			if (Operators.validate(this.s, s)) {
				this.s = s;

				this.subscriptionNanos = clock.now(TimeUnit.NANOSECONDS);
				this.lastEventNanos = subscriptionNanos;

				actual.onSubscribe(this);
			}
		}

		@Override
		public void onNext(T t) {
			if (done) {
				Operators.onNextDropped(t, currentContext());
				return;
			}

			long nowNanos = clock.now(TimeUnit.NANOSECONDS);
			long timestamp = clock.now(TimeUnit.MILLISECONDS);
			Timed timed = new ImmutableTimed<>(nowNanos - this.subscriptionNanos, nowNanos - this.lastEventNanos, timestamp, t);
			this.lastEventNanos = nowNanos;
			actual.onNext(timed);
		}

		@Override
		public void onError(Throwable throwable) {
			if (done) {
				Operators.onErrorDropped(throwable, currentContext());
				return;
			}
			done = true;
			actual.onError(throwable);
		}

		@Override
		public void onComplete() {
			if (done) {
				return;
			}
			done = true;
			actual.onComplete();
		}

		@Override
		public void request(long l) {
			if (Operators.validate(l)) {
				s.request(l);
			}
		}

		@Override
		public void cancel() {
			s.cancel();
		}

		@Nullable
		@Override
		public Object scanUnsafe(Attr key) {
			if (key == Attr.TERMINATED) return done;
			if (key == Attr.RUN_STYLE) return Attr.RunStyle.SYNC;

			return InnerOperator.super.scanUnsafe(key);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy