/* * 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.processors.query.h2.twostep; import java.util.Collection; import java.util.Collections; import java.util.Iterator; import java.util.NoSuchElementException; import java.util.UUID; import javax.cache.CacheException; import org.apache.ignite.IgniteCheckedException; import org.apache.ignite.internal.GridKernalContext; import org.apache.ignite.internal.processors.query.h2.twostep.messages.GridQueryNextPageResponse; import org.apache.ignite.internal.util.typedef.internal.S; import org.apache.ignite.plugin.extensions.communication.Message; import org.h2.value.Value; import static org.apache.ignite.internal.processors.query.h2.twostep.msg.GridH2ValueMessageFactory.fillArray; /** * Page result. */ public class GridResultPage { /** */ private final UUID src; /** */ private final GridQueryNextPageResponse res; /** */ private final int rowsInPage; /** */ private Iterator<Value[]> rows; /** */ private boolean last; /** * @param ctx Kernal context. * @param src Source. * @param res Response. */ @SuppressWarnings("unchecked") public GridResultPage(final GridKernalContext ctx, UUID src, GridQueryNextPageResponse res) { assert src != null; this.src = src; this.res = res; // res == null means that it is a terminating dummy page for the given source node ID. if (res != null) { Collection<?> plainRows = res.plainRows(); if (plainRows != null) { rowsInPage = plainRows.size(); rows = (Iterator<Value[]>)plainRows.iterator(); } else { final int cols = res.columns(); rowsInPage = res.values().size() / cols; final Iterator<Message> valsIter = res.values().iterator(); rows = new Iterator<Value[]>() { /** */ int rowIdx; @Override public boolean hasNext() { return rowIdx < rowsInPage; } @Override public Value[] next() { if (!hasNext()) throw new NoSuchElementException(); rowIdx++; try { return fillArray(valsIter, new Value[cols], ctx); } catch (IgniteCheckedException e) { throw new CacheException(e); } } @Override public void remove() { throw new UnsupportedOperationException(); } }; } } else { rowsInPage = 0; rows = Collections.emptyIterator(); } } /** * @return {@code true} If this is a dummy fail page. */ public boolean isFail() { return false; } /** * @return {@code true} If this is either a real last page for a source or * a dummy terminating page with no rows. */ public boolean isLast() { return last; } /** * @return {@code true} If it is a dummy last page. */ public boolean isDummyLast() { return last && res == null; } /** * @param last Last page for a source. * @return {@code this}. */ public GridResultPage setLast(boolean last) { this.last = last; return this; } /** * @return Number on rows in this page. */ public int rowsInPage() { return rowsInPage; } /** * @return Rows. */ public Iterator<Value[]> rows() { Iterator<Value[]> r = rows; assert r != null; rows = null; return r; } /** * @return Result source node ID. */ public UUID source() { return src; } /** * @return Segment ID. */ public int segmentId() { return res.segmentId(); } /** * @return Response. */ public GridQueryNextPageResponse response() { return res; } /** * Request next page. */ public void fetchNextPage() { throw new CacheException("Failed to fetch data from node: " + src); } /** {@inheritDoc} */ @Override public String toString() { return S.toString(GridResultPage.class, this); } }