blob: 2ab31465732171cecf647d89a807a321e13d21e6 [file] [log] [blame]
Tony Makd9446602019-02-20 18:25:39 +00001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef LIBTEXTCLASSIFIER_ACTIONS_RANKER_H_
18#define LIBTEXTCLASSIFIER_ACTIONS_RANKER_H_
19
20#include <memory>
21
22#include "actions/actions_model_generated.h"
23#include "actions/types.h"
Tony Makad2e22d2019-03-20 17:35:13 +000024#include "utils/zlib/zlib.h"
Tony Makd9446602019-02-20 18:25:39 +000025
26namespace libtextclassifier3 {
27
28// Ranking and filtering of actions suggestions.
29class ActionsSuggestionsRanker {
30 public:
31 static std::unique_ptr<ActionsSuggestionsRanker>
Tony Makad2e22d2019-03-20 17:35:13 +000032 CreateActionsSuggestionsRanker(const RankingOptions* options,
33 ZlibDecompressor* decompressor,
34 const std::string& smart_reply_action_type);
Tony Makd9446602019-02-20 18:25:39 +000035
36 // Rank and filter actions.
Tony Mak378c1f52019-03-04 15:58:11 +000037 bool RankActions(
Tony Makdf54e742019-03-26 14:04:00 +000038 const Conversation& conversation, ActionsSuggestionsResponse* response,
Tony Mak378c1f52019-03-04 15:58:11 +000039 const reflection::Schema* entity_data_schema = nullptr,
40 const reflection::Schema* annotations_entity_data_schema = nullptr) const;
Tony Makd9446602019-02-20 18:25:39 +000041
42 private:
Tony Makad2e22d2019-03-20 17:35:13 +000043 explicit ActionsSuggestionsRanker(const RankingOptions* options,
44 const std::string& smart_reply_action_type)
45 : options_(options), smart_reply_action_type_(smart_reply_action_type) {}
Tony Makd9446602019-02-20 18:25:39 +000046
Tony Makad2e22d2019-03-20 17:35:13 +000047 bool InitializeAndValidate(ZlibDecompressor* decompressor);
Tony Makd9446602019-02-20 18:25:39 +000048
49 const RankingOptions* const options_;
50 std::string lua_bytecode_;
Tony Makad2e22d2019-03-20 17:35:13 +000051 std::string smart_reply_action_type_;
Tony Makd9446602019-02-20 18:25:39 +000052};
53
54} // namespace libtextclassifier3
55
56#endif // LIBTEXTCLASSIFIER_ACTIONS_RANKER_H_