blob: aae07fc217da9fbb0127ce7d8463e39546bb7905 [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.metastorage.client;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.function.Function;
import org.apache.ignite.internal.metastorage.common.command.cursor.CursorCloseCommand;
import org.apache.ignite.internal.metastorage.common.command.cursor.CursorHasNextCommand;
import org.apache.ignite.internal.metastorage.common.command.cursor.CursorNextCommand;
import org.apache.ignite.internal.util.Cursor;
import org.apache.ignite.lang.IgniteInternalException;
import org.apache.ignite.lang.IgniteLogger;
import org.apache.ignite.lang.IgniteUuid;
import org.apache.ignite.lang.NodeStoppingException;
import org.apache.ignite.raft.client.service.RaftGroupService;
import org.jetbrains.annotations.NotNull;
/**
* Meta storage service side implementation of cursor.
* @param <T> Cursor parameter.
*/
public class CursorImpl<T> implements Cursor<T> {
/** The logger. */
private static final IgniteLogger LOG = IgniteLogger.forClass(CursorImpl.class);
/** Future that runs meta storage service operation that provides cursor. */
private final CompletableFuture<IgniteUuid> initOp;
/** Meta storage raft group service. */
private final RaftGroupService metaStorageRaftGrpSvc;
/** */
private final Iterator<T> it;
/** */
private final Function<Object, T> fn;
/**
* @param metaStorageRaftGrpSvc Meta storage raft group service.
* @param initOp Future that runs meta storage service operation that provides cursor.
*/
CursorImpl(RaftGroupService metaStorageRaftGrpSvc, CompletableFuture<IgniteUuid> initOp, Function<Object, T> fn) {
this.metaStorageRaftGrpSvc = metaStorageRaftGrpSvc;
this.initOp = initOp;
this.it = new InnerIterator();
this.fn = fn;
}
/** {@inheritDoc} */
@NotNull @Override public Iterator<T> iterator() {
return it;
}
/** {@inheritDoc} */
@Override public void close() {
try {
initOp.thenCompose(
cursorId -> metaStorageRaftGrpSvc.run(new CursorCloseCommand(cursorId))).get();
}
catch (InterruptedException | ExecutionException e) {
if (e.getCause() != null && e.getCause().getClass().equals(NodeStoppingException.class))
return;
LOG.debug("Unable to evaluate cursor close command", e);
throw new IgniteInternalException(e);
}
}
/** {@inheritDoc} */
@Override public boolean hasNext() {
return it.hasNext();
}
/** {@inheritDoc} */
@Override public T next() {
return it.next();
}
/** */
private class InnerIterator implements Iterator<T> {
/** {@inheritDoc} */
@Override public boolean hasNext() {
try {
return initOp.thenCompose(
cursorId -> metaStorageRaftGrpSvc.<Boolean>run(new CursorHasNextCommand(cursorId))).get();
}
catch (InterruptedException | ExecutionException e) {
if (e.getCause() != null && e.getCause().getClass().equals(NodeStoppingException.class))
return false;
LOG.debug("Unable to evaluate cursor hasNext command", e);
throw new IgniteInternalException(e);
}
}
/** {@inheritDoc} */
@Override public T next() {
try {
Object res = initOp.thenCompose(
cursorId -> metaStorageRaftGrpSvc.run(new CursorNextCommand(cursorId))).get();
if (res instanceof NoSuchElementException)
throw (NoSuchElementException)res;
else
return fn.apply(res);
}
catch (InterruptedException | ExecutionException e) {
if (e.getCause() != null && e.getCause().getClass().equals(NodeStoppingException.class))
throw new NoSuchElementException();
LOG.debug("Unable to evaluate cursor hasNext command", e);
throw new IgniteInternalException(e);
}
}
}
}