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

org.elasticsearch.index.mapper.FieldMappers Maven / Gradle / Ivy

There is a newer version: 8.15.1
Show newest version
/*
 * Licensed to Elastic Search and Shay Banon under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. Elastic Search 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.elasticsearch.index.mapper;

import org.elasticsearch.common.collect.ImmutableList;
import org.elasticsearch.common.collect.Iterators;
import org.elasticsearch.common.collect.UnmodifiableIterator;
import org.elasticsearch.common.util.concurrent.Immutable;

import java.util.List;

/**
 * A holder for several {@link FieldMapper}.
 *
 * @author kimchy (Shay Banon)
 */
@Immutable
public class FieldMappers implements Iterable {

    private final ImmutableList fieldMappers;

    public FieldMappers() {
        this.fieldMappers = ImmutableList.of();
    }

    public FieldMappers(FieldMapper fieldMapper) {
        this(new FieldMapper[]{fieldMapper});
    }

    public FieldMappers(FieldMapper[] fieldMappers) {
        if (fieldMappers == null) {
            fieldMappers = new FieldMapper[0];
        }
        this.fieldMappers = ImmutableList.copyOf(Iterators.forArray(fieldMappers));
    }

    public FieldMappers(ImmutableList fieldMappers) {
        this.fieldMappers = fieldMappers;
    }

    public FieldMapper mapper() {
        if (fieldMappers.isEmpty()) {
            return null;
        }
        return fieldMappers.get(0);
    }

    public boolean isEmpty() {
        return fieldMappers.isEmpty();
    }

    public ImmutableList mappers() {
        return this.fieldMappers;
    }

    @Override public UnmodifiableIterator iterator() {
        return fieldMappers.iterator();
    }

    /**
     * Concats and returns a new {@link FieldMappers}.
     */
    public FieldMappers concat(FieldMapper mapper) {
        return new FieldMappers(new ImmutableList.Builder().addAll(fieldMappers).add(mapper).build());
    }

    /**
     * Concats and returns a new {@link FieldMappers}.
     */
    public FieldMappers concat(FieldMappers mappers) {
        return new FieldMappers(new ImmutableList.Builder().addAll(fieldMappers).addAll(mappers).build());
    }

    public FieldMappers remove(List mappers) {
        ImmutableList.Builder builder = new ImmutableList.Builder();
        for (FieldMapper fieldMapper : fieldMappers) {
            boolean found = false;
            for (FieldMapper mapper : mappers) {
                if (fieldMapper.equals(mapper)) { // identify equality
                    found = true;
                }
            }
            if (!found) {
                builder.add(fieldMapper);
            }
        }
        return new FieldMappers(builder.build());
    }

    public FieldMappers remove(FieldMapper mapper) {
        ImmutableList.Builder builder = new ImmutableList.Builder();
        for (FieldMapper fieldMapper : fieldMappers) {
            if (!fieldMapper.equals(mapper)) { // identify equality
                builder.add(fieldMapper);
            }
        }
        return new FieldMappers(builder.build());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy