debian: added giffgaff chatscripts
[barry.git] / src / j_message.h
blob6cd1da9ce31d421cdbdb38ca0f62c465a4c4912c
1 ///
2 /// \file j_message.h
3 /// JDWP message classes
4 ///
6 /*
7 Copyright (C) 2009, Nicolas VIVIEN
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRYJDWP_MESSAGE_H__
23 #define __BARRYJDWP_MESSAGE_H__
25 #include "j_jdwp.h"
27 namespace Barry { namespace JDWP {
29 class JDWMessage
31 private:
32 int m_socket;
34 JDWP m_jdwp;
36 void RawSend(Barry::Data &send, int timeout = -1);
37 bool RawReceive(Barry::Data &receive, int timeout = -1);
39 protected:
41 public:
42 JDWMessage(int socket);
43 ~JDWMessage();
45 void Send(Barry::Data &send, int timeout = -1); // send only
46 void Send(Barry::Data &send, Barry::Data &receive, int timeout = -1); // send+recv
47 bool Receive(Barry::Data &receive, int timeout = -1);
50 }} // namespace Barry::JDWP
52 #endif