/* * 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.action.fieldcaps; import org.opensearch.action.ActionResponse; import org.opensearch.core.ParseField; import org.opensearch.common.Strings; import org.opensearch.common.collect.Tuple; import org.opensearch.core.common.io.stream.StreamInput; import org.opensearch.core.common.io.stream.StreamOutput; import org.opensearch.core.xcontent.ConstructingObjectParser; import org.opensearch.core.xcontent.ToXContentObject; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.core.xcontent.XContentParser; import org.opensearch.core.xcontent.XContentParserUtils; import org.opensearch.common.xcontent.XContentType; import java.io.IOException; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.stream.Collectors; /** * Response for {@link FieldCapabilitiesRequest} requests. * * @opensearch.internal */ public class FieldCapabilitiesResponse extends ActionResponse implements ToXContentObject { private static final ParseField INDICES_FIELD = new ParseField("indices"); private static final ParseField FIELDS_FIELD = new ParseField("fields"); private final String[] indices; private final Map> responseMap; private final List indexResponses; public FieldCapabilitiesResponse(String[] indices, Map> responseMap) { this(indices, responseMap, Collections.emptyList()); } FieldCapabilitiesResponse(List indexResponses) { this(Strings.EMPTY_ARRAY, Collections.emptyMap(), indexResponses); } private FieldCapabilitiesResponse( String[] indices, Map> responseMap, List indexResponses ) { this.responseMap = Objects.requireNonNull(responseMap); this.indexResponses = Objects.requireNonNull(indexResponses); this.indices = indices; } public FieldCapabilitiesResponse(StreamInput in) throws IOException { super(in); indices = in.readStringArray(); this.responseMap = in.readMap(StreamInput::readString, FieldCapabilitiesResponse::readField); indexResponses = in.readList(FieldCapabilitiesIndexResponse::new); } /** * Used for serialization */ FieldCapabilitiesResponse() { this(Strings.EMPTY_ARRAY, Collections.emptyMap(), Collections.emptyList()); } /** * Get the concrete list of indices that were requested. */ public String[] getIndices() { return indices; } /** * Get the field capabilities map. */ public Map> get() { return responseMap; } /** * Returns the actual per-index field caps responses */ List getIndexResponses() { return indexResponses; } /** * * Get the field capabilities per type for the provided {@code field}. */ public Map getField(String field) { return responseMap.get(field); } private static Map readField(StreamInput in) throws IOException { return in.readMap(StreamInput::readString, FieldCapabilities::new); } @Override public void writeTo(StreamOutput out) throws IOException { out.writeStringArray(indices); out.writeMap(responseMap, StreamOutput::writeString, FieldCapabilitiesResponse::writeField); out.writeList(indexResponses); } private static void writeField(StreamOutput out, Map map) throws IOException { out.writeMap(map, StreamOutput::writeString, (valueOut, fc) -> fc.writeTo(valueOut)); } @Override public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { if (indexResponses.size() > 0) { throw new IllegalStateException("cannot serialize non-merged response"); } builder.startObject(); builder.field(INDICES_FIELD.getPreferredName(), indices); builder.field(FIELDS_FIELD.getPreferredName(), responseMap); builder.endObject(); return builder; } public static FieldCapabilitiesResponse fromXContent(XContentParser parser) throws IOException { return PARSER.parse(parser, null); } @SuppressWarnings("unchecked") private static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>( "field_capabilities_response", true, a -> { List indices = a[0] == null ? Collections.emptyList() : (List) a[0]; return new FieldCapabilitiesResponse( indices.stream().toArray(String[]::new), ((List>>) a[1]).stream().collect(Collectors.toMap(Tuple::v1, Tuple::v2)) ); } ); static { PARSER.declareStringArray(ConstructingObjectParser.optionalConstructorArg(), INDICES_FIELD); PARSER.declareNamedObjects(ConstructingObjectParser.constructorArg(), (p, c, n) -> { Map typeToCapabilities = parseTypeToCapabilities(p, n); return new Tuple<>(n, typeToCapabilities); }, FIELDS_FIELD); } private static Map parseTypeToCapabilities(XContentParser parser, String name) throws IOException { Map typeToCapabilities = new HashMap<>(); XContentParserUtils.ensureExpectedToken(XContentParser.Token.START_OBJECT, parser.nextToken(), parser); XContentParser.Token token; while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) { XContentParserUtils.ensureExpectedToken(XContentParser.Token.FIELD_NAME, token, parser); String type = parser.currentName(); FieldCapabilities capabilities = FieldCapabilities.fromXContent(name, parser); typeToCapabilities.put(type, capabilities); } return typeToCapabilities; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; FieldCapabilitiesResponse that = (FieldCapabilitiesResponse) o; return Arrays.equals(indices, that.indices) && Objects.equals(responseMap, that.responseMap) && Objects.equals(indexResponses, that.indexResponses); } @Override public int hashCode() { int result = Objects.hash(responseMap, indexResponses); result = 31 * result + Arrays.hashCode(indices); return result; } @Override public String toString() { return Strings.toString(XContentType.JSON, this); } }