Mercurial > hg > Applications > TreeVNC
annotate Todo.txt @ 487:59cde26249b1
accept change reconnectionId
author | oshiro |
---|---|
date | Wed, 30 Jan 2019 18:59:13 +0900 |
parents | 4accfd4ea9c2 |
children | 3fe7e1a372df |
rev | line source |
---|---|
487 | 1 Wed Jan 30 18:55:55 JST 2019 |
2 directconnection 時に nodeid を正しく設定する必要がある | |
3 | |
478 | 4 Wed Nov 28 18:45:41 JST 2018 |
5 | |
483 | 6 VNCサーバー側が死んだ時にTreeVNCが暴走する Done |
484 | 7 authenticationのポップアップがrootで上がってしまう Done |
478 | 8 SERVER_CHANGE_REQUESTでリクエスト側の画面が消えないことがある |
9 ディスプレイモードで立ち上げた時にも画面が開いた方が良い | |
10 consolelogをlog4jに切り替える | |
11 | |
12 Multicast mode | |
13 RFB.readsenddataでmulticastqueueにブロッキングしたデータを挿入する | |
14 multicastqueueをmulticastport に出力するスレッドを作成する | |
15 framebufferをcopyしないでブロッキングするメソッドを作成する | |
16 ReceiveData threadをmulticastportに対して走らせる | |
17 multicastするネットワークインターフェースを選択するUIを作成する | |
18 | |
19 | |
431 | 20 Wed June 8 15:35 JST 2016 kono |
21 | |
22 Multi screen でfitScreen buttonは左では動く | |
23 右ではoriginがずれる | |
24 | |
25 fitScreenをclient側で自動的に実行する | |
26 multi screenのoriginを考慮してfitScreenする | |
27 | |
324 | 28 Wed Jan 28 15:35 JST 2015 |
29 | |
30 < 現状の問題点 > | |
31 | |
32 安定性の向上 | |
33 | |
34 無線時、切り替えが遅い | |
35 | |
36 拡大・縮小が遅い done! | |
37 RenderingHint に set する値を、Quality から Speed にする done! | |
38 これを TreeVNC の setting から変更出来るようにする | |
39 | |
40 FitButton の UI の確認 done! | |
41 -d の場合は常に画面に Fit するように設定 done! | |
42 | |
43 テストの方法 | |
44 | |
45 linux、win で動くかどうか | |
46 VMWare で確認できる | |
47 | |
48 catch節で正しい処理ができているか全てチェックする | |
49 | |
50 TreeVNC起動中にPCを閉じると暴走する (再現しないから後回し) | |
51 | |
52 log in の方法 | |
53 log in 出来るようにする | |
54 log in できなかった場合、メッセージを出す | |
55 | |
56 複数のネットワークインタフェースがある場合、繋がらないことがある | |
57 | |
58 途中でネットワークインタフェースを立ち上げるとそれを検知する | |
59 | |
60 log の情報不足の解決 | |
61 | |
62 | |
63 < 拡張機能 > | |
64 | |
65 ルータ越え | |
66 | |
67 ルータ越えの際の UI の確認 | |
68 | |
69 音声共有 | |
70 | |
71 音声共有の際の UI の確認 | |
72 | |
73 | |
74 | |
75 | |
76 | |
218 | 77 Fri Jul 4 19:39:28 JST 2014 |
78 | |
79 ServerChangeRequest を sub tree 側が、自分向けに換えて、upper tree に送ると、 | |
80 中間のtree root経由で、VNC server にリンクが届くので sub tree 側からの画面配信が可能になる。 | |
81 ただし、木に loop ができるので、ServerChangeRequest を途中で停める必要がある。 | |
82 真の root で停めるという手もあるが、自分の知ってるrootから来たものは上に送らないで良いか? | |
83 | |
84 r | |
85 / \ | |
86 n1 n2 | |
87 /\ /\ | |
88 n2 n3 n4 r' = n5 | |
89 /\ | |
90 n1' n2' | |
91 | |
92 n2' send SCR n2' | |
93 Connect VNC r' -> n2' | |
94 r' send SCR r' | |
95 Connect VNC r -> r' | |
96 | |
97 n2' | |
98 / | |
99 r' -> n2' | |
100 / \ | |
101 r n1' | |
102 / \ | |
103 n1 n2 | |
104 /\ / | |
105 n2 n3 n4 | |
106 | |
107 r' send SCR r' to n2', n2' do not send SCR to r' becase r' is root of n2' | |
108 | |
109 こうすれば、FrameBufferUpdate を SeverMessage として送る必要がなくなる。 | |
110 | |
215
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
111 Thu Jul 3 18:09:37 JST 2014 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
112 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
113 interface毎にtreemanagerをつくるので十分。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
114 subTreeを接続するときにはtreeのnodeにroot modeで直接つなぎにいく。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
115 これで自動的にlocalのroot managerになる。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
116 元のtreeとは干渉しない。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
117 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
118 sub treeの画面に切り替えることは現状できない。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
119 切り替えるためには、sub tree側から元のtreeにRfbUpdateを持ち上げなければならない。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
120 保留。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
121 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
122 同じnetworkにいるかどうかはwheretoconnectに変わったnetworkで接続しにきたときのみ対処する。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
123 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
124 duplicated rootは、subtreeを自分でつなげることにすれば必要ない。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
125 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
126 殺しきれていないThreadがある。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
127 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
128 動かしたままサスペンドすると暴走する。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
129 サスペンドしたマシンに |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
130 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
131 shareボタンを禁止するrootのオプションを、パネルから設定出来るように。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
132 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
133 shareする画面の大きさをHDサイズに限定するのをdefaultにする。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
134 オプションには定義してあるけれど正しく機能していない。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
135 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
136 checkdelayの機能を。 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
137 木をさかのぼるプロトコル |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
138 上から投げて、下からdelayの時間をあげていく |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
139 途中のnodeですべてのtreeを待ってから |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
140 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
141 subtreeからのshareの問題。 |
216 | 142 |
143 無線のみで-dをあげると、client側から接続できない。 | |
215
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
144 |
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
145 |
209 | 146 Wed Jul 2 18:55:48 JST 2014 |
147 | |
148 TreeRFBProtoのisTreeManagerはnetwork毎に変わる。 | |
149 | |
150 clientが立ち上がったときにinterface address毎にTreeManagerを作成する。 | |
151 findRootして、既にTreeManagerがいたら、TreeManagerのisTreeManagerフラグを落とす。 | |
152 TreeManagerフラグがたっているinterfaceにたいしてはinterface rootとして振る舞う。 | |
153 findRootに答える。 | |
154 newClientとwhereToConnect、lostParentに応答する。 | |
155 真のrootはTreeRfb.isRootで判断する。 | |
156 | |
157 newClientが来たら、newClientのnetwork addressをみて、同じネットワークかどうかを判断する。 | |
158 同じネットワークにいる場合は、tree nodeとして扱う。 | |
159 ネットワークが異なる場合は、順々にtree nodeの下につける。 | |
160 | |
161 FindRootへの応答は、自分がTreeManagerである場合。 | |
162 応答を願ったnetwork addressからTreeManagerを検索して、それが合致し、TreeManagerであった場合に応答する。 | |
163 | |
164 | |
196 | 165 Fri Jun 27 15:19:39 JST 2014 |
198 | 166 |
205
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
167 拡大縮小ボタンのバグを取る。Done! |
196 | 168 |
209 | 169 Multi-Network-Treeの作成 done! |
170 socketからNetMaskを検出 done! | |
196 | 171 NetworkごとにTreeManagerを作成 |
172 複数のNetworkをもつNodeでは新しいNewtworkにTreeManagerを作成 | |
173 FindRootにはTreeMangerが応答する | |
174 下位のNodeのChangeVnCServerはそのTreeManagerが処理する | |
175 上位にHostameがからのChangerVnCserverを投げる | |
205
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
176 UpdateRectanleを上位のNetworkに投げる |
196 | 177 RootではUpdateRectangleを送り返す |
178 | |
205
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
179 myRfbProtoのselectPort()でnetworkinterfaceを検出する |
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
180 myRfbProtoのvncConnected()でvnc port の interface と Network を検出する |
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
181 |
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
182 自分が、そのnetworkのrootになる条件は? |
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
183 |
196 | 184 treeManagerをnetworkのhashmapで持つ。 |
185 setTreeManagerにnetworkの引数を追加する | |
186 | |
187 findRootで重複したrootを見つけたときに、 | |
188 一番小さいアドレスだけをrootにする。 | |
189 それ以外には、duplicated rootを送る。 | |
197 | 190 この際、duplicated rootを送られたrootは生かしておくが、 |
191 find rootへの応答はやめる。 | |
192 lostParentがきたら、find rootへの応答を再開する。 | |
193 この際、生かしておくduplicated rootは二つに限る。 | |
196 | 194 |
195 findRootReplyにはVNCServerのhostとportを含める。 | |
196 両方共nullだった場合は両方別のものとして表示する。 | |
197 異なるVNCServerはduplicate扱いしない。 | |
198 | |
199 duplicate root を受け取ったrootは、 | |
200 rootであることをやめて、自分の子供にrequestWhereToConnectを送信する。 | |
201 | |
202 requestWhereToConnectを受け取ったnodeは | |
203 whererToConnectを再度送信する。 | |
197 | 204 |
205 中間rootが死んだときには | |
206 下位のnodeはduplicated rootにつなげ直す。 | |
207 もしduplicatedListになかったら、あきらめる。 | |
208 | |
205
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
209 TreeManager は interface 別に作る Done! |
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
210 Network address が LAN 外なら、その下に node は作らない。( そちらで勝手に作るのはあり ) |
614db20d8fab
try to separate Network management
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
198
diff
changeset
|
211 |
196 | 212 |
193 | 213 Thu Jun 25 20:55:00 JST 2014 |
214 | |
215
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
215 share screenした際に、rootのviewerが消えない。 done! |
193 | 216 殺しきれていないThreadがある。 |
217 | |
218 | |
165 | 219 Thu Jun 19 08:12:02 JST 2014 |
166 | 220 |
169 | 221 Share Button を押した際に、JFrameのTitleを更新する。 Done |
166 | 222 SwingViewerWindow.javaのsetRemoteDesktopName メソッドを呼べば解決するはず。 |
223 | |
167 | 224 サーバが切り替わった際、画面のサイズ等の情報を送信する。(INIT_DATA) Done |
166 | 225 |
215
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
226 -dオプションでviewerを別にあげるのをやめる。done |
166 | 227 2つめのviewerの表示が滞るのをデバッグする |
228 shareボタンを禁止するrootのオプションを、パネルから設定出来るように。 | |
215
1badb2ce838f
add poll timeout root-command-loop, client don"t send framebufferupdate.
oc
parents:
209
diff
changeset
|
229 shareしたTreeVNCのパネルをinvisibleにする。 done |
166 | 230 shareする画面の大きさをHDサイズに限定するのをdefaultにする。 |
231 fullサイズを転送するオプションに。 | |
169 | 232 checkdelayの機能を。 |
166 | 233 |
165 | 234 |
153 | 235 Fri Jun 13 17:29:02 JST 2014 |
236 | |
237 AcceptThreadをMultiThread化する。(deadlockを防ぐため) | |
238 TreeNodeが死んだときに、最後のNodeをそこに置き換える。 | |
156 | 239 clientをつなげたときにscreen sharingするバグを直す。 |
240 無線LAN等の複数のネットワークを使えるようにする。 | |
241 無線LAN同士でtreeを構成しないようにパターンマッチをする。 | |
153 | 242 |
133 | 243 Sat Jun 7 11:47:56 JST 2014 |
123 | 244 |
245 Multicast で root を探す (FIND_ROOT) | |
246 その時に、自分の proxy port/host を付けておく | |
247 root は、それを client address/port として覚えておく (clients) | |
248 root は、そこに接続に来て、「自分のproxy port」を返す。(FIND_ROOT_REPLY) | |
249 これを check box に登録する | |
250 client は、それを選択して、root の proxy port に接続に行く (WHERE_TO_CONNECT) | |
251 そこから、root は、どこに接続に行くかを教えてくれる (CONNECT_TO) | |
252 今度は、そこにclientとして接続する (VERSION_MESSAGE ) | |
253 | |
133 | 254 FIND_ROOT (client multicast ) : int port; String hostname (client's address) |
255 | |
123 | 256 proxy port への接続では、client は自分から書かずに server からの version message を待つ |
257 普通のVNCは cliet からは VERSION_MESSAGE が行くが、Tree VNC では、 | |
258 | |
133 | 259 FIND_ROOT_REPLY (root to client proxy port) : int port; String hostname (root's address) |
260 WHERE_TO_CONNECT (clinet to root proxy port) : int port; String hostname (client's address) | |
261 CONNECT_TO (root to client ) : int port; String parentAddress (parent's address) | |
262 CONNECT_TO_AS_LEADER (root to client ) : int port; String parentAddress (parent's address) | |
123 | 263 |
264 が来ることになる。 | |
265 | |
266 切断時は、子供のleaderが root のproxy port に聞きに行く | |
267 | |
133 | 268 LOST_PARENT (client to root) : int port; String hostname |
123 | 269 |
270 root は、接続変更が必要な node の proxy に CONNECT_TO を送る (木経由では送れない。切断されているので) | |
271 | |
272 最終的な切断時では、 LOST_PARENT が大量に出てしまうはず。なので、CONNECT_TO は連続しては送らない。 | |
273 | |
133 | 274 reportLastNode は CONNECT_TO で良い。(10001 port) |
275 lostNodeConnection でも CONNECT_TO を使う | |
276 | |
277 LOST_PARENT と PARENT_NOT_FOUND の違いはなんだ? LOST_PARENT は leader が出すようだけど。 | |
278 | |
279 CONNECT_TO で parentNum とか treeNum を送る必要はない。root 内部で接続アドレスから判断する。 | |
280 なので、LOST_PARENT は hostname と port だけでよい。 | |
281 | |
109 | 282 Fri May 23 19:32:24 JST 2014 |
114 | 283 |
284 checkdelay を再実装する | |
285 | |
286 reconnect message が port 10001 を使っているが、これでは複数clientをホストで動かした時に動かない。 | |
287 どのportを使うかをrootに教える必要がある。 | |
109 | 288 |
123 | 289 9999も使われているようだ。 |
290 | |
291 普通にclientに接続に行けば、version handshake からスタートするはず。そこに、reconnection プロトコルを | |
292 挟める。MyRfbProto.readVersionMsg()。 | |
293 | |
294 Recconection は | |
295 root は AcceptClient | |
296 client は EchoClient | |
297 で行われている(らしい)。まず、この名前をまともなものにする。 | |
298 | |
299 reconnection は木の最後のノードを穴の空いたところに接続することで行われる。これは、逐次で行う必要がある。 | |
300 最後には、ほとんどは一斉に切断されるので、そこで破綻しないように注意する。 | |
301 | |
302 root が client のノードとportを持っているかどうかが重要だが。 | |
303 | |
109 | 304 |
100 | 305 Thu May 22 21:20:39 JST 2014 |
306 | |
307 1) zlibの同期が外れてる。 | |
105 | 308 VncProxyService.javaのinhelitClients の中で |
309 resetDecoderを呼び出せばいいが.... | |
310 2) DesktopSize ではなく、同じプロトコルで initData を送る方が良い。 | |
311 2) initData の中の名前を見て、自分だったら、shareしたclientのscreenをhideする。 | |
312 | |
100 | 313 |
96 | 314 Wed May 22 16:14:25 JST 2014 |
315 | |
100 | 316 1) 10001, 10002 における固定Portをなくす |
317 2) 木を上に登る通信 | |
318 3) ClientをCloseしないでresizeする | |
319 | |
320 Update rectangle で desktop size を変更可能 | |
101 | 321 このままで、pixel formatが変更されない |
322 なのでserverInit をもう一度送るのがよいのではないか | |
96 | 323 |
100 | 324 4) display modeでClient view(proxy + view)をあげる |
96 | 325 |
22 | 326 Wed Aug 29 23:32:36 JST 2012 |
327 | |
328 ReceiverTask の framebufferUpdateMessage を、TreeTask に再現しないとだめ。 | |
329 | |
20
98519d16a8c3
getInitData from ProtocolContext
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
330 Wed Aug 29 22:27:25 JST 2012 |
98519d16a8c3
getInitData from ProtocolContext
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
331 |
98519d16a8c3
getInitData from ProtocolContext
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
332 MyRfbProxy の os が初期化されていない (削除する方が良い) |
98519d16a8c3
getInitData from ProtocolContext
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
333 |
98519d16a8c3
getInitData from ProtocolContext
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
334 initData が null ( 設定された時に、設定するべき) |
98519d16a8c3
getInitData from ProtocolContext
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
335 |
98519d16a8c3
getInitData from ProtocolContext
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
336 |