2007-12-08 17:42:33 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file hardware.c
|
|
|
|
/// \brief Detection of available hardware resources
|
|
|
|
//
|
2009-04-13 04:27:40 -04:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
2009-04-13 04:27:40 -04:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "private.h"
|
2009-09-19 02:47:30 -04:00
|
|
|
#include "tuklib_cpucores.h"
|
2007-12-08 17:42:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
/// Maximum number of free *coder* threads. This can be set with
|
|
|
|
/// the --threads=NUM command line option.
|
2009-05-22 04:29:50 -04:00
|
|
|
static uint32_t threadlimit;
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2010-08-07 13:45:18 -04:00
|
|
|
/// Memory usage limit for compression
|
|
|
|
static uint64_t memlimit_compress;
|
|
|
|
|
|
|
|
/// Memory usage limit for decompression
|
|
|
|
static uint64_t memlimit_decompress;
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2010-03-07 06:29:28 -05:00
|
|
|
/// Total amount of physical RAM
|
|
|
|
static uint64_t total_ram;
|
|
|
|
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2009-05-22 04:29:50 -04:00
|
|
|
extern void
|
|
|
|
hardware_threadlimit_set(uint32_t new_threadlimit)
|
2007-12-08 17:42:33 -05:00
|
|
|
{
|
2009-05-22 04:29:50 -04:00
|
|
|
if (new_threadlimit == 0) {
|
|
|
|
// The default is the number of available CPU cores.
|
2009-09-19 02:47:30 -04:00
|
|
|
threadlimit = tuklib_cpucores();
|
2009-05-22 04:29:50 -04:00
|
|
|
if (threadlimit == 0)
|
|
|
|
threadlimit = 1;
|
|
|
|
} else {
|
|
|
|
threadlimit = new_threadlimit;
|
|
|
|
}
|
2007-12-08 17:42:33 -05:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-22 04:29:50 -04:00
|
|
|
extern uint32_t
|
|
|
|
hardware_threadlimit_get(void)
|
2009-02-13 17:45:29 -05:00
|
|
|
{
|
2009-05-22 04:29:50 -04:00
|
|
|
return threadlimit;
|
2009-02-13 17:45:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-22 04:29:50 -04:00
|
|
|
extern void
|
2010-08-07 13:45:18 -04:00
|
|
|
hardware_memlimit_set(uint64_t new_memlimit,
|
|
|
|
bool set_compress, bool set_decompress, bool is_percentage)
|
2009-02-13 17:45:29 -05:00
|
|
|
{
|
2010-08-07 13:45:18 -04:00
|
|
|
if (is_percentage) {
|
|
|
|
assert(new_memlimit > 0);
|
|
|
|
assert(new_memlimit <= 100);
|
|
|
|
new_memlimit = (uint32_t)new_memlimit * total_ram / 100;
|
2009-05-22 04:29:50 -04:00
|
|
|
}
|
|
|
|
|
2010-08-07 13:45:18 -04:00
|
|
|
if (set_compress)
|
|
|
|
memlimit_compress = new_memlimit;
|
|
|
|
|
|
|
|
if (set_decompress)
|
|
|
|
memlimit_decompress = new_memlimit;
|
|
|
|
|
2009-05-22 04:29:50 -04:00
|
|
|
return;
|
2009-02-13 17:45:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-07 13:45:18 -04:00
|
|
|
extern uint64_t
|
|
|
|
hardware_memlimit_get(enum operation_mode mode)
|
2008-11-19 13:46:52 -05:00
|
|
|
{
|
2010-08-07 13:45:18 -04:00
|
|
|
// Zero is a special value that indicates the default. Currently
|
|
|
|
// the default simply disables the limit. Once there is threading
|
|
|
|
// support, this might be a little more complex, because there will
|
|
|
|
// probably be a special case where a user asks for "optimal" number
|
|
|
|
// of threads instead of a specific number (this might even become
|
|
|
|
// the default mode). Each thread may use a significant amount of
|
|
|
|
// memory. When there are no memory usage limits set, we need some
|
|
|
|
// default soft limit for calculating the "optimal" number of
|
|
|
|
// threads.
|
|
|
|
const uint64_t memlimit = mode == MODE_COMPRESS
|
|
|
|
? memlimit_compress : memlimit_decompress;
|
|
|
|
return memlimit != 0 ? memlimit : UINT64_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Helper for hardware_memlimit_show() to print one human-readable info line.
|
|
|
|
static void
|
|
|
|
memlimit_show(const char *str, uint64_t value)
|
|
|
|
{
|
|
|
|
// The memory usage limit is considered to be disabled if value
|
|
|
|
// is 0 or UINT64_MAX. This might get a bit more complex once there
|
|
|
|
// is threading support. See the comment in hardware_memlimit_get().
|
|
|
|
if (value == 0 || value == UINT64_MAX)
|
|
|
|
printf("%s %s\n", str, _("Disabled"));
|
|
|
|
else
|
|
|
|
printf("%s %s MiB (%s B)\n", str,
|
|
|
|
uint64_to_str(round_up_to_mib(value), 0),
|
|
|
|
uint64_to_str(value, 1));
|
2009-05-22 04:29:50 -04:00
|
|
|
|
2008-11-19 13:46:52 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-07 13:45:18 -04:00
|
|
|
extern void
|
|
|
|
hardware_memlimit_show(void)
|
2008-11-19 13:46:52 -05:00
|
|
|
{
|
2010-08-07 13:45:18 -04:00
|
|
|
if (opt_robot) {
|
|
|
|
printf("%" PRIu64 "\t%" PRIu64 "\t%" PRIu64 "\n", total_ram,
|
|
|
|
memlimit_compress, memlimit_decompress);
|
|
|
|
} else {
|
|
|
|
memlimit_show(_("Total amount of physical memory (RAM): "),
|
|
|
|
total_ram);
|
|
|
|
memlimit_show(_("Memory usage limit for compression: "),
|
|
|
|
memlimit_compress);
|
|
|
|
memlimit_show(_("Memory usage limit for decompression: "),
|
|
|
|
memlimit_decompress);
|
|
|
|
}
|
|
|
|
|
|
|
|
tuklib_exit(E_SUCCESS, E_ERROR, message_verbosity_get() != V_SILENT);
|
2008-11-19 13:46:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-08 17:42:33 -05:00
|
|
|
extern void
|
|
|
|
hardware_init(void)
|
|
|
|
{
|
2010-03-07 06:29:28 -05:00
|
|
|
// Get the amount of RAM. If we cannot determine it,
|
|
|
|
// use the assumption defined by the configure script.
|
|
|
|
total_ram = lzma_physmem();
|
|
|
|
if (total_ram == 0)
|
|
|
|
total_ram = (uint64_t)(ASSUME_RAM) * 1024 * 1024;
|
|
|
|
|
|
|
|
// Set the defaults.
|
2010-08-07 13:45:18 -04:00
|
|
|
hardware_memlimit_set(0, true, true, false);
|
2009-05-22 04:29:50 -04:00
|
|
|
hardware_threadlimit_set(0);
|
2007-12-08 17:42:33 -05:00
|
|
|
return;
|
|
|
|
}
|