Mercurial > hg > Applications > TreeVNC
annotate src/main/java/jp/ac/u_ryukyu/treevnc/CreateConnectionParam.java @ 134:128cce60c43c
where to connect command
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 07 Jun 2014 15:57:03 +0900 |
parents | 1f6bfaa3281b |
children | 8798f36f732b |
rev | line source |
---|---|
67 | 1 package jp.ac.u_ryukyu.treevnc; |
2 | |
134
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
3 import java.io.IOException; |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
4 |
67 | 5 import com.glavsoft.viewer.ViewerImpl; |
130 | 6 import com.glavsoft.viewer.swing.ConnectionParams; |
7 | |
134
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
8 import jp.ac.u_ryukyu.treevnc.client.FindRoot; |
125 | 9 import jp.ac.u_ryukyu.treevnc.client.TreeVncProtocol; |
81
f93d0286c2ab
root find multicast send port number now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
80
diff
changeset
|
10 |
67 | 11 public class CreateConnectionParam { |
12 private String hostName; | |
130 | 13 private int portNumber = ConnectionParams.DEFAULT_VNC_ROOT; |
67 | 14 private MyRfbProto rfb; |
81
f93d0286c2ab
root find multicast send port number now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
80
diff
changeset
|
15 |
67 | 16 public CreateConnectionParam(MyRfbProto rfb) { |
17 this.rfb = rfb; | |
18 } | |
19 | |
130 | 20 public void findTreeVncRoot() throws InterruptedException { |
134
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
21 FindRoot getBcast = new FindRoot(rfb.acceptPort,this); |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
22 getBcast.findRoot(); |
130 | 23 // wait for RootSelection |
24 wait(); | |
67 | 25 } |
26 | |
134
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
27 /** |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
28 * To find parent, send WHERE_TO_CONNECT command to the TreeVNC root |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
29 * Incoming CONNECT_TO message is handled in MyRFBProto |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
30 * @param v |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
31 */ |
67 | 32 public void createConnectionParam(ViewerImpl v) { |
134
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
33 TreeVncProtocol echo = new TreeVncProtocol(hostName,portNumber); |
67 | 34 rfb.setEcho(echo); |
134
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
35 try { |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
36 echo.whereToConnect(rfb.getMyAddress(),rfb.getAcceptPort()); |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
37 } catch (IOException e) { |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
38 // cannot send where to connect |
128cce60c43c
where to connect command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
130
diff
changeset
|
39 } |
67 | 40 } |
130 | 41 |
128 | 42 public void runAcceptThread() { |
67 | 43 Thread accThread = new Thread(new AcceptThread(rfb, portNumber)); |
44 accThread.start(); | |
45 } | |
130 | 46 |
47 public void setHostName(String _hostName, int port) { | |
48 hostName = _hostName; | |
49 portNumber = port; | |
50 } | |
51 | |
52 public void setHostName(String hostAndPort) { | |
53 int i = hostAndPort.indexOf(':'); | |
54 if (i>0) { | |
55 portNumber = Integer.parseInt(hostAndPort.substring(i+1)); | |
56 hostName = hostAndPort.substring(0,i); | |
57 } else | |
58 hostName = hostAndPort; | |
67 | 59 } |
60 | |
61 } |