]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/command.cpp
Se pasa a autoconf + automake.
[z.facultad/75.42/plaqui.git] / Server / src / command.cpp
index 084cf796b6acb3bfe1bb21a364aff5b8f9e8d5d2..5087d9e783464e97adcd48170d9256a10178cefd 100644 (file)
@@ -44,16 +44,23 @@ Command::~Command(void) {
 #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 << " | "
                        << "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;
 #endif // DEBUG
@@ -64,7 +71,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 +80,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 +89,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,6 +98,15 @@ void Command::add_arg(const std::string& arg) {
        build();
 }
 
+void Command::add_arg(const unsigned& arg) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": add_arg(arg = " << arg << ") = "
+               << String().from(arg) << endl;
+#endif // DEBUG
+       args.push_back(String().from(arg));
+       build();
+}
+
 istream& operator>>(istream& is, Command& command) {
 #ifdef DEBUG
        cerr << __FILE__ << ": operator>>()" << endl;
@@ -108,8 +124,8 @@ istream& operator>>(istream& is, Command& command) {
        } else {
                command.target = "";
        }
-       if (command.args.size() > 1) {
-               command.command = command.args[1];
+       if (command.args.size() > 0) {
+               command.command = command.args[0];
                command.args.erase(command.args.begin());
        } else {
                command.command = "";