
com.hazelcast.map.impl.operation.MapFetchWithQueryOperation Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2008-2024, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.map.impl.operation;
import com.hazelcast.config.InMemoryFormat;
import com.hazelcast.map.impl.MapDataSerializerHook;
import com.hazelcast.internal.iteration.IterationPointer;
import com.hazelcast.map.impl.query.Query;
import com.hazelcast.map.impl.query.QueryRunner;
import com.hazelcast.map.impl.query.ResultSegment;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.spi.impl.operationservice.ReadonlyOperation;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.io.IOException;
/**
* Fetches by query a batch of {@code fetchSize} items from a single
* partition ID for a map. The query is run by the query engine which means
* it supports projections and filtering. The {@code pointers} denotes the
* iteration state from which to resume the query on the partition.
* This is an operation for maps configured with {@link InMemoryFormat#BINARY}
* or {{@link InMemoryFormat#OBJECT} format.
*
* @see com.hazelcast.map.impl.proxy.MapProxyImpl#iterator(int, int,
* com.hazelcast.projection.Projection, com.hazelcast.query.Predicate)
* @since 3.9
*/
public class MapFetchWithQueryOperation extends MapOperation implements ReadonlyOperation {
private Query query;
private int fetchSize;
private IterationPointer[] pointers;
private transient ResultSegment response;
public MapFetchWithQueryOperation() {
}
@SuppressFBWarnings(value = "EI_EXPOSE_REP2", justification = "This is an internal class")
public MapFetchWithQueryOperation(String name, IterationPointer[] pointers, int fetchSize, Query query) {
super(name);
this.pointers = pointers;
this.fetchSize = fetchSize;
this.query = query;
}
@Override
protected void runInternal() {
QueryRunner runner = mapServiceContext.getMapQueryRunner(query.getMapName());
response = runner.runPartitionScanQueryOnPartitionChunk(query, getPartitionId(), pointers, fetchSize);
}
@Override
public Object getResponse() {
return response;
}
@Override
protected void readInternal(ObjectDataInput in) throws IOException {
super.readInternal(in);
fetchSize = in.readInt();
int pointersCount = in.readInt();
pointers = new IterationPointer[pointersCount];
for (int i = 0; i < pointersCount; i++) {
pointers[i] = new IterationPointer(in.readInt(), in.readInt());
}
// Namespace awareness handled within Query object
query = in.readObject();
}
@Override
protected void writeInternal(ObjectDataOutput out) throws IOException {
super.writeInternal(out);
out.writeInt(fetchSize);
out.writeInt(pointers.length);
for (IterationPointer pointer : pointers) {
out.writeInt(pointer.getIndex());
out.writeInt(pointer.getSize());
}
out.writeObject(query);
}
@Override
public int getClassId() {
return MapDataSerializerHook.FETCH_WITH_QUERY;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy