blob: c44305ff234ff7944c125996ac8af21f115aa3f6 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_IMPL_NAME_TRAITS_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_IMPL_NAME_TRAITS_H_
#include <cstring>
#include "build/build_config.h"
#include "third_party/blink/renderer/platform/bindings/name_client.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/type_traits.h"
namespace blink {
struct HeapObjectName {
const char* value;
bool name_is_hidden;
};
using NameCallback = HeapObjectName (*)(const void*);
template <typename T>
class NameTrait {
STATIC_ONLY(NameTrait);
public:
static HeapObjectName GetName(const void* obj) {
return GetNameFor(static_cast<const T*>(obj));
}
private:
static HeapObjectName GetNameFor(const NameClient* wrapper_tracable) {
return {wrapper_tracable->NameInHeapSnapshot(), false};
}
static HeapObjectName GetNameFor(...) {
if (NameClient::HideInternalName())
return {"InternalNode", true};
DCHECK(!NameClient::HideInternalName());
static const char* leaky_class_name = nullptr;
if (leaky_class_name)
return {leaky_class_name, false};
// Parsing string of structure:
// const char *WTF::GetStringWithTypeName<TYPE>() [T = TYPE]
// Note that this only works on clang or GCC builds.
const std::string raw(WTF::GetStringWithTypeName<T>());
const auto start_pos = raw.rfind("T = ") + 4;
DCHECK(std::string::npos != start_pos);
const auto len = raw.length() - start_pos - 1;
const std::string name = raw.substr(start_pos, len).c_str();
leaky_class_name = strcpy(new char[name.length() + 1], name.c_str());
return {leaky_class_name, false};
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_HEAP_IMPL_NAME_TRAITS_H_