#include "plaqui/server/command.h"
#include "plaqui/server/string.h"
#include <algorithm>
+//#include <exception>
#ifdef DEBUG
# include <iostream>
#endif // DEBUG
Command::~Command(void) {
#ifdef DEBUG
- cerr << __FILE__ << ": destructor." << endl;
+ cerr << __FILE__ << "(" << __LINE__ << ")"
+ << ": destructor." << endl;
#endif // DEBUG
}
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);
}
}
#ifdef DEBUG
- cerr << __FILE__ << ": build() = " << uri << endl;
+ cerr << __FILE__ << "(" << __LINE__ << ")"
+ << ": build() = " << uri << endl;
#endif // DEBUG
}
}
void Command::add_arg(const unsigned& arg) {
+#ifdef DEBUG
+ 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) {
+istream& operator>>(istream& is, Command& command)
+ throw(HTTPError, sockerr, ios::failure) {
#ifdef DEBUG
- cerr << __FILE__ << ": operator>>()" << endl;
+ cerr << __FILE__ << "(" << __LINE__ << ")"
+ << ": operator>>()" << endl;
#endif // DEBUG
// Obtengo datos del Request HTTP.
is >> static_cast<HTTPRequest&>(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<const HTTPRequest&>(command);