view irccdctl/server_notice_cli.cpp @ 674:5d0ed41be10c

Irccd: do not own a queue in irc::connection class, closes #791 @1h Since the server is an automatic state machine that recreate a new session after a connection failure, we may have some invalid references in the irc::connection class if there are still handler running. Because server is already a std::shared_ptr that manages itself, it was heavy to do the same in irc::connection class. Therefore, the irc::connection class is now only responsible of connecting/receiving/sending data (and parsing it). Update the server class to use a send queue and allow the user sending command at any time which will be postponed once connected.
author David Demelier <markand@malikania.fr>
date Wed, 11 Apr 2018 21:01:10 +0200
parents 27587ff92a64
children
line wrap: on
line source

/*
 * server_notice_cli.cpp -- implementation of irccdctl server-notice
 *
 * Copyright (c) 2013-2018 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 "server_notice_cli.hpp"

namespace irccd {

namespace ctl {

std::string server_notice_cli::name() const
{
    return "server-notice";
}

void server_notice_cli::exec(ctl::controller& ctl, const std::vector<std::string>& args)
{
    if (args.size() < 3)
        throw std::invalid_argument("server-notice requires 3 arguments");

    request(ctl, {
        { "command",    "server-notice" },
        { "server",     args[0]         },
        { "target",     args[1]         },
        { "message",    args[2]         }
    });
}

} // !ctl

} // !irccd