924cfb0ac8
Added heat-translator-logging.conf heat-translator.py and osc/v1/translate.py reads configuration file. Added warning log messages before raising exceptions To be added proper log messages in the code with other log levels Partially Implements: blueprint heat-translator-logging Change-Id: I5aeb39a83dc8dcc59245968d3dd8a6451d93865c
83 lines
2.7 KiB
Python
83 lines
2.7 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""Translate action implementations"""
|
|
|
|
import logging
|
|
import logging.config
|
|
import os
|
|
import sys
|
|
|
|
from cliff import command
|
|
|
|
from toscaparser.tosca_template import ToscaTemplate
|
|
from translator.hot.tosca_translator import TOSCATranslator
|
|
from translator.osc import utils
|
|
|
|
logging.config.fileConfig('heat_translator_logging.conf')
|
|
|
|
|
|
class TranslateTemplate(command.Command):
|
|
"""Translate a template"""
|
|
|
|
log = logging.getLogger('heat-translator' + '.TranslateTemplate')
|
|
auth_required = False
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(TranslateTemplate, self).get_parser(prog_name)
|
|
parser.add_argument(
|
|
'--template-file',
|
|
metavar='<template-file>',
|
|
required=True,
|
|
help='Path to the file that needs to be translated.')
|
|
parser.add_argument(
|
|
'--template-type',
|
|
metavar='<template-type>',
|
|
required=True,
|
|
choices=['tosca'],
|
|
help='Format of the template file.')
|
|
parser.add_argument(
|
|
'--output-file',
|
|
metavar='<output-file>',
|
|
help='Path to place the translated content.')
|
|
parser.add_argument(
|
|
'--parameter',
|
|
metavar='<key=value>',
|
|
action=utils.KeyValueAction,
|
|
help='Set a property for this template '
|
|
'(repeat option to set multiple properties)',
|
|
)
|
|
return parser
|
|
|
|
def take_action(self, parsed_args):
|
|
self.log.debug('take_action(%s)', parsed_args)
|
|
|
|
if not os.path.isfile(parsed_args.template_file):
|
|
sys.stdout.write('Could not find template file.')
|
|
raise SystemExit
|
|
|
|
if parsed_args.parameter:
|
|
parsed_params = parsed_args.parameter
|
|
else:
|
|
parsed_params = {}
|
|
|
|
if parsed_args.template_type == "tosca":
|
|
tosca = ToscaTemplate(parsed_args.template_file)
|
|
translator = TOSCATranslator(tosca, parsed_params)
|
|
output = translator.translate()
|
|
|
|
if parsed_args.output_file:
|
|
with open(parsed_args.output_file, 'w+') as f:
|
|
f.write(output)
|
|
else:
|
|
print(output)
|