FST  openfst-1.8.2
OpenFst Library
fstshortestpath-main.cc
Go to the documentation of this file.
1 // Copyright 2005-2020 Google LLC
2 //
3 // Licensed under the Apache License, Version 2.0 (the 'License');
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an 'AS IS' BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15 // See www.openfst.org for extensive documentation on this weighted
16 // finite-state transducer library.
17 //
18 // Find shortest path(s) in an FST.
19 
20 #include <cstring>
21 #include <memory>
22 #include <string>
23 #include <vector>
24 
25 #include <fst/flags.h>
26 #include <fst/log.h>
27 #include <fst/script/getters.h>
29 
30 DECLARE_double(delta);
31 DECLARE_int32(nshortest);
32 DECLARE_int64(nstate);
33 DECLARE_string(queue_type);
34 DECLARE_bool(unique);
35 DECLARE_string(weight);
36 
37 int fstshortestpath_main(int argc, char **argv) {
38  namespace s = fst::script;
39  using fst::QueueType;
43 
44  std::string usage = "Finds shortest path(s) in an FST.\n\n Usage: ";
45  usage += argv[0];
46  usage += " [in.fst [out.fst]]\n";
47 
48  std::set_new_handler(FailedNewHandler);
49  SET_FLAGS(usage.c_str(), &argc, &argv, true);
50  if (argc > 3) {
51  ShowUsage();
52  return 1;
53  }
54 
55  const std::string in_name =
56  (argc > 1 && strcmp(argv[1], "-") != 0) ? argv[1] : "";
57  const std::string out_name =
58  (argc > 2 && strcmp(argv[2], "-") != 0) ? argv[2] : "";
59 
60  std::unique_ptr<FstClass> ifst(FstClass::Read(in_name));
61  if (!ifst) return 1;
62 
63  const auto weight_threshold =
64  FST_FLAGS_weight.empty()
65  ? WeightClass::Zero(ifst->WeightType())
66  : WeightClass(ifst->WeightType(), FST_FLAGS_weight);
67 
68  VectorFstClass ofst(ifst->ArcType());
69 
70  QueueType queue_type;
71  if (!s::GetQueueType(FST_FLAGS_queue_type, &queue_type)) {
72  LOG(ERROR) << "Unknown or unsupported queue type: "
73  << FST_FLAGS_queue_type;
74  return 1;
75  }
76 
77  const s::ShortestPathOptions opts(
78  queue_type, FST_FLAGS_nshortest, FST_FLAGS_unique,
79  FST_FLAGS_delta, weight_threshold,
80  FST_FLAGS_nstate);
81 
82  s::ShortestPath(*ifst, &ofst, opts);
83 
84  return !ofst.Write(out_name);
85 }
void ShowUsage(bool long_usage=true)
Definition: flags.cc:132
DECLARE_int64(nstate)
QueueType
Definition: queue.h:70
DECLARE_bool(unique)
#define LOG(type)
Definition: log.h:49
void ShortestPath(const FstClass &ifst, const std::vector< std::pair< int64_t, int64_t >> &parens, MutableFstClass *ofst, const PdtShortestPathOptions &opts)
Definition: pdtscript.cc:106
void FailedNewHandler()
Definition: compat.cc:26
#define SET_FLAGS(usage, argc, argv, rmflags)
Definition: flags.h:224
DECLARE_string(queue_type)
bool GetQueueType(std::string_view str, QueueType *queue_type)
Definition: getters.cc:169
DECLARE_double(delta)
int fstshortestpath_main(int argc, char **argv)
DECLARE_int32(nshortest)