2014-05-01 16:13:47 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright 2014 Red Hat 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 argparse
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
2014-11-19 11:59:49 +00:00
|
|
|
def eprint(msg):
|
|
|
|
sys.stderr.write(msg)
|
|
|
|
sys.stderr.write("\n")
|
|
|
|
|
|
|
|
|
2014-05-01 16:13:47 +00:00
|
|
|
def os_family(distro):
|
|
|
|
family = None
|
2015-02-24 18:49:47 +00:00
|
|
|
if distro in ['fedora', 'rhel', 'rhel7', 'centos', 'centos7']:
|
2014-05-01 16:13:47 +00:00
|
|
|
family = 'redhat'
|
|
|
|
elif distro in ['debian', 'ubuntu']:
|
|
|
|
family = 'debian'
|
|
|
|
elif distro == 'opensuse':
|
|
|
|
family = 'suse'
|
|
|
|
|
|
|
|
return family
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(
|
2014-11-19 11:59:49 +00:00
|
|
|
description="Translate package name to distro specific name."
|
|
|
|
" Exits with 1 if error is encountered, 2 if no pkg-map"
|
|
|
|
" file is found. Otherwise exits with 0.")
|
2014-05-01 16:13:47 +00:00
|
|
|
parser.add_argument('--element', default='',
|
|
|
|
help='The element (namespace) to use for translation.')
|
|
|
|
parser.add_argument('--distro', default=os.environ.get('DISTRO_NAME'),
|
|
|
|
help='The distro name to use for translation.'
|
|
|
|
' Defaults to DISTRO_NAME')
|
2014-11-19 11:59:49 +00:00
|
|
|
parser.add_argument('--missing-ok', action="store_true",
|
|
|
|
help='Do not consider missing mappings an error.'
|
|
|
|
' Causes packages where no mapping is set to be'
|
|
|
|
' printed.')
|
2014-05-01 16:13:47 +00:00
|
|
|
args, extra = parser.parse_known_args()
|
|
|
|
|
|
|
|
if not args.element:
|
2014-11-19 11:59:49 +00:00
|
|
|
eprint('Please specify an --element argument.')
|
2014-05-01 16:13:47 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if not args.distro:
|
2014-11-19 11:59:49 +00:00
|
|
|
eprint('Please specify a --distro argument or set DISTRO_NAME.')
|
2014-05-01 16:13:47 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
map_file = '/usr/share/pkg-map/%s' % args.element
|
|
|
|
if not os.path.exists(map_file):
|
2014-11-19 11:59:49 +00:00
|
|
|
eprint('Map file for %s element does not exist.' % args.element)
|
2015-02-23 18:05:35 +00:00
|
|
|
if args.missing_ok:
|
|
|
|
for name in extra:
|
|
|
|
print(name)
|
|
|
|
sys.exit(0)
|
2014-11-19 11:59:49 +00:00
|
|
|
sys.exit(2)
|
2014-05-01 16:13:47 +00:00
|
|
|
|
|
|
|
with open(map_file) as fd:
|
|
|
|
package_names = json.loads(fd.read())
|
|
|
|
|
|
|
|
# Parse mapping data in this form using distro/family/default
|
|
|
|
# Most specific takes priority (distro is most specific).
|
2014-08-11 12:35:13 +00:00
|
|
|
# An empty package list can be provided.
|
|
|
|
# Example for Nova and Glance (using fictitious name for Fedora and SUSE
|
|
|
|
# and package mapping for SUSE family)
|
2014-05-01 16:13:47 +00:00
|
|
|
# {
|
|
|
|
# "distro": {
|
|
|
|
# "fedora": {
|
|
|
|
# "nova_package": "openstack-compute",
|
|
|
|
# "glance_package": "openstack-image"
|
|
|
|
# }
|
|
|
|
# },
|
|
|
|
# "family": {
|
|
|
|
# "redhat": {
|
|
|
|
# "nova_package": "openstack-nova",
|
|
|
|
# "glance_package": "openstack-glance"
|
2014-08-11 12:35:13 +00:00
|
|
|
# },
|
|
|
|
# "suse": {
|
|
|
|
# "nova_package": ""
|
|
|
|
# }
|
2014-05-01 16:13:47 +00:00
|
|
|
# },
|
|
|
|
# "default": {
|
|
|
|
# "nova_package": "nova",
|
|
|
|
# "glance_package": "glance"
|
|
|
|
# }
|
|
|
|
# }
|
|
|
|
name_map = package_names.get('default', {})
|
|
|
|
if 'family' in package_names:
|
|
|
|
family_map = package_names['family'].get(os_family(args.distro))
|
|
|
|
if family_map:
|
|
|
|
name_map.update(family_map)
|
|
|
|
if 'distro' in package_names:
|
|
|
|
distro_map = package_names['distro'].get(args.distro)
|
|
|
|
if distro_map:
|
|
|
|
name_map.update(distro_map)
|
2014-11-19 11:59:49 +00:00
|
|
|
|
2014-05-01 16:13:47 +00:00
|
|
|
for name in extra:
|
2014-06-03 15:37:15 +00:00
|
|
|
pkg_name = name_map.get(name)
|
2014-05-01 16:13:47 +00:00
|
|
|
if pkg_name:
|
|
|
|
print(pkg_name)
|
2014-08-11 12:35:13 +00:00
|
|
|
elif name in name_map:
|
|
|
|
continue
|
2014-05-01 16:13:47 +00:00
|
|
|
else:
|
|
|
|
err_msg = 'Missing package name for distro/element: %s/%s'
|
2014-11-19 11:59:49 +00:00
|
|
|
eprint(err_msg % (args.distro, args.element))
|
|
|
|
if args.missing_ok:
|
|
|
|
print(name)
|
|
|
|
else:
|
|
|
|
sys.exit(1)
|
2014-05-01 16:13:47 +00:00
|
|
|
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|