blob: 8c11d93add693d4b3d9bebb755d75fe8dfc0dab5 [file] [log] [blame]
#!/usr/bin/env python
'''
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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 os
import sys
import platform
__all__ = [
'OSCheck',
]
def linux_distribution():
PYTHON_VER = sys.version_info[0] * 10 + sys.version_info[1]
if PYTHON_VER < 26:
(distname, version, id) = platform.dist()
else:
(distname, version, id) = platform.linux_distribution()
return (platform.system(), os.name, distname, version, id)
def windows_distribution():
# Only support Windows Server 64 bit
(win_release, win_version, win_csd, win_ptype) = platform.win32_ver()
#if win_version
return (platform.system(), os.name, win_release, win_version, win_ptype)
class OS_CONST_TYPE(type):
# os platforms
LINUX_OS = 'linux'
WINDOWS_OS = 'windows'
# os families
REDHAT_FAMILY = 'redhat'
DEBIAN_FAMILY = 'debian'
SUSE_FAMILY = 'suse'
WINSRV_FAMILY = 'winsrv'
# Declare here os type mapping
OS_FAMILY_COLLECTION = [
{'name': REDHAT_FAMILY,
'os_list':
['redhat', 'fedora', 'centos', 'oraclelinux',
'ascendos', 'amazon', 'xenserver', 'oel', 'ovs',
'cloudlinux', 'slc', 'scientific', 'psbm',
'centos linux']
},
{'name': DEBIAN_FAMILY,
'os_list': ['ubuntu', 'debian']
},
{'name': SUSE_FAMILY,
'os_list': ['sles', 'sled', 'opensuse', 'suse']
}
]
WIN_OS_FAMILY_COLLECTION = [
{'name': WINSRV_FAMILY,
'os_list':
['2008Server', '2012Server']
},
]
# Would be generated from Family collection definition
OS_COLLECTION = []
def __init__(cls, name, bases, dct):
if platform.system() == 'Windows':
for item in cls.WIN_OS_FAMILY_COLLECTION:
cls.OS_COLLECTION += item['os_list']
else:
if platform.system() == 'Mac':
raise Exception("MacOS not supported. Exiting...")
else:
dist = linux_distribution()
for item in cls.OS_FAMILY_COLLECTION:
cls.OS_COLLECTION += item['os_list']
def __getattr__(cls, name):
"""
Added support of class.OS_<os_type> properties defined in OS_COLLECTION
Example:
OSConst.OS_CENTOS would return centos
OSConst.OS_OTHEROS would triger an error, coz
that os is not present in OS_FAMILY_COLLECTION map
"""
name = name.lower()
if "os_" in name and name[3:] in cls.OS_COLLECTION:
return name[3:]
else:
raise Exception("Unknown class property '%s'" % name)
def get_os_distribution():
if platform.system() == 'Windows':
dist = windows_distribution()
else:
if platform.system() == 'Darwin':
dist = ("Darwin", "TestOnly", "1.1.1", "1.1.1", "1.1")
else:
# Linux
# Read content from /etc/*-release file
# Full release name
dist = linux_distribution()
return dist
class OSConst:
__metaclass__ = OS_CONST_TYPE
class OSCheck:
_dist = get_os_distribution()
@staticmethod
def get_os_os():
"""
Return values:
windows, linux
In case cannot detect - exit.
"""
# Read content from /etc/*-release file
# Full release name
os_os = OSCheck._dist[0].lower()
return os_os
@staticmethod
def get_os_type():
"""
Return values:
2008server, 2012server,
redhat, fedora, centos, oraclelinux, ascendos,
amazon, xenserver, oel, ovs, cloudlinux, slc, scientific, psbm,
ubuntu, debian, sles, sled, opensuse, suse ... and others
In case cannot detect - exit.
"""
# Read content from /etc/*-release file
# Full release name
operatingSystem = OSCheck._dist[2].lower()
# special cases
if os.path.exists('/etc/oracle-release'):
return 'oraclelinux'
elif operatingSystem.startswith('suse linux enterprise server'):
return 'sles'
elif operatingSystem.startswith('red hat enterprise linux'):
return 'redhat'
if operatingSystem != '':
return operatingSystem
else:
raise Exception("Cannot detect os type. Exiting...")
@staticmethod
def get_os_family():
"""
Return values:
redhat, debian, suse ... and others
In case cannot detect raises exception( from self.get_operating_system_type() ).
"""
if(OSCheck._dist[0] == 'Windows'):
os_family = OSConst.WIN_OS_FAMILY_COLLECTION[0]['name']
else:
os_family = OSCheck.get_os_type()
for os_family_item in OSConst.OS_FAMILY_COLLECTION:
if os_family in os_family_item['os_list']:
os_family = os_family_item['name']
break
return os_family.lower()
@staticmethod
def get_os_version():
"""
Returns the OS version
In case cannot detect raises exception.
"""
dist = OSCheck._dist[3]
if dist:
return dist
else:
raise Exception("Cannot detect os version from " + repr(OSCheck._dist) + " Exiting...")
@staticmethod
def get_os_major_version():
"""
Returns the main OS version like
Centos 6.5 --> 6
RedHat 1.2.3 --> 1
"""
return OSCheck.get_os_version().split('.')[0]
@staticmethod
def get_os_release_name():
"""
Returns the OS release name
In case cannot detect raises exception.
"""
dist = OSCheck._dist[4].lower()
if dist:
return dist
else:
raise Exception("Cannot detect os release name. Exiting...")
# Exception safe family check functions
@staticmethod
def is_debian_family():
"""
Return true if it is so or false if not
This is safe check for debian family, doesn't generate exception
"""
try:
if OSCheck.get_os_family() == OSConst.DEBIAN_FAMILY:
return True
except Exception:
pass
return False
@staticmethod
def is_suse_family():
"""
Return true if it is so or false if not
This is safe check for suse family, doesn't generate exception
"""
try:
if OSCheck.get_os_family() == OSConst.SUSE_FAMILY:
return True
except Exception:
pass
return False
@staticmethod
def is_redhat_family():
"""
Return true if it is so or false if not
This is safe check for redhat family, doesn't generate exception
"""
try:
if OSCheck.get_os_family() == OSConst.REDHAT_FAMILY:
return True
except Exception:
pass
return False
@staticmethod
def is_windows_family():
"""
Return true if it is so or false if not
This is safe check for windows family, doesn't generate exception
"""
try:
if OSCheck.get_os_family() == OSConst.WINSRV_FAMILY:
return True
except Exception:
pass
return False
@staticmethod
def is_linux_os():
"""
Return true if it is so or false if not
This is safe check for linux os, doesn't generate exception
"""
try:
if OSCheck.get_os_os() == OSConst.LINUX_OS:
return True
except Exception:
pass
return False
@staticmethod
def is_windows_os():
"""
Return true if it is so or false if not
This is safe check for windows os, doesn't generate exception
"""
try:
if OSCheck.get_os_os() == OSConst.WINDOWS_OS:
return True
except Exception:
pass
return False
# OS info
OS_VERSION = OSCheck().get_os_major_version()
OS_TYPE = OSCheck.get_os_type()
OS_FAMILY = OSCheck.get_os_family()
OS_OS = OSCheck.get_os_os()
if __name__ == "__main__":
main()