5d6290ac1a
Change-Id: I8a7af03ef761d19b55737bb6ba59003619948d40
109 lines
2.4 KiB
Python
109 lines
2.4 KiB
Python
# Copyright 2015 Mirantis, Inc.
|
|
#
|
|
# 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.
|
|
|
|
import sys
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log
|
|
|
|
from bareon_allocator.allocators import DynamicAllocator
|
|
from bareon_allocator import utils
|
|
from bareon_allocator import viewer
|
|
|
|
|
|
cli_opts = [
|
|
cfg.StrOpt(
|
|
'schema',
|
|
required=True,
|
|
help='Input file, path to a file with dynamic partitioning schema'
|
|
),
|
|
cfg.StrOpt(
|
|
'file',
|
|
required=True,
|
|
help='Output path to a file with static partitioning schema'
|
|
),
|
|
cfg.StrOpt(
|
|
'hw-info',
|
|
required=True,
|
|
help='Hardware information'
|
|
),
|
|
cfg.StrOpt(
|
|
'svg-file',
|
|
required=True,
|
|
help='Svg file is required for svg viewer'
|
|
),
|
|
]
|
|
|
|
|
|
def make_config():
|
|
conf = cfg.ConfigOpts()
|
|
|
|
conf.register_cli_opts(cli_opts)
|
|
log.register_options(conf)
|
|
|
|
return conf
|
|
|
|
|
|
def parse_args(conf, args=None):
|
|
project = 'bareon_allocator'
|
|
version = '1.0.0'
|
|
conf(args=args if args else sys.argv[1:],
|
|
project=project,
|
|
version=version)
|
|
log.setup(conf,
|
|
project,
|
|
version=version)
|
|
|
|
|
|
CONF = make_config()
|
|
parse_args(CONF)
|
|
LOG = log.getLogger(__name__)
|
|
|
|
|
|
def parse_configs(conf):
|
|
hw_info = utils.parse_yaml(conf.hw_info)
|
|
schema = utils.parse_yaml(conf.schema)
|
|
|
|
return (hw_info, schema)
|
|
|
|
|
|
def save_result(data, output_file):
|
|
viewer.StdoutViewer(data).show_me()
|
|
viewer.SVGViewer(data, file_path=output_file).show_me()
|
|
|
|
|
|
def validate_schema(schema):
|
|
# TODO(eli): should be implemented
|
|
return schema
|
|
|
|
|
|
def validate_hw_info(hw_info):
|
|
# TODO(eli): should be implemented
|
|
return hw_info
|
|
|
|
|
|
def allocator():
|
|
LOG.debug('hi')
|
|
conf = parse_configs(CONF)
|
|
validate_schema(conf[0])
|
|
validate_hw_info(conf[1])
|
|
|
|
schema = DynamicAllocator(*conf).generate_static()
|
|
|
|
save_result(schema, CONF.svg_file)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
allocator()
|