1
2// Licensed under the Apache License, Version 2.0 (the "License");
3// you may not use this file except in compliance with the License.
4// You may obtain a copy of the License at
5//
6//     http://www.apache.org/licenses/LICENSE-2.0
7//
8// Unless required by applicable law or agreed to in writing, software
9// distributed under the License is distributed on an "AS IS" BASIS,
10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11// See the License for the specific language governing permissions and
12// limitations under the License.
13//
14// Copyright 2005-2010 Google, Inc.
15// Author: jpr@google.com (Jake Ratkiewicz)
16
17#include <string>
18
19#include <fst/script/fst-class.h>
20#include <fst/script/draw.h>
21#include <fst/script/script-impl.h>
22
23namespace fst {
24namespace script {
25
26void DrawFst(const FstClass &fst,
27             const SymbolTable *isyms,
28             const SymbolTable *osyms,
29             const SymbolTable *ssyms,
30             bool accep,
31             const string &title,
32             float width,
33             float height,
34             bool portrait,
35             bool vertical,
36             float ranksep,
37             float nodesep,
38             int fontsize,
39             int precision,
40             bool show_weight_one,
41             ostream *ostrm,
42             const string &dest) {
43  FstDrawerArgs args(fst, isyms, osyms, ssyms, accep, title, width,
44                     height, portrait, vertical, ranksep, nodesep,
45                     fontsize, precision, show_weight_one, ostrm, dest);
46
47  Apply<Operation<FstDrawerArgs> >("DrawFst", fst.ArcType(), &args);
48}
49
50REGISTER_FST_OPERATION(DrawFst, StdArc, FstDrawerArgs);
51REGISTER_FST_OPERATION(DrawFst, LogArc, FstDrawerArgs);
52REGISTER_FST_OPERATION(DrawFst, Log64Arc, FstDrawerArgs);
53
54}  // namespace script
55}  // namespace fst
56