aboutsummaryrefslogtreecommitdiff
path: root/icing/scoring/advanced_scoring/advanced-scorer.h
blob: 00477a37f4158eef2003bc5b815f46cb663c036b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright (C) 2022 Google LLC
//
// Licensed 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.

#ifndef ICING_SCORING_ADVANCED_SCORING_ADVANCED_SCORER_H_
#define ICING_SCORING_ADVANCED_SCORING_ADVANCED_SCORER_H_

#include <cstdint>
#include <memory>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>

#include "icing/text_classifier/lib3/utils/base/status.h"
#include "icing/text_classifier/lib3/utils/base/statusor.h"
#include "icing/index/embed/embedding-query-results.h"
#include "icing/index/hit/doc-hit-info.h"
#include "icing/index/iterator/doc-hit-info-iterator.h"
#include "icing/join/join-children-fetcher.h"
#include "icing/schema/schema-store.h"
#include "icing/scoring/advanced_scoring/score-expression.h"
#include "icing/scoring/bm25f-calculator.h"
#include "icing/scoring/scorer.h"
#include "icing/scoring/section-weights.h"
#include "icing/store/document-store.h"
#include "icing/util/logging.h"

namespace icing {
namespace lib {

class AdvancedScorer : public Scorer {
 public:
  // Returns:
  //   A AdvancedScorer instance on success
  //   FAILED_PRECONDITION on any null pointer input
  //   INVALID_ARGUMENT if fails to create an instance
  static libtextclassifier3::StatusOr<std::unique_ptr<AdvancedScorer>> Create(
      const ScoringSpecProto& scoring_spec, double default_score,
      SearchSpecProto::EmbeddingQueryMetricType::Code
          default_semantic_metric_type,
      const DocumentStore* document_store, const SchemaStore* schema_store,
      int64_t current_time_ms, const JoinChildrenFetcher* join_children_fetcher,
      const EmbeddingQueryResults* embedding_query_results);

  double GetScore(const DocHitInfo& hit_info,
                  const DocHitInfoIterator* query_it) override {
    libtextclassifier3::StatusOr<double> result =
        score_expression_->eval(hit_info, query_it);
    if (!result.ok()) {
      ICING_LOG(ERROR) << "Got an error when scoring a document:\n"
                       << result.status().error_message();
      return default_score_;
    }
    return std::move(result).ValueOrDie();
  }

  void PrepareToScore(
      std::unordered_map<std::string, std::unique_ptr<DocHitInfoIterator>>*
          query_term_iterators) override {
    if (query_term_iterators == nullptr || query_term_iterators->empty()) {
      return;
    }
    bm25f_calculator_->PrepareToScore(query_term_iterators);
  }

  bool is_constant() const { return score_expression_->is_constant(); }

 private:
  explicit AdvancedScorer(std::unique_ptr<ScoreExpression> score_expression,
                          std::unique_ptr<SectionWeights> section_weights,
                          std::unique_ptr<Bm25fCalculator> bm25f_calculator,
                          double default_score)
      : score_expression_(std::move(score_expression)),
        section_weights_(std::move(section_weights)),
        bm25f_calculator_(std::move(bm25f_calculator)),
        default_score_(default_score) {
    if (is_constant()) {
      ICING_LOG(WARNING)
          << "The advanced scoring expression will evaluate to a constant.";
    }
  }

  std::unique_ptr<ScoreExpression> score_expression_;
  std::unique_ptr<SectionWeights> section_weights_;
  std::unique_ptr<Bm25fCalculator> bm25f_calculator_;
  double default_score_;
};

}  // namespace lib
}  // namespace icing

#endif  // ICING_SCORING_ADVANCED_SCORING_ADVANCED_SCORER_H_