FST  openfst-1.8.3
OpenFst Library
fstclosure-main.cc
Go to the documentation of this file.
1 // Copyright 2005-2024 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 // Creates the Kleene closure of an FST.
19 
20 #include <cstring>
21 #include <memory>
22 #include <string>
23 
24 #include <fst/flags.h>
25 #include <fst/log.h>
26 #include <fst/rational.h>
27 #include <fst/script/closure.h>
28 #include <fst/script/fst-class.h>
29 #include <fst/script/getters.h>
30 
31 DECLARE_string(closure_type);
32 
33 int fstclosure_main(int argc, char **argv) {
34  namespace s = fst::script;
35  using fst::ClosureType;
37 
38  std::string usage = "Creates the Kleene closure of an FST.\n\n Usage: ";
39  usage += argv[0];
40  usage += " [in.fst [out.fst]]\n";
41 
42  SET_FLAGS(usage.c_str(), &argc, &argv, true);
43  if (argc > 3) {
44  ShowUsage();
45  return 1;
46  }
47 
48  const std::string in_name =
49  (argc > 1 && strcmp(argv[1], "-") != 0) ? argv[1] : "";
50  const std::string out_name =
51  (argc > 2 && strcmp(argv[2], "-") != 0) ? argv[2] : "";
52 
53  std::unique_ptr<MutableFstClass> fst(MutableFstClass::Read(in_name, true));
54  if (!fst) return 1;
55 
56  ClosureType closure_type;
57  if (!s::GetClosureType(FST_FLAGS_closure_type, &closure_type)) {
58  LOG(ERROR) << argv[0] << ": Unknown or unsupported closure type: "
59  << FST_FLAGS_closure_type;
60  return 1;
61  }
62 
63  s::Closure(fst.get(), closure_type);
64 
65  return !fst->Write(out_name);
66 }
void ShowUsage(bool long_usage=true)
Definition: flags.cc:138
DECLARE_string(closure_type)
void Closure(MutableFst< Arc > *fst, ClosureType closure_type)
Definition: closure.h:51
#define LOG(type)
Definition: log.h:53
#define SET_FLAGS(usage, argc, argv, rmflags)
Definition: flags.h:226
bool GetClosureType(std::string_view str, ClosureType *closure_type)
Definition: getters.cc:66
int fstclosure_main(int argc, char **argv)
ClosureType
Definition: rational.h:45