/* * 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.fielddata.plain; import org.apache.lucene.index.SortedSetDocValues; import org.apache.lucene.util.Accountable; import org.apache.lucene.util.Accountables; import org.apache.lucene.util.BytesRef; import org.apache.lucene.util.PagedBytes; import org.apache.lucene.util.packed.PackedLongValues; import org.opensearch.index.fielddata.ordinals.Ordinals; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; /** * Field Data for Paged Bytes * * @opensearch.internal */ public class PagedBytesLeafFieldData extends AbstractLeafOrdinalsFieldData { private final PagedBytes.Reader bytes; private final PackedLongValues termOrdToBytesOffset; protected final Ordinals ordinals; public PagedBytesLeafFieldData(PagedBytes.Reader bytes, PackedLongValues termOrdToBytesOffset, Ordinals ordinals) { super(DEFAULT_SCRIPT_FUNCTION); this.bytes = bytes; this.termOrdToBytesOffset = termOrdToBytesOffset; this.ordinals = ordinals; } @Override public void close() {} @Override public long ramBytesUsed() { long size = ordinals.ramBytesUsed(); // PackedBytes size += bytes.ramBytesUsed(); // PackedInts size += termOrdToBytesOffset.ramBytesUsed(); return size; } @Override public Collection getChildResources() { List resources = new ArrayList<>(); resources.add(Accountables.namedAccountable("ordinals", ordinals)); resources.add(Accountables.namedAccountable("term bytes", bytes)); resources.add(Accountables.namedAccountable("term offsets", termOrdToBytesOffset)); return Collections.unmodifiableList(resources); } @Override public SortedSetDocValues getOrdinalsValues() { return ordinals.ordinals(new ValuesHolder(bytes, termOrdToBytesOffset)); } /** * Value holder for paged bytes leaf field data * * @opensearch.internal */ private static class ValuesHolder implements Ordinals.ValuesHolder { private final BytesRef scratch = new BytesRef(); private final PagedBytes.Reader bytes; private final PackedLongValues termOrdToBytesOffset; ValuesHolder(PagedBytes.Reader bytes, PackedLongValues termOrdToBytesOffset) { this.bytes = bytes; this.termOrdToBytesOffset = termOrdToBytesOffset; } @Override public BytesRef lookupOrd(long ord) { assert ord >= 0; bytes.fill(scratch, termOrdToBytesOffset.get(ord)); return scratch; } } }