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