blob: ac3a5fc5acc642df0017494ed07cf9c979ce6cec [file] [log] [blame]
/*
* 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 org.apache.ignite.internal.sql.engine.exec;
import org.apache.ignite.internal.lang.InternalTuple;
import org.apache.ignite.internal.schema.BinaryRow;
import org.apache.ignite.internal.schema.BinaryRowEx;
import org.apache.ignite.internal.schema.BinaryTuple;
import org.apache.ignite.internal.schema.SchemaDescriptor;
import org.apache.ignite.internal.schema.SchemaRegistry;
/**
* Converts rows to execution engine representation.
*/
public class TableRowConverterImpl implements TableRowConverter {
protected final SchemaRegistry schemaRegistry;
protected final SchemaDescriptor schemaDescriptor;
/** Constructor. */
TableRowConverterImpl(
SchemaRegistry schemaRegistry,
SchemaDescriptor schemaDescriptor
) {
this.schemaRegistry = schemaRegistry;
this.schemaDescriptor = schemaDescriptor;
}
/** {@inheritDoc} */
@Override
public <RowT> BinaryRowEx toFullRow(ExecutionContext<RowT> ectx, RowT row) {
BinaryTuple binaryTuple = ectx.rowHandler().toBinaryTuple(row);
return SqlOutputBinaryRow.newRow(schemaDescriptor, binaryTuple);
}
/** {@inheritDoc} */
@Override
public <RowT> BinaryRowEx toKeyRow(ExecutionContext<RowT> ectx, RowT row) {
BinaryTuple binaryTuple = ectx.rowHandler().toBinaryTuple(row);
return SqlOutputBinaryRow.newKeyRow(schemaDescriptor, binaryTuple);
}
/** {@inheritDoc} */
@Override
public <RowT> RowT toRow(
ExecutionContext<RowT> ectx,
BinaryRow tableRow,
RowHandler.RowFactory<RowT> factory
) {
InternalTuple tuple;
if (tableRow.schemaVersion() == schemaDescriptor.version()) {
tuple = new BinaryTuple(schemaDescriptor.length(), tableRow.tupleSlice());
} else {
tuple = schemaRegistry.resolve(tableRow, schemaDescriptor);
}
return factory.create(tuple);
}
}