ikvm-fork/debugger/Packet.cs

197 строки
5.5 KiB
C#
Исходник Обычный вид История

2009-02-08 12:30:55 +03:00
/*
Copyright (C) 2009 Volker Berlin (vberlin@inetsoftware.de)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Jeroen Frijters
jeroen@frijters.net
*/
2009-02-04 22:24:29 +03:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace ikvm.debugger
{
/// <summary>
/// A JDWP Packet descriped at
/// http://java.sun.com/javase/6/docs/technotes/guides/jpda/jdwp-spec.html
/// </summary>
class Packet
{
public const byte NoFlags = 0x0;
public const byte Reply = 0x80;
public const byte ReplyNoError = 0x0;
private byte[] data;
private int offset;
private int id;
private byte flags;
private byte cmdSet;
private byte cmd;
private short errorCode;
2009-02-05 00:27:01 +03:00
private Stream output = new MemoryStream();
private Packet() { }
2009-02-05 00:27:01 +03:00
/// <summary>
/// Create a packet from the stream.
/// </summary>
/// <param name="header">The first 11 bytes of the data.</param>
/// <param name="stream">The stream with the data</param>
/// <returns>a new Packet</returns>
/// <exception cref="IOException">If the data in the stream are invalid.</exception>
internal static Packet Read(byte[] header, Stream stream)
{
Packet packet = new Packet();
packet.data = header;
int len = packet.ReadInt();
if (len < 0)
{
throw new IOException("protocol error - invalid length");
}
packet.id = packet.ReadInt();
packet.flags = packet.ReadByte();
if ((packet.flags & Packet.Reply) == 0)
{
packet.cmdSet = packet.ReadByte();
packet.cmd = packet.ReadByte();
}
else
{
packet.errorCode = packet.ReadShort();
}
packet.data = new byte[len - 11];
2009-02-12 23:49:23 +03:00
Console.Error.WriteLine("Data Size:" + packet.data.Length);
DebuggerUtils.ReadFully(stream, packet.data);
packet.offset = 0;
return packet;
}
2009-02-05 00:27:01 +03:00
internal void Send(Stream stream)
{
MemoryStream ms = (MemoryStream)output;
try
{
output = stream;
WriteInt((int)ms.Length + 11);
WriteInt(id);
WriteByte(Reply);
WriteShort(errorCode);
ms.WriteTo(stream);
}
finally
{
output = ms; //remove the external stream
}
}
internal int ReadInt()
{
return (data[offset++] << 24) |
(data[offset++] << 16) |
(data[offset++] << 8) |
(data[offset++]);
}
internal short ReadShort()
{
return (short)((data[offset++] << 8) | (data[offset++]));
}
internal byte ReadByte()
{
return data[offset++];
}
2009-02-05 23:27:10 +03:00
internal String ReadString()
{
System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding();
int length = ReadInt();
char[] chars = encoding.GetChars(data, offset, length);
offset += length;
return new String(chars);
}
internal int Id
{
get { return id; }
}
internal int CommandSet
{
get { return cmdSet; }
}
internal int Command
{
get { return cmd; }
}
internal short Error
{
get { return errorCode; }
set { errorCode = value; }
}
2009-02-05 00:27:01 +03:00
internal void WriteInt(int value)
{
output.WriteByte((byte)(value >> 24));
output.WriteByte((byte)(value >> 16));
output.WriteByte((byte)(value >> 8));
output.WriteByte((byte)(value));
}
internal void WriteShort(int value)
{
output.WriteByte((byte)(value >> 8));
output.WriteByte((byte)(value));
}
internal void WriteByte(int value)
{
2009-02-05 00:27:01 +03:00
output.WriteByte((byte)(value));
}
2009-02-05 23:27:10 +03:00
internal void WriteString(String value)
{
System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding();
byte[] bytes = encoding.GetBytes(value);
WriteInt(bytes.Length);
output.Write(bytes, 0, bytes.Length);
}
2009-02-08 12:30:55 +03:00
internal void WriteObjectID(int value)
{
// TODO 64 Bit
WriteInt(value);
}
2009-02-12 23:49:23 +03:00
internal void WriteFieldID(int value)
{
// TODO 64 Bit
WriteInt(value);
}
}
}