]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/command.cpp
- Se agrega una planta de prueba (usando Simulator).
[z.facultad/75.42/plaqui.git] / Server / src / command.cpp
1 // vim: set noexpandtab tabstop=4 shiftwidth=4:
2 //----------------------------------------------------------------------------
3 //                                  PlaQui
4 //----------------------------------------------------------------------------
5 // This file is part of PlaQui.
6 //
7 // PlaQui is free software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the Free Software
9 // Foundation; either version 2 of the License, or (at your option) any later
10 // version.
11 //
12 // PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY
13 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 // details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple
19 // Place, Suite 330, Boston, MA  02111-1307  USA
20 //----------------------------------------------------------------------------
21 // Creado:  sáb nov  8 17:12:10 ART 2003
22 // Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 //----------------------------------------------------------------------------
24 //
25 // $Id$
26 //
27
28 #include "plaqui/server/command.h"
29 #include "plaqui/server/string.h"
30 #include <algorithm>
31 #ifdef DEBUG
32 #       include <iostream>
33 #endif // DEBUG
34
35 using namespace std;
36
37 namespace PlaQui {
38
39 namespace Server {
40
41 Command::~Command(void) {
42 #ifdef DEBUG
43         cerr << __FILE__ << ": destructor." << endl;
44 #endif // DEBUG
45 }
46
47 Command::Command(const string& _target, const string& _command) {
48 #ifdef DEBUG
49         cerr << __FILE__ << ": target = " << target << " | "
50                         << "command = " << command << endl;
51 #endif // DEBUG
52         set_target(_target);
53         set_command(_command);
54 }
55
56 void Command::build(void) {
57         uri = string("/") + target;
58         if (command.length()) {
59                 uri += '/' + command;
60                 if (args.size()) {
61                         uri += '/' + String::join(args, "/");
62                 }
63         }
64 #ifdef DEBUG
65         cerr << __FILE__ << ": build() = " << uri << endl;
66 #endif // DEBUG
67 }
68
69 void Command::set_target(const std::string& _target) {
70         target = _target;
71         build();
72 }
73
74 const std::string& Command::get_target(void) const {
75         return target;
76 }
77
78 void Command::set_command(const std::string& _command) {
79         command = _command;
80         build();
81 }
82
83 const std::string& Command::get_command(void) const {
84         return command;
85 }
86
87 void Command::set_args(const Command::Arguments& _args) {
88         args = _args;
89         build();
90 }
91
92 const Command::Arguments& Command::get_args(void) const {
93         return args;
94 }
95
96 void Command::add_arg(const std::string& arg) {
97         args.push_back(arg);
98         build();
99 }
100
101 void Command::add_arg(const unsigned& arg) {
102         args.push_back(String().from(arg));
103         build();
104 }
105
106 istream& operator>>(istream& is, Command& command) {
107 #ifdef DEBUG
108         cerr << __FILE__ << ": operator>>()" << endl;
109 #endif // DEBUG
110         // Obtengo datos del Request HTTP.
111         is >> static_cast<HTTPRequest&>(command);
112         // Segun la URI, obtengo los fragmentos del comando.
113         String uri(command.uri);
114         command.args = uri.split('/');
115         // Borro el primero porque debe estar vacio porque la URI empieza con /.
116         command.args.erase(command.args.begin());
117         if (command.args.size() > 0) {
118                 command.target = command.args[0];
119                 command.args.erase(command.args.begin());
120         } else {
121                 command.target = "";
122         }
123         if (command.args.size() > 0) {
124                 command.command = command.args[0];
125                 command.args.erase(command.args.begin());
126         } else {
127                 command.command = "";
128         }
129         return is;
130 }
131
132 ostream& operator<<(ostream& os, const Command& command) {
133 #ifdef DEBUG
134         cerr << __FILE__ << ": operator<<()" << endl;
135 #endif // DEBUG
136         // Manda el request HTTP con la URI que representa el comando.
137         os << static_cast<const HTTPRequest&>(command);
138         return os;
139 }
140
141 } // namespace Server
142
143 } // namespace PlaQui
144