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

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: Update for https://codereview.chromium.org/679443002/ Created 6 years, 1 month 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_(), 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::SetModuleList(
31 MinidumpSimpleStringDictionaryWriter* simple_annotations) { 32 MinidumpModuleCrashpadInfoListWriter* module_list) {
32 DCHECK_EQ(state(), kStateMutable); 33 DCHECK_EQ(state(), kStateMutable);
33 34
34 simple_annotations_ = simple_annotations; 35 module_list_ = 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 (module_list_) {
45 simple_annotations_->RegisterLocationDescriptor( 46 module_list_->RegisterLocationDescriptor(&crashpad_info_.module_list);
46 &crashpad_info_.simple_annotations);
47 } 47 }
48 48
49 return true; 49 return true;
50 } 50 }
51 51
52 size_t MinidumpCrashpadInfoWriter::SizeOfObject() { 52 size_t MinidumpCrashpadInfoWriter::SizeOfObject() {
53 DCHECK_GE(state(), kStateFrozen); 53 DCHECK_GE(state(), kStateFrozen);
54 54
55 return sizeof(crashpad_info_); 55 return sizeof(crashpad_info_);
56 } 56 }
57 57
58 std::vector<internal::MinidumpWritable*> 58 std::vector<internal::MinidumpWritable*>
59 MinidumpCrashpadInfoWriter::Children() { 59 MinidumpCrashpadInfoWriter::Children() {
60 DCHECK_GE(state(), kStateFrozen); 60 DCHECK_GE(state(), kStateFrozen);
61 61
62 std::vector<MinidumpWritable*> children; 62 std::vector<MinidumpWritable*> children;
63 if (simple_annotations_) { 63 if (module_list_) {
64 children.push_back(simple_annotations_); 64 children.push_back(module_list_);
65 } 65 }
66 66
67 return children; 67 return children;
68 } 68 }
69 69
70 bool MinidumpCrashpadInfoWriter::WriteObject(FileWriterInterface* file_writer) { 70 bool MinidumpCrashpadInfoWriter::WriteObject(FileWriterInterface* file_writer) {
71 DCHECK_EQ(state(), kStateWritable); 71 DCHECK_EQ(state(), kStateWritable);
72 72
73 return file_writer->Write(&crashpad_info_, sizeof(crashpad_info_)); 73 return file_writer->Write(&crashpad_info_, sizeof(crashpad_info_));
74 } 74 }
75 75
76 MinidumpStreamType MinidumpCrashpadInfoWriter::StreamType() const { 76 MinidumpStreamType MinidumpCrashpadInfoWriter::StreamType() const {
77 return kMinidumpStreamTypeCrashpadInfo; 77 return kMinidumpStreamTypeCrashpadInfo;
78 } 78 }
79 79
80 } // namespace crashpad 80 } // namespace crashpad
OLDNEW
« no previous file with comments | « minidump/minidump_crashpad_info_writer.h ('k') | minidump/minidump_crashpad_info_writer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698