pdfium/core/fxge/apple/capple_platform.cpp
Tom Sepez bedff876b8 Convert CFX_GEModule::user_font_paths_ to pdfium::span.
Replace a number of UNSAFE_TODO() with a single one at the API
boundary.

Change-Id: Ica433bf356d98ab0bb629d4bfe7856e1a9786ff2
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/151451
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
2026-07-13 14:15:25 -07:00

173 lines
5.0 KiB
C++

// Copyright 2014 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "core/fxge/apple/capple_platform.h"
#include <memory>
#include <utility>
#include "core/fxcrt/fx_codepage.h"
#include "core/fxge/cfx_folderfontinfo.h"
#include "core/fxge/cfx_fontmgr.h"
#include "core/fxge/fx_font.h"
#include "core/fxge/systemfontinfo_iface.h"
namespace {
struct Substs {
const char* name_;
const char* subst_name_;
};
constexpr Substs kBase14Substs[] = {
{"Courier", "Courier New"},
{"Courier-Bold", "Courier New Bold"},
{"Courier-BoldOblique", "Courier New Bold Italic"},
{"Courier-Oblique", "Courier New Italic"},
{"Helvetica", "Arial"},
{"Helvetica-Bold", "Arial Bold"},
{"Helvetica-BoldOblique", "Arial Bold Italic"},
{"Helvetica-Oblique", "Arial Italic"},
{"Times-Roman", "Times New Roman"},
{"Times-Bold", "Times New Roman Bold"},
{"Times-BoldItalic", "Times New Roman Bold Italic"},
{"Times-Italic", "Times New Roman Italic"},
};
class CFX_MacFontInfo final : public CFX_FolderFontInfo {
public:
CFX_MacFontInfo() = default;
~CFX_MacFontInfo() override = default;
// CFX_FolderFontInfo
void* MapFont(CFX_FontMapper* mapper,
int weight,
bool bItalic,
FX_Charset charset,
int pitch_family,
const ByteString& face) override;
};
constexpr char kJapanGothic[] = "Hiragino Kaku Gothic Pro W6";
constexpr char kJapanMincho[] = "Hiragino Mincho Pro W6";
ByteString GetJapanesePreference(const ByteString& face,
int weight,
int pitch_family) {
if (face.Contains("Gothic")) {
return kJapanGothic;
}
if (FontFamilyIsRoman(pitch_family) || weight <= 400) {
return kJapanMincho;
}
return kJapanGothic;
}
void* CFX_MacFontInfo::MapFont(CFX_FontMapper* mapper,
int weight,
bool bItalic,
FX_Charset charset,
int pitch_family,
const ByteString& face) {
for (const auto& sub : kBase14Substs) {
if (face == ByteStringView(sub.name_)) {
return GetFont(sub.subst_name_);
}
}
// The request may not ask for the bold and/or italic version of a font by
// name. So try to construct the appropriate name. This is not 100% foolproof
// as there are fonts that have "Oblique" or "BoldOblique" or "Heavy" in their
// names instead. But this at least works for common fonts like Arial and
// Times New Roman. A more sophisticated approach would be to find all the
// fonts in |font_list_| with |face| in the name, and examine the fonts to
// see which best matches the requested characteristics.
if (!face.Contains("Bold") && !face.Contains("Italic")) {
ByteString new_face = face;
if (weight > 400) {
new_face += " Bold";
}
if (bItalic) {
new_face += " Italic";
}
auto it = font_list_.find(new_face);
if (it != font_list_.end()) {
return it->second.get();
}
}
auto it = font_list_.find(face);
if (it != font_list_.end()) {
return it->second.get();
}
if (charset == FX_Charset::kANSI && FontFamilyIsFixedPitch(pitch_family)) {
return GetFont("Courier New");
}
if (charset == FX_Charset::kANSI || charset == FX_Charset::kSymbol) {
return nullptr;
}
ByteString other_face;
switch (charset) {
case FX_Charset::kShiftJIS:
other_face = GetJapanesePreference(face, weight, pitch_family);
break;
case FX_Charset::kChineseSimplified:
other_face = "STSong";
break;
case FX_Charset::kHangul:
other_face = "AppleMyungjo";
break;
case FX_Charset::kChineseTraditional:
other_face = "LiSong Pro Light";
break;
default:
other_face = face;
break;
}
it = font_list_.find(other_face);
return it != font_list_.end() ? it->second.get() : nullptr;
}
} // namespace
CApplePlatform::CApplePlatform() = default;
CApplePlatform::~CApplePlatform() = default;
void CApplePlatform::Init() {}
void CApplePlatform::Terminate() {}
std::unique_ptr<SystemFontInfoIface>
CApplePlatform::CreateDefaultSystemFontInfo() {
auto pInfo = std::make_unique<CFX_MacFontInfo>();
auto user_paths = CFX_GEModule::Get()->GetUserFontPaths();
if (user_paths.has_value()) {
for (const char* path : user_paths.value()) {
pInfo->AddPath(path);
}
} else {
pInfo->AddPath("~/Library/Fonts");
pInfo->AddPath("/Library/Fonts");
pInfo->AddPath("/System/Library/Fonts");
}
return pInfo;
}
void* CApplePlatform::CreatePlatformFont(
pdfium::span<const uint8_t> font_span) {
return quartz_2d_.CreateFont(font_span);
}
// static
std::unique_ptr<CFX_GEModule::PlatformIface>
CFX_GEModule::PlatformIface::Create() {
return std::make_unique<CApplePlatform>();
}