blob: 1bf2b1632d3cc202d85db6695e374aea03767fac [file] [log] [blame]
Matteo Scandolo431781c2017-09-06 15:33:07 -07001# Copyright 2017-present Open Networking Foundation
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
15import os
Zack Williams67142162019-03-06 14:01:32 -070016import traceback
Scott Bakerde2f7ff2018-12-19 16:00:09 -080017from xosgenx.generator import XOSProcessor, XOSProcessorArgs
Matteo Scandolo431781c2017-09-06 15:33:07 -070018
19CWD = OUTPUT_DIR = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
20SWAGGER_DOCS_DIR = os.path.abspath(CWD + '/../swagger/specs')
Matteo Scandolo64514092019-02-20 10:47:48 -080021REPO_DIR = os.path.abspath(CWD + "/../../../")
Matteo Scandolo431781c2017-09-06 15:33:07 -070022
23class Args:
24 pass
25
26def generate_swagger_docs(xproto):
27
28 # if not os.path.isfile(xproto):
29 # print "ERROR: Couldn't find xproto file for %s at: %s" % (service, xproto)
30 # return
31
32 print "Generating swagger docs for %s" % (xproto)
Scott Bakerde2f7ff2018-12-19 16:00:09 -080033 args = XOSProcessorArgs()
Matteo Scandolo431781c2017-09-06 15:33:07 -070034 args.files = xproto
35 args.target = 'swagger.xtarget'
36 args.output = SWAGGER_DOCS_DIR
37 args.write_to_file = "single"
38 args.dest_file = "swagger.yaml"
39 args.quiet = False
40 try:
Sapan Bhatiabfb233a2018-02-09 14:53:09 -080041 XOSProcessor.process(args)
Zack Williams67142162019-03-06 14:01:32 -070042 except Exception:
Matteo Scandolo431781c2017-09-06 15:33:07 -070043 print "ERROR: Couldn't generate swagger specs"
Zack Williams67142162019-03-06 14:01:32 -070044 traceback.print_exc()
Matteo Scandolo431781c2017-09-06 15:33:07 -070045
Matteo Scandolob8a4b122018-01-19 13:36:22 -080046def get_xproto_recursively(root):
47 files = []
48 items = os.listdir(root)
49 # iterate over the content of the folder excluding hidden items
50 for item in [i for i in items if i[0] is not "."]:
51 item_abs_path = os.path.abspath(root + "/" + item)
52 if os.path.isdir(item_abs_path):
53 files = files + get_xproto_recursively(item_abs_path)
Matteo Scandolo64514092019-02-20 10:47:48 -080054 elif os.path.isfile(item_abs_path) and ".xproto" in item_abs_path:
Matteo Scandolob8a4b122018-01-19 13:36:22 -080055 files.append(item_abs_path)
56
57 return [f for f in files if "xproto" in f]
58
59
Matteo Scandolo431781c2017-09-06 15:33:07 -070060def main():
61
Matteo Scandolo64514092019-02-20 10:47:48 -080062 protos = get_xproto_recursively(REPO_DIR)
Matteo Scandolo431781c2017-09-06 15:33:07 -070063
Matteo Scandolo64514092019-02-20 10:47:48 -080064 generate_swagger_docs(protos)
Matteo Scandolo431781c2017-09-06 15:33:07 -070065
66
67if __name__ == '__main__':
Sapan Bhatiabfb233a2018-02-09 14:53:09 -080068 main()