Bug 1876335 - use GRADLE_MAVEN_REPOSITORIES in more places. r=owlish,geckoview-review...
[gecko.git] / gfx / 2d / NativeFontResourceMac.cpp
blob448db7672603f21c27240da314b23d5de7727e84
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include <unordered_map>
8 #include <unordered_set>
9 #include "NativeFontResourceMac.h"
10 #include "UnscaledFontMac.h"
11 #include "Types.h"
13 #include "mozilla/RefPtr.h"
14 #include "mozilla/DataMutex.h"
16 #ifdef MOZ_WIDGET_UIKIT
17 # include <CoreFoundation/CoreFoundation.h>
18 #endif
20 #include "nsIMemoryReporter.h"
22 namespace mozilla {
23 namespace gfx {
25 #define FONT_NAME_MAX 32
26 static StaticDataMutex<std::unordered_map<void*, nsAutoCStringN<FONT_NAME_MAX>>>
27 sWeakFontDataMap("WeakFonts");
29 void FontDataDeallocate(void*, void* info) {
30 auto fontMap = sWeakFontDataMap.Lock();
31 fontMap->erase(info);
32 free(info);
35 class NativeFontResourceMacReporter final : public nsIMemoryReporter {
36 ~NativeFontResourceMacReporter() = default;
38 MOZ_DEFINE_MALLOC_SIZE_OF(MallocSizeOf)
39 public:
40 NS_DECL_ISUPPORTS
42 NS_IMETHOD CollectReports(nsIHandleReportCallback* aHandleReport,
43 nsISupports* aData, bool aAnonymize) override {
44 auto fontMap = sWeakFontDataMap.Lock();
46 nsAutoCString path("explicit/gfx/native-font-resource-mac/font(");
48 unsigned int unknownFontIndex = 0;
49 for (auto& i : *fontMap) {
50 nsAutoCString subPath(path);
52 if (aAnonymize) {
53 subPath.AppendPrintf("<anonymized-%p>", this);
54 } else {
55 if (i.second.Length()) {
56 subPath.AppendLiteral("psname=");
57 subPath.Append(i.second);
58 } else {
59 subPath.AppendPrintf("Unknown(%d)", unknownFontIndex);
63 size_t bytes = MallocSizeOf(i.first) + FONT_NAME_MAX;
65 subPath.Append(")");
67 aHandleReport->Callback(""_ns, subPath, KIND_HEAP, UNITS_BYTES, bytes,
68 "Memory used by this native font."_ns, aData);
70 unknownFontIndex++;
72 return NS_OK;
76 NS_IMPL_ISUPPORTS(NativeFontResourceMacReporter, nsIMemoryReporter)
78 void NativeFontResourceMac::RegisterMemoryReporter() {
79 RegisterStrongMemoryReporter(new NativeFontResourceMacReporter);
82 /* static */
83 already_AddRefed<NativeFontResourceMac> NativeFontResourceMac::Create(
84 uint8_t* aFontData, uint32_t aDataLength) {
85 uint8_t* fontData = (uint8_t*)malloc(aDataLength);
86 if (!fontData) {
87 return nullptr;
89 memcpy(fontData, aFontData, aDataLength);
90 CFAllocatorContext context = {0, fontData, nullptr, nullptr,
91 nullptr, nullptr, nullptr, FontDataDeallocate,
92 nullptr};
93 CFAllocatorRef allocator = CFAllocatorCreate(kCFAllocatorDefault, &context);
95 // We create a CFDataRef here that we'l hold until we've determined that we
96 // have a valid font. If and only if we can create a font from the data,
97 // we'll store the font data in our map. Whether or not the font is valid,
98 // we'll later release this CFDataRef.
99 CFDataRef data = CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, fontData,
100 aDataLength, allocator);
101 if (!data) {
102 free(fontData);
103 return nullptr;
106 CTFontDescriptorRef ctFontDesc =
107 CTFontManagerCreateFontDescriptorFromData(data);
108 if (!ctFontDesc) {
109 CFRelease(data);
110 return nullptr;
113 // creating the CGFontRef via the CTFont avoids the data being held alive
114 // in a cache.
115 CTFontRef ctFont = CTFontCreateWithFontDescriptor(ctFontDesc, 0, NULL);
117 // Creating the CGFont from the CTFont prevents the font data from being
118 // held in the TDescriptorSource cache. This appears to be true even
119 // if we later create a CTFont from the CGFont.
120 CGFontRef fontRef = CTFontCopyGraphicsFont(ctFont, NULL);
121 CFRelease(ctFont);
123 if (!fontRef) {
124 // Not a valid font; release the structures we've been holding.
125 CFRelease(data);
126 CFRelease(ctFontDesc);
127 return nullptr;
130 // Determine the font name and store it with the font data in the map.
131 nsAutoCStringN<FONT_NAME_MAX> fontName;
133 CFStringRef psname = CGFontCopyPostScriptName(fontRef);
134 if (psname) {
135 const char* cstr = CFStringGetCStringPtr(psname, kCFStringEncodingUTF8);
136 if (cstr) {
137 fontName.Assign(cstr);
138 } else {
139 char buf[FONT_NAME_MAX];
140 if (CFStringGetCString(psname, buf, FONT_NAME_MAX,
141 kCFStringEncodingUTF8)) {
142 fontName.Assign(buf);
145 CFRelease(psname);
149 auto fontMap = sWeakFontDataMap.Lock();
150 void* key = (void*)fontData;
151 fontMap->insert({key, fontName});
153 // It's now safe to release our CFDataRef.
154 CFRelease(data);
156 // passes ownership of fontRef to the NativeFontResourceMac instance
157 RefPtr<NativeFontResourceMac> fontResource =
158 new NativeFontResourceMac(ctFontDesc, fontRef, aDataLength);
160 return fontResource.forget();
163 already_AddRefed<UnscaledFont> NativeFontResourceMac::CreateUnscaledFont(
164 uint32_t aIndex, const uint8_t* aInstanceData,
165 uint32_t aInstanceDataLength) {
166 RefPtr<UnscaledFont> unscaledFont =
167 new UnscaledFontMac(mFontDescRef, mFontRef, true);
169 return unscaledFont.forget();
172 } // namespace gfx
173 } // namespace mozilla