/* * 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.FieldType; import org.apache.lucene.index.IndexOptions; import org.opensearch.common.lucene.Lucene; import org.opensearch.index.query.QueryShardContext; import org.opensearch.search.lookup.SearchLookup; import java.io.IOException; import java.util.Collections; import java.util.List; // Like a String mapper but with very few options. We just use it to test if highlighting on a custom string mapped field works as expected. public class FakeStringFieldMapper extends ParametrizedFieldMapper { public static final String CONTENT_TYPE = "fake_string"; public static final FieldType FIELD_TYPE = new FieldType(); static { FIELD_TYPE.setTokenized(true); FIELD_TYPE.setStored(true); FIELD_TYPE.setIndexOptions(IndexOptions.DOCS_AND_FREQS_AND_POSITIONS); } public static class Builder extends ParametrizedFieldMapper.Builder { public Builder(String name) { super(name); builder = this; } @Override protected List> getParameters() { return Collections.emptyList(); } @Override public FakeStringFieldMapper build(BuilderContext context) { return new FakeStringFieldMapper( new FakeStringFieldType( name, true, new TextSearchInfo(FIELD_TYPE, null, Lucene.STANDARD_ANALYZER, Lucene.STANDARD_ANALYZER) ), multiFieldsBuilder.build(this, context), copyTo.build() ); } } public static TypeParser PARSER = new TypeParser((n, c) -> new Builder(n)); public static final class FakeStringFieldType extends StringFieldType { private FakeStringFieldType(String name, boolean stored, TextSearchInfo textSearchInfo) { super(name, true, stored, true, textSearchInfo, Collections.emptyMap()); setIndexAnalyzer(Lucene.STANDARD_ANALYZER); } @Override public String typeName() { return CONTENT_TYPE; } @Override public ValueFetcher valueFetcher(QueryShardContext context, SearchLookup searchLookup, String format) { return SourceValueFetcher.toString(name(), context, format); } } protected FakeStringFieldMapper(MappedFieldType mappedFieldType, MultiFields multiFields, CopyTo copyTo) { super(mappedFieldType.name(), mappedFieldType, multiFields, copyTo); } @Override protected void parseCreateField(ParseContext context) throws IOException { String value; if (context.externalValueSet()) { value = context.externalValue().toString(); } else { value = context.parser().textOrNull(); } if (value == null) { return; } Field field = new Field(fieldType().name(), value, FIELD_TYPE); context.doc().add(field); } @Override protected String contentType() { return CONTENT_TYPE; } @Override public ParametrizedFieldMapper.Builder getMergeBuilder() { return new Builder(simpleName()).init(this); } }