/** * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/ * * Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below). * * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free Software * Foundation; either version 3.0 of the License, or (at your option) any later * version. * * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. * */ package org.bigbluebutton.screenshare.client.net; import java.awt.Point; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.zip.Adler32; public class BlockStreamProtocolEncoder { private static final byte[] END_FRAME = new byte[] {'D', 'S', '-', 'E', 'N', 'D'}; private static final byte[] HEADER = new byte[] {'B', 'B', 'B', '-', 'D', 'S'}; private static final byte CAPTURE_START_EVENT = 0; private static final byte CAPTURE_UPDATE_EVENT = 1; private static final byte CAPTURE_END_EVENT = 2; private static final byte MOUSE_LOCATION_EVENT = 3; private static final byte CORRUPT_PACKET_EVENT = 7; public static void encodeStartStreamMessage(String meetingId, int width, int height, ByteArrayOutputStream data, int seqNum) throws IOException { data.write(CAPTURE_START_EVENT); encodeMeetingId(data, meetingId); encodeSequenceNumber(data, seqNum); data.write(intToBytes(width)); data.write(intToBytes(height)); } public static void encodeRoomAndSequenceNumber(String meetingId, int seqNum, ByteArrayOutputStream data) throws IOException{ data.write(CAPTURE_UPDATE_EVENT); encodeMeetingId(data, meetingId); encodeSequenceNumber(data, seqNum); } public static byte[] encodeHeaderAndLength(ByteArrayOutputStream data) throws IOException { ByteArrayOutputStream header = new ByteArrayOutputStream(); header.write(HEADER); header.write(intToBytes(data.size())); return header.toByteArray(); } public static void encodeMouseLocation(Point mouseLoc, String meetingId, ByteArrayOutputStream data, int seqNum) throws IOException { data.write(MOUSE_LOCATION_EVENT); encodeMeetingId(data, meetingId); encodeSequenceNumber(data, seqNum); data.write(intToBytes(mouseLoc.x)); data.write(intToBytes(mouseLoc.y)); } public static void encodeEndStreamMessage(String meetingId, ByteArrayOutputStream data, int seqNum) throws IOException { data.write(CAPTURE_END_EVENT); encodeMeetingId(data, meetingId); encodeSequenceNumber(data, seqNum); } public static void encodeDelimiter(ByteArrayOutputStream data) throws IOException { data.write(END_FRAME); } public static byte[] encodeChecksum(byte[] data) { Adler32 checksum = new Adler32(); checksum.reset(); checksum.update(data); return longToBytes(checksum.getValue()); } private static byte[] longToBytes(long i) { byte[] data = new byte[8]; data[0] = (byte)((i >> 56) & 0xff); data[1] = (byte)((i >> 48) & 0xff); data[2] = (byte)((i >> 40) & 0xff); data[3] = (byte)((i >> 32) & 0xff); data[4] = (byte)((i >> 24) & 0xff); data[5] = (byte)((i >> 16) & 0xff); data[6] = (byte)((i >> 8) & 0xff); data[7] = (byte)(i & 0xff); return data; } private static byte[] intToBytes(int i) { byte[] data = new byte[4]; data[0] = (byte)((i >> 24) & 0xff); data[1] = (byte)((i >> 16) & 0xff); data[2] = (byte)((i >> 8) & 0xff); data[3] = (byte)(i & 0xff); return data; } private static void encodeMeetingId(ByteArrayOutputStream data, String meetingId) throws IOException { data.write(meetingId.length()); data.write(meetingId.getBytes()); } private static void encodeSequenceNumber(ByteArrayOutputStream data, int seqNum) throws IOException { data.write(intToBytes(seqNum)); } }