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

Unified Diff: third_party/crashpad/crashpad/minidump/test/minidump_string_writer_test_util.cc

Issue 1505213004: Copy Crashpad into the Chrome tree instead of importing it via DEPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments, update README.chromium Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/minidump/test/minidump_string_writer_test_util.cc
diff --git a/third_party/crashpad/crashpad/minidump/test/minidump_string_writer_test_util.cc b/third_party/crashpad/crashpad/minidump/test/minidump_string_writer_test_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6f5ff6b991ae43a6a9c6770d08be1f626dcec678
--- /dev/null
+++ b/third_party/crashpad/crashpad/minidump/test/minidump_string_writer_test_util.cc
@@ -0,0 +1,105 @@
+// 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.
+
+#include "minidump/test/minidump_string_writer_test_util.h"
+
+#include "gtest/gtest.h"
+#include "minidump/minidump_extensions.h"
+#include "minidump/test/minidump_writable_test_util.h"
+
+namespace crashpad {
+namespace test {
+
+namespace {
+
+template <typename T>
+const T* TMinidumpStringAtRVA(const std::string& file_contents, RVA rva) {
+ const T* string_base = MinidumpWritableAtRVA<T>(file_contents, rva);
+ if (!string_base) {
+ return nullptr;
+ }
+
+ // |Length| must indicate the ability to store an integral number of code
+ // units.
+ const size_t kCodeUnitSize = sizeof(string_base->Buffer[0]);
+ if (string_base->Length % kCodeUnitSize != 0) {
+ EXPECT_EQ(0u, string_base->Length % kCodeUnitSize);
+ return nullptr;
+ }
+
+ // |Length| does not include space for the required NUL terminator.
+ MINIDUMP_LOCATION_DESCRIPTOR location;
+ location.DataSize =
+ sizeof(*string_base) + string_base->Length + kCodeUnitSize;
+ location.Rva = rva;
+ const T* string =
+ MinidumpWritableAtLocationDescriptor<T>(file_contents, location);
+ if (!string) {
+ return nullptr;
+ }
+
+ EXPECT_EQ(string_base, string);
+
+ // Require the NUL terminator to be NUL.
+ if (string->Buffer[string->Length / kCodeUnitSize] != '\0') {
+ EXPECT_EQ('\0', string->Buffer[string->Length / kCodeUnitSize]);
+ return nullptr;
+ }
+
+ return string;
+}
+
+template <typename StringType, typename MinidumpStringType>
+StringType TMinidumpStringAtRVAAsString(const std::string& file_contents,
+ RVA rva) {
+ const MinidumpStringType* minidump_string =
+ TMinidumpStringAtRVA<MinidumpStringType>(file_contents, rva);
+ if (!minidump_string) {
+ return StringType();
+ }
+
+ StringType minidump_string_data(
+ reinterpret_cast<const typename StringType::value_type*>(
+ &minidump_string->Buffer[0]),
+ minidump_string->Length / sizeof(minidump_string->Buffer[0]));
+ return minidump_string_data;
+}
+
+} // namespace
+
+const MINIDUMP_STRING* MinidumpStringAtRVA(const std::string& file_contents,
+ RVA rva) {
+ return TMinidumpStringAtRVA<MINIDUMP_STRING>(file_contents, rva);
+}
+
+const MinidumpUTF8String* MinidumpUTF8StringAtRVA(
+ const std::string& file_contents,
+ RVA rva) {
+ return TMinidumpStringAtRVA<MinidumpUTF8String>(file_contents, rva);
+}
+
+base::string16 MinidumpStringAtRVAAsString(const std::string& file_contents,
+ RVA rva) {
+ return TMinidumpStringAtRVAAsString<base::string16, MINIDUMP_STRING>(
+ file_contents, rva);
+}
+
+std::string MinidumpUTF8StringAtRVAAsString(const std::string& file_contents,
+ RVA rva) {
+ return TMinidumpStringAtRVAAsString<std::string, MinidumpUTF8String>(
+ file_contents, rva);
+}
+
+} // namespace test
+} // namespace crashpad

Powered by Google App Engine
This is Rietveld 408576698