All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.projection.impl.MultiAttributeProjection 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.projection.impl;

import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import com.hazelcast.projection.Projection;
import com.hazelcast.query.impl.Extractable;

import java.io.IOException;
import java.util.Arrays;

import static com.hazelcast.internal.util.Preconditions.checkFalse;
import static com.hazelcast.internal.util.Preconditions.checkHasText;

/**
 * Projection that extracts the values of the given attributes and returns them in an Object[] array.
 * 

* The attributePath does not support the [any] operator. * The input object has to be an instance of Extractable in order for the projection to work. * * @param type of the input */ public final class MultiAttributeProjection implements Projection, IdentifiedDataSerializable { private String[] attributePaths; MultiAttributeProjection() { } public MultiAttributeProjection(String... attributePath) { if (attributePath == null || attributePath.length == 0) { throw new IllegalArgumentException("You need to specify at least one attributePath"); } for (String path : attributePath) { checkHasText(path, "attributePath must not be null or empty"); checkFalse(path.contains("[any]"), "attributePath must not contain [any] operators"); } this.attributePaths = attributePath; } @Override public Object[] transform(I input) { if (input instanceof Extractable extractable) { Object[] result = new Object[attributePaths.length]; for (int i = 0; i < attributePaths.length; i++) { result[i] = extractable.getAttributeValue(attributePaths[i]); } return result; } throw new IllegalArgumentException("The given map entry is not extractable"); } @Override public int getFactoryId() { return ProjectionDataSerializerHook.F_ID; } @Override public int getClassId() { return ProjectionDataSerializerHook.MULTI_ATTRIBUTE; } @Override public void writeData(ObjectDataOutput out) throws IOException { out.writeStringArray(attributePaths); } @Override public void readData(ObjectDataInput in) throws IOException { this.attributePaths = in.readStringArray(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MultiAttributeProjection that = (MultiAttributeProjection) o; return Arrays.equals(attributePaths, that.attributePaths); } @Override public int hashCode() { return Arrays.hashCode(attributePaths); } }