Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: minidump/minidump_crashpad_info_writer.cc

Issue 675803002: Add MinidumpCrashpadModule, its list form, their writers, and their tests (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Crashpad Authors. All rights reserved. 1 // Copyright 2014 The Crashpad Authors. All rights reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License. 4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and 12 // See the License for the specific language governing permissions and
13 // limitations under the License. 13 // limitations under the License.
14 14
15 #include "minidump/minidump_crashpad_info_writer.h" 15 #include "minidump/minidump_crashpad_info_writer.h"
16 16
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "minidump/minidump_crashpad_module_writer.h"
19 #include "util/file/file_writer.h"
18 20
19 namespace crashpad { 21 namespace crashpad {
20 22
21 MinidumpCrashpadInfoWriter::MinidumpCrashpadInfoWriter() 23 MinidumpCrashpadInfoWriter::MinidumpCrashpadInfoWriter()
22 : MinidumpStreamWriter(), crashpad_info_(), simple_annotations_() { 24 : MinidumpStreamWriter(), crashpad_info_(), crashpad_module_list_(nullptr) {
23 crashpad_info_.size = sizeof(crashpad_info_); 25 crashpad_info_.version = MinidumpCrashpadInfo::kVersion;
24 crashpad_info_.version = 1;
25 } 26 }
26 27
27 MinidumpCrashpadInfoWriter::~MinidumpCrashpadInfoWriter() { 28 MinidumpCrashpadInfoWriter::~MinidumpCrashpadInfoWriter() {
28 } 29 }
29 30
30 void MinidumpCrashpadInfoWriter::SetSimpleAnnotations( 31 void MinidumpCrashpadInfoWriter::SetCrashpadModuleList(
31 MinidumpSimpleStringDictionaryWriter* simple_annotations) { 32 MinidumpCrashpadModuleListWriter* crashpad_module_list) {
32 DCHECK_EQ(state(), kStateMutable); 33 DCHECK_EQ(state(), kStateMutable);
33 34
34 simple_annotations_ = simple_annotations; 35 crashpad_module_list_ = crashpad_module_list;
35 } 36 }
36 37
37 bool MinidumpCrashpadInfoWriter::Freeze() { 38 bool MinidumpCrashpadInfoWriter::Freeze() {
38 DCHECK_EQ(state(), kStateMutable); 39 DCHECK_EQ(state(), kStateMutable);
39 40
40 if (!MinidumpStreamWriter::Freeze()) { 41 if (!MinidumpStreamWriter::Freeze()) {
41 return false; 42 return false;
42 } 43 }
43 44
44 if (simple_annotations_) { 45 if (crashpad_module_list_) {
45 simple_annotations_->RegisterLocationDescriptor( 46 crashpad_module_list_->RegisterLocationDescriptor(
46 &crashpad_info_.simple_annotations); 47 &crashpad_info_.crashpad_module_list);
47 } 48 }
48 49
49 return true; 50 return true;
50 } 51 }
51 52
52 size_t MinidumpCrashpadInfoWriter::SizeOfObject() { 53 size_t MinidumpCrashpadInfoWriter::SizeOfObject() {
53 DCHECK_GE(state(), kStateFrozen); 54 DCHECK_GE(state(), kStateFrozen);
54 55
55 return sizeof(crashpad_info_); 56 return sizeof(crashpad_info_);
56 } 57 }
57 58
58 std::vector<internal::MinidumpWritable*> 59 std::vector<internal::MinidumpWritable*>
59 MinidumpCrashpadInfoWriter::Children() { 60 MinidumpCrashpadInfoWriter::Children() {
60 DCHECK_GE(state(), kStateFrozen); 61 DCHECK_GE(state(), kStateFrozen);
61 62
62 std::vector<MinidumpWritable*> children; 63 std::vector<MinidumpWritable*> children;
63 if (simple_annotations_) { 64 if (crashpad_module_list_) {
64 children.push_back(simple_annotations_); 65 children.push_back(crashpad_module_list_);
65 } 66 }
66 67
67 return children; 68 return children;
68 } 69 }
69 70
70 bool MinidumpCrashpadInfoWriter::WriteObject(FileWriterInterface* file_writer) { 71 bool MinidumpCrashpadInfoWriter::WriteObject(FileWriterInterface* file_writer) {
71 DCHECK_EQ(state(), kStateWritable); 72 DCHECK_EQ(state(), kStateWritable);
72 73
73 return file_writer->Write(&crashpad_info_, sizeof(crashpad_info_)); 74 return file_writer->Write(&crashpad_info_, sizeof(crashpad_info_));
74 } 75 }
75 76
76 MinidumpStreamType MinidumpCrashpadInfoWriter::StreamType() const { 77 MinidumpStreamType MinidumpCrashpadInfoWriter::StreamType() const {
77 return kMinidumpStreamTypeCrashpadInfo; 78 return kMinidumpStreamTypeCrashpadInfo;
78 } 79 }
79 80
80 } // namespace crashpad 81 } // namespace crashpad
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698