AuroraRuntime/Include/Aurora/Runtime.hpp

178 lines
5.1 KiB
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Runtime.hpp
Date: 2021-6-9
Author: Reece
***/
#pragma once
#if defined(AURORA_ENGINE_KERNEL_STATIC)
#define AUKN_SYM
#else
#if defined(AURORA_ENGINE_KERNEL_EXPORT)
#define AUKN_SYM AURORA_SYMBOL_EXPORT
#else
#define AUKN_SYM AURORA_SYMBOL_IMPORT
#endif
#endif
#include "../AuroraMacros.hpp"
#include <optional>
#include <functional>
#include "../AuroraTypedefs.hpp"
2021-09-06 10:58:08 +00:00
#if defined(_AUHAS_FMT)
2021-06-27 21:25:29 +00:00
#include <fmt/core.h>
#include <fmt/format.h>
#include <fmt/chrono.h>
2021-09-06 10:58:08 +00:00
#endif
#if !defined(_AUHAS_UUID)
#error Missing stduuid library
#endif
2021-06-27 21:25:29 +00:00
#include <uuid.h>
#define AUKN_SHARED_API(name, type, ...) AU_SHARED_API_EX(AUKN_SYM, name, type, ## __VA_ARGS__)
#include "Memory/Memory.hpp"
#include "Console/Console.hpp"
#include "Crypto/Crypto.hpp"
#include "Compression/Compression.hpp"
#include "Data/Data.hpp"
#include "Debug/Debug.hpp"
#include "Hashing/Hashing.hpp"
#include "HWInfo/HWInfo.hpp"
#include "IO/IO.hpp"
#include "Legacy/Legacy.hpp"
#include "Locale/Locale.hpp"
#include "Parse/Parse.hpp"
#include "Process/Process.hpp"
#include "Processes/Processes.hpp"
#include "Registry/Registry.hpp"
#include "RNG/RNG.hpp"
#include "Telemetry/Telemetery.hpp"
#include "Threading/Threading.hpp"
#include "Async/Async.hpp"
#include "Time/Time.hpp"
#include "../AuroraUtils.hpp"
namespace Aurora
{
struct LocalLogInfo
{
bool enableLogging {true};
bool autoCompressOldLogs {false};
AuUInt32 maxSizeMB {128 * 1024 * 1024}; // these numbers feel insane, but at least we have a max threshold
int maxLogs {1024}; // by default, we neither leak disk space or waste opportunities of being able to dig through old data
};
struct TelemetryConfigDoc
{
LocalLogInfo localLogging;
bool enabled {false};
AuString address;
AuUInt16 port {45069};
AuString serviceIdnt {"7b5f7a54-7122-4489-ac1a-3d75884b307e"};
bool wantsActiveMonitoring {false};
bool privacyNoData {false};
bool privacyNoMod {false};
bool privacyNoLog {false};
bool privacyNoWarn {false};
bool alwaysCrashdump {true};
bool alwaysDisableCrashdump {false};
};
struct TelemetryConfig
{
bool readModNameJsonConfig {};
TelemetryConfigDoc defaultConfig;
};
struct ConsoleConfig
{
2021-09-06 10:58:08 +00:00
/// Enables Aurora::Console::xxxStd functions; defer to enableStdXX for default logger behaviour
bool enableStdPassthrough {};
/// Disables standard, debug, and GUI consoles
bool disableAllConsoles {};
2021-06-27 21:25:29 +00:00
2021-09-06 10:58:08 +00:00
/// Attempt to force a terminal emulator host under graphical subsystems
2021-06-27 21:25:29 +00:00
bool forceConsoleWindow {};
2021-09-06 10:58:08 +00:00
/// Attempt to force a GUI console under command line targets
2021-06-27 21:25:29 +00:00
bool forceToolKitWindow {};
2021-09-06 10:58:08 +00:00
/// In conjunction with enableStdPassthrough, enables Aurora::Console::ReadStd to read binary
/// In conjunction with !enableStdPassthrough, enables stdout logging
bool enableStdIn {true};
2021-06-27 21:25:29 +00:00
/// In conjunction with enableStdPassthrough, enables Aurora::Console::WriteStd to write binary, otherwise enables the console logger
/// In conjunction with !enableStdPassthrough, enables stdin cmd processing, otherwise disables stdin input
2021-09-06 10:58:08 +00:00
bool enableStdOut {true};
/// Use WxWidgets when possible
bool enableWxWidgets {true};
/// FIO config
LocalLogInfo fio;
AuString titleBrand = "Aurora SDK Sample";
2021-06-27 21:25:29 +00:00
2021-09-06 10:58:08 +00:00
AuString supportPublic {"https://git.reece.sx/AuroraSupport/AuroraRuntime/issues"};
2021-06-27 21:25:29 +00:00
AuString supportInternal {"https://jira.reece.sx"};
};
struct CryptoConfig
{
2021-09-06 10:58:08 +00:00
/// Defer to the rationales in the implementation
2021-06-27 21:25:29 +00:00
bool allowChineseCerts {false};
2021-09-06 10:58:08 +00:00
/// Defer to the rationales in the implementation
2021-06-27 21:25:29 +00:00
bool allowRussianCerts {true};
2021-09-06 10:58:08 +00:00
/// WIP
bool allowHTTPRetrievalOfCerts {true};
///
bool enablePinning {true};
2021-06-27 21:25:29 +00:00
2021-09-06 10:58:08 +00:00
///
2021-06-27 21:25:29 +00:00
AuList<AuString> blacklistedCerts{};
AuList<AuString> whitelistedCerts{};
};
struct AsyncConfig
{
2021-09-06 10:58:08 +00:00
AuUInt32 schedularFrequency {2}; // * 0.5 or 1 MS depending on the platform
AuUInt32 sysPumpFrequency {25}; // x amount of schedularFrequencys
};
struct FIOConfig
{
AuOptional<AuString> defaultBrand = "Aurora";
};
2021-06-27 21:25:29 +00:00
struct RuntimeStartInfo
{
ConsoleConfig console;
CryptoConfig crypto;
TelemetryConfig telemetry;
AsyncConfig async;
2021-09-06 10:58:08 +00:00
FIOConfig fio;
2021-06-27 21:25:29 +00:00
};
AUKN_SYM void RuntimeStart(const RuntimeStartInfo &info);
2021-09-06 10:58:08 +00:00
AUKN_SYM void RuntimeOverloadLocality(const AuPair<AuString, AuString> &locality);
2021-06-27 21:25:29 +00:00
AUKN_SYM void RuntimeShutdown();
AUKN_SYM void RuntimeSysPump();
}