forked from vmware/photon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.py
executable file
·48 lines (42 loc) · 1.62 KB
/
device.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# Copyright (C) 2015 vmware inc.
#
# Author: Mahmoud Bassiouny <[email protected]>
import subprocess
import os
class Device(object):
def __init__(self, model, path, size):
self.model = model
self.path = path
self.size = size
@staticmethod
def refresh_devices():
devices_list = subprocess.check_output(['lsblk', '-d', '-I', '8,259', '-n',
'--output', 'NAME,SIZE,MODEL'],
stderr=open(os.devnull, 'w'))
return Device.wrap_devices_from_list(devices_list)
@staticmethod
def refresh_devices_bytes():
devices_list = subprocess.check_output(['lsblk', '-d', '--bytes', '-I',
'8,259', '-n', '--output', 'NAME,SIZE,MODEL'],
stderr=open(os.devnull, 'w'))
return Device.wrap_devices_from_list(devices_list)
@staticmethod
def wrap_devices_from_list(list):
devices = []
deviceslines = list.splitlines()
for deviceline in deviceslines:
cols = deviceline.split(None, 2)
#skip Virtual NVDIMM from install list
colstr = cols[0].decode()
if colstr.startswith("pmem"):
continue
model = "Unknown"
if len(cols) >= 3:
model = cols[2].decode()
devices.append(
Device(model #Model
, '/dev/' + cols[0].decode() #Path
, cols[1].decode() #size
))
return devices