# 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. # # Modifications Copyright OpenSearch Contributors. See # GitHub history for details. # # Licensed to Elasticsearch B.V. under one or more contributor # license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright # ownership. Elasticsearch B.V. 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. from typing import Any from ..utils import AttrDict, HitMeta class Hit(AttrDict): def __init__(self, document: Any) -> None: data = {} if "_source" in document: data = document["_source"] if "fields" in document: data.update(document["fields"]) super().__init__(data) # assign meta as attribute and not as key in self._d_ super(AttrDict, self).__setattr__("meta", HitMeta(document)) def __getstate__(self) -> Any: # add self.meta since it is not in self.__dict__ return super().__getstate__() + (self.meta,) def __setstate__(self, state: Any) -> None: super(AttrDict, self).__setattr__("meta", state[-1]) super().__setstate__(state[:-1]) def __dir__(self) -> Any: # be sure to expose meta in dir(self) return super().__dir__() + ["meta"] def __repr__(self) -> str: return "<Hit({}): {}>".format( "/".join( getattr(self.meta, key) for key in ("index", "id") if key in self.meta ), super().__repr__(), ) __all__ = ["Hit", "HitMeta"]
Memory