OLD | NEW |
1 {%- import "struct_macros.tmpl" as struct_macros %} | 1 {%- import "struct_macros.tmpl" as struct_macros %} |
2 {%- set class_name = struct.name ~ "_Data" %} | 2 {%- set class_name = struct.name ~ "_Data" %} |
3 | 3 |
4 // static | 4 // static |
5 {{class_name}}* {{class_name}}::New(mojo::internal::Buffer* buf) { | 5 {{class_name}}* {{class_name}}::New(mojo::internal::Buffer* buf) { |
6 return new (buf->Allocate(sizeof({{class_name}}))) {{class_name}}(); | 6 return new (buf->Allocate(sizeof({{class_name}}))) {{class_name}}(); |
7 } | 7 } |
8 | 8 |
| 9 // static |
| 10 bool {{class_name}}::Validate(const void* data, |
| 11 mojo::internal::BoundsChecker* bounds_checker) { |
| 12 {{ struct_macros.validate(struct, class_name)|indent(2) }} |
| 13 } |
| 14 |
9 {{class_name}}::{{class_name}}() { | 15 {{class_name}}::{{class_name}}() { |
10 header_.num_bytes = sizeof(*this); | 16 header_.num_bytes = sizeof(*this); |
11 header_.num_fields = {{struct.packed.packed_fields|length}}; | 17 header_.num_fields = {{struct.packed.packed_fields|length}}; |
12 } | 18 } |
13 | 19 |
14 void {{class_name}}::EncodePointersAndHandles( | 20 void {{class_name}}::EncodePointersAndHandles( |
15 std::vector<mojo::Handle>* handles) { | 21 std::vector<mojo::Handle>* handles) { |
16 {{ struct_macros.encodes(struct)|indent(2) }} | 22 {{ struct_macros.encodes(struct)|indent(2) }} |
17 } | 23 } |
18 | 24 |
19 bool {{class_name}}::DecodePointersAndHandles(mojo::Message* message) { | 25 bool {{class_name}}::DecodePointersAndHandles(mojo::Message* message) { |
20 {{ struct_macros.decodes(struct)|indent(2) }} | 26 {{ struct_macros.decodes(struct)|indent(2) }} |
21 return true; | 27 return true; |
22 } | 28 } |
OLD | NEW |