In case of ubuntu system `get_os_name()` returns "ubuntu", but `get_os_type()` returns "Linux" which is expected by tests
56 lines
1.6 KiB
Python
56 lines
1.6 KiB
Python
#!/usr/bin/env python3
|
|
|
|
# Copyright (C) 2018-2022 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
""" Common utilities for working with paths
|
|
"""
|
|
|
|
import argparse
|
|
import os
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# add utils folder to imports
|
|
UTILS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(0, str(UTILS_DIR))
|
|
|
|
from platform_utils import get_os_type
|
|
|
|
|
|
def expand_env_vars(obj):
|
|
"""Expand environment variables in provided object."""
|
|
|
|
if isinstance(obj, list):
|
|
for i, value in enumerate(obj):
|
|
obj[i] = expand_env_vars(value)
|
|
elif isinstance(obj, dict):
|
|
for name, value in obj.items():
|
|
obj[name] = expand_env_vars(value)
|
|
else:
|
|
obj = os.path.expandvars(obj)
|
|
return obj
|
|
|
|
|
|
def get_lib_path(lib_name):
|
|
"""Function for getting absolute path in OpenVINO directory to specific lib"""
|
|
os_type = get_os_type()
|
|
all_libs = {
|
|
'openvino_intel_cpu_plugin': {
|
|
'Windows': Path('runtime/bin/intel64/Release/openvino_intel_cpu_plugin.dll'),
|
|
'Linux': Path('runtime/lib/intel64/libopenvino_intel_cpu_plugin.so')},
|
|
'openvino': {
|
|
'Windows': Path('runtime/bin/intel64/Release/openvino.dll'),
|
|
'Linux': Path('runtime/lib/intel64/libopenvino.so')}
|
|
}
|
|
return all_libs[lib_name][os_type]
|
|
|
|
|
|
def check_positive_int(val):
|
|
"""Check argsparse argument is positive integer and return it"""
|
|
value = int(val)
|
|
if value < 1:
|
|
msg = "%r is less than 1" % val
|
|
raise argparse.ArgumentTypeError(msg)
|
|
return value
|