Removed native components (now in own repositories)
[guacamole.git] / web / guacamole-common / src / main / java / net / sourceforge / guacamole / net / tunnel / Outbound.java
1 package net.sourceforge.guacamole.net.tunnel;
2
3 /*
4  *  Guacamole - Clientless Remote Desktop
5  *  Copyright (C) 2010  Michael Jumper
6  *
7  *  This program is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU Affero General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Affero General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Affero General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 import java.io.Writer;
22 import java.io.IOException;
23 import java.io.UnsupportedEncodingException;
24 import java.util.concurrent.locks.ReentrantLock;
25 import javax.servlet.http.HttpServletRequest;
26 import javax.servlet.http.HttpServletResponse;
27 import net.sourceforge.guacamole.Client;
28 import net.sourceforge.guacamole.net.GuacamoleServlet;
29 import net.sourceforge.guacamole.GuacamoleException;
30 import net.sourceforge.guacamole.net.GuacamoleSession;
31
32
33 public class Outbound extends GuacamoleServlet {
34
35     @Override
36     protected void handleRequest(GuacamoleSession session, HttpServletRequest request, HttpServletResponse response) throws GuacamoleException {
37
38         session.getClient().waitForAuthorization();
39
40         ReentrantLock instructionStreamLock = session.getInstructionStreamLock();
41         instructionStreamLock.lock();
42
43         try {
44
45             response.setContentType("text/plain");
46             Writer out = response.getWriter();
47
48             try {
49
50                 // Query new update from server
51                 Client client = session.getClient();
52
53                 // For all messages, until another stream is ready (we send at least one message)
54                 char[] message;
55                 while ((message = client.read()) != null) {
56
57                     // Get message output bytes
58                     out.write(message, 0, message.length);
59                     out.flush();
60                     response.flushBuffer();
61
62                     // No more messages another stream can take over
63                     if (instructionStreamLock.hasQueuedThreads())
64                         break;
65
66                 }
67
68                 if (message == null) {
69                     session.disconnect();
70                     throw new GuacamoleException("Disconnected.");
71                 }
72
73             }
74             catch (GuacamoleException e) {
75                 out.write("error:" + e.getMessage() + ";");
76                 out.flush();
77                 response.flushBuffer();
78             }
79
80             // End-of-instructions marker
81             out.write(';');
82             out.flush();
83             response.flushBuffer();
84
85         }
86         catch (UnsupportedEncodingException e) {
87             throw new GuacamoleException("UTF-8 not supported by Java.", e);
88         }
89         catch (IOException e) {
90             throw new GuacamoleException("I/O error writing to servlet output stream.", e);
91         }
92         finally {
93             instructionStreamLock.unlock();
94         }
95
96     }
97
98 }
99