OLD | NEW |
(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 #ifndef CRASHPAD_SNAPSHOT_TEST_TEST_MEMORY_SNAPSHOT_H_ |
| 16 #define CRASHPAD_SNAPSHOT_TEST_TEST_MEMORY_SNAPSHOT_H_ |
| 17 |
| 18 #include <stdint.h> |
| 19 #include <sys/types.h> |
| 20 |
| 21 #include "base/basictypes.h" |
| 22 #include "snapshot/memory_snapshot.h" |
| 23 |
| 24 namespace crashpad { |
| 25 namespace test { |
| 26 |
| 27 //! \brief A test MemorySnapshot that can carry arbitrary data for testing |
| 28 //! purposes. |
| 29 class TestMemorySnapshot final : public MemorySnapshot { |
| 30 public: |
| 31 TestMemorySnapshot(); |
| 32 ~TestMemorySnapshot(); |
| 33 |
| 34 void SetAddress(uint64_t address) { address_ = address; } |
| 35 void SetSize(size_t size) { size_ = size; } |
| 36 |
| 37 //! \brief Sets the value to fill the test memory region with. |
| 38 //! |
| 39 //! \param[in] value The value to be written to \a delegate when Read() is |
| 40 //! called. This value will be repeated Size() times. |
| 41 void SetValue(char value) { value_ = value; } |
| 42 |
| 43 // MemorySnapshot: |
| 44 |
| 45 uint64_t Address() const override; |
| 46 size_t Size() const override; |
| 47 bool Read(Delegate* delegate) const override; |
| 48 |
| 49 private: |
| 50 uint64_t address_; |
| 51 size_t size_; |
| 52 char value_; |
| 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(TestMemorySnapshot); |
| 55 }; |
| 56 |
| 57 } // namespace test |
| 58 } // namespace crashpad |
| 59 |
| 60 #endif // CRASHPAD_SNAPSHOT_TEST_TEST_MEMORY_SNAPSHOT_H_ |
OLD | NEW |