nat: use correct data types for memory sizes
[vpp.git] / doxygen / siphon-process
1 #!/usr/bin/env python3
2 # Copyright (c) 2016 Comcast Cable Communications Management, LLC.
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 # Filter for .siphon files that are generated by other filters.
17 # The idea is to siphon off certain initializers so that we can better
18 # auto-document the contents of that initializer.
19
20 import argparse
21 import logging
22 import os
23 import sys
24
25 import siphon
26
27 DEFAULT_LOGFILE = None
28 DEFAULT_LOGLEVEL = "info"
29 DEFAULT_SIPHON = "clicmd"
30 DEFAULT_FORMAT = "markdown"
31 DEFAULT_OUTPUT = None
32 DEFAULT_TEMPLATES = os.path.dirname(__file__) + "/siphon_templates"
33
34 ap = argparse.ArgumentParser()
35 ap.add_argument("--log-file", default=DEFAULT_LOGFILE,
36                 help="Log file [%s]" % DEFAULT_LOGFILE)
37 ap.add_argument("--log-level", default=DEFAULT_LOGLEVEL,
38                 choices=["debug", "info", "warning", "error", "critical"],
39                 help="Logging level [%s]" % DEFAULT_LOGLEVEL)
40
41 ap.add_argument("--type", '-t', metavar="siphon_type", default=DEFAULT_SIPHON,
42                 choices=siphon.process.siphons.keys(),
43                 help="Siphon type to process [%s]" % DEFAULT_SIPHON)
44 ap.add_argument("--format", '-f', default=DEFAULT_FORMAT,
45                 choices=siphon.process.formats.keys(),
46                 help="Output format to generate [%s]" % DEFAULT_FORMAT)
47 ap.add_argument("--output", '-o', metavar="file", default=DEFAULT_OUTPUT,
48                 help="Output file (uses stdout if not defined) [%s]" %
49                      DEFAULT_OUTPUT)
50 ap.add_argument("--templates", metavar="directory", default=DEFAULT_TEMPLATES,
51                 help="Path to render templates directory [%s]" %
52                      DEFAULT_TEMPLATES)
53 ap.add_argument("input", nargs='+', metavar="input_file",
54                 help="Input .siphon files")
55 args = ap.parse_args()
56
57 logging.basicConfig(filename=args.log_file,
58                     level=getattr(logging, args.log_level.upper(), None))
59 log = logging.getLogger("siphon_process")
60
61 # Determine where to send the generated output
62 if args.output is None:
63     out = sys.stdout
64 else:
65     out = open(args.output, "w+")
66
67 # Get our processor
68 klass = siphon.process.siphons[args.type]
69 processor = klass(template_directory=args.templates, format=args.format)
70
71 # Load the input files
72 processor.load_json(args.input)
73
74 # Process the data
75 processor.process(out=out)
76
77 # All done