fix(commands/cmd): fixing the compilation errors missing the lists part

This commit is contained in:
Raphael 2025-05-26 18:26:59 +02:00
parent 29a3bb114b
commit a2b5793e19
9 changed files with 27 additions and 74 deletions

View file

@ -6,11 +6,12 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/20 22:43:24 by rparodi #+# #+# */
/* Updated: 2025/05/20 22:55:20 by rparodi ### ########.fr */
/* Updated: 2025/05/26 18:10:43 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "channel.hpp"
#include <iostream>
/**
* @brief Get the name of the channel

View file

@ -6,15 +6,13 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/24 16:11:56 by rparodi #+# #+# */
/* Updated: 2025/05/24 18:21:36 by rparodi ### ########.fr */
/* Updated: 2025/05/26 18:25:18 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "commands.hpp"
#include "logs.hpp"
using namespace cmd;
/**
* @brief To send the line where a command is invoqued to execute
*
@ -22,7 +20,7 @@ using namespace cmd;
* @param channel channel where the command is sent
* @param line line send by the user
*/
std::vector<std::string> split(const std::string &line) {
std::vector<std::string> cmd::split(const std::string &line) {
std::vector<std::string> args;
std::string arg;
size_t pos = line.find(' ');
@ -47,7 +45,7 @@ std::vector<std::string> split(const std::string &line) {
* @param server Server where the command is sent
* @param line input line from the user
*/
void dispatch(::User *user, Channel *channel, Server *server, const std::string &line) {
void cmd::dispatch(::User *user, Channel *channel, Server *server, const std::string &line) {
std::string command_name = cmd::split(line).at(0);
if (command_name.empty()) {
WARNING_MSG("No command found in line: " << line);
@ -106,7 +104,7 @@ void dispatch(::User *user, Channel *channel, Server *server, const std::string
(void)line;
}
ACommand::ACommand(::User *user, ::Channel *channel, ::Server *server, const std::string &line) : _sender(user), _channel(channel), _server(server) {
cmd::ACommand::ACommand(::User *user, ::Channel *channel, ::Server *server, const std::string &line) : _sender(user), _channel(channel), _server(server) {
DEBUG_MSG("ACommand constructor called");
_args = split(line);
_command = _args.at(0);
@ -116,6 +114,6 @@ ACommand::ACommand(::User *user, ::Channel *channel, ::Server *server, const std
_cTarget = NULL;
}
ACommand::~ACommand() {
cmd::ACommand::~ACommand() {
DEBUG_MSG("ACommand destructor called");
}

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/24 17:29:48 by rparodi #+# #+# */
/* Updated: 2025/05/26 16:43:01 by rparodi ### ########.fr */
/* Updated: 2025/05/26 18:17:15 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -36,7 +36,7 @@ bool Invite::checkArgs() {
WARNING_MSG("You are not an operator in the channel for INVITE command");
return false;
}
uTarget = searchList(this->_users, _args.at(2));
_uTarget = searchList(this->_users, _args.at(2));
if (this->_uTarget == NULL) {
WARNING_MSG("User not found");
return false;

View file

@ -1,39 +0,0 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* logs.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/15 12:29:56 by rparodi #+# #+# */
/* Updated: 2025/05/15 12:38:56 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "logs.hpp"
void print_debug(const char *str, const char *file, int line)
{
if (DEBUG)
std::cout << CLR_CYAN << "\tDebug: " << str << "(" << file << ":" << line << ")" << CLR_RESET << std::endl;
}
void print_error(const char *str, const char *file, int line)
{
std::cerr << CLR_RED << "\tError: " << str << "(" << file << ":" << line << ")" << CLR_RESET << std::endl;
}
void print_warning(const char *str, const char *file, int line)
{
std::cerr << CLR_YELLOW << "\tWarning: " << str << "(" << file << ":" << line << ")" << CLR_RESET << std::endl;
}
void print_info(const char *str, const char *file, int line)
{
std::cout << CLR_GREY << "\tInfo: " << str << "(" << file << ":" << line << ")" << CLR_RESET << std::endl;
}
void print_success(const char *str, const char *file, int line)
{
std::cout << CLR_GREEN << "\tSuccess: " << str << "(" << file << ":" << line << ")" << CLR_RESET << std::endl;
}