X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f0ca04947cd23aa5f973f184941dc5af13b43744..9c0c758e9af50f624414decbaae43c04e8d8e3f9:/Server/src/command.cpp?ds=sidebyside diff --git a/Server/src/command.cpp b/Server/src/command.cpp index 91d82ce..5aa4700 100644 --- a/Server/src/command.cpp +++ b/Server/src/command.cpp @@ -28,6 +28,7 @@ #include "plaqui/server/command.h" #include "plaqui/server/string.h" #include +//#include #ifdef DEBUG # include #endif // DEBUG @@ -40,22 +41,32 @@ namespace Server { Command::~Command(void) { #ifdef DEBUG - cerr << __FILE__ << ": destructor." << endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": destructor." << endl; #endif // DEBUG } -Command::Command(const string& target, const string& command): - target(target), command(command) { +Command::Command(const string& _target, const string& _command) { #ifdef DEBUG - cerr << __FILE__ << ": target = " << target << " | " + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": target = " << target << " | " << "command = " << command << endl; #endif // DEBUG + set_target(_target); + set_command(_command); } void Command::build(void) { - uri = string("/") + target + '/' + command + String::join(args, "/"); + uri = string("/") + target; + if (command.length()) { + uri += '/' + command; + if (args.size()) { + uri += '/' + String::join(args, "/"); + } + } #ifdef DEBUG - cerr << __FILE__ << ": build() = " << uri << endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": build() = " << uri << endl; #endif // DEBUG } @@ -64,7 +75,7 @@ void Command::set_target(const std::string& _target) { build(); } -const std::string& Command::get_target(void) { +const std::string& Command::get_target(void) const { return target; } @@ -73,7 +84,7 @@ void Command::set_command(const std::string& _command) { build(); } -const std::string& Command::get_command(void) { +const std::string& Command::get_command(void) const { return command; } @@ -82,7 +93,7 @@ void Command::set_args(const Command::Arguments& _args) { build(); } -const Command::Arguments& Command::get_args(void) { +const Command::Arguments& Command::get_args(void) const { return args; } @@ -91,9 +102,21 @@ void Command::add_arg(const std::string& arg) { build(); } -istream& operator>>(istream& is, Command& command) { +void Command::add_arg(const unsigned& arg) { #ifdef DEBUG - cerr << __FILE__ << ": operator>>()" << endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": add_arg(arg = " << arg << ") = " + << String().from(arg) << endl; +#endif // DEBUG + args.push_back(String().from(arg)); + build(); +} + +istream& operator>>(istream& is, Command& command) + throw(HTTPError, sockerr, ios::failure) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": operator>>()" << endl; #endif // DEBUG // Obtengo datos del Request HTTP. is >> static_cast(command); @@ -108,7 +131,7 @@ istream& operator>>(istream& is, Command& command) { } else { command.target = ""; } - if (command.args.size() > 1) { + if (command.args.size() > 0) { command.command = command.args[0]; command.args.erase(command.args.begin()); } else { @@ -117,9 +140,10 @@ istream& operator>>(istream& is, Command& command) { return is; } -ostream& operator<<(ostream& os, const Command& command) { +ostream& operator<<(ostream& os, const Command& command) throw (sockerr) { #ifdef DEBUG - cerr << __FILE__ << ": operator<<()" << endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": operator<<()" << endl; #endif // DEBUG // Manda el request HTTP con la URI que representa el comando. os << static_cast(command);