com.hazelcast.jet.pipeline.test.ParallelStreamP Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2021, Hazelcast, Inc. 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
*
* 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 com.hazelcast.jet.pipeline.test;
import com.hazelcast.jet.Traverser;
import com.hazelcast.jet.core.AbstractProcessor;
import com.hazelcast.jet.core.AppendableTraverser;
import com.hazelcast.jet.core.EventTimeMapper;
import com.hazelcast.jet.core.EventTimePolicy;
import com.hazelcast.logging.ILogger;
import javax.annotation.Nonnull;
import java.util.List;
import java.util.stream.IntStream;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.NANOSECONDS;
import static java.util.concurrent.TimeUnit.SECONDS;
import static java.util.stream.Collectors.toList;
/**
* Implements a mock stream source with parallelism. It emits the items
* from the generator functions you supply, preserving the order of each
* generator.
*
* @param type of emitted items
*/
public class ParallelStreamP extends AbstractProcessor {
private static final long NANOS_PER_SECOND = SECONDS.toNanos(1);
private final long nanoTimeMillisToCurrentTimeMillis = determineTimeOffset();
private final long periodNanos;
private final EventTimeMapper super T> eventTimeMapper;
private int globalProcessorIndex;
private long startNanoTime;
private long totalParallelism;
private long nowNanoTime;
private long sequence;
private Traverser