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

com.hazelcast.mapreduce.aggregation.impl.SupplierConsumingMapper Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Copyright (c) 2008-2016, 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.mapreduce.aggregation.impl;

import com.hazelcast.config.MapAttributeConfig;
import com.hazelcast.mapreduce.Context;
import com.hazelcast.mapreduce.Mapper;
import com.hazelcast.mapreduce.aggregation.Supplier;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.Data;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import com.hazelcast.query.impl.QueryableEntry;
import com.hazelcast.query.impl.getters.Extractors;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

import java.io.IOException;
import java.util.Collections;

/**
 * The default mapper implementation for most (but not DistinctValues) aggregations.
 *
 * @param       the input key type
 * @param   the input value type
 * @param  the output value type
 */
@SuppressFBWarnings("SE_NO_SERIALVERSIONID")
class SupplierConsumingMapper
        implements Mapper, IdentifiedDataSerializable {

    private transient SimpleEntry entry = new SimpleEntry();

    private Supplier supplier;

    SupplierConsumingMapper() {
    }

    SupplierConsumingMapper(Supplier supplier) {
        this.supplier = supplier;
    }

    @Override
    public void map(Key key, ValueIn value, Context context) {
        entry.key = key;
        entry.value = value;
        ValueOut valueOut = supplier.apply(entry);
        if (valueOut != null) {
            context.emit(key, valueOut);
        }
    }

    @Override
    public int getFactoryId() {
        return AggregationsDataSerializerHook.F_ID;
    }

    @Override
    public int getId() {
        return AggregationsDataSerializerHook.SUPPLIER_CONSUMING_MAPPER;
    }

    @Override
    public void writeData(ObjectDataOutput out)
            throws IOException {

        out.writeObject(supplier);
    }

    @Override
    public void readData(ObjectDataInput in)
            throws IOException {

        supplier = in.readObject();
    }

    /**
     * Internal implementation of an map entry with changeable value to prevent
     * to much object allocation while supplying.
     * Extends QueryableEntry in order to provide Extractable logic
     *
     * @param  key type
     * @param  value type
     * @see com.hazelcast.query.impl.QueryableEntry
     * @see com.hazelcast.query.impl.Extractable
     */
    private static final class SimpleEntry extends QueryableEntry {

        private K key;
        private V value;

        public SimpleEntry() {
            this.extractors = new Extractors(Collections.emptyList(), null);
        }

        @Override
        public V getValue() {
            return value;
        }

        @Override
        public V setValue(V value) {
            this.value = value;
            return value;
        }

        @Override
        public K getKey() {
            return this.key;
        }

        @Override
        public Data getKeyData() {
            // not used in map-reduce
            throw new UnsupportedOperationException();
        }

        @Override
        public Data getValueData() {
            // not used in map-reduce
            throw new UnsupportedOperationException();
        }

        @Override
        protected Object getTargetObject(boolean key) {
            return key ? this.key : this.value;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy