| Index: snapshot/win/module_snapshot_win.cc
|
| diff --git a/snapshot/win/module_snapshot_win.cc b/snapshot/win/module_snapshot_win.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c3f915f8b4b70185ee62048be52069a73574d250
|
| --- /dev/null
|
| +++ b/snapshot/win/module_snapshot_win.cc
|
| @@ -0,0 +1,136 @@
|
| +// Copyright 2015 The Crashpad Authors. All rights reserved.
|
| +//
|
| +// Licensed under the Apache License, Version 2.0 (the "License");
|
| +// you may not use this file except in compliance with the License.
|
| +// You may obtain a copy of the License at
|
| +//
|
| +// http://www.apache.org/licenses/LICENSE-2.0
|
| +//
|
| +// Unless required by applicable law or agreed to in writing, software
|
| +// distributed under the License is distributed on an "AS IS" BASIS,
|
| +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| +// See the License for the specific language governing permissions and
|
| +// limitations under the License.
|
| +
|
| +#include "snapshot/win/module_snapshot_win.h"
|
| +
|
| +#include "base/strings/utf_string_conversions.h"
|
| +#include "snapshot/win/pe_image_reader.h"
|
| +#include "util/misc/tri_state.h"
|
| +#include "util/misc/uuid.h"
|
| +
|
| +namespace crashpad {
|
| +namespace internal {
|
| +
|
| +ModuleSnapshotWin::ModuleSnapshotWin()
|
| + : ModuleSnapshot(),
|
| + name_(),
|
| + timestamp_(0),
|
| + process_reader_(nullptr),
|
| + initialized_() {
|
| +}
|
| +
|
| +ModuleSnapshotWin::~ModuleSnapshotWin() {
|
| +}
|
| +
|
| +bool ModuleSnapshotWin::Initialize(
|
| + ProcessReaderWin* process_reader,
|
| + const ProcessInfo::Module& process_reader_module) {
|
| + INITIALIZATION_STATE_SET_INITIALIZING(initialized_);
|
| +
|
| + process_reader_ = process_reader;
|
| + name_ = base::UTF16ToUTF8(process_reader_module.name);
|
| + timestamp_ = process_reader_module.timestamp;
|
| + pe_image_reader_.reset(new PEImageReader());
|
| + if (!pe_image_reader_->Initialize(process_reader_,
|
| + process_reader_module.dll_base,
|
| + process_reader_module.size,
|
| + name_)) {
|
| + return false;
|
| + }
|
| +
|
| + INITIALIZATION_STATE_SET_VALID(initialized_);
|
| + return true;
|
| +}
|
| +
|
| +void ModuleSnapshotWin::GetCrashpadOptions(CrashpadInfoClientOptions* options) {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| +
|
| + process_types::CrashpadInfo crashpad_info;
|
| + if (!pe_image_reader_->GetCrashpadInfo(&crashpad_info)) {
|
| + options->crashpad_handler_behavior = TriState::kUnset;
|
| + options->system_crash_reporter_forwarding = TriState::kUnset;
|
| + return;
|
| + }
|
| +
|
| + options->crashpad_handler_behavior =
|
| + CrashpadInfoClientOptions::TriStateFromCrashpadInfo(
|
| + crashpad_info.crashpad_handler_behavior);
|
| +
|
| + options->system_crash_reporter_forwarding =
|
| + CrashpadInfoClientOptions::TriStateFromCrashpadInfo(
|
| + crashpad_info.system_crash_reporter_forwarding);
|
| +}
|
| +
|
| +std::string ModuleSnapshotWin::Name() const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + return name_;
|
| +}
|
| +
|
| +uint64_t ModuleSnapshotWin::Address() const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + return pe_image_reader_->Address();
|
| +}
|
| +
|
| +uint64_t ModuleSnapshotWin::Size() const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + return pe_image_reader_->Size();
|
| +}
|
| +
|
| +time_t ModuleSnapshotWin::Timestamp() const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + return timestamp_;
|
| +}
|
| +
|
| +void ModuleSnapshotWin::FileVersion(uint16_t* version_0,
|
| + uint16_t* version_1,
|
| + uint16_t* version_2,
|
| + uint16_t* version_3) const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + CHECK(false) << "TODO(scottmg)";
|
| +}
|
| +
|
| +void ModuleSnapshotWin::SourceVersion(uint16_t* version_0,
|
| + uint16_t* version_1,
|
| + uint16_t* version_2,
|
| + uint16_t* version_3) const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + CHECK(false) << "TODO(scottmg)";
|
| +}
|
| +
|
| +ModuleSnapshot::ModuleType ModuleSnapshotWin::GetModuleType() const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + CHECK(false) << "TODO(scottmg)";
|
| + return ModuleSnapshot::ModuleType();
|
| +}
|
| +
|
| +void ModuleSnapshotWin::UUID(crashpad::UUID* uuid) const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + CHECK(false) << "TODO(scottmg)";
|
| +}
|
| +
|
| +std::vector<std::string> ModuleSnapshotWin::AnnotationsVector() const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + CHECK(false) << "TODO(scottmg)";
|
| + return std::vector<std::string>();
|
| +}
|
| +
|
| +std::map<std::string, std::string> ModuleSnapshotWin::AnnotationsSimpleMap()
|
| + const {
|
| + INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| + CHECK(false) << "TODO(scottmg)";
|
| + return std::map<std::string, std::string>();
|
| +}
|
| +
|
| +} // namespace internal
|
| +} // namespace crashpad
|
|
|