mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 15:32:10 +08:00
1aa478d161
This change was partially scripted and partially done manually with vim regex + manually placing the deleted constructors. The script change looked for destructors in the public: section of a class, if that existed the deleted constructors would go before the destructor. For manual placement I looked for any constructor in the public: section of the corresponding class. If there wasn't one, then it would ideally have gone as the first entry except below enums, classes and typedefs. This may not have been perfect, but is hopefully good enough. Fingers crossed. #include "base/macros.h" is removed from files that don't use ignore_result, which is the only other thing defined in base/macros.h. Bug: chromium:1010217 Change-Id: I099526255a40b1ac1264904b4ece2f3f503c9418 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3171034 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Peter Boström <pbos@chromium.org>
139 lines
4.8 KiB
C++
139 lines
4.8 KiB
C++
// Copyright 2014 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.
|
|
|
|
#ifndef CRASHPAD_SNAPSHOT_TEST_TEST_MODULE_SNAPSHOT_H_
|
|
#define CRASHPAD_SNAPSHOT_TEST_TEST_MODULE_SNAPSHOT_H_
|
|
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "snapshot/module_snapshot.h"
|
|
|
|
namespace crashpad {
|
|
namespace test {
|
|
|
|
//! \brief A test ModuleSnapshot that can carry arbitrary data for testing
|
|
//! purposes.
|
|
class TestModuleSnapshot final : public ModuleSnapshot {
|
|
public:
|
|
TestModuleSnapshot();
|
|
|
|
TestModuleSnapshot(const TestModuleSnapshot&) = delete;
|
|
TestModuleSnapshot& operator=(const TestModuleSnapshot&) = delete;
|
|
|
|
~TestModuleSnapshot() override;
|
|
|
|
void SetName(const std::string& name) { name_ = name; }
|
|
void SetAddressAndSize(uint64_t address, uint64_t size) {
|
|
address_ = address;
|
|
size_ = size;
|
|
}
|
|
void SetTimestamp(time_t timestamp) { timestamp_ = timestamp; }
|
|
void SetFileVersion(uint16_t file_version_0,
|
|
uint16_t file_version_1,
|
|
uint16_t file_version_2,
|
|
uint16_t file_version_3) {
|
|
file_version_[0] = file_version_0;
|
|
file_version_[1] = file_version_1;
|
|
file_version_[2] = file_version_2;
|
|
file_version_[3] = file_version_3;
|
|
}
|
|
void SetSourceVersion(uint16_t source_version_0,
|
|
uint16_t source_version_1,
|
|
uint16_t source_version_2,
|
|
uint16_t source_version_3) {
|
|
source_version_[0] = source_version_0;
|
|
source_version_[1] = source_version_1;
|
|
source_version_[2] = source_version_2;
|
|
source_version_[3] = source_version_3;
|
|
}
|
|
void SetModuleType(ModuleType module_type) { module_type_ = module_type; }
|
|
void SetUUIDAndAge(const crashpad::UUID& uuid, uint32_t age) {
|
|
uuid_ = uuid;
|
|
age_ = age;
|
|
}
|
|
void SetBuildID(const std::vector<uint8_t>& build_id) {
|
|
build_id_ = build_id;
|
|
}
|
|
void SetDebugFileName(const std::string& debug_file_name) {
|
|
debug_file_name_ = debug_file_name;
|
|
}
|
|
void SetAnnotationsVector(
|
|
const std::vector<std::string>& annotations_vector) {
|
|
annotations_vector_ = annotations_vector;
|
|
}
|
|
void SetAnnotationsSimpleMap(
|
|
const std::map<std::string, std::string>& annotations_simple_map) {
|
|
annotations_simple_map_ = annotations_simple_map;
|
|
}
|
|
void SetAnnotationObjects(
|
|
const std::vector<AnnotationSnapshot>& annotations) {
|
|
annotation_objects_ = annotations;
|
|
}
|
|
void SetExtraMemoryRanges(
|
|
const std::set<CheckedRange<uint64_t>>& extra_memory_ranges) {
|
|
extra_memory_ranges_ = extra_memory_ranges;
|
|
}
|
|
|
|
// ModuleSnapshot:
|
|
|
|
std::string Name() const override;
|
|
uint64_t Address() const override;
|
|
uint64_t Size() const override;
|
|
time_t Timestamp() const override;
|
|
void FileVersion(uint16_t* version_0,
|
|
uint16_t* version_1,
|
|
uint16_t* version_2,
|
|
uint16_t* version_3) const override;
|
|
void SourceVersion(uint16_t* version_0,
|
|
uint16_t* version_1,
|
|
uint16_t* version_2,
|
|
uint16_t* version_3) const override;
|
|
ModuleType GetModuleType() const override;
|
|
void UUIDAndAge(crashpad::UUID* uuid, uint32_t* age) const override;
|
|
std::string DebugFileName() const override;
|
|
std::vector<uint8_t> BuildID() const override;
|
|
std::vector<std::string> AnnotationsVector() const override;
|
|
std::map<std::string, std::string> AnnotationsSimpleMap() const override;
|
|
std::vector<AnnotationSnapshot> AnnotationObjects() const override;
|
|
std::set<CheckedRange<uint64_t>> ExtraMemoryRanges() const override;
|
|
std::vector<const UserMinidumpStream*> CustomMinidumpStreams() const override;
|
|
|
|
private:
|
|
std::string name_;
|
|
uint64_t address_;
|
|
uint64_t size_;
|
|
time_t timestamp_;
|
|
uint16_t file_version_[4];
|
|
uint16_t source_version_[4];
|
|
ModuleType module_type_;
|
|
uint32_t age_;
|
|
crashpad::UUID uuid_;
|
|
std::vector<uint8_t> build_id_;
|
|
std::string debug_file_name_;
|
|
std::vector<std::string> annotations_vector_;
|
|
std::map<std::string, std::string> annotations_simple_map_;
|
|
std::vector<AnnotationSnapshot> annotation_objects_;
|
|
std::set<CheckedRange<uint64_t>> extra_memory_ranges_;
|
|
};
|
|
|
|
} // namespace test
|
|
} // namespace crashpad
|
|
|
|
#endif // CRASHPAD_SNAPSHOT_TEST_TEST_MODULE_SNAPSHOT_H_
|