uk.gov.gchq.gaffer.mapstore.impl.GetElementsHandler Maven / Gradle / Ivy
/*
* Copyright 2017-2020 Crown Copyright
*
* Licensed 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 uk.gov.gchq.gaffer.mapstore.impl;
import uk.gov.gchq.gaffer.commonutil.iterable.CloseableIterable;
import uk.gov.gchq.gaffer.commonutil.iterable.CloseableIterator;
import uk.gov.gchq.gaffer.commonutil.iterable.EmptyClosableIterable;
import uk.gov.gchq.gaffer.commonutil.iterable.WrappedCloseableIterable;
import uk.gov.gchq.gaffer.commonutil.iterable.WrappedCloseableIterator;
import uk.gov.gchq.gaffer.commonutil.stream.Streams;
import uk.gov.gchq.gaffer.data.element.Element;
import uk.gov.gchq.gaffer.data.element.id.ElementId;
import uk.gov.gchq.gaffer.data.elementdefinition.view.ViewUtil;
import uk.gov.gchq.gaffer.mapstore.MapStore;
import uk.gov.gchq.gaffer.operation.OperationException;
import uk.gov.gchq.gaffer.operation.impl.get.GetElements;
import uk.gov.gchq.gaffer.store.Context;
import uk.gov.gchq.gaffer.store.Store;
import uk.gov.gchq.gaffer.store.StoreTrait;
import uk.gov.gchq.gaffer.store.operation.handler.OutputOperationHandler;
import uk.gov.gchq.gaffer.store.schema.Schema;
import uk.gov.gchq.gaffer.user.User;
import java.util.stream.Stream;
/**
* An {@link OutputOperationHandler} for the {@link GetElements} operation on the {@link MapStore}.
*/
public class GetElementsHandler
implements OutputOperationHandler> {
@Override
public CloseableIterable doOperation(final GetElements operation,
final Context context,
final Store store) throws OperationException {
return doOperation(operation, context, (MapStore) store);
}
private CloseableIterable doOperation(final GetElements operation,
final Context context,
final MapStore mapStore) throws OperationException {
final MapImpl mapImpl = mapStore.getMapImpl();
if (!mapImpl.isMaintainIndex()) {
throw new OperationException("Cannot execute getElements if the properties request that an index is not created");
}
final Iterable extends ElementId> seeds = operation.getInput();
if (null == seeds) {
return new EmptyClosableIterable<>();
}
return new ElementsIterable(mapImpl, operation, mapStore, context.getUser());
}
private static class ElementsIterable extends WrappedCloseableIterable {
private final MapImpl mapImpl;
private final GetElements getElements;
private final Schema schema;
private final User user;
private final boolean supportsVisibility;
ElementsIterable(final MapImpl mapImpl, final GetElements getElements, final MapStore mapStore, final User user) {
this.mapImpl = mapImpl;
this.getElements = getElements;
this.schema = mapStore.getSchema();
this.user = user;
this.supportsVisibility = mapStore.getTraits().contains(StoreTrait.VISIBILITY);
}
@Override
public CloseableIterator iterator() {
Stream elements = Streams.toStream(getElements.getInput())
.flatMap(elementId -> GetElementsUtil.getRelevantElements(mapImpl, elementId, getElements.getView(), getElements.getDirectedType(), getElements.getIncludeIncomingOutGoing(), getElements.getSeedMatching()).stream())
.distinct();
elements = elements.flatMap(e -> Streams.toStream(mapImpl.getElements(e)));
if (this.supportsVisibility) {
elements = GetElementsUtil.applyVisibilityFilter(elements, schema, user);
}
elements = elements.map(element -> mapImpl.cloneElement(element, schema));
elements = GetElementsUtil.applyView(elements, schema, getElements.getView());
elements = elements.map(element -> {
ViewUtil.removeProperties(getElements.getView(), element);
return element;
});
return new WrappedCloseableIterator<>(elements.iterator());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy