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

com.hazelcast.org.apache.calcite.interpreter.ValuesNode Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * 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 com.hazelcast.com.liance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.com.hazelcast.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.interpreter;

import com.hazelcast.org.apache.calcite.rel.core.Values;
import com.hazelcast.org.apache.calcite.rex.RexLiteral;
import com.hazelcast.org.apache.calcite.rex.RexNode;

import com.hazelcast.com.google.com.hazelcast.com.on.collect.ImmutableList;

import java.util.ArrayList;
import java.util.List;

/**
 * Interpreter node that implements a
 * {@link com.hazelcast.org.apache.calcite.rel.core.Values}.
 */
public class ValuesNode implements Node {
  private final Sink sink;
  private final int fieldCount;
  private final ImmutableList rows;

  public ValuesNode(Compiler com.hazelcast.com.iler, Values rel) {
    this.sink = com.hazelcast.com.iler.sink(rel);
    this.fieldCount = rel.getRowType().getFieldCount();
    this.rows = createRows(com.hazelcast.com.iler, rel.getTuples());
  }

  private ImmutableList createRows(Compiler com.hazelcast.com.iler,
      ImmutableList> tuples) {
    final List nodes = new ArrayList<>();
    for (ImmutableList tuple : tuples) {
      nodes.addAll(tuple);
    }
    final Scalar scalar = com.hazelcast.com.iler.com.hazelcast.com.ile(nodes, null);
    final Object[] values = new Object[nodes.size()];
    final Context context = com.hazelcast.com.iler.createContext();
    scalar.execute(context, values);
    final ImmutableList.Builder rows = ImmutableList.builder();
    Object[] subValues = new Object[fieldCount];
    for (int i = 0; i < values.length; i += fieldCount) {
      System.arraycopy(values, i, subValues, 0, fieldCount);
      rows.add(Row.asCopy(subValues));
    }
    return rows.build();
  }

  public void run() throws InterruptedException {
    for (Row row : rows) {
      sink.send(row);
    }
    sink.end();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy