summaryrefslogtreecommitdiffstats
path: root/xbmc/platform/linux/MemUtils.cpp
blob: 09dd22fa62ee2708475c85f00551bea40e2b7377 (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
/*
 *  Copyright (C) 2005-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#include "utils/MemUtils.h"

#include <cstdlib>
#include <fstream>

namespace KODI
{
namespace MEMORY
{

void* AlignedMalloc(size_t s, size_t alignTo)
{
  void* p = nullptr;
  int res = posix_memalign(&p, alignTo, s);
  if (res == EINVAL)
  {
    throw std::runtime_error("Failed to align memory, alignment is not a multiple of 2");
  }
  else if (res == ENOMEM)
  {
    throw std::runtime_error("Failed to align memory, insufficient memory available");
  }
  return p;
}

void AlignedFree(void* p)
{
  if (!p)
    return;

  free(p);
}

void GetMemoryStatus(MemoryStatus* buffer)
{
  if (!buffer)
    return;

  std::ifstream file("/proc/meminfo");

  if (!file.is_open())
    return;

  uint64_t buffers;
  uint64_t cached;
  uint64_t free;
  uint64_t total;
  uint64_t reclaimable;

  std::string token;

  while (file >> token)
  {
    if (token == "Buffers:")
      file >> buffers;
    if (token == "Cached:")
      file >> cached;
    if (token == "MemFree:")
      file >> free;
    if (token == "MemTotal:")
      file >> total;
    if (token == "SReclaimable:")
      file >> reclaimable;
  }

  buffer->totalPhys = total * 1024;
  buffer->availPhys = (free + cached + reclaimable + buffers) * 1024;
}

}
}