summaryrefslogtreecommitdiffstats
path: root/lib/facter/util/memory.rb
blob: b7ad198dbc53fc936889531fd8b6b3675aa2c89e (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
## memory.rb
## Support module for memory related facts
##
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License
## as published by the Free Software Foundation (version 2 of the License)
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston MA  02110-1301 USA
##

module Facter::Memory
    require 'thread'

    def self.meminfo_number(tag)
        memsize = ""
        Thread::exclusive do
            size, scale = [0, ""]
            File.readlines("/proc/meminfo").each do |l|
                size, scale = [$1.to_f, $2] if l =~ /^#{tag}:\s+(\d+)\s+(\S+)/
                # MemoryFree == memfree + cached + buffers
                #  (assume scales are all the same as memfree)
                if tag == "MemFree" &&
                    l =~ /^(?:Buffers|Cached):\s+(\d+)\s+(?:\S+)/
                    size += $1.to_f
                end
            end
            memsize = scale_number(size, scale)
        end

        memsize
    end

    def self.scale_number(size, multiplier)
        suffixes = ['', 'kB', 'MB', 'GB', 'TB']

        s = suffixes.shift
        while s != multiplier
            s = suffixes.shift
        end

        while size > 1024.0
            size /= 1024.0
            s = suffixes.shift
        end

        return "%.2f %s" % [size, s]
    end

    def self.vmstat_find_free_memory()
        row = Facter::Util::Resolution.exec('vmstat').split("\n")[-1]
        if row =~ /^\s*\d+\s*\d+\s*\d+\s*\d+\s*(\d+)/
            Facter.add("MemoryFree") do
                memfree = $1
                setcode do
                    Facter::Memory.scale_number(memfree.to_f, "kB")
                end
            end
        end
    end

    # Darwin had to be different. It's generally opaque with how much RAM it is
    # using, and this figure could be improved upon too I fear.
    # Parses the output of "vm_stat", takes the pages free & pages speculative
    # and multiples that by the page size (also given in output). Ties in with
    # what activity monitor outputs for free memory.
    def self.vmstat_darwin_find_free_memory()

        memfree = 0
        pagesize = 0
        memspecfree = 0

        vmstats = Facter::Util::Resolution.exec('vm_stat')
        vmstats.each do |vmline|
          case
            when vmline =~ /page\ssize\sof\s(\d+)\sbytes/
              pagesize = $1.to_i
            when vmline =~ /^Pages\sfree:\s+(\d+)\./
              memfree = $1.to_i
            when vmline =~ /^Pages\sspeculative:\s+(\d+)\./
              memspecfree = $1.to_i
          end
        end

        freemem = ( memfree + memspecfree ) * pagesize
        Facter.add("MemoryFree") do
          setcode do
            Facter::Memory.scale_number(freemem.to_f, "")
          end
        end
    end
end