2
# This file is part of Checkbox.
4
# Copyright 2011 Canonical Ltd.
6
# Checkbox is free software: you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation, either version 3 of the License, or
9
# (at your option) any later version.
11
# Checkbox is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
16
# You should have received a copy of the GNU General Public License
17
# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.
23
"""Parser for the /proc/meminfo file."""
25
def __init__(self, stream):
28
def run(self, result):
29
key_value_pattern = re.compile(r"(?P<key>.*):\s+(?P<value>.*)")
35
for line in self.stream.readlines():
37
match = key_value_pattern.match(line)
39
key = match.group("key")
40
if key in meminfo_map:
41
key = meminfo_map[key]
42
value = match.group("value")
43
(integer, factor) = value.split()
44
meminfo[key] = int(integer) * 1024
46
result.setMemory(meminfo)