Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | /* |
| 17 | * JDWP internal interfaces. |
| 18 | */ |
| 19 | #ifndef ART_JDWP_JDWPPRIV_H_ |
| 20 | #define ART_JDWP_JDWPPRIV_H_ |
| 21 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 22 | #include "debugger.h" |
| 23 | #include "jdwp/jdwp.h" |
| 24 | #include "jdwp/jdwp_event.h" |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 25 | |
| 26 | #include <pthread.h> |
| 27 | #include <sys/uio.h> |
| 28 | |
| 29 | /* |
| 30 | * JDWP constants. |
| 31 | */ |
| 32 | #define kJDWPHeaderLen 11 |
| 33 | #define kJDWPFlagReply 0x80 |
| 34 | |
| 35 | /* DDM support */ |
| 36 | #define kJDWPDdmCmdSet 199 /* 0xc7, or 'G'+128 */ |
| 37 | #define kJDWPDdmCmd 1 |
| 38 | |
| 39 | namespace art { |
| 40 | |
| 41 | namespace JDWP { |
| 42 | |
| 43 | /* |
| 44 | * Transport-specific network status. |
| 45 | */ |
| 46 | struct JdwpNetState; |
| 47 | struct JdwpState; |
| 48 | |
| 49 | /* |
| 50 | * Transport functions. |
| 51 | */ |
| 52 | struct JdwpTransport { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 53 | bool (*startup)(JdwpState* state, const JdwpOptions* options); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 54 | bool (*accept)(JdwpState* state); |
| 55 | bool (*establish)(JdwpState* state); |
| 56 | void (*close)(JdwpState* state); |
| 57 | void (*shutdown)(JdwpState* state); |
| 58 | void (*free)(JdwpState* state); |
| 59 | bool (*isConnected)(JdwpState* state); |
| 60 | bool (*awaitingHandshake)(JdwpState* state); |
| 61 | bool (*processIncoming)(JdwpState* state); |
| 62 | bool (*sendRequest)(JdwpState* state, ExpandBuf* pReq); |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 63 | bool (*sendBufferedRequest)(JdwpState* state, const iovec* iov, int iov_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | const JdwpTransport* SocketTransport(); |
| 67 | const JdwpTransport* AndroidAdbTransport(); |
| 68 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 69 | /* |
| 70 | * Base class for JdwpNetState |
| 71 | */ |
| 72 | class JdwpNetStateBase { |
| 73 | public: |
| 74 | int clientSock; /* active connection to debugger */ |
| 75 | |
| 76 | JdwpNetStateBase(); |
| 77 | ssize_t writePacket(ExpandBuf* pReply); |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 78 | ssize_t writeBufferedPacket(const iovec* iov, int iov_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 79 | |
| 80 | private: |
| 81 | Mutex socket_lock_; |
| 82 | }; |
| 83 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 84 | } // namespace JDWP |
| 85 | |
| 86 | } // namespace art |
| 87 | |
| 88 | #endif // ART_JDWP_JDWPPRIV_H_ |