blob: be37b98a4e91cd36f5754fc4d7feb0497776991d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_SYSTEM_MESSAGE_IN_TRANSIT_H_
#define MOJO_SYSTEM_MESSAGE_IN_TRANSIT_H_
#include <stdint.h>
#include <stdlib.h> // For |free()|.
#include "base/basictypes.h"
namespace mojo {
namespace system {
// This class is used to represent data in transit. It is thread-unsafe.
// Note: This class is POD.
class MessageInTransit {
public:
// Creates a |MessageInTransit| with the data given by |bytes|/|num_bytes|.
static MessageInTransit* Create(const void* bytes, uint32_t num_bytes);
// Destroys a |MessageInTransit| created using |Create()|.
inline void Destroy() {
// No need to call the destructor, since we're POD.
free(this);
}
// Gets the size of the data (in number of bytes).
uint32_t size() const {
return size_;
}
// Gets the data (of size |size()| bytes).
const void* data() const {
return reinterpret_cast<const char*>(this) + sizeof(*this);
}
// TODO(vtl): Add whatever's necessary to transport handles.
private:
explicit MessageInTransit(uint32_t size)
: size_(size), reserved_(0), user_1_(0), user_2_(0) {}
// "Header" for the data.
uint32_t size_;
uint32_t reserved_;
uint32_t user_1_;
uint32_t user_2_;
DISALLOW_COPY_AND_ASSIGN(MessageInTransit);
};
// The size of |MessageInTransit| must be appropriate to maintain alignment of
// the following data.
COMPILE_ASSERT(sizeof(MessageInTransit) == 16, MessageInTransit_has_wrong_size);
} // namespace system
} // namespace mojo
#endif // MOJO_SYSTEM_MESSAGE_IN_TRANSIT_H_
|