Licenses: Updated the list of licenses and added a PDF containing all license texts
[check_mk.git] / inventory / win_bios
blobfe158273e8dc51df32e4028fb0bd670e12a5ff90
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2013 mk@mathias-kettner.de |
11 # +------------------------------------------------------------------+
13 # This file is part of Check_MK.
14 # The official homepage is at http://mathias-kettner.de/check_mk.
16 # check_mk is free software; you can redistribute it and/or modify it
17 # under the terms of the GNU General Public License as published by
18 # the Free Software Foundation in version 2. check_mk is distributed
19 # in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
20 # out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
21 # PARTICULAR PURPOSE. See the GNU General Public License for more de-
22 # tails. You should have received a copy of the GNU General Public
23 # License along with GNU Make; see the file COPYING. If not, write
24 # to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
25 # Boston, MA 02110-1301 USA.
27 # Example output:
28 # <<<win_bios:sep(58)>>>
29 # Manufacturer : innotek GmbH
30 # Name : Default System BIOS
31 # BIOSVersion : {VBOX - 1}
32 # ListOfLanguages :
33 # PrimaryBIOS : True
34 # ReleaseDate : 20061201000000.000000+000
35 # SMBIOSBIOSVersion : VirtualBox
36 # SMBIOSMajorVersion : 2
37 # SMBIOSMinorVersion : 5
40 def inv_win_bios(info):
41 node = inv_tree("software.bios.")
42 smbios_version = ""
43 bios_version = ""
44 for line in info:
45 # Separator : seams not ideal. Some systems have : in the BIOS version
46 if len(line) > 2:
47 line = [line[0], ":".join(line[1:])]
48 varname, value = line
49 varname = re.sub(" *", "", varname)
50 value = re.sub("^ ", "", value)
51 if varname == "BIOSVersion":
52 bios_version = value
53 elif varname == "SMBIOSBIOSVersion":
54 smbios_version = value
55 elif varname == "SMBIOSMajorVersion":
56 major_version = value
57 elif varname == "SMBIOSMinorVersion":
58 minor_version = value
59 elif varname == "ReleaseDate":
60 # The ReleaseDate property indicates the release date of the
61 # Win32 BIOS in the Coordinated Universal Time (UTC) format
62 # of YYYYMMDDHHMMSS.MMMMMM(+-)OOO.
63 value = value.replace("*", "0")
64 node["date"] = int(time.mktime(time.strptime(value.split(".")[0], "%Y%m%d%H%M%S")))
65 elif varname == "Manufacturer":
66 node["vendor"] = value
67 elif varname == "Name":
68 node["model"] = value
70 if smbios_version:
71 node["version"] = smbios_version + " " + major_version + \
72 "." + minor_version
73 else:
74 node["version"] = bios_version
77 inv_info['win_bios'] = {
78 "inv_function": inv_win_bios,