fix single template expand to specific fname
[yaml_builds.git] / scripts / jcopy.py
1 #!/usr/bin/python
2 ##############################################################################
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.        #
4 #                                                                            #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may    #
6 # not use this file except in compliance with the License.                   #
7 #                                                                            #
8 # You may obtain a copy of the License at                                    #
9 #       http://www.apache.org/licenses/LICENSE-2.0                           #
10 #                                                                            #
11 # Unless required by applicable law or agreed to in writing, software        #
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT  #
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.           #
14 # See the License for the specific language governing permissions and        #
15 # limitations under the License.                                             #
16 ##############################################################################
17
18 #  jcopy.py - Copy a file or files to a target directory, making
19 #    substitutions as needed from the values contained in a YAML file.
20 #    compatibile with python and python3
21 #
22 #  usage: jcopy.py <yaml_input> <template_dir_or_file> <out_dir>
23
24 import os.path
25 import jinja2
26 import sys
27 import yaml
28
29 def usage(msg=None):
30   if not msg is None:
31     print(msg)
32   print( 'usage: jcopy.py <yaml> <template_dir_or_file> <out_dir>' )
33   sys.exit(1)
34
35 def expand_template( t, output_fname, fill=60 ):
36   print( '### {0: <{fill}} ==> {1}'.format(t.filename, output_fname, fill=fill) )
37   if not os.path.exists(os.path.dirname(output_fname)):
38     os.makedirs(os.path.dirname(output_fname))
39   t.stream(yaml=siteyaml).dump(output_fname)
40
41 if len(sys.argv) != 4:
42   usage('incorrect number of arguments')
43
44 yaml_input=sys.argv[1]
45 j2in_name=sys.argv[2]
46 yaml_out=sys.argv[3]
47
48 if not os.path.isfile(yaml_input):
49   usage('input yaml file {} does not exist'.format(yaml_input))
50
51 with open(yaml_input) as f:
52   siteyaml = yaml.safe_load(f)
53
54 if os.path.isfile(j2in_name):
55   j2_env = jinja2.Environment(loader=jinja2.FileSystemLoader(os.path.dirname(j2in_name)), trim_blocks=True, lstrip_blocks=True, undefined=jinja2.make_logging_undefined())
56   expand_template(j2_env.get_template(name=os.path.basename(j2in_name)),yaml_out,len(j2in_name))
57 else:
58   j2_env = jinja2.Environment(loader=jinja2.FileSystemLoader(j2in_name), trim_blocks=True, lstrip_blocks=True, undefined=jinja2.make_logging_undefined())
59   templates=j2_env.list_templates(extensions=('j2'))
60   fill=len(max(templates,key=len))+len(j2in_name)
61   for f in templates:
62     expand_template(j2_env.get_template(name=f), yaml_out+'/'+f.replace('.j2','.yaml'), fill)
63   print('%d files processed.' % len(templates))
64
65 sys.exit(0)
66
67 # sudo apt-get install python-jinja2 python-yaml
68 # sudo apt-get install python3-jinja2 python3-yaml
69