Revert 270766 "[telemetry] Make testMeasurementSmoke generate se..."
[chromium-blink-merge.git] / ipc / ipc_message.h
blobea6cda61599cf1be2d54a5146ebde9b4c3dcb1b5
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef IPC_IPC_MESSAGE_H_
6 #define IPC_IPC_MESSAGE_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/debug/trace_event.h"
12 #include "base/pickle.h"
13 #include "ipc/ipc_export.h"
15 #if !defined(NDEBUG)
16 #define IPC_MESSAGE_LOG_ENABLED
17 #endif
19 #if defined(OS_POSIX)
20 #include "base/memory/ref_counted.h"
21 #endif
23 namespace base {
24 struct FileDescriptor;
27 class FileDescriptorSet;
29 namespace IPC {
31 //------------------------------------------------------------------------------
33 struct LogData;
35 class IPC_EXPORT Message : public Pickle {
36 public:
37 enum PriorityValue {
38 PRIORITY_LOW = 1,
39 PRIORITY_NORMAL,
40 PRIORITY_HIGH
43 // Bit values used in the flags field.
44 // Upper 24 bits of flags store a reference number, so this enum is limited to
45 // 8 bits.
46 enum {
47 PRIORITY_MASK = 0x03, // Low 2 bits of store the priority value.
48 SYNC_BIT = 0x04,
49 REPLY_BIT = 0x08,
50 REPLY_ERROR_BIT = 0x10,
51 UNBLOCK_BIT = 0x20,
52 PUMPING_MSGS_BIT = 0x40,
53 HAS_SENT_TIME_BIT = 0x80,
56 virtual ~Message();
58 Message();
60 // Initialize a message with a user-defined type, priority value, and
61 // destination WebView ID.
62 Message(int32 routing_id, uint32 type, PriorityValue priority);
64 // Initializes a message from a const block of data. The data is not copied;
65 // instead the data is merely referenced by this message. Only const methods
66 // should be used on the message when initialized this way.
67 Message(const char* data, int data_len);
69 Message(const Message& other);
70 Message& operator=(const Message& other);
72 PriorityValue priority() const {
73 return static_cast<PriorityValue>(header()->flags & PRIORITY_MASK);
76 // True if this is a synchronous message.
77 void set_sync() {
78 header()->flags |= SYNC_BIT;
80 bool is_sync() const {
81 return (header()->flags & SYNC_BIT) != 0;
84 // Set this on a reply to a synchronous message.
85 void set_reply() {
86 header()->flags |= REPLY_BIT;
89 bool is_reply() const {
90 return (header()->flags & REPLY_BIT) != 0;
93 // Set this on a reply to a synchronous message to indicate that no receiver
94 // was found.
95 void set_reply_error() {
96 header()->flags |= REPLY_ERROR_BIT;
99 bool is_reply_error() const {
100 return (header()->flags & REPLY_ERROR_BIT) != 0;
103 // Normally when a receiver gets a message and they're blocked on a
104 // synchronous message Send, they buffer a message. Setting this flag causes
105 // the receiver to be unblocked and the message to be dispatched immediately.
106 void set_unblock(bool unblock) {
107 if (unblock) {
108 header()->flags |= UNBLOCK_BIT;
109 } else {
110 header()->flags &= ~UNBLOCK_BIT;
114 bool should_unblock() const {
115 return (header()->flags & UNBLOCK_BIT) != 0;
118 // Tells the receiver that the caller is pumping messages while waiting
119 // for the result.
120 bool is_caller_pumping_messages() const {
121 return (header()->flags & PUMPING_MSGS_BIT) != 0;
124 uint32 type() const {
125 return header()->type;
128 int32 routing_id() const {
129 return header()->routing;
132 void set_routing_id(int32 new_id) {
133 header()->routing = new_id;
136 uint32 flags() const {
137 return header()->flags;
140 // Sets all the given header values. The message should be empty at this
141 // call.
142 void SetHeaderValues(int32 routing, uint32 type, uint32 flags);
144 template<class T, class S, class P>
145 static bool Dispatch(const Message* msg, T* obj, S* sender, P* parameter,
146 void (T::*func)()) {
147 (obj->*func)();
148 return true;
151 template<class T, class S, class P>
152 static bool Dispatch(const Message* msg, T* obj, S* sender, P* parameter,
153 void (T::*func)(P*)) {
154 (obj->*func)(parameter);
155 return true;
158 // Used for async messages with no parameters.
159 static void Log(std::string* name, const Message* msg, std::string* l) {
162 // Find the end of the message data that starts at range_start. Returns NULL
163 // if the entire message is not found in the given data range.
164 static const char* FindNext(const char* range_start, const char* range_end) {
165 return Pickle::FindNext(sizeof(Header), range_start, range_end);
168 #if defined(OS_POSIX)
169 // On POSIX, a message supports reading / writing FileDescriptor objects.
170 // This is used to pass a file descriptor to the peer of an IPC channel.
172 // Add a descriptor to the end of the set. Returns false if the set is full.
173 bool WriteFileDescriptor(const base::FileDescriptor& descriptor);
175 // Get a file descriptor from the message. Returns false on error.
176 // iter: a Pickle iterator to the current location in the message.
177 bool ReadFileDescriptor(PickleIterator* iter,
178 base::FileDescriptor* descriptor) const;
180 // Returns true if there are any file descriptors in this message.
181 bool HasFileDescriptors() const;
182 #endif
184 #ifdef IPC_MESSAGE_LOG_ENABLED
185 // Adds the outgoing time from Time::Now() at the end of the message and sets
186 // a bit to indicate that it's been added.
187 void set_sent_time(int64 time);
188 int64 sent_time() const;
190 void set_received_time(int64 time) const;
191 int64 received_time() const { return received_time_; }
192 void set_output_params(const std::string& op) const { output_params_ = op; }
193 const std::string& output_params() const { return output_params_; }
194 // The following four functions are needed so we can log sync messages with
195 // delayed replies. We stick the log data from the sent message into the
196 // reply message, so that when it's sent and we have the output parameters
197 // we can log it. As such, we set a flag on the sent message to not log it.
198 void set_sync_log_data(LogData* data) const { log_data_ = data; }
199 LogData* sync_log_data() const { return log_data_; }
200 void set_dont_log() const { dont_log_ = true; }
201 bool dont_log() const { return dont_log_; }
202 #endif
204 // Called to trace when message is sent.
205 void TraceMessageBegin() {
206 TRACE_EVENT_FLOW_BEGIN0(TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC",
207 header()->flags);
209 // Called to trace when message is received.
210 void TraceMessageEnd() {
211 TRACE_EVENT_FLOW_END0(TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC",
212 header()->flags);
215 protected:
216 friend class Channel;
217 friend class MessageReplyDeserializer;
218 friend class SyncMessage;
220 #pragma pack(push, 4)
221 struct Header : Pickle::Header {
222 int32 routing; // ID of the view that this message is destined for
223 uint32 type; // specifies the user-defined message type
224 uint32 flags; // specifies control flags for the message
225 #if defined(OS_POSIX)
226 uint16 num_fds; // the number of descriptors included with this message
227 uint16 pad; // explicitly initialize this to appease valgrind
228 #endif
230 #pragma pack(pop)
232 Header* header() {
233 return headerT<Header>();
235 const Header* header() const {
236 return headerT<Header>();
239 void InitLoggingVariables();
241 #if defined(OS_POSIX)
242 // The set of file descriptors associated with this message.
243 scoped_refptr<FileDescriptorSet> file_descriptor_set_;
245 // Ensure that a FileDescriptorSet is allocated
246 void EnsureFileDescriptorSet();
248 FileDescriptorSet* file_descriptor_set() {
249 EnsureFileDescriptorSet();
250 return file_descriptor_set_.get();
252 const FileDescriptorSet* file_descriptor_set() const {
253 return file_descriptor_set_.get();
255 #endif
257 #ifdef IPC_MESSAGE_LOG_ENABLED
258 // Used for logging.
259 mutable int64 received_time_;
260 mutable std::string output_params_;
261 mutable LogData* log_data_;
262 mutable bool dont_log_;
263 #endif
266 //------------------------------------------------------------------------------
268 } // namespace IPC
270 enum SpecialRoutingIDs {
271 // indicates that we don't have a routing ID yet.
272 MSG_ROUTING_NONE = -2,
274 // indicates a general message not sent to a particular tab.
275 MSG_ROUTING_CONTROL = kint32max,
278 #define IPC_REPLY_ID 0xFFFFFFF0 // Special message id for replies
279 #define IPC_LOGGING_ID 0xFFFFFFF1 // Special message id for logging
281 #endif // IPC_IPC_MESSAGE_H_