annotate src/main/java/jp/ac/u_ryukyu/treevnc/TreeRFBProto.java @ 496:1f3f2abc9c1b

fix zrleeBlocking
author oshiro
date Mon, 11 Feb 2019 19:24:39 +0900
parents 11f587612329
children 62d6e9180a11
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32
758d025ee24b add TextBox.java
one
parents: 31
diff changeset
1 package jp.ac.u_ryukyu.treevnc;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
2
434
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
3 import com.glavsoft.exceptions.TransportException;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
4 import com.glavsoft.rfb.client.ClientToServerMessage;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
5 import com.glavsoft.rfb.encoding.EncodingType;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
6 import com.glavsoft.rfb.encoding.decoder.FramebufferUpdateRectangle;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
7 import com.glavsoft.rfb.protocol.Protocol;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
8 import com.glavsoft.rfb.protocol.ProtocolContext;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
9 import com.glavsoft.transport.Reader;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
10 import com.glavsoft.transport.Writer;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
11 import com.glavsoft.viewer.ConnectionPresenter;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
12 import com.glavsoft.viewer.ViewerInterface;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
13 import com.glavsoft.viewer.swing.ConnectionParams;
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
14
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
15 import java.io.IOException;
206
2b3eb4a9492f MyRfbProto reorganization
oc
parents: 205
diff changeset
16 import java.io.OutputStream;
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
17 import java.io.UnsupportedEncodingException;
291
a310be14d757 send rtp+sound packet(client node version).
oc
parents: 290
diff changeset
18 import java.net.*;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
19 import java.nio.ByteBuffer;
109
457f9dfbf7ce minor fix.
oc
parents: 107
diff changeset
20 import java.nio.ByteOrder;
369
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
21 import java.util.Enumeration;
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
22 import java.util.Iterator;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
23 import java.util.LinkedList;
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
24 import java.util.concurrent.atomic.AtomicInteger;
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
25 import java.util.zip.DataFormatException;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
26 import java.util.zip.Deflater;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
27 import java.util.zip.Inflater;
150
925fb2090282 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 147
diff changeset
28
124
214d4f206431 add TreeVNC command number.
oc
parents: 123
diff changeset
29
207
b31903e5b02d rename myRFBProto
oc
parents: 206
diff changeset
30 public class TreeRFBProto {
231
0e0e6744432c get new nodeList for checkDelay.
oc
parents: 230
diff changeset
31
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
32 final static int CheckDelay = 11;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
33 protected final static int FramebufferUpdate = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
34 protected ProtocolContext context;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
35 private int clients = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
36 public MulticastQueue<LinkedList<ByteBuffer>> multicastqueue = new MulticastQueue<LinkedList<ByteBuffer>>();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
37 public int acceptPort = 0;
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
38 private String myAddress;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
39 private long counter = 0; // packet serial number
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
40 public ServerSocket servSock;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
41 private static final int INFLATE_BUFSIZE = 1024 * 100;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
42 private Inflater inflater = new Inflater();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
43 private Deflater deflater = new Deflater();
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
44 ViewerInterface viewer;
341
1d9a4099ad44 change hasParent value.
oc
parents: 340
diff changeset
45 private short id = 0; // my tree node id ( = 0 in root ), -1 means no parent
471
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
46 private short sharingId = -1; // VNCServer's id. this is used control visivility
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
47 private TreeVncCommandChannelListener acceptThread;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
48 private TreeRootFinderListener getCast;
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
49 private CreateConnectionParam cp;
454
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
50 private ConnectionPresenter connectionPresenter;
205
614db20d8fab try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 204
diff changeset
51 private TreeVNCNetwork nets = new TreeVNCNetwork();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
52 private TreeVncRootSelectionPanel rootSelectionPanel;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
53 private String vncInterface;
418
0543c380308c Move bottleneck Node to outside node list
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 417
diff changeset
54 private TreeManagement treeManager;
231
0e0e6744432c get new nodeList for checkDelay.
oc
parents: 230
diff changeset
55 public LinkedList<TreeVNCNode> nodeList;
267
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
56
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
57 protected boolean readyReconnect = false;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
58 private boolean cuiVersion;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
59 private boolean permitChangeScreen = true;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
60 private boolean leader;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
61 private boolean hasViewer = false;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
62 private boolean normalTermination;
402
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
63
267
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
64 private boolean isTreeManager;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
65 public boolean showTreeNode = false;
240
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
66 public boolean checkDelay = false;
241
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
67 public boolean addSerialNum = false;
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
68 public boolean fixingSize = false;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
69 public int fixingSizeWidth;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
70 public int fixingSizeHeight;
293
d1ceb4b7097a add function receive sound.
oc
parents: 292
diff changeset
71 private DatagramSocket socket = null;
306
5e55cc34f789 change public to private
oc
parents: 305
diff changeset
72 private byte[] originalInitData = null;
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
73 private boolean childrenMulticast = true;
474
f0bd5f2c4ba3 unique node id is now static.
one
parents: 471
diff changeset
74 private static int uniqueNodeId = 0; // uniquenodeid in all trees (less than MAX_UNIQUE_NODE_ID)
492
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
75 private int deflate_size = 65507;
418
0543c380308c Move bottleneck Node to outside node list
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 417
diff changeset
76
327
293c35aa902b add error message, add assure stream close, delete firstTime value in TreeRFBProto.
oc
parents: 325
diff changeset
77 public TreeRFBProto(boolean isTreeManager, ViewerInterface viewer) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
78 nets.setMyRfb(this);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
79 this.isTreeManager = isTreeManager;
327
293c35aa902b add error message, add assure stream close, delete firstTime value in TreeRFBProto.
oc
parents: 325
diff changeset
80 this.viewer = viewer;
402
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
81 startTreeRootFindThread();
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
82 }
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
83
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
84 public void startTreeRootFindThread() {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
85 if (isTreeManager()) {
327
293c35aa902b add error message, add assure stream close, delete firstTime value in TreeRFBProto.
oc
parents: 325
diff changeset
86 getCast = new TreeRootFinderListener(viewer);
293c35aa902b add error message, add assure stream close, delete firstTime value in TreeRFBProto.
oc
parents: 325
diff changeset
87 Thread treeRootFindThread = new Thread(getCast, "tree-root-find-listener");
293c35aa902b add error message, add assure stream close, delete firstTime value in TreeRFBProto.
oc
parents: 325
diff changeset
88 treeRootFindThread.start();
293c35aa902b add error message, add assure stream close, delete firstTime value in TreeRFBProto.
oc
parents: 325
diff changeset
89 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
90 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
91
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
92 public boolean isTreeManager() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
93 return isTreeManager;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
94 }
207
b31903e5b02d rename myRFBProto
oc
parents: 206
diff changeset
95
402
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
96 public void setIsTreeManager(boolean isTreeManager) {
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
97 this.isTreeManager = isTreeManager;
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
98 }
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
99
378
60abae693629 Compare SerialNumber flag
innparusu
parents: 373
diff changeset
100 public boolean isAddSerialNum() {
60abae693629 Compare SerialNumber flag
innparusu
parents: 373
diff changeset
101 return addSerialNum;
60abae693629 Compare SerialNumber flag
innparusu
parents: 373
diff changeset
102 }
60abae693629 Compare SerialNumber flag
innparusu
parents: 373
diff changeset
103
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
104 public ProtocolContext getContext() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
105 return context;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
106 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
107
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
108 /**
402
73c96a1d4a3a Fix wasteful thread start
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 399
diff changeset
109 * handle new client accept
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
110 * it also handle TreeVNC Command
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
111 *
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
112 * @param os
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
113 * @param is
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
114 * @param intf
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
115 * @throws IOException
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
116 * @throws TransportException
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
117 */
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
118 public void newClient(final Writer os, final Reader is, final String intf) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
119 final int myId = clients;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
120 final MulticastQueue.Client<LinkedList<ByteBuffer>> c = multicastqueue.newClient();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
121 final AtomicInteger writerRunning = new AtomicInteger();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
122 writerRunning.set(1);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
123 /**
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
124 * Timeout thread. If a client is suspended, it has top of queue
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
125 * indefinitely, which caused memory overflow. After the timeout, we
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
126 * poll the queue and discard it. Start long wait if writer is running.
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
127 */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
128 final Runnable timer = new Runnable() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
129 public void run() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
130 int count = 0;
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
131 for (; ; ) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
132 long timeout = 50000 / 8;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
133 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
134 synchronized (this) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
135 int state, flag;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
136 writerRunning.set(0);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
137 wait(timeout);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
138 flag = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
139 while ((state = writerRunning.get()) == 0) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
140 c.poll(); // discard, should be timeout
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
141 count++;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
142 if (flag == 0) {
434
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
143 // System.out.println("Discarding " + myId + " count=" + count);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
144 flag = 1;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
145 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
146 wait(10); // if this is too short, writer cannot
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
147 // take the poll, if this is too
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
148 // long, memory will overflow...
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
149 }
434
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
150 // if (flag == 1)
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
151 // System.out.println("Resuming " + myId + " count=" + count);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
152 if (state != 1) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
153 System.out.println("Client died " + myId);
434
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
154 // System.out.println("task stop");
330
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
155 String rootHostName = null;
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
156 int rootHostPort = 0;
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
157 String myHostName = null;
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
158 int myHostPort = 0;
429
e16fb899620f Fix allocate the myId for LostChild
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 428
diff changeset
159 clients = myId;
385
b0be610bc4db Set reconnectingID
innparusu
parents: 384
diff changeset
160 if (!isTreeManager) {
330
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
161 rootHostName = getConnectionParam().getHostName();
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
162 rootHostPort = getConnectionParam().getPort();
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
163 myHostName = getMyAddress();
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
164 myHostPort = getAcceptPort();
385
b0be610bc4db Set reconnectingID
innparusu
parents: 384
diff changeset
165 TreeVncProtocol echo = new TreeVncProtocol(rootHostName, rootHostPort);
b0be610bc4db Set reconnectingID
innparusu
parents: 384
diff changeset
166 echo.lostChild(myHostName, myHostPort, myId);
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
167 } else {
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
168 getTreeManager(intf).fixLostChild1(myId + 1);
330
9d1ed0099350 root send lost child, hide function lost parent
oc
parents: 329
diff changeset
169 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
170 break;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
171 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
172 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
173 } catch (InterruptedException e) {
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
174 e.printStackTrace();
434
aad75cd6d9e2 Multicast joins both ipv4 and ipv6 now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 429
diff changeset
175 System.out.println("timer thread interrupted.");
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
176 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
177 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
178 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
179 };
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
180 new Thread(timer, "timer-discard-multicastqueue").start();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
181 /**
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
182 * handle command from lower node
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
183 */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
184 final Runnable reader = new Runnable() {
122
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
185 public void run() {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
186 for (; ; ) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
187 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
188 final byte b[] = new byte[4096];
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
189 final int c = is.readByte(b);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
190 if (c <= 0)
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
191 throw new IOException();
290
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
192 // case of root node.
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
193 if (isTreeManager()) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
194 if (b[0] == ClientToServerMessage.SERVER_CHANGE_REQUEST) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
195 if (permitChangeScreen()) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
196 ByteBuffer buf = ByteBuffer.wrap(b);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
197 buf.order(ByteOrder.BIG_ENDIAN);
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
198 buf.get(); // padding
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
199 buf.get();
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
200 short id = buf.getShort();
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
201 int length = buf.getInt();
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
202 if (length == 0)
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
203 continue;
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
204 byte[] byteAddress = new byte[length];
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
205 buf.get(byteAddress);
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
206 String newHostName = new String(byteAddress, "UTF-8");
417
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 415
diff changeset
207 int x = buf.getInt();
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 415
diff changeset
208 int y = buf.getInt();
454
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
209 int singleWidth = buf.getInt();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
210 int singleHeight = buf.getInt();
340
fd529c51095f add port ScreenChangeRequest value.
oc
parents: 339
diff changeset
211 int port = buf.getInt();
410
da1d6d6b4981 Enable retina scale to fit screen
innparusu
parents: 405
diff changeset
212 int scale = buf.getInt();
476
9a672958d7f2 Set sharing ID if TreeManager sharing
one
parents: 474
diff changeset
213 System.out.println("Root server change request :" + newHostName + " : " + port + " id:" + id);
448
344a35b7c47f send both frame buffer size and selected screen size in Disktop size change (INIT_DATA)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 441
diff changeset
214 changeVNCServer(viewer, newHostName, port, x, y, singleWidth, singleHeight, scale, id, is, os);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
215 } else {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
216 continue;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
217 }
290
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
218 } else if (b[0] == ClientToServerMessage.READY_SHARE_SOUND) {
293
d1ceb4b7097a add function receive sound.
oc
parents: 292
diff changeset
219 int rtpPort = selectPort(ConnectionParams.DEFAULT_RTP_PORT);
d1ceb4b7097a add function receive sound.
oc
parents: 292
diff changeset
220 InetAddress hostname = InetAddress.getLocalHost();
d1ceb4b7097a add function receive sound.
oc
parents: 292
diff changeset
221 ReceiveSound receiveSound = new ReceiveSound(socket);
d1ceb4b7097a add function receive sound.
oc
parents: 292
diff changeset
222 Thread receiveSoundThread = new Thread(receiveSound, "receive-sound");
d1ceb4b7097a add function receive sound.
oc
parents: 292
diff changeset
223 receiveSoundThread.start();
230
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
224 } else if (b[0] == ClientToServerMessage.CHECK_DELAY_REPLY) {
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
225 ByteBuffer buf = ByteBuffer.wrap(b);
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
226 buf.order(ByteOrder.BIG_ENDIAN);
234
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
227 buf.getShort();
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
228 Long time = buf.getLong();
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
229 int port = buf.getInt();
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
230 int addressLength = buf.getInt();
414
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
231 int dataLen = buf.getInt();
234
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
232 byte[] byteAddress = new byte[addressLength];
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
233 buf.get(byteAddress);
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
234 String address = new String(byteAddress, "UTF-8");
235
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
235 int nodeNum = getNodeNum(port, address);
419
7e811f33b99d Adhoc implement multi display
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 418
diff changeset
236 if (nodeNum != 0) {
7e811f33b99d Adhoc implement multi display
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 418
diff changeset
237 Long delay = System.currentTimeMillis() - time;
7e811f33b99d Adhoc implement multi display
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 418
diff changeset
238 if (delay > 3000) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
239 getTreeManager(intf).fixLostChild1(nodeNum);
419
7e811f33b99d Adhoc implement multi display
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 418
diff changeset
240 }
7e811f33b99d Adhoc implement multi display
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 418
diff changeset
241 System.out.println(System.currentTimeMillis() + " : receive checkDelay : nodeNum" + nodeNum + ", port : " + port + ", address : " + address + ", delay : " + delay + ", size : " + dataLen);
418
0543c380308c Move bottleneck Node to outside node list
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 417
diff changeset
242 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
243 }
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
244 // case of client node.
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
245 } else if (b[0] == ClientToServerMessage.SERVER_CHANGE_REQUEST) {
295
71d24f7b3b3b fix send ClientToServerMessage
oc
parents: 293
diff changeset
246 ClientToServerMessage serverChangeRequest = new ClientToServerMessage() {
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
247 @Override
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
248 public void send(Writer writer)
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
249 throws TransportException {
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
250 writer.write(b, 0, c);
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
251 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
252 };
295
71d24f7b3b3b fix send ClientToServerMessage
oc
parents: 293
diff changeset
253 context.sendMessage(serverChangeRequest);
290
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
254 } else if (b[0] == ClientToServerMessage.READY_SHARE_SOUND) {
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
255 ClientToServerMessage readyShareSound = new ClientToServerMessage() {
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
256 @Override
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
257 public void send(Writer writer)
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
258 throws TransportException {
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
259 writer.write(b, 0, c);
290
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
260 }
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
261 };
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
262 context.sendMessage(readyShareSound);
230
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
263 } else if (b[0] == ClientToServerMessage.CHECK_DELAY_REPLY) {
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
264 ClientToServerMessage checkDelayReply = new ClientToServerMessage() {
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
265 @Override
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
266 public void send(Writer writer)
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
267 throws TransportException {
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
268 writer.write(b, 0, c);
230
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
269 }
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
270 };
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
271 context.sendMessage(checkDelayReply);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
272 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
273 } catch (Exception e) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
274 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
275 writerRunning.set(2);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
276 os.close();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
277 is.close();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
278 break;
367
0e3af3c8b771 Add Exception messeges
innparusu
parents: 359
diff changeset
279 } catch (Exception e1) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
280 System.out.println("cannot close ClientToServerMessage " + e1);
367
0e3af3c8b771 Add Exception messeges
innparusu
parents: 359
diff changeset
281
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
282 }
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
283 System.out.println("cannot read ClientToServerMessage " + e);
367
0e3af3c8b771 Add Exception messeges
innparusu
parents: 359
diff changeset
284
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
285 return;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
286 }
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
287
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
288 /*
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
289 // あとで検討
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
290 } catch (TransportException e) {
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
291
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
292 }
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
293 */
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
294 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
295 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
296 };
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
297 /**
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
298 * send packets to a client (one thread for each client )
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
299 */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
300 Runnable sender = new Runnable() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
301 public void run() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
302 writerRunning.set(1);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
303 try {
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
304 requestThreadNotify(); // send full screen request via fullScreenRequestThread
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
305
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
306 // after this, we discard upward packet.
239
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
307 new Thread(reader, "upward-packet-processing").start();
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
308
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
309 for (; ; ) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
310 LinkedList<ByteBuffer> bufs = c.poll();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
311 int inputIndex = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
312 ByteBuffer header = bufs.get(inputIndex);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
313 if (header == null)
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
314 continue;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
315 writeToClient(os, bufs, inputIndex);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
316 writerRunning.set(1); // yes my client is awaking.
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
317 if (!childrenMulticast) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
318 for (; ; ) {
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
319 LinkedList<ByteBuffer> flag = c.poll();
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
320 if (flag.size() == 0) {
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
321 break;
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
322 }
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
323 }
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
324 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
325 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
326 } catch (Exception e) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
327 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
328 writerRunning.set(2);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
329 os.close();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
330 } catch (IOException e1) {
420
0ad52aac3bc3 Send repeat FramebufferUpdateRequest from Timer class
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 419
diff changeset
331 System.out.println("root writer close failed :" + e1);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
332 }
420
0ad52aac3bc3 Send repeat FramebufferUpdateRequest from Timer class
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 419
diff changeset
333 System.out.println("root writer failed :" + e);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
334 /* if socket closed cliList.remove(newCli); */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
335 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
336 }
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
337
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
338 public void writeToClient(final Writer os,
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
339 LinkedList<ByteBuffer> bufs, int inputIndex)
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
340 throws TransportException {
354
7ef4ac588459 remove flag in writeToClinet
oc
parents: 353
diff changeset
341 while (inputIndex < bufs.size()) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
342 ByteBuffer b = bufs.get(inputIndex++);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
343 os.write(b.array(), b.position(), b.limit());
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
344 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
345 os.flush();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
346 multicastqueue.heapAvailable();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
347 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
348 };
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
349 clients++;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
350 new Thread(sender, "writer-to-lower-node").start();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
351 }
157
7cea8789387b thread base command listening loop
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 153
diff changeset
352
122
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
353 public boolean permitChangeScreen() {
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
354 return permitChangeScreen;
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
355 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
356
122
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
357
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
358 public void setPermitChangeScreen(boolean v) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
359 permitChangeScreen = v;
122
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
360 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
361
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
362 public void requestThreadNotify() {
448
344a35b7c47f send both frame buffer size and selected screen size in Disktop size change (INIT_DATA)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 441
diff changeset
363 // send full screen update
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
364 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
365
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
366
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
367 public void setProtocolContext(Protocol workingProtocol) {
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
368 context = workingProtocol;
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
369 }
29
57eb5575e6c4 MyRfbProto for client and proxy.
one
parents: 28
diff changeset
370
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
371 public Socket accept() throws IOException {
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
372 return servSock.accept();
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
373 }
31
872d9bcbfe56 Before changing the Viewer.
one
parents: 29
diff changeset
374
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
375 public int selectPort(int p) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
376 int port = p;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
377 while (true) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
378 try {
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
379 servSock = new ServerSocket(port);
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
380 acceptPort = port;
181
9c02b5a72bf9 fix root myAddress.
oc
parents: 179
diff changeset
381 myAddress = "127.0.0.1";
207
b31903e5b02d rename myRFBProto
oc
parents: 206
diff changeset
382 nets.getNetworkInterfaces();
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
383 break;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
384 } catch (BindException e) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
385 port++;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
386 continue;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
387 } catch (IOException e) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
388
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
389 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
390 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
391 System.out.println("accept port = " + port);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
392 return port;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
393 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
394
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
395 public void setViewer(ViewerInterface v) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
396 viewer = v;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
397 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
398
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
399 public ViewerInterface getViewer() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
400 return viewer;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
401 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
402
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
403
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
404 void sendInitData(OutputStream os) throws IOException {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
405 os.write(context.getInitData());
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
406 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
407
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
408
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
409 public void setTerminationType(boolean setType) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
410 normalTermination = setType;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
411 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
412
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
413 public boolean getTerminationType() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
414 return normalTermination;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
415 }
43
6687aa9dd55e add flag for screen change in ReciverTask.java.
one
parents: 38
diff changeset
416
206
2b3eb4a9492f MyRfbProto reorganization
oc
parents: 205
diff changeset
417
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
418 public void addHostToSelectionPanel(int port, String hostname, String myHostName) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
419 if (rootSelectionPanel != null) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
420 rootSelectionPanel.checkBox(Integer.toString(port) + ":" + hostname + ":" + myHostName);
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
421 rootSelectionPanel.visible();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
422 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
423 }
43
6687aa9dd55e add flag for screen change in ReciverTask.java.
one
parents: 38
diff changeset
424
399
28d67bbfa9f1 Implement SelectionPanel processing
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 398
diff changeset
425 public void createRootSelectionPanel(CreateConnectionParam cp, FindRoot getBcast) {
28d67bbfa9f1 Implement SelectionPanel processing
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 398
diff changeset
426 rootSelectionPanel = new TreeVncRootSelectionPanel(getBcast);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
427 rootSelectionPanel.setCp(cp);
399
28d67bbfa9f1 Implement SelectionPanel processing
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 398
diff changeset
428 rootSelectionPanel.visible();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
429 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
430
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
431 public void close() {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
432 // none
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
433 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
434
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
435 public int getAcceptPort() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
436 return acceptPort;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
437 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
438
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
439 public boolean getReadyReconnect() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
440 return readyReconnect;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
441 }
65
ffd7537cebfc cuiversion
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 64
diff changeset
442
ffd7537cebfc cuiversion
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 64
diff changeset
443
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
444 public boolean getCuiVersion() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
445 return cuiVersion;
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
446 }
66
84ad879891e9 dont move
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 65
diff changeset
447
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
448 public void setCuiVersion(boolean flag) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
449 cuiVersion = flag;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
450 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
451
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
452 public void readCheckDelay(Reader reader) throws TransportException {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
453
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
454 }
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
455
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
456 public synchronized void vncConnected(boolean ready) {
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
457 enableChildrenTransmission();
369
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
458 readyReconnect = ready;
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
459 if (ready) {
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
460 notifyAll();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
461 }
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
462 }
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
463
369
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
464 public void printNetworkInterface() {
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
465 Socket vncSocket = viewer.getVNCSocket();
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
466 NetworkInterface ni = nets.getInterface(vncSocket);
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
467 if (ni != null) {
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
468 vncInterface = ni.getName();
369
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
469 System.out.print("VNCNetworkInterface :" + vncInterface);
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
470 if (false) {
370
2c61e6d434ff Fix VncConnectionWorkers
innparusu
parents: 369
diff changeset
471 Enumeration<InetAddress> addresses = ni.getInetAddresses();
2c61e6d434ff Fix VncConnectionWorkers
innparusu
parents: 369
diff changeset
472 while (addresses.hasMoreElements()) {
2c61e6d434ff Fix VncConnectionWorkers
innparusu
parents: 369
diff changeset
473 InetAddress adr = addresses.nextElement();
2c61e6d434ff Fix VncConnectionWorkers
innparusu
parents: 369
diff changeset
474 System.out.print(" " + adr);
2c61e6d434ff Fix VncConnectionWorkers
innparusu
parents: 369
diff changeset
475 }
369
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
476 }
2d01ec1c02d2 Fix ReConnectingFlag
innparusu
parents: 367
diff changeset
477 System.out.println();
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
478 }
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
479 }
94
75879c316796 synchronized wait for Rfb initialization in change server.
oc
parents: 89
diff changeset
480
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
481 public void sendDesktopSizeChange(short id) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
482 LinkedList<ByteBuffer> desktopSize = new LinkedList<ByteBuffer>();
454
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
483 int singleWidth = connectionPresenter.getSingleWidth();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
484 int singleHeight = connectionPresenter.getSingleHeight();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
485 int x = connectionPresenter.getX();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
486 int y = connectionPresenter.getY();
448
344a35b7c47f send both frame buffer size and selected screen size in Disktop size change (INIT_DATA)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 441
diff changeset
487 desktopSize.add(new ChangeDesktopSize(context.getFbWidth(), context.getFbHeight(), singleWidth,singleHeight, x, y, EncodingType.INIT_DATA, context.getInitData(), id).getMessage());
380
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
488 if (addSerialNum) {
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
489 addSerialNumber(desktopSize);
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
490 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
491 multicastqueue.put(desktopSize);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
492 }
98
8f4c45c1b396 add serial number to desktop size encoding packet.
oc
parents: 97
diff changeset
493
490
141f627665ab fix display
oshiro
parents: 476
diff changeset
494 //public byte[] createOriginalInitData(int singleWidth, int singleHeight, String remoteDesktopName) {
141f627665ab fix display
oshiro
parents: 476
diff changeset
495 // TreeVncCommandChannelListener treeVncCommandChannelListener = new TreeVncCommandChannelListener(this, acceptPort);
141f627665ab fix display
oshiro
parents: 476
diff changeset
496 // byte[] originalInitData = treeVncCommandChannelListener.createOriginalInitData(singleWidth, singleHeight, remoteDesktopName);
141f627665ab fix display
oshiro
parents: 476
diff changeset
497 // return originalInitData;
141f627665ab fix display
oshiro
parents: 476
diff changeset
498 //}
306
5e55cc34f789 change public to private
oc
parents: 305
diff changeset
499
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
500 public void addSerialNumber(LinkedList<ByteBuffer> bufs) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
501 ByteBuffer serialNum = multicastqueue.allocate(4 + 8); // addSerialNum flag + SerialNum
380
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
502 serialNum.putInt(1);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
503 serialNum.putLong(counter++);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
504 serialNum.flip();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
505 bufs.addFirst(serialNum);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
506 }
102
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
507
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
508
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
509 public void resetDecoder() {
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
510 context.resetDecoder();
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
511 }
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
512
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
513 public void stopReceiverTask() {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
514 if (context != null) {
102
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
515 context.cleanUpSession(null);
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
516 context.getRfb().clearChildrenTransmission();
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
517 }
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
518 // cleanup zlib decoder for new VNCServer
202
22676ca0dd97 get VNC Socket.
oc
parents: 201
diff changeset
519 if (isTreeManager())
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
520 inflater = new Inflater();
102
1f7ee648e1f6 inflator in MyRfbProtoProxy should be renew to accept new VNC server socket.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 99
diff changeset
521 }
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
522
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
523 public void clearChildrenTransmission() {
355
82825c322044 comment out clear children transmission
oc
parents: 354
diff changeset
524 // discarding does not work now.
82825c322044 comment out clear children transmission
oc
parents: 354
diff changeset
525
82825c322044 comment out clear children transmission
oc
parents: 354
diff changeset
526 /*
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
527 // set discard flag
354
7ef4ac588459 remove flag in writeToClinet
oc
parents: 353
diff changeset
528 childrenMulticast = false;
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
529 // put gurd erement to restart multicastqueue.
354
7ef4ac588459 remove flag in writeToClinet
oc
parents: 353
diff changeset
530 multicastqueue.put(new LinkedList<ByteBuffer>());
355
82825c322044 comment out clear children transmission
oc
parents: 354
diff changeset
531 */
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
532 }
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
533
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
534 public void enableChildrenTransmission() {
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
535 // a child senderTask may skip this flag
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
536 // durling write waiting. in this case, remaining bufferes are sent.
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
537 childrenMulticast = true;
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
538 }
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
539
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
540 public String getMyAddress() {
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
541 return myAddress;
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
542 }
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
543
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
544 /**
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
545 * gzip byte arrays
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
546 *
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
547 * @param deflater
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
548 * @param inputs byte data[]
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
549 * @param inputIndex
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
550 * @param outputs byte data[]
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
551 * @return byte length in last byte array
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
552 * @throws IOException
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
553 */
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
554 public int zip(Deflater deflater, LinkedList<ByteBuffer> inputs,
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
555 int inputIndex, LinkedList<ByteBuffer> outputs) throws IOException {
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
556 int len = 0;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
557 ByteBuffer c1 = multicastqueue.allocate(INFLATE_BUFSIZE);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
558 while (inputIndex < inputs.size()) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
559 ByteBuffer b1 = inputs.get(inputIndex++);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
560 deflater.setInput(b1.array(), b1.position(), b1.remaining());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
561 /**
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
562 * If we finish() stream and reset() it, Deflater start new gzip
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
563 * stream, this makes continuous zlib reader unhappy. if we remove
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
564 * finish(), Deflater.deflate() never flushes its output. The
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
565 * original zlib deflate has flush flag. I'm pretty sure this a kind
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
566 * of bug of Java library.
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
567 */
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
568 if (inputIndex == inputs.size())
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
569 deflater.finish();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
570 int len1 = 0;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
571 do {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
572 len1 = deflater.deflate(c1.array(), c1.position(),
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
573 c1.remaining());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
574 if (len1 > 0) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
575 len += len1;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
576 c1.position(c1.position() + len1);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
577 if (c1.remaining() == 0) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
578 c1.flip();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
579 outputs.addLast(c1);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
580 c1 = multicastqueue.allocate(INFLATE_BUFSIZE);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
581 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
582 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
583 } while (len1 > 0 || !deflater.needsInput()); // &&!deflater.finished());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
584 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
585 if (c1.position() != 0) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
586 c1.flip();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
587 outputs.addLast(c1);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
588 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
589 deflater.reset();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
590 return len;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
591 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
592
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
593 /**
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
594 * gunzip byte arrays
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
595 *
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
596 * @param inflater
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
597 * @param inputs byte data[]
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
598 * @param bytes byte data[]
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
599 * @return number of total bytes
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
600 * @throws IOException
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
601 */
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
602 public int unzip(Inflater inflater, LinkedList<ByteBuffer> inputs,
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
603 int inputIndex, byte[] bytes, int bufSize) throws DataFormatException {
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
604 int position = 0;
b3426724667b fix read send data.
oc
parents: 181
diff changeset
605 int limit = bytes.length;
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
606 while (inputIndex < inputs.size()) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
607 ByteBuffer input = inputs.get(inputIndex++);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
608 inflater.setInput(input.array(), input.position(), input.limit());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
609 // if (inputIndex==inputs.size()) if inflater/deflater has symmetry,
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
610 // we need this
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
611 // inflater.end(); but this won't work
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
612 do {
318
d01d56038dd1 try catch unzip inflate error.
oc
parents: 317
diff changeset
613 int len0;
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
614 len0 = inflater.inflate(bytes, position, limit - position);
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
615 if (len0 > 0) {
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
616 position += len0;
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
617 if (position > limit) throw new DataFormatException();
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
618 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
619 } while (!inflater.needsInput());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
620 }
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
621 return position;
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
622 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
623
135
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
624 /**
345
47e351909227 add stop children sender when change server.
one@firefly.cr.ie.u-ryukyu.ac.jp
parents: 342
diff changeset
625 * Multicast framebufferUpdate to children.
135
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
626 * read FrameBuffferUpdate. If it is ZLE, make it ZLEE which is self contained compressed packet.
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
627 * put the packet to the multicastqueue. Then normal rendering engine read the same stream using is.reset().
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
628 *
135
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
629 * @param dataLen
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
630 * @param reader
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
631 * @throws TransportException
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
632 * @throws UnsupportedEncodingException
135
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
633 */
264
83d0256a8808 add fixing display filter.
oc
parents: 257
diff changeset
634 public void readSendData(int dataLen, Reader reader, byte[] bytes, FramebufferUpdateRectangle rect)
496
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
635 throws TransportException,UnsupportedEncodingException {
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
636 LinkedList<ByteBuffer> bufs = new LinkedList<ByteBuffer>();
420
0ad52aac3bc3 Send repeat FramebufferUpdateRequest from Timer class
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 419
diff changeset
637 int BLOCKSIZE = 64 * 1024;
414
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
638 int headerLen = rect.getEncodingType() == EncodingType.CHECK_DELAY ? 24 : 16;
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
639 ByteBuffer header = multicastqueue.allocate(headerLen);
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
640 ByteBuffer serial = multicastqueue.allocate(4 + 8);
378
60abae693629 Compare SerialNumber flag
innparusu
parents: 373
diff changeset
641 if (!isTreeManager() && addSerialNum) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
642 reader.readBytes(serial.array(), 0, 4 + 8);
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
643 serial.limit(4 + 8);
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
644 }
185
feefc1e58153 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 182
diff changeset
645 reader.mark(dataLen);
414
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
646 reader.readBytes(header.array(), 0, headerLen);
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
647 header.limit(headerLen);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
648 if (header.get(0) == FramebufferUpdate) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
649 int encoding = header.getInt(12);
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
650
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
651 if (encoding == EncodingType.ZRLE.getId()
229
5eb8aa65f387 fix checkdelay number-of-rectangle, and send checkdelay to lower node.
oc
parents: 227
diff changeset
652 || encoding == EncodingType.ZLIB.getId()) {
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
653 if (true) {
496
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
654 try {
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
655 zrleeBlocking(dataLen, reader, bytes, rect, context.getPixelFormat().bitsPerPixel/8, bufs, header);
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
656 } catch (DataFormatException e) {
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
657 e.printStackTrace();
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
658 }
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
659 return;
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
660 }
186
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
661 // recompress into ZREE
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
662 // uncompressed result is remain in bytes
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
663 ByteBuffer len = multicastqueue.allocate(4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
664 reader.readBytes(len.array(), 0, 4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
665 len.limit(4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
666 ByteBuffer inputData = multicastqueue.allocate(dataLen - 20);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
667 reader.readBytes(inputData.array(), 0, inputData.capacity());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
668 inputData.limit(dataLen - 20);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
669 LinkedList<ByteBuffer> inputs = new LinkedList<ByteBuffer>();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
670 inputs.add(inputData);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
671 header.putInt(12, EncodingType.ZRLEE.getId()); // means
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
672 // recompress
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
673 // every time
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
674 // using new Deflecter every time is incompatible with the
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
675 // protocol, clients have to be modified.
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
676 Deflater nDeflater = deflater; // new Deflater();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
677 LinkedList<ByteBuffer> out = new LinkedList<ByteBuffer>();
380
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
678 try {
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
679 unzip(inflater, inputs, 0, bytes, INFLATE_BUFSIZE);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
680 // dump32(inputs);
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
681 out.add(ByteBuffer.wrap(bytes));
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
682 int len2 = zip(nDeflater, out, 0, bufs);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
683 ByteBuffer blen = multicastqueue.allocate(4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
684 blen.putInt(len2);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
685 blen.flip();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
686 bufs.addFirst(blen);
415
5c3635d6ab3c Send Check_Delay packet if checkDelay flag is true
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 414
diff changeset
687 if (checkDelay) {
5c3635d6ab3c Send Check_Delay packet if checkDelay flag is true
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 414
diff changeset
688 bufs = createCheckDelayHeader(bufs, header);
5c3635d6ab3c Send Check_Delay packet if checkDelay flag is true
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 414
diff changeset
689 } else {
5c3635d6ab3c Send Check_Delay packet if checkDelay flag is true
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 414
diff changeset
690 bufs.addFirst(header);
5c3635d6ab3c Send Check_Delay packet if checkDelay flag is true
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 414
diff changeset
691 }
380
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
692 if (addSerialNum) {
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
693 addSerialNumber(bufs);
aef5cbdd84ab Fix compare SerialNumber flag
innparusu
parents: 378
diff changeset
694 }
492
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
695 multicastqueue.waitput(bufs);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
696 } catch (IOException | InterruptedException e) {
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
697 throw new TransportException(e);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
698 } catch (DataFormatException e) {
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
699 throw new TransportException(e);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
700 }
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
701 return;
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
702 }
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
703
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
704 // ZRLEE is already compressed
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
705 bufs.add(header);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
706 if (addSerialNum) {
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
707 this.addSerialNumber(bufs);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
708 }
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
709 if (dataLen > headerLen) {
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
710 ByteBuffer b = multicastqueue.allocate(dataLen - headerLen);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
711 reader.readBytes(b.array(), 0, dataLen - headerLen);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
712 b.limit(dataLen - headerLen);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
713 bufs.add(b);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
714 }
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
715 multicastqueue.put(bufs);
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
716
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
717 return;
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
718 }
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
719 // It may be compressed. We can inflate here to avoid repeating clients
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
720 // decompressing here,
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
721 // but it may generate too many large data. It is better to do it in
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
722 // each client.
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
723 // But we have do inflation for all input data, so we have to do it
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
724 // here.
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
725 }
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
726
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
727 /**
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
728 * Multicast framebufferUpdate to children.
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
729 * read FrameBuffferUpdate. If it is ZLE, make it ZLEE which is self contained compressed packet.
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
730 * put the packet to the multicastqueue. Then normal rendering engine read the same stream using is.reset().
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
731 *
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
732 * @param dataLen
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
733 * @param reader
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
734 * @throws TransportException
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
735 * @throws UnsupportedEncodingException
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
736 */
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
737
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
738
496
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
739 private void zrleeBlocking(int dataLen, Reader reader, byte[] bytes, FramebufferUpdateRectangle rect, int bytePerPixel, LinkedList<ByteBuffer> bufs, ByteBuffer header) throws TransportException, DataFormatException {
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
740 ByteBuffer len = multicastqueue.allocate(4);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
741 reader.readBytes(len.array(), 0, 4);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
742 len.limit(4);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
743 ByteBuffer inputData = multicastqueue.allocate(dataLen - 20);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
744 reader.readBytes(inputData.array(), 0, inputData.capacity());
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
745 inputData.limit(dataLen - 20);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
746 LinkedList<ByteBuffer> inputs = new LinkedList<ByteBuffer>();
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
747 inputs.add(inputData);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
748 header.putInt(12, EncodingType.ZRLEE.getId()); // means
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
749 // recompress
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
750 // every time
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
751 // using new Deflecter every time is incompatible with the
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
752 // protocol, clients have to be modified.
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
753 Deflater nDeflater = deflater; // new Deflater();
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
754 LinkedList<ByteBuffer> out = new LinkedList<ByteBuffer>();
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
755 int inflate_size = rect.width * rect.height * bytePerPixel;
492
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
756
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
757 unzip(inflater, inputs, 0, bytes, inflate_size);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
758 // dump32(inputs);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
759 out.add(ByteBuffer.wrap(bytes));
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
760 int inputIndex = 0;
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
761 ByteBuffer c1 = multicastqueue.allocate(deflate_size);
496
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
762 int x = rect.x, y = rect.y, w = 0, h = 0, w0 = 0, h0 = 0;
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
763 int span = rect.width;
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
764 while (inputIndex < inflate_size) {
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
765 deflater.setInput(bytes,inputIndex,span * bytePerPixel);
496
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
766 if (c1.remaining() < span * bytePerPixel || inputIndex >= inflate_size - span * bytePerPixel) {
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
767 deflater.deflate(c1,Deflater.FULL_FLUSH);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
768 c1.flip();
496
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
769 try {
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
770 writeUpdateRectangleWithHeader(c1,header,c1.remaining(),x+w,y+h,rect.width,h-h0);
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
771 } catch (InterruptedException e) {
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
772 e.printStackTrace();
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
773 }
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
774 h0 = h;
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
775 w0 = w;
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
776 c1.reset();
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
777 } else {
496
1f3f2abc9c1b fix zrleeBlocking
oshiro
parents: 495
diff changeset
778 deflater.deflate(c1,Deflater.SYNC_FLUSH);
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
779 }
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
780 w += span;
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
781 if (w >= rect.width ) {
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
782 h++;
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
783 w = 0;
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
784 w0 = 0;
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
785 }
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
786 inputIndex += rect.width * bytePerPixel;
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
787 }
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
788 return;
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
789 }
492
57e0d052b126 add blockedReadSendData
oshiro
parents: 490
diff changeset
790
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
791 private void writeUpdateRectangleWithHeader(ByteBuffer c1, ByteBuffer header, int len2, int x, int y, int w, int h) throws InterruptedException {
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
792 LinkedList<ByteBuffer> bufs = new LinkedList<ByteBuffer>();
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
793 bufs.add(c1);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
794 deflater.reset();
233
26b7c0a6d91b fix indent.
oc
parents: 232
diff changeset
795
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
796 ByteBuffer blen = multicastqueue.allocate(4);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
797 blen.putInt(len2);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
798 blen.flip();
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
799 bufs.addFirst(blen);
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
800 ByteBuffer hdr = multicastqueue.allocate(header.array().length);
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
801 hdr.put(header.array());
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
802 hdr.putShort(4,(short) x);
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
803 hdr.putShort(6,(short) y);
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
804 hdr.putShort(8,(short) w);
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
805 hdr.putShort(10,(short) h);
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
806 if (checkDelay) {
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
807 bufs = createCheckDelayHeader(bufs, hdr);
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
808 } else {
495
11f587612329 change zrleeBlocking
oshiro
parents: 494
diff changeset
809 bufs.addFirst(hdr);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
810 }
494
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
811 if (addSerialNum) {
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
812 addSerialNumber(bufs);
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
813 }
7007d9785737 add zrleeBlocking
oshiro
parents: 493
diff changeset
814 multicastqueue.waitput(bufs);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
815 }
124
214d4f206431 add TreeVNC command number.
oc
parents: 123
diff changeset
816
415
5c3635d6ab3c Send Check_Delay packet if checkDelay flag is true
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 414
diff changeset
817 public LinkedList<ByteBuffer> createCheckDelayHeader(LinkedList<ByteBuffer> checkDelay, ByteBuffer header) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
818 int x = (int) header.getShort(4);
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
819 int y = (int) header.getShort(6);
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
820 int width = (int) header.getShort(8);
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
821 int height = (int) header.getShort(10);
414
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
822 long time = System.currentTimeMillis();
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
823 checkDelay.addFirst(new CheckDelay(x, y, width, height, time, EncodingType.CHECK_DELAY).getMessage());
415
5c3635d6ab3c Send Check_Delay packet if checkDelay flag is true
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 414
diff changeset
824 return checkDelay;
414
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
825 }
3af5f4af2d63 Send data size for checkDelay
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 412
diff changeset
826
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
827 public void setId(short id) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
828 this.id = id;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
829 }
169
8ab1f6905db4 Try to hide root frame
oc
parents: 166
diff changeset
830
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
831 public short getId() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
832 return id;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
833 }
169
8ab1f6905db4 Try to hide root frame
oc
parents: 166
diff changeset
834
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
835 public void setMyAddress(String myHostName) {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
836 this.myAddress = myHostName;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
837
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
838 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
839
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
840 public void setLeader(boolean leader) {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
841 this.leader = leader;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
842 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
843
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
844 public boolean isLeader() {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
845 return leader;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
846 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
847
203
2f6237fea67e change createTreeManagers timing.
oc
parents: 202
diff changeset
848 public void setTreeManager(String intf, TreeManagement clients) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
849 nets.setTreeManager(intf, clients);
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
850 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
851
203
2f6237fea67e change createTreeManagers timing.
oc
parents: 202
diff changeset
852 public TreeManagement getTreeManager(String intf) {
418
0543c380308c Move bottleneck Node to outside node list
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 417
diff changeset
853 this.treeManager = nets.getTreeManager(intf);
0543c380308c Move bottleneck Node to outside node list
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 417
diff changeset
854 this.nodeList = treeManager.getList();
0543c380308c Move bottleneck Node to outside node list
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 417
diff changeset
855 return treeManager;
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
856 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
857
470
f7210f834403 add unique node id
mir3636
parents: 454
diff changeset
858 public int getNewNodeId () {
471
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
859 return ++uniqueNodeId;
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
860 } // 0 is reserved for root
470
f7210f834403 add unique node id
mir3636
parents: 454
diff changeset
861
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
862 /**
290
c10e0dee7bbb add READY_SHARE_SOUND msg, add function of receive READY_SHARE_SOUND msg, add sendSound thread.
oc
parents: 287
diff changeset
863 * change VNCServer is called when host change.
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
864 *
405
cdab1354e227 Add multiscreen Share Filtering flag
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 402
diff changeset
865 * @param vncProxyService
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
866 * @param hostName HostAddress
427
ed15f0bd8dfa Remove shareScrrenNumber for ScreenChangeRequest Message
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 425
diff changeset
867 * @param x
ed15f0bd8dfa Remove shareScrrenNumber for ScreenChangeRequest Message
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 425
diff changeset
868 * @param y
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
869 * @param width FrameWidth
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
870 * @param height FrameHeight
427
ed15f0bd8dfa Remove shareScrrenNumber for ScreenChangeRequest Message
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 425
diff changeset
871 * @param scale
351
024ac6e457f4 fix changeVNCServer
oc
parents: 350
diff changeset
872 * @param newVNCServerId
382
37eb97a23dcf add variable(is,os) to changeVNCServer
kkb
parents: 380
diff changeset
873 * @param is
37eb97a23dcf add variable(is,os) to changeVNCServer
kkb
parents: 380
diff changeset
874 * @param os
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
875 */
427
ed15f0bd8dfa Remove shareScrrenNumber for ScreenChangeRequest Message
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 425
diff changeset
876 public void changeVNCServer(ViewerInterface vncProxyService, String hostName, int port, int x, int y, int width, int height, int scale, short newVNCServerId, Reader is, Writer os)
325
cc9d33208f34 small change catch error message.
oc
parents: 322
diff changeset
877 throws IOException {
351
024ac6e457f4 fix changeVNCServer
oc
parents: 350
diff changeset
878 if (newVNCServerId == -1) {
339
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 335
diff changeset
879 // change to the tree vnc root on other network.
428
f6a828dd37b0 Change timing for setting share screen info
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 427
diff changeset
880 vncProxyService.changeToDirectConnectedServer(hostName, is, os, x, y, width, height, scale);
339
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 335
diff changeset
881 return;
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 335
diff changeset
882 }
342
4c670edf3065 fix setting remote id
oc
parents: 341
diff changeset
883 // serverChangeの処理
428
f6a828dd37b0 Change timing for setting share screen info
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 427
diff changeset
884 vncProxyService.inhelitClients(hostName, newVNCServerId, x, y, width, height, scale);
317
3c63bc88383e always fit screen, -d mode.
oc
parents: 306
diff changeset
885 // after connecting VNC server, rfb send SEND_INIT_DATA command and wakes me up if necessary
322
345185ef630e close viewer as soon as push share screen button.
oc
parents: 320
diff changeset
886 // stop reader stop
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
887 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
888
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
889 /**
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
890 * start accepting children
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
891 * run rootFinderListener if necessary
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
892 */
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
893 public void createConnectionAndStart(ViewerInterface v) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
894 selectPort(ConnectionParams.DEFAULT_VNC_ROOT);
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
895 acceptThread = new TreeVncCommandChannelListener(this, getAcceptPort());
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
896 Thread thread = new Thread(acceptThread, "TreeVNC-accept");
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
897 thread.start();
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
898 }
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
899
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
900 public TreeVncCommandChannelListener getAcceptThread() {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
901 return acceptThread;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
902 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
903
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
904 public void setConnectionParam(CreateConnectionParam createConnectionParam) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
905 cp = createConnectionParam;
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
906 }
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
907
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
908 public CreateConnectionParam getConnectionParam() {
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
909 return cp;
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
910 }
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
911
178
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
912 public boolean hasViewer() {
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
913 return hasViewer;
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
914 }
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
915
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
916 public void setHasViewer(boolean b) {
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
917 hasViewer = b;
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
918 }
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
919
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
920 public void setShowTree(boolean showTree) {
240
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
921 this.showTreeNode = showTree;
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
922 }
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
923
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
924 public void setCheckDelay(boolean checkDelay) {
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
925 this.checkDelay = checkDelay;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
926 }
194
b038aafeb2b0 hide VNC server's view to prevent video feed back.
oc
parents: 192
diff changeset
927
241
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
928 public void setAddSerialNum(boolean addSerialNum) {
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
929 this.addSerialNum = addSerialNum;
241
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
930 }
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
931
235
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
932 public int getNodeNum(int port, String address) {
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
933 int nodeNum = 0;
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
934
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
935 for (Iterator<TreeVNCNode> i = nodeList.iterator(); i.hasNext(); ) {
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
936 TreeVNCNode tvn = (TreeVNCNode) i.next();
235
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
937 if (port == tvn.port && address.equals(tvn.hostname)) {
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
938 nodeNum = tvn.treeNum;
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
939 return nodeNum;
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
940 }
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
941 }
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
942 return nodeNum;
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
943 }
241
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
944
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
945 public void setFixingSize(boolean fixingSize) {
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
946 this.fixingSize = fixingSize;
256
dfec8bc1eb8e fix --retina option
oc
parents: 255
diff changeset
947 }
267
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
948
339
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 335
diff changeset
949 public boolean hasParent() {
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 335
diff changeset
950 return id != -1;
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 335
diff changeset
951 }
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
952
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
953 /**
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
954 * server change to directed connected server
395
704ac9e79e25 Call startVNCConnectionWithSocket for directedServerChangeReqeust
innparusu
parents: 394
diff changeset
955 * server maybe on the different network
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
956 * so can not in whereToConnect message
395
704ac9e79e25 Call startVNCConnectionWithSocket for directedServerChangeReqeust
innparusu
parents: 394
diff changeset
957 * reuse dynamic connect socket us a new client
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
958 * reother server exchange socket when serverChangeRequest with id -1
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
959 *
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
960 * @param previousReader
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
961 * @param previousWriter
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
962 */
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
963 public void exchangeDirectConnectedServer(Reader previousReader, Writer previousWriter) {
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
964 String adr = viewer.getRfb().getMyAddress();
454
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
965 ConnectionPresenter cp1 = viewer.getConnectionPresenter();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
966 int scale = cp1.getRetinaScale();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
967 int singleWidth = cp1.getSingleWidth();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
968 int singleHeight = cp1.getSingleHeight();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
969 int x = cp1.getX();
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
970 int y = cp1.getY();
427
ed15f0bd8dfa Remove shareScrrenNumber for ScreenChangeRequest Message
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 425
diff changeset
971 ScreenChangeRequest scr = new ScreenChangeRequest(adr, ConnectionParams.DEFAULT_VNC_ROOT, (short) -1, x, y, singleWidth, singleHeight, scale);
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
972 try {
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
973 scr.send(previousWriter);
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
974 } catch (TransportException e) {
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
975 e.printStackTrace();
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
976 return;
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
977 }
425
90c059a70e2e Fix Change ViewerWindow
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 424
diff changeset
978 // newClient(previousWriter, previousReader, null);
384
0bbfc23ef8c4 implements exchangeDirectConnectedServer method
innparusu
parents: 383
diff changeset
979 }
389
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
980
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
981 /**
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
982 * Requested server is connected. stop old connection, replace old connection parameter such as
423
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
983 * context (PROTOCOL)
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
984 * start new connection and send INIT_DATA
ffe01c959cdd Fix LostChild for root node
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 420
diff changeset
985 *
389
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
986 * @param workingProtocol
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
987 * @param connectionPresenter
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
988 */
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
989 public synchronized void newVNCConnection(Protocol workingProtocol, ConnectionPresenter connectionPresenter) {
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
990 ProtocolContext previousContext = getContext();
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
991 stopReceiverTask();
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
992 setProtocolContext(workingProtocol);
454
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
993 this.connectionPresenter = connectionPresenter;
389
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
994 connectionPresenter.viewer.setConnectionPresenter(connectionPresenter);
454
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
995 connectionPresenter.addModel("ConnectionParamsModel", connectionPresenter.getConnectionParams());
389
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
996 if (previousContext != null && isTreeManager() && hasParent()) {
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
997 Reader previousReader = previousContext.getReader();
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
998 Writer previousWriter = previousContext.getWriter();
424
15836504f1a2 Fix ErrorAnnounce
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 423
diff changeset
999 // exchangeDirectConnectedServer(previousReader, previousWriter);
389
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
1000 }
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
1001 enableChildrenTransmission();
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
1002 printNetworkInterface();
476
9a672958d7f2 Set sharing ID if TreeManager sharing
one
parents: 474
diff changeset
1003 System.out.println("newVNCConenction reconnectingId: " + connectionPresenter.getReconnectingId());
9a672958d7f2 Set sharing ID if TreeManager sharing
one
parents: 474
diff changeset
1004 if (isTreeManager()) {
9a672958d7f2 Set sharing ID if TreeManager sharing
one
parents: 474
diff changeset
1005 sharingId = connectionPresenter.getReconnectingId();
9a672958d7f2 Set sharing ID if TreeManager sharing
one
parents: 474
diff changeset
1006 }
389
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
1007 sendDesktopSizeChange(connectionPresenter.getReconnectingId());
5a61cbdd83ab Lock rfb
innparusu
parents: 385
diff changeset
1008 }
412
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1009
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1010 public void sendErrorAnnounce(short reconnectingId, String message) {
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1011 LinkedList<ByteBuffer> errorAnnounce = new LinkedList<ByteBuffer>();
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1012 errorAnnounce.add(new ChildNodeAnnounce(EncodingType.ERROR_ANNOUNCE, message.getBytes(), reconnectingId).getMessage());
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1013 if (addSerialNum) {
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1014 addSerialNumber(errorAnnounce);
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1015 }
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1016 multicastqueue.put(errorAnnounce);
372532ae5f4d Add ErrorAnnounce
innparusu
parents: 411
diff changeset
1017 }
441
cee43ceac9b3 send thatscreen position INIT_DATA
one
parents: 435
diff changeset
1018
454
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
1019 public void setConnectionPresenter(ConnectionPresenter connectionPresenter) {
432e2967eaab All screen sharing request information is now in ConnectionPresenter only
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 452
diff changeset
1020 this.connectionPresenter = connectionPresenter;
441
cee43ceac9b3 send thatscreen position INIT_DATA
one
parents: 435
diff changeset
1021 }
471
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1022
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1023 public short getSharingId() {
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1024 return sharingId;
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1025 }
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1026
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1027 public void setSharingId(short sharingId) {
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1028 this.sharingId = sharingId;
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1029 }
c1b4befc5933 add sharingId
mir3636
parents: 470
diff changeset
1030
240
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
1031 }