/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.index.mapper; import org.apache.lucene.document.Field; import org.apache.lucene.document.StringField; import org.opensearch.core.xcontent.XContentParser; import org.opensearch.plugins.MapperPlugin; import org.opensearch.plugins.Plugin; import java.io.IOException; import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.Map; /** * Mapper plugin providing a mock metadata field mapper implementation that supports setting its value * through the document source. */ public class MockMetadataMapperPlugin extends Plugin implements MapperPlugin { /** * A mock metadata field mapper that supports being set from the document source. */ public static class MockMetadataMapper extends MetadataFieldMapper { static final String CONTENT_TYPE = "_mock_metadata"; static final String FIELD_NAME = "_mock_metadata"; protected MockMetadataMapper() { super(new KeywordFieldMapper.KeywordFieldType(FIELD_NAME)); } @Override protected void parseCreateField(ParseContext context) throws IOException { if (context.parser().currentToken() == XContentParser.Token.VALUE_STRING) { context.doc().add(new StringField(FIELD_NAME, context.parser().text(), Field.Store.YES)); } else { throw new IllegalArgumentException("Field [" + fieldType().name() + "] must be a string."); } } @Override public Iterator iterator() { return Collections.emptyIterator(); } @Override protected String contentType() { return CONTENT_TYPE; } public static class Builder extends MetadataFieldMapper.Builder { protected Builder() { super(FIELD_NAME); } @Override protected List> getParameters() { return Collections.emptyList(); } @Override public MockMetadataMapper build(BuilderContext context) { return new MockMetadataMapper(); } } public static final TypeParser PARSER = new ConfigurableTypeParser( c -> new MockMetadataMapper(), c -> new MockMetadataMapper.Builder() ) { }; } @Override public Map getMetadataMappers() { return Collections.singletonMap(MockMetadataMapper.CONTENT_TYPE, MockMetadataMapper.PARSER); } }