changeset 323:d178defe9d2a

Irccdctl: bring back plugin-reload
author David Demelier <markand@malikania.fr>
date Thu, 03 Nov 2016 13:18:30 +0100
parents df5cc5e6b499
children bf23ba419ee6
files irccdctl/cli-plugin-reload.cpp irccdctl/cli-plugin-reload.hpp
diffstat 2 files changed, 93 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/irccdctl/cli-plugin-reload.cpp	Thu Nov 03 13:18:30 2016 +0100
@@ -0,0 +1,43 @@
+/*
+ * command-plugin-reload.cpp -- implementation of irccdctl plugin-reload
+ *
+ * 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-plugin-reload.hpp"
+
+namespace irccd {
+
+namespace cli {
+
+PluginReloadCli::PluginReloadCli()
+    : Cli("plugin-reload",
+          "reload a plugin",
+          "plugin-reload plugin",
+          "Call the onReload event on the specified plugin.")
+{
+}
+
+void PluginReloadCli::exec(Irccdctl &irccdctl, const std::vector<std::string> &args)
+{
+    if (args.size() < 1)
+        throw std::invalid_argument("plugin-reload requires 1 argument");
+
+    check(request(irccdctl, {{ "plugin", args[0] }}));
+}
+
+} // !command
+
+} // !irccd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/irccdctl/cli-plugin-reload.hpp	Thu Nov 03 13:18:30 2016 +0100
@@ -0,0 +1,50 @@
+/*
+ * cli-plugin-reload.hpp -- implementation of irccdctl plugin-reload
+ *
+ * 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_PLUGIN_RELOAD_HPP
+#define IRCCDCTL_CLI_PLUGIN_RELOAD_HPP
+
+/**
+ * \file cli-plugin-reload.hpp
+ * \brief Implementation of irccdctl plugin-reload.
+ */
+
+#include "cli.hpp"
+
+namespace irccd {
+
+namespace cli {
+
+/**
+ * \brief Implementation of irccdctl plugin-reload.
+ */
+class PluginReloadCli : public Cli {
+public:
+    PluginReloadCli();
+
+    /**
+     * \copydoc Command::exec
+     */
+    void exec(Irccdctl &irccdctl, const std::vector<std::string> &args) override;
+};
+
+} // !cli
+
+} // !irccd
+
+#endif // !IRCCDCTL_CLI_PLUGIN_RELOAD_HPP