annotate src/main/java/jp/ac/u_ryukyu/treevnc/TreeRFBProto.java @ 318:d01d56038dd1

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