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

Side by Side Diff: minidump/minidump_crashpad_info_writer.cc

Issue 654573003: Add MinidumpCrashpadInfoWriter and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Address review feedback 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
(Empty)
1 // Copyright 2014 The Crashpad Authors. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (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
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "minidump/minidump_crashpad_info_writer.h"
16
17 #include "base/logging.h"
18
19 namespace crashpad {
20
21 MinidumpCrashpadInfoWriter::MinidumpCrashpadInfoWriter()
22 : MinidumpStreamWriter(), crashpad_info_(), simple_annotations_() {
23 crashpad_info_.size = sizeof(crashpad_info_);
24 crashpad_info_.version = 1;
25 }
26
27 MinidumpCrashpadInfoWriter::~MinidumpCrashpadInfoWriter() {
28 }
29
30 void MinidumpCrashpadInfoWriter::SetSimpleAnnotations(
31 MinidumpSimpleStringDictionaryWriter* simple_annotations) {
32 DCHECK_EQ(state(), kStateMutable);
33
34 simple_annotations_ = simple_annotations;
35 }
36
37 bool MinidumpCrashpadInfoWriter::Freeze() {
38 DCHECK_EQ(state(), kStateMutable);
39
40 if (!MinidumpStreamWriter::Freeze()) {
41 return false;
42 }
43
44 if (simple_annotations_) {
45 simple_annotations_->RegisterLocationDescriptor(
46 &crashpad_info_.simple_annotations);
47 }
48
49 return true;
50 }
51
52 size_t MinidumpCrashpadInfoWriter::SizeOfObject() {
53 DCHECK_GE(state(), kStateFrozen);
54
55 return sizeof(crashpad_info_);
56 }
57
58 std::vector<internal::MinidumpWritable*>
59 MinidumpCrashpadInfoWriter::Children() {
60 DCHECK_GE(state(), kStateFrozen);
61
62 std::vector<MinidumpWritable*> children;
63 if (simple_annotations_) {
64 children.push_back(simple_annotations_);
65 }
66
67 return children;
68 }
69
70 bool MinidumpCrashpadInfoWriter::WriteObject(FileWriterInterface* file_writer) {
71 DCHECK_EQ(state(), kStateWritable);
72
73 return file_writer->Write(&crashpad_info_, sizeof(crashpad_info_));
74 }
75
76 MinidumpStreamType MinidumpCrashpadInfoWriter::StreamType() const {
77 return kMinidumpStreamTypeCrashpadInfo;
78 }
79
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