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.
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-07-26 04:06:31 +02:00
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_H
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-15 04:44:16 +02:00
|
|
|
#if defined(PIC) && defined(PCH)
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "stdinc.pic.h"
|
2016-08-15 04:44:16 +02:00
|
|
|
#else
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "stdinc.h"
|
2016-08-15 04:44:16 +02:00
|
|
|
#endif
|
2016-07-26 04:06:31 +02:00
|
|
|
|
2017-09-12 18:37:44 +02:00
|
|
|
/// \brief Internet Relay Chat daemon. This is the principal namespace for IRCd.
|
|
|
|
///
|
|
|
|
///
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
2017-09-26 03:43:33 +02:00
|
|
|
struct init;
|
2018-03-23 20:05:40 +01:00
|
|
|
struct runlevel_changed;
|
2016-09-06 01:05:16 +02:00
|
|
|
|
2017-09-26 03:43:33 +02:00
|
|
|
string_view reflect(const enum runlevel &);
|
2018-04-15 01:19:15 +02:00
|
|
|
|
|
|
|
seconds uptime();
|
|
|
|
|
2018-03-23 20:05:40 +01:00
|
|
|
void init(boost::asio::io_context &ios, const std::string &conf);
|
|
|
|
void init(boost::asio::io_context &ios);
|
2017-11-06 21:14:50 +01:00
|
|
|
bool quit() noexcept;
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2017-09-26 03:43:33 +02:00
|
|
|
|
2018-03-23 20:05:40 +01:00
|
|
|
/// An instance of this class registers itself to be called back when
|
|
|
|
/// the ircd::runlevel has changed.
|
|
|
|
///
|
|
|
|
/// Note: Its destructor will access a list in libircd; after a callback
|
|
|
|
/// for a HALT do not unload libircd.so until destructing this object.
|
|
|
|
///
|
|
|
|
/// A static ctx::dock is also available for contexts to wait for a runlevel
|
|
|
|
/// change notification.
|
|
|
|
///
|
|
|
|
struct ircd::runlevel_changed
|
|
|
|
:instance_list<ircd::runlevel_changed>
|
|
|
|
,std::function<void (const enum runlevel &)>
|
|
|
|
{
|
|
|
|
using handler = std::function<void (const enum runlevel &)>;
|
|
|
|
|
|
|
|
static ctx::dock dock;
|
|
|
|
|
|
|
|
runlevel_changed(handler function);
|
|
|
|
~runlevel_changed() noexcept;
|
|
|
|
};
|
|
|
|
|
2017-11-06 21:14:50 +01:00
|
|
|
/// The runlevel allows all observers to know the coarse state of IRCd and to
|
|
|
|
/// react accordingly. This can be used by the embedder of libircd to know
|
|
|
|
/// when it's safe to use or delete libircd resources. It is also used
|
|
|
|
/// similarly by the library and its modules.
|
|
|
|
///
|
|
|
|
/// Primary modes:
|
|
|
|
///
|
|
|
|
/// * HALT is the off mode. Nothing is/will be running in libircd until
|
|
|
|
/// an invocation of ircd::init();
|
|
|
|
///
|
|
|
|
/// * RUN is the service mode. Full client and application functionality
|
|
|
|
/// exists in this mode. Leaving the RUN mode is done with ircd::quit();
|
|
|
|
///
|
|
|
|
/// - Transitional modes: Modes which are working towards the next mode.
|
|
|
|
/// - Interventional modes: Modes which are *not* working towards the next
|
|
|
|
/// mode and may require some user action to continue.
|
|
|
|
///
|
2017-09-26 03:43:33 +02:00
|
|
|
enum class ircd::runlevel
|
2017-11-30 20:44:23 +01:00
|
|
|
:int
|
2017-09-26 03:43:33 +02:00
|
|
|
{
|
2017-11-30 20:44:23 +01:00
|
|
|
HALT = 0, ///< [inter] IRCd Powered off.
|
|
|
|
READY = 1, ///< [inter] Ready for user to run ios event loop.
|
|
|
|
START = 2, ///< [trans] Starting up subsystems for service.
|
|
|
|
RUN = 3, ///< [inter] IRCd in service.
|
|
|
|
QUIT = 4, ///< [trans] Clean shutdown in progress
|
|
|
|
FAULT = -1, ///< [trans] QUIT with exception (dirty shutdown)
|
2017-09-26 03:43:33 +02:00
|
|
|
};
|