Refactored, removed functionality. Fixed most errors on compile. Will likely not...
[libguac-client-rdp.git] / src / guac_handlers.c
1
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is libguac-client-rdp.
16  *
17  * The Initial Developer of the Original Code is
18  * Michael Jumper.
19  * Portions created by the Initial Developer are Copyright (C) 2011
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 #include <stdlib.h>
39 #include <string.h>
40
41 #include <sys/select.h>
42 #include <errno.h>
43
44 #include <freerdp/freerdp.h>
45 #include <freerdp/channels/channels.h>
46 #include <freerdp/input.h>
47
48 #include <guacamole/socket.h>
49 #include <guacamole/protocol.h>
50 #include <guacamole/client.h>
51
52 #include "client.h"
53 #include "rdp_handlers.h"
54 #include "rdp_keymap.h"
55
56 int rdp_guac_client_free_handler(guac_client* client) {
57
58     rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
59
60     /* Disconnect client */
61     guac_client_data->rdp_inst->rdp_disconnect(guac_client_data->rdp_inst);
62
63     /* Free RDP client */
64     freerdp_free(guac_client_data->rdp_inst);
65     freerdp_channels_free(guac_client_data->channels);
66     free(guac_client_data->settings);
67
68     /* Free guac client data */
69     free(guac_client_data);
70
71     return 0;
72
73 }
74
75 int rdp_guac_client_handle_messages(guac_client* client) {
76
77     rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
78     rdpInst* rdp_inst = guac_client_data->rdp_inst;
79     rdpChannels* channels = guac_client_data->channels;
80
81     int index;
82     int max_fd, fd;
83     void* read_fds[32];
84     void* write_fds[32];
85     int read_count = 0;
86     int write_count = 0;
87
88     fd_set rfds, wfds;
89
90     /* get rdp fds */
91     if (rdp_inst->rdp_get_fds(rdp_inst, read_fds, &read_count, write_fds, &write_count) != 0) {
92         guac_client_log_error(client, "Unable to read RDP file descriptors.");
93         return 1;
94     }
95
96     /* get channel fds */
97     if (freerdp_channels_get_fds(channels, rdp_inst, read_fds, &read_count, write_fds, &write_count) != 0) {
98         guac_client_log_error(client, "Unable to read RDP channel file descriptors.");
99         return 1;
100     }
101
102     /* Construct read fd_set */
103     max_fd = 0;
104     FD_ZERO(&rfds);
105     for (index = 0; index < read_count; index++) {
106         fd = (int)(long) (read_fds[index]);
107         if (fd > max_fd)
108             max_fd = fd;
109         FD_SET(fd, &rfds);
110     }
111
112     /* Construct write fd_set */
113     FD_ZERO(&wfds);
114     for (index = 0; index < write_count; index++) {
115         fd = (int)(long) (write_fds[index]);
116         if (fd > max_fd)
117             max_fd = fd;
118         FD_SET(fd, &wfds);
119     }
120
121     /* If no file descriptors, error */
122     if (max_fd == 0) {
123         guac_client_log_error(client, "No file descriptors");
124         return 1;
125     }
126
127     /* Otherwise, wait for file descriptors given */
128     if (select(max_fd + 1, &rfds, &wfds, NULL, NULL) == -1) {
129         /* these are not really errors */
130         if (!((errno == EAGAIN) ||
131             (errno == EWOULDBLOCK) ||
132             (errno == EINPROGRESS) ||
133             (errno == EINTR))) /* signal occurred */
134         {
135             guac_client_log_error(client, "Error waiting for file descriptor.");
136             return 1;
137         }
138     }
139
140     /* check the libfreerdp fds */
141     if (rdp_inst->rdp_check_fds(rdp_inst) != 0) {
142         guac_client_log_error(client, "Error handling RDP file descriptors.");
143         return 1;
144     }
145
146     /* check channel fds */
147     if (freerdp_channels_check_fds(channels, rdp_inst) != 0) {
148         guac_client_log_error(client, "Error handling RDP channel file descriptors.");
149         return 1;
150     }
151
152     /* Success */
153     return 0;
154
155 }
156
157 int rdp_guac_client_mouse_handler(guac_client* client, int x, int y, int mask) {
158
159     rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
160     rdpInst* rdp_inst = guac_client_data->rdp_inst;
161
162     /* If button mask unchanged, just send move event */
163     if (mask == guac_client_data->mouse_button_mask)
164         rdp_inst->rdp_send_input_mouse(rdp_inst, PTR_FLAGS_MOVE, x, y);
165
166     /* Otherwise, send events describing button change */
167     else {
168
169         /* Mouse buttons which have JUST become released */
170         int released_mask =  guac_client_data->mouse_button_mask & ~mask;
171
172         /* Mouse buttons which have JUST become pressed */
173         int pressed_mask  = ~guac_client_data->mouse_button_mask &  mask;
174
175         /* Release event */
176         if (released_mask & 0x07) {
177
178             /* Calculate flags */
179             int flags = 0;
180             if (released_mask & 0x01) flags |= PTR_FLAGS_BUTTON1;
181             if (released_mask & 0x02) flags |= PTR_FLAGS_BUTTON3;
182             if (released_mask & 0x04) flags |= PTR_FLAGS_BUTTON2;
183
184             rdp_inst->rdp_send_input_mouse(rdp_inst, flags, x, y);
185
186         }
187
188         /* Press event */
189         if (pressed_mask & 0x07) {
190
191             /* Calculate flags */
192             int flags = PTR_FLAGS_DOWN;
193             if (pressed_mask & 0x01) flags |= PTR_FLAGS_BUTTON1;
194             if (pressed_mask & 0x02) flags |= PTR_FLAGS_BUTTON3;
195             if (pressed_mask & 0x04) flags |= PTR_FLAGS_BUTTON2;
196             if (pressed_mask & 0x08) flags |= PTR_FLAGS_WHEEL | 0x78;
197             if (pressed_mask & 0x10) flags |= PTR_FLAGS_WHEEL | PTR_FLAGS_WHEEL_NEGATIVE | 0x88;
198
199             /* Send event */
200             rdp_inst->rdp_send_input_mouse(rdp_inst, flags, x, y);
201
202         }
203
204         /* Scroll event */
205         if (pressed_mask & 0x18) {
206
207             /* Down */
208             if (pressed_mask & 0x08)
209                 rdp_inst->rdp_send_input_mouse(
210                         rdp_inst,
211                         PTR_FLAGS_WHEEL | 0x78,
212                         x, y);
213
214             /* Up */
215             if (pressed_mask & 0x10)
216                 rdp_inst->rdp_send_input_mouse(
217                         rdp_inst,
218                         PTR_FLAGS_WHEEL | PTR_FLAGS_WHEEL_NEGATIVE | 0x88,
219                         x, y);
220
221         }
222
223
224         guac_client_data->mouse_button_mask = mask;
225     }
226
227     return 0;
228 }
229
230 int rdp_guac_client_key_handler(guac_client* client, int keysym, int pressed) {
231
232     rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
233     rdpInst* rdp_inst = guac_client_data->rdp_inst;
234
235     /* If keysym can be in lookup table */
236     if (keysym <= 0xFFFF) {
237
238         /* Look up scancode */
239         const guac_rdp_keymap* keymap = 
240             &guac_rdp_keysym_scancode[(keysym & 0xFF00) >> 8][keysym & 0xFF];
241
242         /* If defined, send event */
243         if (keymap->scancode != 0)
244             rdp_inst->rdp_send_input_scancode(
245                     rdp_inst,
246                     !pressed,
247                     keymap->flags & KBD_FLAGS_EXTENDED,
248                     keymap->scancode);
249         else
250             guac_client_log_info(client, "unmapped keysym: 0x%x", keysym);
251
252     }
253
254     return 0;
255 }
256