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