/* * 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.shardingsphere.infra.merge.result.impl.memory; import org.apache.shardingsphere.infra.executor.sql.QueryResult; import org.apache.shardingsphere.infra.merge.result.MergedResult; import org.apache.shardingsphere.infra.rule.ShardingSphereRule; import org.apache.shardingsphere.infra.metadata.schema.ShardingSphereSchema; import org.apache.shardingsphere.infra.binder.statement.SQLStatementContext; import java.io.InputStream; import java.io.Reader; import java.sql.Blob; import java.sql.Clob; import java.sql.SQLException; import java.sql.SQLFeatureNotSupportedException; import java.sql.SQLXML; import java.util.Calendar; import java.util.Iterator; import java.util.List; /** * Memory merged result. * * @param type of rule */ public abstract class MemoryMergedResult implements MergedResult { private final Iterator memoryResultSetRows; private MemoryQueryResultRow currentResultSetRow; private boolean wasNull; protected MemoryMergedResult(final T rule, final ShardingSphereSchema schema, final SQLStatementContext sqlStatementContext, final List queryResults) throws SQLException { List memoryQueryResultRowList = init(rule, schema, sqlStatementContext, queryResults); memoryResultSetRows = memoryQueryResultRowList.iterator(); if (!memoryQueryResultRowList.isEmpty()) { currentResultSetRow = memoryQueryResultRowList.get(0); } } protected abstract List init(T rule, ShardingSphereSchema schema, SQLStatementContext sqlStatementContext, List queryResults) throws SQLException; @Override public final boolean next() { if (memoryResultSetRows.hasNext()) { currentResultSetRow = memoryResultSetRows.next(); return true; } return false; } @Override public final Object getValue(final int columnIndex, final Class type) throws SQLException { if (Blob.class == type || Clob.class == type || Reader.class == type || InputStream.class == type || SQLXML.class == type) { throw new SQLFeatureNotSupportedException(String.format("Get value from `%s`", type.getName())); } Object result = currentResultSetRow.getCell(columnIndex); wasNull = null == result; return result; } @Override public final Object getCalendarValue(final int columnIndex, final Class type, final Calendar calendar) { // TODO implement with calendar Object result = currentResultSetRow.getCell(columnIndex); wasNull = null == result; return result; } @Override public final InputStream getInputStream(final int columnIndex, final String type) throws SQLException { throw new SQLFeatureNotSupportedException(String.format("Get input stream from `%s`", type)); } @Override public final boolean wasNull() { return wasNull; } }