blob: 819d55f93ede1409cb291791c265a360bcc8575f [file] [log] [blame]
# Copyright 2016 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
"""Common code for platforms."""
from collections import namedtuple
def _safe_parse(content, split=': '):
"""Safely parse a 'key: value' list of strings from a command."""
values = {}
for l in content.splitlines():
if not l:
continue
parts = l.split(split, 2)
if len(parts) != 2:
continue
values.setdefault(
parts[0].strip().decode('utf-8'), parts[1].decode('utf-8'))
return values
ComputerSystemInfo = namedtuple('ComputerSystemInfo', [
'name', 'vendor', 'version', 'serial'])