OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef IPC_IPC_CHANNEL_H_ | 5 #ifndef IPC_IPC_CHANNEL_H_ |
6 #define IPC_IPC_CHANNEL_H_ | 6 #define IPC_IPC_CHANNEL_H_ |
7 | 7 |
8 #include "ipc/ipc_message.h" | 8 #include "ipc/ipc_message.h" |
9 | 9 |
10 namespace IPC { | 10 namespace IPC { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 // On POSIX an IPC::Channel wraps a socketpair(), this method returns the | 89 // On POSIX an IPC::Channel wraps a socketpair(), this method returns the |
90 // FD # for the client end of the socket. | 90 // FD # for the client end of the socket. |
91 // This method may only be called on the server side of a channel. | 91 // This method may only be called on the server side of a channel. |
92 // | 92 // |
93 // If the kTestingChannelID flag is specified on the command line then | 93 // If the kTestingChannelID flag is specified on the command line then |
94 // a named FIFO is used as the channel transport mechanism rather than a | 94 // a named FIFO is used as the channel transport mechanism rather than a |
95 // socketpair() in which case this method returns -1. | 95 // socketpair() in which case this method returns -1. |
96 int GetClientFileDescriptor() const; | 96 int GetClientFileDescriptor() const; |
97 #endif // defined(OS_POSIX) | 97 #endif // defined(OS_POSIX) |
98 | 98 |
99 protected: | |
100 // Used in Chrome by the TestSink to provide a dummy channel implementation | |
101 // for testing. TestSink overrides the "interesting" functions in Channel so | |
102 // no actual implementation is needed. This will cause un-overridden calls to | |
103 // segfault. Do not use outside of test code! | |
104 Channel() : channel_impl_(0) { } | |
105 | |
106 private: | 99 private: |
107 // PIMPL to which all channel calls are delegated. | 100 // PIMPL to which all channel calls are delegated. |
108 class ChannelImpl; | 101 class ChannelImpl; |
109 ChannelImpl *channel_impl_; | 102 ChannelImpl *channel_impl_; |
110 | 103 |
111 // The Hello message is internal to the Channel class. It is sent | 104 // The Hello message is internal to the Channel class. It is sent |
112 // by the peer when the channel is connected. The message contains | 105 // by the peer when the channel is connected. The message contains |
113 // just the process id (pid). The message has a special routing_id | 106 // just the process id (pid). The message has a special routing_id |
114 // (MSG_ROUTING_NONE) and type (HELLO_MESSAGE_TYPE). | 107 // (MSG_ROUTING_NONE) and type (HELLO_MESSAGE_TYPE). |
115 enum { | 108 enum { |
116 HELLO_MESSAGE_TYPE = kuint16max // Maximum value of message type (uint16), | 109 HELLO_MESSAGE_TYPE = kuint16max // Maximum value of message type (uint16), |
117 // to avoid conflicting with normal | 110 // to avoid conflicting with normal |
118 // message types, which are enumeration | 111 // message types, which are enumeration |
119 // constants starting from 0. | 112 // constants starting from 0. |
120 }; | 113 }; |
121 }; | 114 }; |
122 | 115 |
123 } // namespace IPC | 116 } // namespace IPC |
124 | 117 |
125 #endif // IPC_IPC_CHANNEL_H_ | 118 #endif // IPC_IPC_CHANNEL_H_ |
OLD | NEW |