2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2016-08-16 01:21:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_INFO_H
|
|
|
|
|
2018-02-19 22:32:34 +01:00
|
|
|
// legacy
|
2018-02-19 23:03:05 +01:00
|
|
|
extern "C" const char *const ircd_name;
|
2018-02-19 22:32:34 +01:00
|
|
|
extern "C" const char *const ircd_version;
|
|
|
|
|
2017-09-12 18:37:44 +02:00
|
|
|
/// Information & metadata about the library.
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::info
|
|
|
|
{
|
|
|
|
struct line;
|
2018-01-17 12:55:36 +01:00
|
|
|
struct tc_version;
|
2017-08-28 23:51:22 +02:00
|
|
|
|
2018-02-19 22:32:34 +01:00
|
|
|
// Build information
|
2018-04-03 01:50:51 +02:00
|
|
|
extern const string_view tag;
|
|
|
|
extern const string_view branch;
|
|
|
|
extern const string_view commit;
|
2017-08-28 23:51:22 +02:00
|
|
|
extern const time_t configured_time;
|
|
|
|
extern const time_t startup_time;
|
2018-02-19 22:32:34 +01:00
|
|
|
extern const string_view configured;
|
2018-09-06 08:32:52 +02:00
|
|
|
extern const string_view compiled;
|
2018-02-19 22:32:34 +01:00
|
|
|
extern const string_view startup;
|
2018-01-17 12:55:36 +01:00
|
|
|
|
2019-04-01 01:06:17 +02:00
|
|
|
// Platform information
|
2018-01-18 06:36:26 +01:00
|
|
|
extern const size_t max_align;
|
|
|
|
extern const size_t hardware_concurrency;
|
|
|
|
extern const size_t destructive_interference;
|
|
|
|
extern const size_t constructive_interference;
|
2019-04-01 01:06:17 +02:00
|
|
|
extern const uint128_t cpuid[8];
|
|
|
|
extern const string_view cpuvendor;
|
|
|
|
|
|
|
|
// System information
|
2018-12-19 21:23:38 +01:00
|
|
|
extern const size_t page_size;
|
|
|
|
extern const size_t iov_max;
|
|
|
|
extern const size_t aio_max;
|
|
|
|
extern const size_t aio_reqprio_max;
|
2019-04-06 01:50:08 +02:00
|
|
|
extern const size_t clk_tck;
|
2018-04-20 21:37:17 +02:00
|
|
|
extern const size_t rlimit_as;
|
|
|
|
extern const size_t rlimit_data;
|
|
|
|
extern const size_t rlimit_rss;
|
|
|
|
extern const size_t rlimit_nofile;
|
2018-11-15 02:36:15 +01:00
|
|
|
extern const size_t rlimit_rttime;
|
2018-06-09 22:42:35 +02:00
|
|
|
|
2018-12-19 21:23:38 +01:00
|
|
|
// Host information
|
2018-01-21 11:09:13 +01:00
|
|
|
#ifdef HAVE_SYS_UTSNAME_H
|
|
|
|
extern const ::utsname utsname;
|
|
|
|
#endif
|
2019-03-13 23:57:49 +01:00
|
|
|
extern const string_view kname;
|
|
|
|
extern const string_view kversion_str;
|
|
|
|
extern const int kversion[3];
|
2018-01-21 11:09:13 +01:00
|
|
|
|
2018-12-19 21:23:38 +01:00
|
|
|
// Third-party information
|
|
|
|
extern const int glibc_version[3];
|
|
|
|
extern const string_view glibc_version_str;
|
|
|
|
|
|
|
|
// Primary information
|
|
|
|
extern const string_view name;
|
|
|
|
extern const string_view version;
|
|
|
|
extern const string_view user_agent;
|
|
|
|
extern const string_view server_agent;
|
|
|
|
|
2018-02-19 22:32:34 +01:00
|
|
|
// Extended information
|
2018-12-19 21:23:38 +01:00
|
|
|
extern const string_view credits[];
|
2018-02-19 22:32:34 +01:00
|
|
|
|
2018-12-19 21:23:38 +01:00
|
|
|
// Util
|
2018-04-20 21:41:03 +02:00
|
|
|
void dump();
|
2018-01-17 12:55:36 +01:00
|
|
|
void init();
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|