changeset 339:6f0682688527

Irccdctl: bring back server-reconnect
author David Demelier <markand@malikania.fr>
date Sat, 12 Nov 2016 21:54:00 +0100
parents a675bb51dc1b
children 0f14931a76c1
files irccdctl/cli-server-reconnect.cpp irccdctl/cli-server-reconnect.hpp
diffstat 2 files changed, 114 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/irccdctl/cli-server-reconnect.cpp	Sat Nov 12 21:54:00 2016 +0100
@@ -0,0 +1,61 @@
+/*
+ * command-server-reconnect.cpp -- implementation of irccdctl server-reconnect
+ *
+ * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+ *
+ * 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 appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "cli-server-reconnect.hpp"
+
+namespace irccd {
+
+namespace cli {
+
+#if 0
+
+void ServerReconnect::usage(Irccdctl &) const
+{
+"usage: " << sys::programName() << " server-reconnect [server]\n\n";
+
+}
+
+#endif
+
+ServerReconnectCli::ServerReconnectCli()
+    : Cli("server-reconnect",
+          "force reconnection of a server",
+          "server-reconnect [server]",
+          "Force reconnection of one or all servers.\n\n"
+          "If server is not specified, all servers will try to reconnect.\n\n"
+          "Example:\n"
+          "\tirccdctl server-reconnect\n"
+          "\tirccdctl server-reconnect wanadoo")
+{
+}
+
+void ServerReconnectCli::exec(Irccdctl &irccdctl, const std::vector<std::string> &args)
+{
+    auto object = nlohmann::json::object({
+        { "command", "server-reconnect" }
+    });
+
+    if (args.size() >= 1)
+        object["server"] = args[0];
+
+    check(request(irccdctl, object));
+}
+
+} // !command
+
+} // !irccd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/irccdctl/cli-server-reconnect.hpp	Sat Nov 12 21:54:00 2016 +0100
@@ -0,0 +1,53 @@
+/*
+ * cli-server-reconnect.hpp -- implementation of irccdctl server-reconnect
+ *
+ * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+ *
+ * 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 appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifndef IRCCDCTL_CLI_SERVER_RECONNECT_HPP
+#define IRCCDCTL_CLI_SERVER_RECONNECT_HPP
+
+/**
+ * \file cli-server-reconnect.hpp
+ * \brief Implementation of irccdctl server-reconnect.
+ */
+
+#include "cli.hpp"
+
+namespace irccd {
+
+namespace cli {
+
+/**
+ * \brief Implementation of irccdctl server-reconnect.
+ */
+class ServerReconnectCli : public Cli {
+public:
+    /**
+     * Default constructor.
+     */
+    ServerReconnectCli();
+
+    /**
+     * \copydoc Cli::exec
+     */
+    void exec(Irccdctl &irccdctl, const std::vector<std::string> &args) override;
+};
+
+} // !command
+
+} // !irccd
+
+#endif // !IRCCDCTL_CLI_SERVER_RECONNECT_HPP