annotate src/main/java/jp/ac/u_ryukyu/treevnc/TreeRFBProto.java @ 283:d18c3f901be7

fix setting singleWidth for -d option
author oc
date Sun, 11 Jan 2015 05:12:05 +0900
parents 6b232caa07fb
children 61938de1dd06
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
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
3 import java.io.IOException;
206
2b3eb4a9492f MyRfbProto reorganization
oc
parents: 205
diff changeset
4 import java.io.OutputStream;
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
5 import java.io.UnsupportedEncodingException;
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
6 import java.net.BindException;
201
ced24de3f2c5 get network interfaces.
oc
parents: 194
diff changeset
7 import java.net.NetworkInterface;
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
8 import java.net.ServerSocket;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
9 import java.net.Socket;
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
10 import java.net.UnknownHostException;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
11 import java.nio.ByteBuffer;
109
457f9dfbf7ce minor fix.
oc
parents: 107
diff changeset
12 import java.nio.ByteOrder;
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
13 import java.util.Iterator;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
14 import java.util.LinkedList;
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
15 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
16 import java.util.zip.DataFormatException;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
17 import java.util.zip.Deflater;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
18 import java.util.zip.Inflater;
150
925fb2090282 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 147
diff changeset
19
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
20 import com.glavsoft.exceptions.TransportException;
107
660b296d4f75 send change screen command throw the tree.
oc
parents: 103
diff changeset
21 import com.glavsoft.rfb.client.ClientToServerMessage;
96
76e49dd9c9c5 Client resize without reconnection
oc
parents: 94
diff changeset
22 import com.glavsoft.rfb.encoding.EncodingType;
264
83d0256a8808 add fixing display filter.
oc
parents: 257
diff changeset
23 import com.glavsoft.rfb.encoding.decoder.FramebufferUpdateRectangle;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
24 import com.glavsoft.rfb.protocol.Protocol;
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
25 import com.glavsoft.rfb.protocol.ProtocolContext;
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
26 import com.glavsoft.transport.Reader;
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
27 import com.glavsoft.transport.Writer;
153
e68dfd1972ac fix bad names.
oc
parents: 150
diff changeset
28 import com.glavsoft.viewer.ViewerInterface;
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
29 import com.glavsoft.viewer.swing.ConnectionParams;
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
30
124
214d4f206431 add TreeVNC command number.
oc
parents: 123
diff changeset
31
207
b31903e5b02d rename myRFBProto
oc
parents: 206
diff changeset
32 public class TreeRFBProto {
231
0e0e6744432c get new nodeList for checkDelay.
oc
parents: 230
diff changeset
33
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
34 final static int FramebufferUpdateRequest = 3;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
35 final static int CheckDelay = 11;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
36 protected final static int FramebufferUpdate = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
37 protected ProtocolContext context;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
38 private int clients = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
39 public MulticastQueue<LinkedList<ByteBuffer>> multicastqueue = new MulticastQueue<LinkedList<ByteBuffer>>();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
40 private RequestScreenThread rThread;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
41 public int acceptPort = 0;
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
42 private String myAddress;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
43 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
44 public ServerSocket servSock;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
45 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
46 private Inflater inflater = new Inflater();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
47 private Deflater deflater = new Deflater();
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
48 ViewerInterface viewer;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
49 private short id; // my tree node id ( = 0 in root )
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
50 private TreeVncCommandChannelListener acceptThread;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
51 private TreeRootFinderListener getCast;
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
52 private CreateConnectionParam cp;
187
b62a16548800 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 186
diff changeset
53 private short reconnectingId; // Change Server Request to id's node VNC server
205
614db20d8fab try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 204
diff changeset
54 private TreeVNCNetwork nets = new TreeVNCNetwork();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
55 private TreeVncRootSelectionPanel rootSelectionPanel;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
56 private String vncInterface;
231
0e0e6744432c get new nodeList for checkDelay.
oc
parents: 230
diff changeset
57 public LinkedList<TreeVNCNode> nodeList;
267
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
58
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
59 protected boolean readyReconnect = false;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
60 private boolean cuiVersion;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
61 private boolean permitChangeScreen = true;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
62 private boolean leader;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
63 private boolean firstTime = true;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
64 private boolean hasViewer = false;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
65 private boolean reconnecting;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
66 private boolean normalTermination;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
67 private boolean isTreeManager;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
68 public boolean showTreeNode = false;
240
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
69 public boolean checkDelay = false;
241
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
70 public boolean addSerialNum = false;
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
71 public boolean fixingSize = false;
267
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
72 public boolean filterSingleDisplay = false;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
73
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
74 public int frameSizeWidth;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
75 public int frameSizeHeight;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
76 public int fixingSizeWidth;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
77 public int fixingSizeHeight;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
78
275
0f9b3de45fb2 set main display size.
oc
parents: 270
diff changeset
79 public int singleWidth = 0;
0f9b3de45fb2 set main display size.
oc
parents: 270
diff changeset
80
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
81 public TreeRFBProto(boolean isTreeManager) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
82 rThread = new RequestScreenThread(this);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
83 nets.setMyRfb(this);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
84 this.isTreeManager = isTreeManager;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
85 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
86
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
87 public boolean isTreeManager() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
88 return isTreeManager;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
89 }
207
b31903e5b02d rename myRFBProto
oc
parents: 206
diff changeset
90
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
91 public ProtocolContext getContext() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
92 return context;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
93 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
94
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
95 /**
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
96 * handle new client accept
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
97 * it also handle TreeVNC Command
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
98 * @param newCli
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
99 * @param os
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
100 * @param is
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
101 * @throws IOException
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
102 * @throws TransportException
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
103 */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
104 public void newClient(final Socket newCli,final Writer os, final Reader is) {
124
214d4f206431 add TreeVNC command number.
oc
parents: 123
diff changeset
105
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
106 final int myId = clients;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
107 final MulticastQueue.Client<LinkedList<ByteBuffer>> c = multicastqueue.newClient();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
108 final AtomicInteger writerRunning = new AtomicInteger();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
109 writerRunning.set(1);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
110 /**
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
111 * Timeout thread. If a client is suspended, it has top of queue
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
112 * indefinitely, which caused memory overflow. After the timeout, we
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
113 * poll the queue and discard it. Start long wait if writer is running.
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
114 */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
115 final Runnable timer = new Runnable() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
116 public void run() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
117 int count = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
118 for (;;) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
119 long timeout = 50000 / 8;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
120 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
121 synchronized (this) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
122 int state, flag;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
123 writerRunning.set(0);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
124 wait(timeout);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
125 flag = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
126 while ((state = writerRunning.get()) == 0) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
127 c.poll(); // discard, should be timeout
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
128 count++;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
129 if (flag == 0) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
130 System.out.println("Discarding " + myId
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
131 + " count=" + count);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
132 flag = 1;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
133 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
134 wait(10); // if this is too short, writer cannot
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
135 // take the poll, if this is too
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
136 // long, memory will overflow...
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
137 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
138 if (flag == 1)
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
139 System.out.println("Resuming " + myId
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
140 + " count=" + count);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
141 if (state != 1) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
142 System.out.println("Client died " + myId);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
143 break;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
144 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
145 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
146 } catch (InterruptedException e) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
147 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
148 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
149 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
150 };
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
151 new Thread(timer, "timer-discard-multicastqueue").start();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
152 /**
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
153 * handle command from lower node
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
154 */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
155 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
156 public void run() {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
157 for (;;) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
158 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
159 final byte b[] = new byte[4096];
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
160 final int c = is.readByte(b);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
161 if (c <= 0)
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
162 throw new IOException();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
163 if (isTreeManager()) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
164 if (b[0] == ClientToServerMessage.SERVER_CHANGE_REQUEST) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
165 if (permitChangeScreen()) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
166 ByteBuffer buf = ByteBuffer.wrap(b);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
167 buf.order(ByteOrder.BIG_ENDIAN);
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
168 buf.get();
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
169 buf.get();
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
170 short id = buf.getShort();
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
171 int length = buf.getInt();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
172 if (length == 0)
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
173 continue;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
174 byte[] byteAddress = new byte[length];
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
175 buf.get(byteAddress);
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
176 String newHostName = new String(byteAddress, "UTF-8");
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
177 int frameSizeWidth = buf.getInt();
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
178 int frameSizeHeight = buf.getInt();
283
d18c3f901be7 fix setting singleWidth for -d option
oc
parents: 282
diff changeset
179 singleWidth = frameSizeWidth;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
180 System.out.println("Root server change request :" + newHostName);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
181 // please remove these numbers.
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
182 if (viewer != null) {
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
183 changeVNCServer(viewer, newHostName, frameSizeWidth, frameSizeHeight, id);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
184 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
185 } else {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
186 continue;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
187 }
280
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
188 } else if (b[0] == ClientToServerMessage.REQUEST_SINGLE_DISPLAY_WIDTH) {
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
189 ByteBuffer buf = ByteBuffer.wrap(b);
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
190 buf.order(ByteOrder.BIG_ENDIAN);
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
191 buf.get();
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
192 // ここにエンコーディングタイプがSendSingleDisplayWidthなframebufferUpdateを送信する処理を書く
281
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
193 sendSingleDisplayWidth(singleWidth);
230
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
194 } else if (b[0] == ClientToServerMessage.CHECK_DELAY_REPLY) {
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
195 ByteBuffer buf = ByteBuffer.wrap(b);
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
196 buf.order(ByteOrder.BIG_ENDIAN);
234
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
197 buf.getShort();
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
198 Long time = buf.getLong();
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
199 int port = buf.getInt();
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
200 int addressLength = buf.getInt();
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
201 byte[] byteAddress = new byte[addressLength];
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
202 buf.get(byteAddress);
8479ad028ec7 fix checkdelay send and get.
oc
parents: 233
diff changeset
203 String address = new String(byteAddress, "UTF-8");
235
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
204 int nodeNum = getNodeNum(port, address);
230
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
205 Long delay = System.currentTimeMillis() - time;
244
8cc07511b1d5 small fix checkDelay
oc
parents: 243
diff changeset
206 double halfDelay = (double) delay / 2;
252
eee9a8f53dbc change check delay log
oc
parents: 249
diff changeset
207 System.out.println(System.currentTimeMillis() + " : receive checkDelay : nodeNum" + nodeNum + ", port : " + port + ", address : " + address + ", delay : " + halfDelay);
248
e6abf4b0c92e add numberOfRectangle in checkDelay
Miwa Oshiro <e115747@ie.u-ryukyu.ac.jp>
parents: 245
diff changeset
208
239
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
209 // checkNodeNum();
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
210 // readSendData(check);
248
e6abf4b0c92e add numberOfRectangle in checkDelay
Miwa Oshiro <e115747@ie.u-ryukyu.ac.jp>
parents: 245
diff changeset
211
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
212 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
213 } else if (b[0] == ClientToServerMessage.SERVER_CHANGE_REQUEST) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
214 ClientToServerMessage sc = new ClientToServerMessage() {
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
215 @Override
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
216 public void send(Writer writer)
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
217 throws TransportException {
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
218 writer.write(b,0,c);
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
219 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
220 };
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
221 context.sendMessage(sc);
280
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
222 } else if (b[0] == ClientToServerMessage.REQUEST_SINGLE_DISPLAY_WIDTH) {
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
223 ClientToServerMessage sc = new ClientToServerMessage() {
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
224 @Override
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
225 public void send(Writer writer)
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
226 throws TransportException {
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
227 writer.write(b, 0, c);
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
228 }
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 277
diff changeset
229 };
230
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
230 } else if (b[0] == ClientToServerMessage.CHECK_DELAY_REPLY) {
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
231 ClientToServerMessage checkDelayReply = new ClientToServerMessage() {
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
232 @Override
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
233 public void send(Writer writer)
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
234 throws TransportException {
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
235 writer.write(b,0,c);
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
236 }
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
237 };
f4ea9ff04741 reply checkdelay
oc
parents: 229
diff changeset
238 context.sendMessage(checkDelayReply);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
239 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
240 } catch (Exception e) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
241 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
242 writerRunning.set(2);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
243 os.close();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
244 is.close();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
245 break;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
246 } catch (IOException e1) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
247 } catch (TransportException e1) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
248 e1.printStackTrace();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
249 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
250 return;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
251 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
252 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
253 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
254 };
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
255 /**
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
256 * send packets to a client (one thread for each client )
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
257 */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
258 Runnable sender = new Runnable() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
259 public void run() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
260 writerRunning.set(1);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
261 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
262 requestThreadNotify();
239
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
263
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
264 // after this, we discard upward packet.
239
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
265 new Thread(reader, "upward-packet-processing").start();
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
266
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
267 for (;;) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
268 LinkedList<ByteBuffer> bufs = c.poll();
239
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
269
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
270 int inputIndex = 0;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
271 ByteBuffer header = bufs.get(inputIndex);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
272 if (header == null)
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
273 continue;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
274 writeToClient(os, bufs, inputIndex);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
275 writerRunning.set(1); // yes my client is awaking.
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
276 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
277 } catch (Exception e) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
278 try {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
279 writerRunning.set(2);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
280 os.close();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
281 } catch (IOException e1) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
282 System.out.println("root writer close faild :" + e1);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
283 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
284 System.out.println("root writer faild :" + e);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
285 /* if socket closed cliList.remove(newCli); */
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
286 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
287 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
288 public void writeToClient(final Writer os,
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
289 LinkedList<ByteBuffer> bufs, int inputIndex)
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
290 throws TransportException {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
291 while (inputIndex < bufs.size()) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
292 ByteBuffer b = bufs.get(inputIndex++);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
293 os.write(b.array(), b.position(), b.limit());
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
294 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
295 os.flush();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
296 bufs = null;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
297 multicastqueue.heapAvailable();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
298 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
299 };
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
300 clients++;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
301 new Thread(sender, "writer-to-lower-node").start();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
302 }
157
7cea8789387b thread base command listening loop
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 153
diff changeset
303
281
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
304 public void sendSingleDisplayWidth(int singleDisplayWidth) throws UnsupportedEncodingException {
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
305 LinkedList<ByteBuffer> linkedListSendSingleDisplayWidth = new LinkedList<ByteBuffer>();
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
306 SendSingleDisplayWidth sendSingleDisplayWidth = new SendSingleDisplayWidth();
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
307 linkedListSendSingleDisplayWidth.add(sendSingleDisplayWidth.singleDisplayWidth(0, 0, singleDisplayWidth, 0));
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
308 addSerialNumber(linkedListSendSingleDisplayWidth);
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
309 multicastqueue.put(linkedListSendSingleDisplayWidth);
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
310 System.out.println(singleDisplayWidth + " : send single display width");
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
311 }
122
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
312
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
313 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
314 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
315 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
316
122
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
317
e2416a246c95 noScreenChange flag on command line ( should be on panel also )
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 120
diff changeset
318 public void setPermitChangeScreen(boolean v) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
319 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
320 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
321
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
322 public void requestThreadNotify() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
323 rThread.reStart();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
324 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
325
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
326
28
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
327 public void setProtocolContext(Protocol workingProtocol) {
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
328 context = workingProtocol;
18fad65bc447 Create MyRfbProto.java
one
parents:
diff changeset
329 }
29
57eb5575e6c4 MyRfbProto for client and proxy.
one
parents: 28
diff changeset
330
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
331 public Socket accept() throws IOException {
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
332 return servSock.accept();
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
333 }
31
872d9bcbfe56 Before changing the Viewer.
one
parents: 29
diff changeset
334
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
335 public int selectPort(int p) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
336 int port = p;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
337 while (true) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
338 try {
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
339 servSock = new ServerSocket(port);
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
340 acceptPort = port;
181
9c02b5a72bf9 fix root myAddress.
oc
parents: 179
diff changeset
341 myAddress = "127.0.0.1";
207
b31903e5b02d rename myRFBProto
oc
parents: 206
diff changeset
342 nets.getNetworkInterfaces();
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
343 break;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
344 } catch (BindException e) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
345 port++;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
346 continue;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
347 } catch (IOException e) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
348
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
349 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
350 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
351 System.out.println("accept port = " + port);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
352 return port;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
353 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
354
33
9d3478d11d3b Add the processing of client
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 32
diff changeset
355
9d3478d11d3b Add the processing of client
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 32
diff changeset
356
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
357 public void writeFramebufferUpdateRequest(int x, int y, int w, int h,
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
358 boolean incremental) throws TransportException {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
359 byte[] b = new byte[10];
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
360
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
361 b[0] = (byte) FramebufferUpdateRequest; // 3 is FrameBufferUpdateRequest
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
362 b[1] = (byte) (incremental ? 1 : 0);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
363 b[2] = (byte) ((x >> 8) & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
364 b[3] = (byte) (x & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
365 b[4] = (byte) ((y >> 8) & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
366 b[5] = (byte) (y & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
367 b[6] = (byte) ((w >> 8) & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
368 b[7] = (byte) (w & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
369 b[8] = (byte) ((h >> 8) & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
370 b[9] = (byte) (h & 0xff);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
371 }
33
9d3478d11d3b Add the processing of client
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 32
diff changeset
372
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
373 public void setViewer(ViewerInterface v) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
374 viewer = v;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
375 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
376
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
377 public ViewerInterface getViewer() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
378 return viewer;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
379 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
380
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
381
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
382 void sendInitData(OutputStream os) throws IOException {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
383 os.write(context.getInitData());
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
384 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
385
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
386
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
387 public void setTerminationType(boolean setType) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
388 normalTermination = setType;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
389 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
390
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
391 public boolean getTerminationType() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
392 return normalTermination;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
393 }
43
6687aa9dd55e add flag for screen change in ReciverTask.java.
one
parents: 38
diff changeset
394
206
2b3eb4a9492f MyRfbProto reorganization
oc
parents: 205
diff changeset
395
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
396 public void addHostToSelectionPanel(int port, String hostname,String myHostName) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
397 if (rootSelectionPanel != null) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
398 rootSelectionPanel.checkBox(Integer.toString(port) + ":" + hostname + ":" + myHostName);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
399 rootSelectionPanel.setButton();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
400 rootSelectionPanel.visible();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
401 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
402 }
43
6687aa9dd55e add flag for screen change in ReciverTask.java.
one
parents: 38
diff changeset
403
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
404 public void createRootSelectionPanel(CreateConnectionParam cp) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
405 rootSelectionPanel = new TreeVncRootSelectionPanel();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
406 rootSelectionPanel.setCp(cp);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
407 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
408
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
409 public void close() {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
410 // none
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 int getAcceptPort() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
414 return acceptPort;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
415 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
416
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
417 public boolean getReadyReconnect() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
418 return readyReconnect;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
419 }
65
ffd7537cebfc cuiversion
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 64
diff changeset
420
ffd7537cebfc cuiversion
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 64
diff changeset
421
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
422 public boolean getCuiVersion() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
423 return cuiVersion;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
424 }
66
84ad879891e9 dont move
Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
parents: 65
diff changeset
425
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
426 public void setCuiVersion(boolean flag) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
427 cuiVersion = flag;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
428 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
429
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
430 public void readCheckDelay(Reader reader) throws TransportException {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
431
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
432 }
134
128cce60c43c where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 133
diff changeset
433
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
434 public synchronized void vncConnected(boolean ready) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
435 if (ready && reconnecting) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
436 Socket vncSocket = viewer.getVNCSocket();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
437 NetworkInterface ni = nets.getInterface(vncSocket);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
438 if (ni!=null) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
439 vncInterface = ni.getName();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
440 System.out.println("VNCNetworkInterface :" + vncInterface);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
441 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
442 sendDesktopSizeChange(reconnectingId);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
443 reconnecting = false;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
444 if (reconnectingId == 0) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
445 viewer.setVisible(false);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
446 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
447 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
448 if (reconnectingId!=0) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
449 readyReconnect = ready;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
450 if (ready) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
451 notifyAll();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
452 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
453 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
454 }
94
75879c316796 synchronized wait for Rfb initialization in change server.
oc
parents: 89
diff changeset
455
202
22676ca0dd97 get VNC Socket.
oc
parents: 201
diff changeset
456
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
457 public synchronized void waitForVNCConnection() throws InterruptedException {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
458 if (reconnectingId!=0) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
459 while (!readyReconnect) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
460 wait();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
461 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
462 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
463 }
96
76e49dd9c9c5 Client resize without reconnection
oc
parents: 94
diff changeset
464
76e49dd9c9c5 Client resize without reconnection
oc
parents: 94
diff changeset
465
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
466 public void sendDesktopSizeChange(short id) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
467 LinkedList<ByteBuffer> desktopSize = new LinkedList<ByteBuffer>();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
468 int width = context.getFbWidth();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
469 int height = context.getFbHeight();
277
2d39a1f9558d create adjustHdSizeButton.
oc
parents: 275
diff changeset
470 desktopSize.add(new ChengeDesktopSize(width, height, EncodingType.INIT_DATA, context.getInitData(),id).getMessage());
242
a640cd7001e1 fix checkdelay, and fix serial number option
oc
parents: 241
diff changeset
471 addSerialNumber(desktopSize);
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
472 multicastqueue.put(desktopSize);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
473 }
98
8f4c45c1b396 add serial number to desktop size encoding packet.
oc
parents: 97
diff changeset
474
8f4c45c1b396 add serial number to desktop size encoding packet.
oc
parents: 97
diff changeset
475
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
476 public void addSerialNumber(LinkedList<ByteBuffer> bufs) {
242
a640cd7001e1 fix checkdelay, and fix serial number option
oc
parents: 241
diff changeset
477 ByteBuffer serialNum = multicastqueue.allocate(4+8); // addSerialNum flag + SerialNum
243
0ed7719c1800 fix serial number option.
oc
parents: 242
diff changeset
478 if (this.addSerialNum) {
0ed7719c1800 fix serial number option.
oc
parents: 242
diff changeset
479 serialNum.putInt(1);
0ed7719c1800 fix serial number option.
oc
parents: 242
diff changeset
480 } else {
0ed7719c1800 fix serial number option.
oc
parents: 242
diff changeset
481 serialNum.putInt(0);
0ed7719c1800 fix serial number option.
oc
parents: 242
diff changeset
482 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
483 serialNum.putLong(counter++);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
484 serialNum.flip();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
485 bufs.addFirst(serialNum);
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
486 }
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
487
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
488
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
489 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
490 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
491 }
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
492
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
493 public void stopReceiverTask() {
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
494 if (context!=null)
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
495 context.cleanUpSession(null);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
496 // cleanup zlib decoder for new VNCServer
202
22676ca0dd97 get VNC Socket.
oc
parents: 201
diff changeset
497 if (isTreeManager())
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
498 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
499 }
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
500
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
501 public String getMyAddress() {
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
502 return myAddress;
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
503 }
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
504
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
505 /**
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
506 * gzip byte arrays
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
507 *
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
508 * @param deflater
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
509 * @param inputs
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
510 * byte data[]
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
511 * @param inputIndex
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
512 * @param outputs
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
513 * byte data[]
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
514 * @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
515 * @throws IOException
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
516 */
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
517 public int zip(Deflater deflater, LinkedList<ByteBuffer> inputs,
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
518 int inputIndex, LinkedList<ByteBuffer> outputs) throws IOException {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
519 int len = 0;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
520 ByteBuffer c1 = multicastqueue.allocate(INFLATE_BUFSIZE);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
521 while (inputIndex < inputs.size()) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
522 ByteBuffer b1 = inputs.get(inputIndex++);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
523 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
524 /**
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
525 * 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
526 * 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
527 * 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
528 * 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
529 * of bug of Java library.
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
530 */
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
531 if (inputIndex == inputs.size())
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
532 deflater.finish();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
533 int len1 = 0;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
534 do {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
535 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
536 c1.remaining());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
537 if (len1 > 0) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
538 len += len1;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
539 c1.position(c1.position() + len1);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
540 if (c1.remaining() == 0) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
541 c1.flip();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
542 outputs.addLast(c1);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
543 c1 = multicastqueue.allocate(INFLATE_BUFSIZE);
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 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
546 } 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
547 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
548 if (c1.position() != 0) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
549 c1.flip();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
550 outputs.addLast(c1);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
551 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
552 deflater.reset();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
553 return len;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
554 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
555
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
556 /**
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
557 * gunzip byte arrays
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
558 *
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
559 * @param inflater
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
560 * @param inputs
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
561 * byte data[]
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
562 * @param bytes
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
563 * byte data[]
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
564 * @return number of total bytes
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
565 * @throws IOException
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
566 */
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
567 public int unzip(Inflater inflater, LinkedList<ByteBuffer> inputs,
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
568 int inputIndex, byte[] bytes, int bufSize)
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
569 throws DataFormatException {
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
570 int position = 0;
b3426724667b fix read send data.
oc
parents: 181
diff changeset
571 int limit = bytes.length;
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
572 while (inputIndex < inputs.size()) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
573 ByteBuffer input = inputs.get(inputIndex++);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
574 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
575 // 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
576 // we need this
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
577 // 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
578 do {
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
579 int len0 = inflater.inflate(bytes, position,
b3426724667b fix read send data.
oc
parents: 181
diff changeset
580 limit-position);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
581 if (len0 > 0) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
582 position += len0;
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
583 if (position > limit) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
584 throw new DataFormatException();
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
585 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
586 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
587 } while (!inflater.needsInput());
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
588 }
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
589 return position;
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
590 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
591
135
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
592 /**
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
593 * 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
594 * put the packet to the multicastqueue. Then normal rendering engine read the same stream using is.reset().
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
595 * @param dataLen
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
596 * @param reader
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
597 * @throws TransportException
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
598 * @throws UnsupportedEncodingException
135
ada4d850a820 lostParent and notFoundParenet
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 134
diff changeset
599 */
264
83d0256a8808 add fixing display filter.
oc
parents: 257
diff changeset
600 public void readSendData(int dataLen, Reader reader, byte[] bytes, FramebufferUpdateRectangle rect)
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
601 throws TransportException, UnsupportedEncodingException {
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
602 LinkedList<ByteBuffer> bufs = new LinkedList<ByteBuffer>();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
603 ByteBuffer header = multicastqueue.allocate(16);
242
a640cd7001e1 fix checkdelay, and fix serial number option
oc
parents: 241
diff changeset
604 ByteBuffer serial = multicastqueue.allocate(4+8);
202
22676ca0dd97 get VNC Socket.
oc
parents: 201
diff changeset
605 if (!isTreeManager()) {
242
a640cd7001e1 fix checkdelay, and fix serial number option
oc
parents: 241
diff changeset
606 reader.readBytes(serial.array(),0,4+8);
a640cd7001e1 fix checkdelay, and fix serial number option
oc
parents: 241
diff changeset
607 serial.limit(4+8);
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
608 }
185
feefc1e58153 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 182
diff changeset
609 reader.mark(dataLen);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
610 reader.readBytes(header.array(), 0, 16);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
611 header.limit(16);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
612 if (header.get(0) == FramebufferUpdate) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
613 int encoding = header.getInt(12);
239
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
614
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
615 if (encoding == EncodingType.ZRLE.getId()
229
5eb8aa65f387 fix checkdelay number-of-rectangle, and send checkdelay to lower node.
oc
parents: 227
diff changeset
616 || encoding == EncodingType.ZLIB.getId()) {
186
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
617 // recompress into ZREE
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
618 // 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
619 ByteBuffer len = multicastqueue.allocate(4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
620 reader.readBytes(len.array(), 0, 4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
621 len.limit(4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
622 ByteBuffer inputData = multicastqueue.allocate(dataLen - 20);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
623 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
624 inputData.limit(dataLen - 20);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
625 LinkedList<ByteBuffer> inputs = new LinkedList<ByteBuffer>();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
626 inputs.add(inputData);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
627 header.putInt(12, EncodingType.ZRLEE.getId()); // means
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
628 // recompress
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
629 // every time
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
630 // 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
631 // protocol, clients have to be modified.
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
632 Deflater nDeflater = deflater; // new Deflater();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
633 LinkedList<ByteBuffer> out = new LinkedList<ByteBuffer>();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
634 try {
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
635 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
636 // dump32(inputs);
182
b3426724667b fix read send data.
oc
parents: 181
diff changeset
637 out.add(ByteBuffer.wrap(bytes));
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
638 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
639 ByteBuffer blen = multicastqueue.allocate(4);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
640 blen.putInt(len2);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
641 blen.flip();
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
642 bufs.addFirst(blen);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
643 bufs.addFirst(header);
242
a640cd7001e1 fix checkdelay, and fix serial number option
oc
parents: 241
diff changeset
644 addSerialNumber(bufs);
270
2d934eee4f4b small fix
oc
parents: 269
diff changeset
645 if (filterSingleDisplay) {
275
0f9b3de45fb2 set main display size.
oc
parents: 270
diff changeset
646 if (rect.x < singleWidth) {
270
2d934eee4f4b small fix
oc
parents: 269
diff changeset
647 multicastqueue.put(bufs);
2d934eee4f4b small fix
oc
parents: 269
diff changeset
648 }
2d934eee4f4b small fix
oc
parents: 269
diff changeset
649 } else {
2d934eee4f4b small fix
oc
parents: 269
diff changeset
650 multicastqueue.put(bufs);
2d934eee4f4b small fix
oc
parents: 269
diff changeset
651 }
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
652 } catch (DataFormatException e) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
653 throw new TransportException(e);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
654 } catch (IOException e) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
655 throw new TransportException(e);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
656 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
657 return;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
658 }
233
26b7c0a6d91b fix indent.
oc
parents: 232
diff changeset
659
186
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
660 // ZRLEE is already compressed
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
661 bufs.add(header);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
662 if (dataLen > 16) {
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
663 ByteBuffer b = multicastqueue.allocate(dataLen - 16);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
664 reader.readBytes(b.array(), 0, dataLen - 16);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
665 b.limit(dataLen - 16);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
666 bufs.add(b);
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
667 }
242
a640cd7001e1 fix checkdelay, and fix serial number option
oc
parents: 241
diff changeset
668 this.addSerialNumber(bufs);
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
669 multicastqueue.put(bufs);
233
26b7c0a6d91b fix indent.
oc
parents: 232
diff changeset
670
118
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
671 return;
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
672 }
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
673 // It may be compressed. We can inflate here to avoid repeating clients
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
674 // decompressing here,
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
675 // but it may generate too many large data. It is better to do it in
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
676 // each client.
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
677 // But we have do inflation for all input data, so we have to do it
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
678 // here.
38e461e9b9c9 remove duplicated code in MyRfbProto*
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 113
diff changeset
679 }
124
214d4f206431 add TreeVNC command number.
oc
parents: 123
diff changeset
680
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
681 public void setId(short id) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
682 this.id = id;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
683 }
169
8ab1f6905db4 Try to hide root frame
oc
parents: 166
diff changeset
684
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
685 public short getId() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
686 return id;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
687 }
169
8ab1f6905db4 Try to hide root frame
oc
parents: 166
diff changeset
688
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
689 public void setMyAddress(String myHostName) {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
690 this.myAddress = myHostName;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
691
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
692 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
693
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
694 public void setLeader(boolean leader) {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
695 this.leader = leader;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
696 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
697
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
698 public boolean isLeader() {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
699 return leader;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
700 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
701
203
2f6237fea67e change createTreeManagers timing.
oc
parents: 202
diff changeset
702 public void setTreeManager(String intf, TreeManagement clients) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
703 nets.setTreeManager(intf, clients);
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
704 }
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
705
203
2f6237fea67e change createTreeManagers timing.
oc
parents: 202
diff changeset
706 public TreeManagement getTreeManager(String intf) {
231
0e0e6744432c get new nodeList for checkDelay.
oc
parents: 230
diff changeset
707 TreeManagement tm = nets.getTreeManager(intf);
0e0e6744432c get new nodeList for checkDelay.
oc
parents: 230
diff changeset
708 this.nodeList = tm.getList();
0e0e6744432c get new nodeList for checkDelay.
oc
parents: 230
diff changeset
709 return tm;
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
710 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
711
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
712 /**
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
713 * chnageVNCServer is called when host change.
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
714 *
275
0f9b3de45fb2 set main display size.
oc
parents: 270
diff changeset
715 * @param vncProxyService
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
716 * @param hostName
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
717 * HostAddress
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
718 * @param width
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
719 * FrameWidth
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
720 * @param height
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
721 * FrameHeight
275
0f9b3de45fb2 set main display size.
oc
parents: 270
diff changeset
722 * @param id
0f9b3de45fb2 set main display size.
oc
parents: 270
diff changeset
723 * @throws InterruptedException
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
724 */
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
725 public void changeVNCServer(ViewerInterface vncProxyService, String hostName, int width, int height, short id)
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
726 throws UnknownHostException, IOException, InterruptedException {
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
727
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
728 this.frameSizeWidth = width;
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
729 this.frameSizeHeight = height;
283
d18c3f901be7 fix setting singleWidth for -d option
oc
parents: 282
diff changeset
730 singleWidth = frameSizeWidth;
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
731
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
732 // stop reader stop
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
733 stopReceiverTask();
192
aa00e4b2fc27 fix root viewer.
oc
parents: 191
diff changeset
734 reconnectingId = id;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
735 vncProxyService.inhelitClients(vncProxyService, hostName);
187
b62a16548800 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 186
diff changeset
736 // after connecting VNC server, rfb send SEND_INIT_DATA command and wakes me up if necessary
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
737 reconnecting = true;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
738 if (reconnectingId!=0) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
739 waitForVNCConnection();
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
740 }
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
741 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
742
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
743 /**
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
744 * start accepting children
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
745 * run rootFinderListener if necessary
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
746 */
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
747 public void createConnectionAndStart(ViewerInterface v) {
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
748 selectPort(ConnectionParams.DEFAULT_VNC_ROOT);
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
749 startTreeVncCommandListener();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
750 if(isTreeManager() && firstTime) {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
751 getCast = new TreeRootFinderListener(v);
239
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
752 Thread treeRootFindThread = new Thread(getCast, "tree-root-find-listener");
d655db005535 create sendCheckDelay Socket.
oc
parents: 237
diff changeset
753 treeRootFindThread.start();
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
754 firstTime = false;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
755 }
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
756 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
757
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
758 public void startTreeVncCommandListener() {
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
759 acceptThread = new TreeVncCommandChannelListener(this, getAcceptPort());
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
760 Thread thread = new Thread(acceptThread, "TreeVNC-accept");
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
761 thread.start();
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
762 }
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
763
174
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
764 public TreeVncCommandChannelListener getAcceptThread() {
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
765 return acceptThread;
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
766 }
2e1530139169 reorganization
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 170
diff changeset
767
176
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
768 public void setConnectionParam(CreateConnectionParam createConnectionParam) {
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
769 cp = createConnectionParam;
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
770 }
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
771
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
772 public CreateConnectionParam getConnectionParam() {
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
773 return cp;
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
774 }
fa6cfb85444e on going ...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 175
diff changeset
775
178
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
776 public boolean hasViewer() {
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
777 return hasViewer;
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
778 }
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
779
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
780 public void setHasViewer(boolean b) {
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
781 hasViewer = b;
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
782 }
34b7558aeffa remove TreeTask, StartTreeHandling
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 177
diff changeset
783
186
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
784 public void setReconnecting(boolean b) {
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
785 reconnecting = b;
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
786 }
f76ee760c2d2 dead lock on command line root
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 185
diff changeset
787
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
788 public int getReconnectingId() {
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
789 return reconnectingId;
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
790 }
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
791
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
792 public void setShowTree(boolean showTree) {
240
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
793 this.showTreeNode = showTree;
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
794 }
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
795
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
796 public void setCheckDelay(boolean checkDelay) {
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
797 this.checkDelay = checkDelay;
223
3189e210a7ed indent fix.
oc
parents: 207
diff changeset
798 }
194
b038aafeb2b0 hide VNC server's view to prevent video feed back.
oc
parents: 192
diff changeset
799
241
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
800 public void setAddSerialNum(boolean addSerialNum) {
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
801 this.addSerialNum = addSerialNum;
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
802 }
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
803
235
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
804 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
805 int nodeNum = 0;
235
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
806
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
807 for (Iterator<TreeVNCNode> i = nodeList.iterator(); i.hasNext();) {
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
808 TreeVNCNode tvn = (TreeVNCNode)i.next();
235
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
809 if (port == tvn.port && address.equals(tvn.hostname)) {
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
810 nodeNum = tvn.treeNum;
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
811 return nodeNum;
15e66adbb8bb get checkdelay nodeNum.
oc
parents: 234
diff changeset
812 }
232
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
813 }
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
814 return nodeNum;
6ee4cdca104c send value of port and localhost in checkdelay framebufferupdate, and get this.
oc
parents: 231
diff changeset
815 }
241
b21a7842a41d add option addSerialNum.
oc
parents: 240
diff changeset
816
257
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
817 public void setFixingSize(boolean fixingSize) {
11b59b223222 add function of fixing display size
oc
parents: 256
diff changeset
818 this.fixingSize = fixingSize;
256
dfec8bc1eb8e fix --retina option
oc
parents: 255
diff changeset
819 }
267
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
820
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
821 public void setFilterSingleDisplay(boolean filterSingleDisplay) {
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
822 this.filterSingleDisplay = filterSingleDisplay;
5f697251860b add --filterSingleDisplay option.
oc
parents: 266
diff changeset
823 }
281
16d3584ae7a0 fix SEND_SINGLE_DISPLAY_WIDTH
oc
parents: 280
diff changeset
824
240
7310e7d7a45f add option --checkDelay.
oc
parents: 239
diff changeset
825 }