1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
* Copyright (C) 2006 Constantin Kaplinsky. All Rights Reserved.
* Copyright (C) 2009 Paul Donohue. All Rights Reserved.
* Copyright (C) 2010, 2012 D. R. Commander. All Rights Reserved.
* Copyright (C) 2011-2013 Brian P. Hinz
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
//
// DesktopWindow is an AWT Canvas representing a VNC desktop.
//
// Methods on DesktopWindow are called from both the GUI thread and the thread
// which processes incoming RFB messages ("the RFB thread"). This means we
// need to be careful with synchronization here.
//
package com.tigervnc.vncviewer;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.Clipboard;
import javax.swing.*;
import com.tigervnc.rfb.*;
import com.tigervnc.rfb.Cursor;
import com.tigervnc.rfb.Point;
class DesktopWindow extends JPanel implements
Runnable,
MouseListener,
MouseMotionListener,
MouseWheelListener,
KeyListener
{
////////////////////////////////////////////////////////////////////
// The following methods are all called from the RFB thread
public DesktopWindow(int width, int height, PixelFormat serverPF, CConn cc_) {
cc = cc_;
setSize(width, height);
setOpaque(false);
GraphicsEnvironment ge =
GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice gd = ge.getDefaultScreenDevice();
GraphicsConfiguration gc = gd.getDefaultConfiguration();
BufferCapabilities bufCaps = gc.getBufferCapabilities();
ImageCapabilities imgCaps = gc.getImageCapabilities();
if (bufCaps.isPageFlipping() || bufCaps.isMultiBufferAvailable() ||
imgCaps.isAccelerated()) {
vlog.debug("GraphicsDevice supports HW acceleration.");
} else {
vlog.debug("GraphicsDevice does not support HW acceleration.");
}
im = new BIPixelBuffer(width, height, cc, this);
cursor = new Cursor();
cursorBacking = new ManagedPixelBuffer();
Dimension bestSize = tk.getBestCursorSize(16, 16);
BufferedImage cursorImage;
cursorImage = new BufferedImage(bestSize.width, bestSize.height,
BufferedImage.TYPE_INT_ARGB);
java.awt.Point hotspot = new java.awt.Point(0,0);
nullCursor = tk.createCustomCursor(cursorImage, hotspot, "nullCursor");
if (!cc.cp.supportsLocalCursor && !bestSize.equals(new Dimension(0,0)))
setCursor(nullCursor);
addMouseListener(this);
addMouseWheelListener(this);
addMouseMotionListener(this);
addKeyListener(this);
addFocusListener(new FocusAdapter() {
public void focusGained(FocusEvent e) {
checkClipboard();
}
});
setFocusTraversalKeysEnabled(false);
setFocusable(true);
}
public int width() {
return getWidth();
}
public int height() {
return getHeight();
}
final public PixelFormat getPF() { return im.getPF(); }
public void setViewport(Viewport viewport)
{
viewport.setChild(this);
}
// Methods called from the RFB thread - these need to be synchronized
// wherever they access data shared with the GUI thread.
public void setCursor(int w, int h, Point hotspot,
int[] data, byte[] mask) {
// strictly we should use a mutex around this test since useLocalCursor
// might be being altered by the GUI thread. However it's only a single
// boolean and it doesn't matter if we get the wrong value anyway.
synchronized(cc.viewer.useLocalCursor) {
if (!cc.viewer.useLocalCursor.getValue())
return;
}
hideLocalCursor();
cursor.hotspot = (hotspot != null) ? hotspot : new Point(0, 0);
cursor.setSize(w, h);
cursor.setPF(getPF());
cursorBacking.setSize(cursor.width(), cursor.height());
cursorBacking.setPF(getPF());
cursor.data = new int[cursor.width() * cursor.height()];
cursor.mask = new byte[cursor.maskLen()];
int maskBytesPerRow = (w + 7) / 8;
for (int y = 0; y < h; y++) {
for (int x = 0; x < w; x++) {
int byte_ = y * maskBytesPerRow + x / 8;
int bit = 7 - x % 8;
if ((mask[byte_] & (1 << bit)) > 0) {
cursor.data[y * cursor.width() + x] = (0xff << 24) |
(im.cm.getRed(data[y * w + x]) << 16) |
(im.cm.getGreen(data[y * w + x]) << 8) |
(im.cm.getBlue(data[y * w + x]));
}
}
System.arraycopy(mask, y * maskBytesPerRow, cursor.mask,
y * ((cursor.width() + 7) / 8), maskBytesPerRow);
}
int cw = (int)Math.floor((float)cursor.width() * scaleWidthRatio);
int ch = (int)Math.floor((float)cursor.height() * scaleHeightRatio);
Dimension bestSize = tk.getBestCursorSize(cw, ch);
MemoryImageSource cursorSrc;
cursorSrc = new MemoryImageSource(cursor.width(), cursor.height(),
ColorModel.getRGBdefault(),
cursor.data, 0, cursor.width());
Image srcImage = tk.createImage(cursorSrc);
BufferedImage cursorImage;
cursorImage = new BufferedImage(bestSize.width, bestSize.height,
BufferedImage.TYPE_INT_ARGB);
Graphics2D g2 = cursorImage.createGraphics();
g2.setRenderingHint(RenderingHints.KEY_RENDERING,
RenderingHints.VALUE_RENDER_SPEED);
g2.drawImage(srcImage, 0, 0, (int)Math.min(cw, bestSize.width),
(int)Math.min(ch, bestSize.height), 0, 0, cursor.width(),
cursor.height(), null) ;
g2.dispose();
srcImage.flush();
int x = (int)Math.floor((float)cursor.hotspot.x * scaleWidthRatio);
int y = (int)Math.floor((float)cursor.hotspot.y * scaleHeightRatio);
x = (int)Math.min(x, Math.max(bestSize.width-1, 0));
y = (int)Math.min(y, Math.max(bestSize.height-1, 0));
java.awt.Point hs = new java.awt.Point(x, y);
if (!bestSize.equals(new Dimension(0,0)))
softCursor = tk.createCustomCursor(cursorImage, hs, "softCursor");
cursorImage.flush();
if (softCursor != null) {
setCursor(softCursor);
cursorAvailable = false;
return;
}
if (!cursorAvailable) {
cursorAvailable = true;
}
showLocalCursor();
}
public void setServerPF(PixelFormat pf) {
im.setPF(pf);
}
public PixelFormat getPreferredPF() {
return im.getNativePF();
}
// setColourMapEntries() changes some of the entries in the colourmap.
// Unfortunately these messages are often sent one at a time, so we delay the
// settings taking effect unless the whole colourmap has changed. This is
// because getting java to recalculate its internal translation table and
// redraw the screen is expensive.
synchronized public void setColourMapEntries(int firstColour, int nColours,
int[] rgbs) {
im.setColourMapEntries(firstColour, nColours, rgbs);
if (nColours <= 256) {
im.updateColourMap();
} else {
if (setColourMapEntriesTimerThread == null) {
setColourMapEntriesTimerThread = new Thread(this);
setColourMapEntriesTimerThread.start();
}
}
}
// Update the actual window with the changed parts of the framebuffer.
public void updateWindow()
{
Rect r = damage;
if (!r.is_empty()) {
if (cc.cp.width != scaledWidth || cc.cp.height != scaledHeight) {
int x = (int)Math.floor(r.tl.x * scaleWidthRatio);
int y = (int)Math.floor(r.tl.y * scaleHeightRatio);
// Need one extra pixel to account for rounding.
int width = (int)Math.ceil(r.width() * scaleWidthRatio) + 1;
int height = (int)Math.ceil(r.height() * scaleHeightRatio) + 1;
paintImmediately(x, y, width, height);
} else {
paintImmediately(r.tl.x, r.tl.y, r.width(), r.height());
}
damage.clear();
}
}
// resize() is called when the desktop has changed size
public void resize() {
int w = cc.cp.width;
int h = cc.cp.height;
hideLocalCursor();
setSize(w, h);
im.resize(w, h);
}
final public void fillRect(int x, int y, int w, int h, int pix)
{
if (overlapsCursor(x, y, w, h)) hideLocalCursor();
im.fillRect(x, y, w, h, pix);
damageRect(new Rect(x, y, x+w, y+h));
showLocalCursor();
}
final public void imageRect(int x, int y, int w, int h,
Object pix) {
if (overlapsCursor(x, y, w, h)) hideLocalCursor();
im.imageRect(x, y, w, h, pix);
damageRect(new Rect(x, y, x+w, y+h));
showLocalCursor();
}
final public void copyRect(int x, int y, int w, int h,
int srcX, int srcY) {
if (overlapsCursor(x, y, w, h) || overlapsCursor(srcX, srcY, w, h))
hideLocalCursor();
im.copyRect(x, y, w, h, srcX, srcY);
damageRect(new Rect(x, y, x+w, y+h));
showLocalCursor();
}
// mutex MUST be held when overlapsCursor() is called
final boolean overlapsCursor(int x, int y, int w, int h) {
return (x < cursorBackingX + cursorBacking.width() &&
y < cursorBackingY + cursorBacking.height() &&
x+w > cursorBackingX && y+h > cursorBackingY);
}
////////////////////////////////////////////////////////////////////
// The following methods are all called from the GUI thread
void resetLocalCursor() {
if (cc.cp.supportsLocalCursor) {
if (softCursor != null)
setCursor(softCursor);
} else {
setCursor(nullCursor);
}
hideLocalCursor();
cursorAvailable = false;
}
//
// Callback methods to determine geometry of our Component.
//
public Dimension getPreferredSize() {
return new Dimension(scaledWidth, scaledHeight);
}
public Dimension getMinimumSize() {
return new Dimension(scaledWidth, scaledHeight);
}
public Dimension getMaximumSize() {
return new Dimension(scaledWidth, scaledHeight);
}
public void setScaledSize() {
String scaleString = cc.viewer.scalingFactor.getValue();
if (!scaleString.equalsIgnoreCase("Auto") &&
!scaleString.equalsIgnoreCase("FixedRatio")) {
int scalingFactor = Integer.parseInt(scaleString);
scaledWidth =
(int)Math.floor((float)cc.cp.width * (float)scalingFactor/100.0);
scaledHeight =
(int)Math.floor((float)cc.cp.height * (float)scalingFactor/100.0);
} else {
if (cc.viewport == null) {
scaledWidth = cc.cp.width;
scaledHeight = cc.cp.height;
} else {
Dimension vpSize = cc.viewport.getSize();
Insets vpInsets = cc.viewport.getInsets();
Dimension availableSize =
new Dimension(vpSize.width - vpInsets.left - vpInsets.right,
vpSize.height - vpInsets.top - vpInsets.bottom);
if (availableSize.width == 0 || availableSize.height == 0)
availableSize = new Dimension(cc.cp.width, cc.cp.height);
if (scaleString.equalsIgnoreCase("FixedRatio")) {
float widthRatio = (float)availableSize.width / (float)cc.cp.width;
float heightRatio = (float)availableSize.height / (float)cc.cp.height;
float ratio = Math.min(widthRatio, heightRatio);
scaledWidth = (int)Math.floor(cc.cp.width * ratio);
scaledHeight = (int)Math.floor(cc.cp.height * ratio);
} else {
scaledWidth = availableSize.width;
scaledHeight = availableSize.height;
}
}
}
scaleWidthRatio = (float)scaledWidth / (float)cc.cp.width;
scaleHeightRatio = (float)scaledHeight / (float)cc.cp.height;
}
public void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
if (cc.cp.width != scaledWidth || cc.cp.height != scaledHeight) {
g2.setRenderingHint(RenderingHints.KEY_RENDERING,
RenderingHints.VALUE_RENDER_QUALITY);
g2.drawImage(im.getImage(), 0, 0, scaledWidth, scaledHeight, null);
} else {
g2.drawImage(im.getImage(), 0, 0, null);
}
g2.dispose();
}
String oldContents = "";
synchronized public void checkClipboard() {
SecurityManager sm = System.getSecurityManager();
try {
if (sm != null) sm.checkSystemClipboardAccess();
Clipboard cb = Toolkit.getDefaultToolkit().getSystemClipboard();
if (cb != null && cc.viewer.sendClipboard.getValue()) {
Transferable t = cb.getContents(null);
if ((t != null) && t.isDataFlavorSupported(DataFlavor.stringFlavor)) {
try {
String newContents = (String)t.getTransferData(DataFlavor.stringFlavor);
if (newContents != null && !newContents.equals(oldContents)) {
cc.writeClientCutText(newContents, newContents.length());
oldContents = newContents;
cc.clipboardDialog.setContents(newContents);
}
} catch (java.lang.Exception e) {
System.out.println("Exception getting clipboard data: " + e.getMessage());
}
}
}
} catch(SecurityException e) {
System.err.println("Cannot access the system clipboard");
}
}
/** Mouse-Motion callback function */
private void mouseMotionCB(MouseEvent e) {
if (!cc.viewer.viewOnly.getValue() &&
e.getX() >= 0 && e.getX() <= scaledWidth &&
e.getY() >= 0 && e.getY() <= scaledHeight)
cc.writePointerEvent(e);
// - If local cursor rendering is enabled then use it
if (cursorAvailable) {
// - Render the cursor!
if (e.getX() != cursorPosX || e.getY() != cursorPosY) {
hideLocalCursor();
if (e.getX() >= 0 && e.getX() < im.width() &&
e.getY() >= 0 && e.getY() < im.height()) {
cursorPosX = e.getX();
cursorPosY = e.getY();
showLocalCursor();
}
}
}
lastX = e.getX();
lastY = e.getY();
}
public void mouseDragged(MouseEvent e) { mouseMotionCB(e);}
public void mouseMoved(MouseEvent e) { mouseMotionCB(e);}
/** Mouse callback function */
private void mouseCB(MouseEvent e) {
if (!cc.viewer.viewOnly.getValue() &&
e.getX() >= 0 && e.getX() <= scaledWidth &&
e.getY() >= 0 && e.getY() <= scaledHeight)
cc.writePointerEvent(e);
lastX = e.getX();
lastY = e.getY();
}
public void mouseReleased(MouseEvent e){ mouseCB(e);}
public void mousePressed(MouseEvent e) { mouseCB(e);}
public void mouseClicked(MouseEvent e){}
public void mouseEntered(MouseEvent e){}
public void mouseExited(MouseEvent e){}
/** MouseWheel callback function */
private void mouseWheelCB(MouseWheelEvent e) {
if (!cc.viewer.viewOnly.getValue())
cc.writeWheelEvent(e);
}
public void mouseWheelMoved(MouseWheelEvent e){
mouseWheelCB(e);
}
/** Handle the key-typed event. */
public void keyTyped(KeyEvent e) {}
/** Handle the key-released event. */
public void keyReleased(KeyEvent e) {}
/** Handle the key-pressed event. */
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == MenuKey.getMenuKeyCode()) {
int sx = (scaleWidthRatio == 1.00)
? lastX : (int)Math.floor(lastX*scaleWidthRatio);
int sy = (scaleHeightRatio == 1.00)
? lastY : (int)Math.floor(lastY*scaleHeightRatio);
java.awt.Point ev = new java.awt.Point(lastX, lastY);
ev.translate(sx - lastX, sy - lastY);
cc.showMenu((int)ev.getX(), (int)ev.getY());
return;
}
if (!cc.viewer.viewOnly.getValue())
cc.writeKeyEvent(e);
}
////////////////////////////////////////////////////////////////////
// The following methods are called from both RFB and GUI threads
// Note that mutex MUST be held when hideLocalCursor() and showLocalCursor()
// are called.
synchronized private void hideLocalCursor() {
// - Blit the cursor backing store over the cursor
if (cursorVisible) {
cursorVisible = false;
im.imageRect(cursorBackingX, cursorBackingY, cursorBacking.width(),
cursorBacking.height(), cursorBacking.data);
damageRect(new Rect(cursorBackingX, cursorBackingY,
cursorBackingX+cursorBacking.width(),
cursorBackingY+cursorBacking.height()));
}
}
synchronized private void showLocalCursor() {
if (cursorAvailable && !cursorVisible) {
if (!im.getPF().equal(cursor.getPF()) ||
cursor.width() == 0 || cursor.height() == 0) {
vlog.debug("attempting to render invalid local cursor");
cursorAvailable = false;
return;
}
cursorVisible = true;
int cursorLeft = cursor.hotspot.x;
int cursorTop = cursor.hotspot.y;
int cursorRight = cursorLeft + cursor.width();
int cursorBottom = cursorTop + cursor.height();
int x = (cursorLeft >= 0 ? cursorLeft : 0);
int y = (cursorTop >= 0 ? cursorTop : 0);
int w = ((cursorRight < im.width() ? cursorRight : im.width()) - x);
int h = ((cursorBottom < im.height() ? cursorBottom : im.height()) - y);
cursorBackingX = x;
cursorBackingY = y;
cursorBacking.setSize(w, h);
for (int j = 0; j < h; j++)
System.arraycopy(im.data, (y+j) * im.width() + x,
cursorBacking.data, j*w, w);
im.maskRect(cursorLeft, cursorTop, cursor.width(), cursor.height(),
cursor.data, cursor.mask);
damageRect(new Rect(x, y, x+w, y+h));
}
}
void damageRect(Rect r) {
if (damage.is_empty()) {
damage.setXYWH(r.tl.x, r.tl.y, r.width(), r.height());
} else {
r = damage.union_boundary(r);
damage.setXYWH(r.tl.x, r.tl.y, r.width(), r.height());
}
}
// run() is executed by the setColourMapEntriesTimerThread - it sleeps for
// 100ms before actually updating the colourmap.
synchronized public void run() {
try {
Thread.sleep(100);
} catch (InterruptedException e) {}
im.updateColourMap();
setColourMapEntriesTimerThread = null;
}
// access to cc by different threads is specified in CConn
CConn cc;
// access to the following must be synchronized:
PlatformPixelBuffer im;
Thread setColourMapEntriesTimerThread;
Cursor cursor;
boolean cursorVisible = false; // Is cursor currently rendered?
boolean cursorAvailable = false; // Is cursor available for rendering?
int cursorPosX, cursorPosY;
ManagedPixelBuffer cursorBacking;
int cursorBackingX, cursorBackingY;
java.awt.Cursor softCursor, nullCursor;
static Toolkit tk = Toolkit.getDefaultToolkit();
public int scaledWidth = 0, scaledHeight = 0;
float scaleWidthRatio, scaleHeightRatio;
// the following are only ever accessed by the GUI thread:
int lastX, lastY;
Rect damage = new Rect();
static LogWriter vlog = new LogWriter("DesktopWindow");
}
|