aboutsummaryrefslogtreecommitdiff
path: root/icing/index/index-processor.h
blob: c4b77b56af4966e2d01b93440f67b9dc27d167aa (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
// Copyright (C) 2019 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_INDEX_INDEX_PROCESSOR_H_
#define ICING_INDEX_INDEX_PROCESSOR_H_

#include <cstdint>
#include <string>

#include "icing/text_classifier/lib3/utils/base/status.h"
#include "icing/index/index.h"
#include "icing/proto/document.pb.h"
#include "icing/schema/section-manager.h"
#include "icing/store/document-id.h"
#include "icing/tokenization/token.h"
#include "icing/transform/normalizer.h"
#include "icing/util/tokenized-document.h"

namespace icing {
namespace lib {

class IndexProcessor {
 public:
  // Factory function to create an IndexProcessor which does not take ownership
  // of any input components, and all pointers must refer to valid objects that
  // outlive the created IndexProcessor instance.
  //
  // Returns:
  //   An IndexProcessor on success
  //   FAILED_PRECONDITION if any of the pointers is null.
  static libtextclassifier3::StatusOr<std::unique_ptr<IndexProcessor>> Create(
      const Normalizer* normalizer, Index* index, const Clock* clock);

  // Add tokenized document to the index, associated with document_id. If the
  // number of tokens in the document exceeds max_tokens_per_document, then only
  // the first max_tokens_per_document will be added to the index. All tokens of
  // length exceeding max_token_length will be shortened to max_token_length.
  //
  // Indexing a document *may* trigger an index merge. If a merge fails, then
  // all content in the index will be lost.
  //
  // If put_document_stats is present, the fields related to indexing will be
  // populated.
  //
  // Returns:
  //   INVALID_ARGUMENT if document_id is less than the document_id of a
  //   previously indexed document or tokenization fails.
  //   RESOURCE_EXHAUSTED if the index is full and can't add anymore content.
  //   DATA_LOSS if an attempt to merge the index fails and both indices are
  //       cleared as a result.
  //   NOT_FOUND if there is no definition for the document's schema type.
  //   INTERNAL_ERROR if any other errors occur
  libtextclassifier3::Status IndexDocument(
      const TokenizedDocument& tokenized_document, DocumentId document_id,
      PutDocumentStatsProto* put_document_stats = nullptr);

 private:
  IndexProcessor(const Normalizer* normalizer, Index* index, const Clock* clock)
      : normalizer_(*normalizer), index_(index), clock_(*clock) {}

  std::string NormalizeToken(const Token& token);

  const Normalizer& normalizer_;
  Index* const index_;
  const Clock& clock_;
};

}  // namespace lib
}  // namespace icing

#endif  // ICING_INDEX_INDEX_PROCESSOR_H_