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
|
|
|
// Primary information
|
2018-02-19 23:03:05 +01:00
|
|
|
extern const string_view name;
|
2018-02-19 22:32:34 +01:00
|
|
|
extern const string_view version;
|
2018-02-19 23:03:05 +01:00
|
|
|
extern const string_view user_agent;
|
|
|
|
extern const string_view server_agent;
|
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 compiled_time;
|
|
|
|
extern const time_t startup_time;
|
2018-02-19 22:32:34 +01:00
|
|
|
extern const string_view compiled;
|
|
|
|
extern const string_view configured;
|
|
|
|
extern const string_view startup;
|
2018-01-17 12:55:36 +01:00
|
|
|
|
2018-02-19 22:32:34 +01:00
|
|
|
// System / 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;
|
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-01-21 11:09:13 +01:00
|
|
|
#ifdef HAVE_SYS_UTSNAME_H
|
|
|
|
extern const ::utsname utsname;
|
|
|
|
#endif
|
|
|
|
|
2018-02-19 22:32:34 +01:00
|
|
|
// Third party information
|
|
|
|
extern const uint boost_version[3];
|
|
|
|
|
|
|
|
// Extended information
|
|
|
|
extern const std::vector<info::line> myinfo;
|
|
|
|
extern const std::vector<string_view> credits;
|
|
|
|
|
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
|
|
|
}
|
2016-08-16 01:21:01 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::info::line
|
2016-08-16 01:21:01 +02:00
|
|
|
{
|
|
|
|
std::string key;
|
|
|
|
std::string valstr;
|
|
|
|
uint64_t valnum;
|
|
|
|
std::string desc;
|
|
|
|
};
|