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

com.hazelcast.org.apache.calcite.runtime.Enumerables Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you 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.org.apache.calcite.runtime;

import com.hazelcast.org.apache.calcite.interpreter.Row;
import com.hazelcast.org.apache.calcite.linq4j.AbstractEnumerable;
import com.hazelcast.org.apache.calcite.linq4j.Enumerable;
import com.hazelcast.org.apache.calcite.linq4j.Enumerator;
import com.hazelcast.org.apache.calcite.linq4j.function.Function1;

import java.util.ArrayDeque;
import java.util.Deque;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.Consumer;
import java.util.function.Supplier;

/**
 * Utilities for processing {@link com.hazelcast.org.apache.calcite.linq4j.Enumerable}
 * collections.
 *
 * 

This class is a place to put things not yet added to linq4j. * Methods are subject to removal without notice. */ public class Enumerables { private Enumerables() {} /** Converts an enumerable over singleton arrays into the enumerable of their * first elements. */ public static Enumerable slice0(Enumerable enumerable) { //noinspection unchecked return enumerable.select(elements -> elements[0]); } /** Converts an {@link Enumerable} over object arrays into an * {@link Enumerable} over {@link Row} objects. */ public static Enumerable toRow(final Enumerable enumerable) { return enumerable.select((Function1) Row::asCopy); } /** Converts a supplier of an {@link Enumerable} over object arrays into a * supplier of an {@link Enumerable} over {@link Row} objects. */ public static Supplier> toRow( final Supplier> supplier) { return () -> toRow(supplier.get()); } @SuppressWarnings("Guava") @Deprecated // to be removed before 2.0 public static com.hazelcast.com.google.common.base.Supplier> toRow( final com.hazelcast.com.google.common.base.Supplier> supplier) { return () -> toRow(supplier.get()); } public static Enumerable match( Enumerable enumerable, final Function1 keySelector, Matcher matcher, Emitter emitter, int history, int future) { return new AbstractEnumerable() { public Enumerator enumerator() { return new Enumerator() { final Enumerator inputEnumerator = enumerable.enumerator(); // State of each partition. final Map> partitionStates = new HashMap<>(); int inputRow = -1; final Deque emitRows = new ArrayDeque<>(); /** Current result row. Null if no row is ready. */ TResult resultRow; /** Match counter is 1 based in Oracle */ final AtomicInteger matchCounter = new AtomicInteger(1); public TResult current() { Objects.requireNonNull(resultRow); return resultRow; } public boolean moveNext() { for (;;) { resultRow = emitRows.pollFirst(); if (resultRow != null) { return true; } // No rows are currently read to emit. Read the next input row, // see whether it completes a match (or matches), and if so, add // the resulting rows to the buffer. if (!inputEnumerator.moveNext()) { return false; } ++inputRow; final E row = inputEnumerator.current(); final TKey key = keySelector.apply(row); final Matcher.PartitionState partitionState = partitionStates.computeIfAbsent(key, k -> matcher.createPartitionState(history, future)); partitionState.getMemoryFactory().add(row); matcher.matchOne(partitionState.getRows(), partitionState, // TODO 26.12.18 jf: add row states (whatever this is?) matches -> emitter.emit(matches.rows, null, matches.symbols, matchCounter.getAndIncrement(), emitRows::add)); /* recentRows.add(e); int earliestRetainedRow = Integer.MAX_VALUE; for (int i = 0; i < partitionState.incompleteMatches.size(); i++) { MatchState match = partitionState.incompleteMatches.get(i); earliestRetainedRow = Math.min(earliestRetainedRow, match.firstRow); final int state = automaton.nextState(match.state, e); switch (state) { case Automaton.ACCEPT: final List matchedRows = recentRows.subList(0, 0); // TODO: final List rowStates = ImmutableList.of(); // TODO: emitRows.addAll( emitter.emit(matchedRows, rowStates, partitionState.matchCount++)); // fall through case Automaton.FAIL: partitionState.incompleteMatches.remove(i--); break; default: match.state = state; } } // Try to start a match based on the current row final int state = automaton.nextState(Automaton.START_STATE, e); switch (state) { case Automaton.ACCEPT: final List matchedRows = ImmutableList.of(e); final List rowStates = ImmutableList.of(state); emitRows.addAll( emitter.emit(matchedRows, rowStates, partitionState.matchCount++)); // fall through case Automaton.FAIL: // since it immediately succeeded or failed, don't add // it to the queue break; default: partitionState.incompleteMatches.add( new MatchState(inputRow, state)); } */ } } public void reset() { throw new UnsupportedOperationException(); } public void close() { inputEnumerator.close(); } }; } }; } /** Given a match (a list of rows, and their states) produces a list * of rows to be output. * * @param element type * @param result type */ public interface Emitter { void emit(List rows, List rowStates, List rowSymbols, int match, Consumer consumer); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy