annotate src/main/java/jp/ac/u_ryukyu/treevnc/ScreenChangeRequest.java @ 427:ed15f0bd8dfa

Remove shareScrrenNumber for ScreenChangeRequest Message
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Mon, 01 Feb 2016 04:39:53 +0900
parents c225c7963778
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
1 package jp.ac.u_ryukyu.treevnc;
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
2
112
918dc3ee1c79 send composed data.
oc
parents: 111
diff changeset
3 import java.nio.ByteBuffer;
918dc3ee1c79 send composed data.
oc
parents: 111
diff changeset
4 import java.nio.ByteOrder;
918dc3ee1c79 send composed data.
oc
parents: 111
diff changeset
5
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
6 import com.glavsoft.exceptions.TransportException;
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
7 import com.glavsoft.rfb.client.ClientToServerMessage;
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
8 import com.glavsoft.transport.Writer;
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
9
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
10 /**
339
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 280
diff changeset
11 * ServerChangeRequest
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 280
diff changeset
12 * Change VNCServer
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 280
diff changeset
13 * 1 - U8 - 240
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
14 * 3 - - padding
339
4713559f5838 if have a parent, send serverChangeRequest and whereToConnect
oc
parents: 280
diff changeset
15 * 4 - - id
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
16 * 4 - U32 - length
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
17 * length - U8 array - text
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
18 */
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
19 public class ScreenChangeRequest implements ClientToServerMessage {
113
bce2ef0a2e79 use ProtocolContext.sendMessage for upward command
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 112
diff changeset
20 final String bytes;
410
da1d6d6b4981 Enable retina scale to fit screen
innparusu
parents: 405
diff changeset
21 private final int scale;
417
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 410
diff changeset
22 private final int x;
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 410
diff changeset
23 private final int y;
410
da1d6d6b4981 Enable retina scale to fit screen
innparusu
parents: 405
diff changeset
24 private short id;
257
11b59b223222 add function of fixing display size
oc
parents: 170
diff changeset
25 private int frameSizeWidth;
11b59b223222 add function of fixing display size
oc
parents: 170
diff changeset
26 private int frameSizeHeight;
340
fd529c51095f add port ScreenChangeRequest value.
oc
parents: 339
diff changeset
27 private int port;
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
28
427
ed15f0bd8dfa Remove shareScrrenNumber for ScreenChangeRequest Message
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 417
diff changeset
29 public ScreenChangeRequest(String adr, int port, short id, int x, int y, int width, int height, int scale) {
112
918dc3ee1c79 send composed data.
oc
parents: 111
diff changeset
30 this.bytes = adr;
340
fd529c51095f add port ScreenChangeRequest value.
oc
parents: 339
diff changeset
31 this.port = port;
170
2c36ea3f93da send id in initData message and changeServer.
oc
parents: 113
diff changeset
32 this.id = id;
417
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 410
diff changeset
33 this.x = x;
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 410
diff changeset
34 this.y = y;
257
11b59b223222 add function of fixing display size
oc
parents: 170
diff changeset
35 this.frameSizeWidth = width;
11b59b223222 add function of fixing display size
oc
parents: 170
diff changeset
36 this.frameSizeHeight = height;
410
da1d6d6b4981 Enable retina scale to fit screen
innparusu
parents: 405
diff changeset
37 this.scale = scale;
112
918dc3ee1c79 send composed data.
oc
parents: 111
diff changeset
38 System.out.println("Client send change screen server request :" + adr);
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
39 }
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
40
280
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
41 @Override
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
42 public void send(Writer writer) throws TransportException {
417
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 410
diff changeset
43 ByteBuffer out = ByteBuffer.allocate(bytes.length()+37);
280
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
44 out.order(ByteOrder.BIG_ENDIAN);
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
45 out.put(SERVER_CHANGE_REQUEST);
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
46 out.put((byte)0); // padding
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
47 out.putShort(id);
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
48 out.putInt(bytes.length());
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
49 out.put(bytes.getBytes());
417
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 410
diff changeset
50 out.putInt(x);
c225c7963778 Send screen position
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents: 410
diff changeset
51 out.putInt(y);
257
11b59b223222 add function of fixing display size
oc
parents: 170
diff changeset
52 out.putInt(frameSizeWidth);
11b59b223222 add function of fixing display size
oc
parents: 170
diff changeset
53 out.putInt(frameSizeHeight);
340
fd529c51095f add port ScreenChangeRequest value.
oc
parents: 339
diff changeset
54 out.putInt(port);
410
da1d6d6b4981 Enable retina scale to fit screen
innparusu
parents: 405
diff changeset
55 out.putInt(scale);
280
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
56 writer.write(out.array(), 0, out.position());
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
57 writer.flush();
9c5874d0f37e fix adjustHdSizeButton button, this button send REQUEST_SINGLE_DISPLAY_WIDTH
oc
parents: 257
diff changeset
58 }
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
59
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
60 @Override
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
61 public String toString() {
340
fd529c51095f add port ScreenChangeRequest value.
oc
parents: 339
diff changeset
62 return "Screen change request: [length: " + bytes.length() +", text: ...]" + new String (bytes) + " : " + port;
107
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
63 }
660b296d4f75 send change screen command throw the tree.
oc
parents:
diff changeset
64 }