2012-07-24 21:52:32 +02:00
|
|
|
|
/*
|
2013-08-12 06:33:28 +02:00
|
|
|
|
* Copyright © 2012,2013 Mozilla Foundation.
|
|
|
|
|
* Copyright © 2012,2013 Google, Inc.
|
2012-07-24 21:52:32 +02:00
|
|
|
|
*
|
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
|
* all copies of this software.
|
|
|
|
|
*
|
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
|
* DAMAGE.
|
|
|
|
|
*
|
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
|
*
|
|
|
|
|
* Mozilla Author(s): Jonathan Kew
|
2012-07-30 23:48:04 +02:00
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
2012-07-24 21:52:32 +02:00
|
|
|
|
*/
|
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
|
#include "hb.hh"
|
2019-06-18 07:41:49 +02:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CORETEXT
|
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
|
#include "hb-shaper-impl.hh"
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
|
|
|
|
#include "hb-coretext.h"
|
2018-10-14 00:37:14 +02:00
|
|
|
|
#include "hb-aat-layout.hh"
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2018-10-27 13:40:43 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SECTION:hb-coretext
|
|
|
|
|
* @title: hb-coretext
|
|
|
|
|
* @short_description: CoreText integration
|
|
|
|
|
* @include: hb-coretext.h
|
|
|
|
|
*
|
|
|
|
|
* Functions for using HarfBuzz with the CoreText fonts.
|
|
|
|
|
**/
|
|
|
|
|
|
2017-10-11 15:29:53 +02:00
|
|
|
|
/* https://developer.apple.com/documentation/coretext/1508745-ctfontcreatewithgraphicsfont */
|
2017-10-13 10:30:19 +02:00
|
|
|
|
#define HB_CORETEXT_DEFAULT_FONT_SIZE 12.f
|
2017-10-13 10:21:07 +02:00
|
|
|
|
|
2014-03-15 03:55:46 +01:00
|
|
|
|
static void
|
|
|
|
|
release_table_data (void *user_data)
|
|
|
|
|
{
|
|
|
|
|
CFDataRef cf_data = reinterpret_cast<CFDataRef> (user_data);
|
|
|
|
|
CFRelease(cf_data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static hb_blob_t *
|
2019-07-05 16:16:41 +02:00
|
|
|
|
_hb_cg_reference_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
|
2014-03-15 03:55:46 +01:00
|
|
|
|
{
|
|
|
|
|
CGFontRef cg_font = reinterpret_cast<CGFontRef> (user_data);
|
|
|
|
|
CFDataRef cf_data = CGFontCopyTableForTag (cg_font, tag);
|
|
|
|
|
if (unlikely (!cf_data))
|
2017-10-15 12:11:08 +02:00
|
|
|
|
return nullptr;
|
2014-03-15 03:55:46 +01:00
|
|
|
|
|
|
|
|
|
const char *data = reinterpret_cast<const char*> (CFDataGetBytePtr (cf_data));
|
|
|
|
|
const size_t length = CFDataGetLength (cf_data);
|
|
|
|
|
if (!data || !length)
|
2018-01-31 14:24:27 +01:00
|
|
|
|
{
|
|
|
|
|
CFRelease (cf_data);
|
2017-10-15 12:11:08 +02:00
|
|
|
|
return nullptr;
|
2018-01-31 14:24:27 +01:00
|
|
|
|
}
|
2014-03-15 03:55:46 +01:00
|
|
|
|
|
|
|
|
|
return hb_blob_create (data, length, HB_MEMORY_MODE_READONLY,
|
|
|
|
|
reinterpret_cast<void *> (const_cast<__CFData *> (cf_data)),
|
|
|
|
|
release_table_data);
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-11 15:51:31 +02:00
|
|
|
|
static void
|
|
|
|
|
_hb_cg_font_release (void *data)
|
|
|
|
|
{
|
|
|
|
|
CGFontRelease ((CGFontRef) data);
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-15 03:55:46 +01:00
|
|
|
|
|
2016-02-22 07:42:53 +01:00
|
|
|
|
static CTFontDescriptorRef
|
2018-12-17 19:01:01 +01:00
|
|
|
|
get_last_resort_font_desc ()
|
2016-02-22 07:42:53 +01:00
|
|
|
|
{
|
|
|
|
|
// TODO Handle allocation failures?
|
|
|
|
|
CTFontDescriptorRef last_resort = CTFontDescriptorCreateWithNameAndSize (CFSTR("LastResort"), 0);
|
|
|
|
|
CFArrayRef cascade_list = CFArrayCreate (kCFAllocatorDefault,
|
|
|
|
|
(const void **) &last_resort,
|
|
|
|
|
1,
|
|
|
|
|
&kCFTypeArrayCallBacks);
|
|
|
|
|
CFRelease (last_resort);
|
|
|
|
|
CFDictionaryRef attributes = CFDictionaryCreate (kCFAllocatorDefault,
|
|
|
|
|
(const void **) &kCTFontCascadeListAttribute,
|
|
|
|
|
(const void **) &cascade_list,
|
|
|
|
|
1,
|
|
|
|
|
&kCFTypeDictionaryKeyCallBacks,
|
|
|
|
|
&kCFTypeDictionaryValueCallBacks);
|
|
|
|
|
CFRelease (cascade_list);
|
|
|
|
|
|
|
|
|
|
CTFontDescriptorRef font_desc = CTFontDescriptorCreateWithAttributes (attributes);
|
|
|
|
|
CFRelease (attributes);
|
|
|
|
|
return font_desc;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-22 07:50:12 +01:00
|
|
|
|
static void
|
|
|
|
|
release_data (void *info, const void *data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
assert (hb_blob_get_length ((hb_blob_t *) info) == size &&
|
2019-08-24 15:27:14 +02:00
|
|
|
|
hb_blob_get_data ((hb_blob_t *) info, nullptr) == data);
|
2016-02-22 07:50:12 +01:00
|
|
|
|
|
|
|
|
|
hb_blob_destroy ((hb_blob_t *) info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static CGFontRef
|
|
|
|
|
create_cg_font (hb_face_t *face)
|
|
|
|
|
{
|
2017-10-15 12:11:08 +02:00
|
|
|
|
CGFontRef cg_font = nullptr;
|
2017-10-11 15:51:31 +02:00
|
|
|
|
if (face->destroy == _hb_cg_font_release)
|
2016-02-22 07:50:12 +01:00
|
|
|
|
{
|
|
|
|
|
cg_font = CGFontRetain ((CGFontRef) face->user_data);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
hb_blob_t *blob = hb_face_reference_blob (face);
|
|
|
|
|
unsigned int blob_length;
|
|
|
|
|
const char *blob_data = hb_blob_get_data (blob, &blob_length);
|
|
|
|
|
if (unlikely (!blob_length))
|
|
|
|
|
DEBUG_MSG (CORETEXT, face, "Face has empty blob");
|
|
|
|
|
|
|
|
|
|
CGDataProviderRef provider = CGDataProviderCreateWithData (blob, blob_data, blob_length, &release_data);
|
|
|
|
|
if (likely (provider))
|
|
|
|
|
{
|
|
|
|
|
cg_font = CGFontCreateWithDataProvider (provider);
|
|
|
|
|
if (unlikely (!cg_font))
|
|
|
|
|
DEBUG_MSG (CORETEXT, face, "Face CGFontCreateWithDataProvider() failed");
|
|
|
|
|
CGDataProviderRelease (provider);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return cg_font;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-22 07:28:37 +01:00
|
|
|
|
static CTFontRef
|
|
|
|
|
create_ct_font (CGFontRef cg_font, CGFloat font_size)
|
|
|
|
|
{
|
2017-10-15 12:11:08 +02:00
|
|
|
|
CTFontRef ct_font = nullptr;
|
2017-10-12 11:49:37 +02:00
|
|
|
|
|
|
|
|
|
/* CoreText does not enable trak table usage / tracking when creating a CTFont
|
|
|
|
|
* using CTFontCreateWithGraphicsFont. The only way of enabling tracking seems
|
|
|
|
|
* to be through the CTFontCreateUIFontForLanguage call. */
|
|
|
|
|
CFStringRef cg_postscript_name = CGFontCopyPostScriptName (cg_font);
|
|
|
|
|
if (CFStringHasPrefix (cg_postscript_name, CFSTR (".SFNSText")) ||
|
|
|
|
|
CFStringHasPrefix (cg_postscript_name, CFSTR (".SFNSDisplay")))
|
|
|
|
|
{
|
2019-02-11 08:46:05 +01:00
|
|
|
|
#if !(defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) && MAC_OS_X_VERSION_MIN_REQUIRED < 1080
|
2018-04-06 00:03:36 +02:00
|
|
|
|
# define kCTFontUIFontSystem kCTFontSystemFontType
|
|
|
|
|
# define kCTFontUIFontEmphasizedSystem kCTFontEmphasizedSystemFontType
|
|
|
|
|
#endif
|
2017-10-12 11:49:37 +02:00
|
|
|
|
CTFontUIFontType font_type = kCTFontUIFontSystem;
|
|
|
|
|
if (CFStringHasSuffix (cg_postscript_name, CFSTR ("-Bold")))
|
|
|
|
|
font_type = kCTFontUIFontEmphasizedSystem;
|
|
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
|
ct_font = CTFontCreateUIFontForLanguage (font_type, font_size, nullptr);
|
2017-10-12 11:49:37 +02:00
|
|
|
|
CFStringRef ct_result_name = CTFontCopyPostScriptName(ct_font);
|
|
|
|
|
if (CFStringCompare (ct_result_name, cg_postscript_name, 0) != kCFCompareEqualTo)
|
|
|
|
|
{
|
|
|
|
|
CFRelease(ct_font);
|
2017-10-15 12:11:08 +02:00
|
|
|
|
ct_font = nullptr;
|
2017-10-12 11:49:37 +02:00
|
|
|
|
}
|
|
|
|
|
CFRelease (ct_result_name);
|
|
|
|
|
}
|
|
|
|
|
CFRelease (cg_postscript_name);
|
|
|
|
|
|
|
|
|
|
if (!ct_font)
|
2017-10-15 12:11:08 +02:00
|
|
|
|
ct_font = CTFontCreateWithGraphicsFont (cg_font, font_size, nullptr, nullptr);
|
2017-10-12 11:49:37 +02:00
|
|
|
|
|
2016-02-22 07:28:37 +01:00
|
|
|
|
if (unlikely (!ct_font)) {
|
|
|
|
|
DEBUG_MSG (CORETEXT, cg_font, "Font CTFontCreateWithGraphicsFont() failed");
|
2017-10-15 12:11:08 +02:00
|
|
|
|
return nullptr;
|
2016-02-22 07:28:37 +01:00
|
|
|
|
}
|
2016-07-23 02:41:43 +02:00
|
|
|
|
|
|
|
|
|
/* crbug.com/576941 and crbug.com/625902 and the investigation in the latter
|
|
|
|
|
* bug indicate that the cascade list reconfiguration occasionally causes
|
|
|
|
|
* crashes in CoreText on OS X 10.9, thus let's skip this step on older
|
2016-09-07 22:56:57 +02:00
|
|
|
|
* operating system versions. Except for the emoji font, where _not_
|
|
|
|
|
* reconfiguring the cascade list causes CoreText crashes. For details, see
|
|
|
|
|
* crbug.com/549610 */
|
2016-09-09 20:58:28 +02:00
|
|
|
|
// 0x00070000 stands for "kCTVersionNumber10_10", see CoreText.h
|
2021-02-17 19:31:32 +01:00
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
2017-10-15 12:11:08 +02:00
|
|
|
|
if (&CTGetCoreTextVersion != nullptr && CTGetCoreTextVersion() < 0x00070000) {
|
2021-02-17 19:31:32 +01:00
|
|
|
|
#pragma GCC diagnostic pop
|
2016-09-07 22:56:57 +02:00
|
|
|
|
CFStringRef fontName = CTFontCopyPostScriptName (ct_font);
|
|
|
|
|
bool isEmojiFont = CFStringCompare (fontName, CFSTR("AppleColorEmoji"), 0) == kCFCompareEqualTo;
|
|
|
|
|
CFRelease (fontName);
|
|
|
|
|
if (!isEmojiFont)
|
|
|
|
|
return ct_font;
|
|
|
|
|
}
|
2016-07-23 02:41:43 +02:00
|
|
|
|
|
2018-04-23 16:07:35 +02:00
|
|
|
|
CFURLRef original_url = nullptr;
|
2019-02-11 08:46:05 +01:00
|
|
|
|
#if !(defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) && MAC_OS_X_VERSION_MIN_REQUIRED < 1060
|
2018-04-06 00:03:36 +02:00
|
|
|
|
ATSFontRef atsFont;
|
|
|
|
|
FSRef fsref;
|
|
|
|
|
OSStatus status;
|
|
|
|
|
atsFont = CTFontGetPlatformFont (ct_font, NULL);
|
|
|
|
|
status = ATSFontGetFileReference (atsFont, &fsref);
|
|
|
|
|
if (status == noErr)
|
|
|
|
|
original_url = CFURLCreateFromFSRef (NULL, &fsref);
|
|
|
|
|
#else
|
|
|
|
|
original_url = (CFURLRef) CTFontCopyAttribute (ct_font, kCTFontURLAttribute);
|
|
|
|
|
#endif
|
2016-02-22 07:28:37 +01:00
|
|
|
|
|
|
|
|
|
/* Create font copy with cascade list that has LastResort first; this speeds up CoreText
|
|
|
|
|
* font fallback which we don't need anyway. */
|
|
|
|
|
{
|
2016-02-22 07:42:53 +01:00
|
|
|
|
CTFontDescriptorRef last_resort_font_desc = get_last_resort_font_desc ();
|
2017-10-15 12:11:08 +02:00
|
|
|
|
CTFontRef new_ct_font = CTFontCreateCopyWithAttributes (ct_font, 0.0, nullptr, last_resort_font_desc);
|
2016-02-22 07:42:53 +01:00
|
|
|
|
CFRelease (last_resort_font_desc);
|
2016-02-22 07:28:37 +01:00
|
|
|
|
if (new_ct_font)
|
|
|
|
|
{
|
2016-06-30 18:46:52 +02:00
|
|
|
|
/* The CTFontCreateCopyWithAttributes call fails to stay on the same font
|
|
|
|
|
* when reconfiguring the cascade list and may switch to a different font
|
|
|
|
|
* when there are fonts that go by the same name, since the descriptor is
|
|
|
|
|
* just name and size.
|
|
|
|
|
*
|
|
|
|
|
* Avoid reconfiguring the cascade lists if the new font is outside the
|
|
|
|
|
* system locations that we cannot access from the sandboxed renderer
|
|
|
|
|
* process in Blink. This can be detected by the new file URL location
|
|
|
|
|
* that the newly found font points to. */
|
2018-04-23 16:07:35 +02:00
|
|
|
|
CFURLRef new_url = nullptr;
|
2019-02-11 08:46:05 +01:00
|
|
|
|
#if !(defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) && MAC_OS_X_VERSION_MIN_REQUIRED < 1060
|
2018-04-06 00:03:36 +02:00
|
|
|
|
atsFont = CTFontGetPlatformFont (new_ct_font, NULL);
|
|
|
|
|
status = ATSFontGetFileReference (atsFont, &fsref);
|
|
|
|
|
if (status == noErr)
|
2019-08-24 15:27:14 +02:00
|
|
|
|
new_url = CFURLCreateFromFSRef (NULL, &fsref);
|
2018-04-06 00:03:36 +02:00
|
|
|
|
#else
|
|
|
|
|
new_url = (CFURLRef) CTFontCopyAttribute (new_ct_font, kCTFontURLAttribute);
|
|
|
|
|
#endif
|
2016-07-12 01:19:21 +02:00
|
|
|
|
// Keep reconfigured font if URL cannot be retrieved (seems to be the case
|
|
|
|
|
// on Mac OS 10.12 Sierra), speculative fix for crbug.com/625606
|
|
|
|
|
if (!original_url || !new_url || CFEqual (original_url, new_url)) {
|
2019-08-24 15:27:14 +02:00
|
|
|
|
CFRelease (ct_font);
|
|
|
|
|
ct_font = new_ct_font;
|
2016-06-16 14:19:39 +02:00
|
|
|
|
} else {
|
2019-08-24 15:27:14 +02:00
|
|
|
|
CFRelease (new_ct_font);
|
|
|
|
|
DEBUG_MSG (CORETEXT, ct_font, "Discarding reconfigured CTFont, location changed.");
|
2016-06-16 14:19:39 +02:00
|
|
|
|
}
|
2016-07-12 01:19:21 +02:00
|
|
|
|
if (new_url)
|
2019-08-24 15:27:14 +02:00
|
|
|
|
CFRelease (new_url);
|
2016-02-22 07:28:37 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
DEBUG_MSG (CORETEXT, ct_font, "Font copy with empty cascade list failed");
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 01:19:21 +02:00
|
|
|
|
if (original_url)
|
|
|
|
|
CFRelease (original_url);
|
2016-06-16 14:19:39 +02:00
|
|
|
|
return ct_font;
|
2016-02-22 07:28:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 03:03:32 +02:00
|
|
|
|
hb_coretext_face_data_t *
|
2012-07-30 23:48:04 +02:00
|
|
|
|
_hb_coretext_shaper_face_data_create (hb_face_t *face)
|
2012-07-24 21:52:32 +02:00
|
|
|
|
{
|
2017-10-11 13:17:46 +02:00
|
|
|
|
CGFontRef cg_font = create_cg_font (face);
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2017-10-11 13:05:59 +02:00
|
|
|
|
if (unlikely (!cg_font))
|
2014-03-15 03:55:46 +01:00
|
|
|
|
{
|
2016-02-22 07:56:29 +01:00
|
|
|
|
DEBUG_MSG (CORETEXT, face, "CGFont creation failed..");
|
2017-10-15 12:11:08 +02:00
|
|
|
|
return nullptr;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 03:03:32 +02:00
|
|
|
|
return (hb_coretext_face_data_t *) cg_font;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-30 23:48:04 +02:00
|
|
|
|
void
|
2018-08-02 03:03:32 +02:00
|
|
|
|
_hb_coretext_shaper_face_data_destroy (hb_coretext_face_data_t *data)
|
2012-07-24 21:52:32 +02:00
|
|
|
|
{
|
2017-10-11 13:17:46 +02:00
|
|
|
|
CFRelease ((CGFontRef) data);
|
2012-07-24 21:52:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-20 18:35:39 +02:00
|
|
|
|
/**
|
|
|
|
|
* hb_coretext_face_create:
|
|
|
|
|
* @cg_font: The CGFontRef to work upon
|
|
|
|
|
*
|
|
|
|
|
* Creates an #hb_face_t face object from the specified
|
|
|
|
|
* CGFontRef.
|
|
|
|
|
*
|
|
|
|
|
* Return value: the new #hb_face_t face object
|
|
|
|
|
*
|
|
|
|
|
* Since: 0.9.10
|
|
|
|
|
*/
|
2017-11-29 08:11:34 +01:00
|
|
|
|
hb_face_t *
|
|
|
|
|
hb_coretext_face_create (CGFontRef cg_font)
|
|
|
|
|
{
|
2019-07-05 16:16:41 +02:00
|
|
|
|
return hb_face_create_for_tables (_hb_cg_reference_table, CGFontRetain (cg_font), _hb_cg_font_release);
|
2017-11-29 08:11:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-20 18:35:39 +02:00
|
|
|
|
/**
|
|
|
|
|
* hb_coretext_face_get_cg_font:
|
|
|
|
|
* @face: The #hb_face_t to work upon
|
|
|
|
|
*
|
|
|
|
|
* Fetches the CGFontRef associated with an #hb_face_t
|
|
|
|
|
* face object
|
|
|
|
|
*
|
|
|
|
|
* Return value: the CGFontRef found
|
|
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
|
* Since: 0.9.10
|
|
|
|
|
*/
|
2012-12-10 00:47:36 +01:00
|
|
|
|
CGFontRef
|
2012-12-10 01:39:40 +01:00
|
|
|
|
hb_coretext_face_get_cg_font (hb_face_t *face)
|
2012-12-10 00:47:36 +01:00
|
|
|
|
{
|
2018-11-16 08:29:13 +01:00
|
|
|
|
return (CGFontRef) (const void *) face->data.coretext;
|
2012-12-10 00:47:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-30 23:48:04 +02:00
|
|
|
|
|
2018-08-02 03:03:32 +02:00
|
|
|
|
hb_coretext_font_data_t *
|
2017-10-11 13:05:59 +02:00
|
|
|
|
_hb_coretext_shaper_font_data_create (hb_font_t *font)
|
2012-07-24 21:52:32 +02:00
|
|
|
|
{
|
2017-10-11 13:24:39 +02:00
|
|
|
|
hb_face_t *face = font->face;
|
2018-11-16 14:29:47 +01:00
|
|
|
|
const hb_coretext_face_data_t *face_data = face->data.coretext;
|
2018-11-16 09:24:22 +01:00
|
|
|
|
if (unlikely (!face_data)) return nullptr;
|
2018-11-16 08:29:13 +01:00
|
|
|
|
CGFontRef cg_font = (CGFontRef) (const void *) face->data.coretext;
|
2017-10-11 13:05:59 +02:00
|
|
|
|
|
2019-09-14 08:26:00 +02:00
|
|
|
|
CGFloat font_size = (CGFloat) (font->ptem <= 0.f ? HB_CORETEXT_DEFAULT_FONT_SIZE : font->ptem);
|
Remove assumption about Core Text working in 96 DPI
Core Text doesn't actually have a concept of DPI internally, as it
doesn't rasterize anything by itself, it just generates vector paths
that get passed along to Core Graphics.
In practice this means Core Text operates in the classical macOS
logical DPI of 72, with one typographic point corresponding to one
point in the Core Graphics coordinate system, which for a normal
bitmap context then corresponds to one pixel -- or two pixels for
a "retina" context with a 2x scale transform.
Scaling the font point sizes given to HarfBuzz to an assumed DPI
of 96 is problematic with this in mind, as fonts with optical
features such as 'trak' tables for tracking, or color glyphs,
will then base the metrics off of the wrong point size compared
to what the client asked for.
This in turn causes mismatches between the metrics of the shaped
text and the actual rasterization, which doesn't include the 72
to 96 DPI scaling.
If a 96 DPI is needed, such as on the Web, the scaling should be
done outside of HarfBuzz, allowing the client to keep the DPI of
the shaping in sync with the rasterization.
The recommended way to do that is by scaling the font point size,
not by applying a transform to the target Core Graphics context,
to let Core Text choose the right optical features of the target
point size, as described in WWDC 2015 session 804:
https://developer.apple.com/videos/play/wwdc2015/804/
2018-12-17 00:48:35 +01:00
|
|
|
|
CTFontRef ct_font = create_ct_font (cg_font, font_size);
|
2017-10-11 13:05:59 +02:00
|
|
|
|
|
|
|
|
|
if (unlikely (!ct_font))
|
|
|
|
|
{
|
|
|
|
|
DEBUG_MSG (CORETEXT, font, "CGFont creation failed..");
|
2017-10-15 12:11:08 +02:00
|
|
|
|
return nullptr;
|
2017-10-11 13:05:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-27 20:32:18 +02:00
|
|
|
|
if (font->num_coords)
|
2021-08-04 18:24:14 +02:00
|
|
|
|
{
|
|
|
|
|
CFMutableDictionaryRef variations =
|
|
|
|
|
CFDictionaryCreateMutable (kCFAllocatorDefault,
|
|
|
|
|
font->num_coords,
|
|
|
|
|
&kCFTypeDictionaryKeyCallBacks,
|
|
|
|
|
&kCFTypeDictionaryValueCallBacks);
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < font->num_coords; i++)
|
|
|
|
|
{
|
|
|
|
|
if (font->coords[i] == 0.) continue;
|
|
|
|
|
|
|
|
|
|
hb_ot_var_axis_info_t info;
|
|
|
|
|
unsigned int c = 1;
|
|
|
|
|
hb_ot_var_get_axis_infos (font->face, i, &c, &info);
|
2022-10-31 19:20:19 +01:00
|
|
|
|
float v = hb_clamp (font->design_coords[i], info.min_value, info.max_value);
|
|
|
|
|
|
|
|
|
|
CFNumberRef tag_number = CFNumberCreate (kCFAllocatorDefault, kCFNumberIntType, &info.tag);
|
|
|
|
|
CFNumberRef value_number = CFNumberCreate (kCFAllocatorDefault, kCFNumberFloatType, &v);
|
|
|
|
|
CFDictionarySetValue (variations, tag_number, value_number);
|
|
|
|
|
CFRelease (tag_number);
|
|
|
|
|
CFRelease (value_number);
|
2021-08-04 18:24:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CFDictionaryRef attributes =
|
|
|
|
|
CFDictionaryCreate (kCFAllocatorDefault,
|
|
|
|
|
(const void **) &kCTFontVariationAttribute,
|
|
|
|
|
(const void **) &variations,
|
|
|
|
|
1,
|
|
|
|
|
&kCFTypeDictionaryKeyCallBacks,
|
|
|
|
|
&kCFTypeDictionaryValueCallBacks);
|
|
|
|
|
|
|
|
|
|
CTFontDescriptorRef varDesc = CTFontDescriptorCreateWithAttributes (attributes);
|
|
|
|
|
CTFontRef new_ct_font = CTFontCreateCopyWithAttributes (ct_font, 0, nullptr, varDesc);
|
|
|
|
|
|
|
|
|
|
CFRelease (ct_font);
|
|
|
|
|
CFRelease (attributes);
|
|
|
|
|
CFRelease (variations);
|
|
|
|
|
ct_font = new_ct_font;
|
|
|
|
|
}
|
2021-08-04 14:34:52 +02:00
|
|
|
|
|
2018-08-02 03:03:32 +02:00
|
|
|
|
return (hb_coretext_font_data_t *) ct_font;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-30 23:48:04 +02:00
|
|
|
|
void
|
2018-08-02 03:03:32 +02:00
|
|
|
|
_hb_coretext_shaper_font_data_destroy (hb_coretext_font_data_t *data)
|
2012-07-30 23:48:04 +02:00
|
|
|
|
{
|
2017-10-11 13:17:46 +02:00
|
|
|
|
CFRelease ((CTFontRef) data);
|
2012-07-30 23:48:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-20 18:35:39 +02:00
|
|
|
|
/**
|
|
|
|
|
* hb_coretext_font_create:
|
|
|
|
|
* @ct_font: The CTFontRef to work upon
|
|
|
|
|
*
|
|
|
|
|
* Creates an #hb_font_t font object from the specified
|
|
|
|
|
* CTFontRef.
|
|
|
|
|
*
|
|
|
|
|
* Return value: the new #hb_font_t font object
|
|
|
|
|
*
|
2017-11-29 08:11:34 +01:00
|
|
|
|
* Since: 1.7.2
|
2019-05-20 18:35:39 +02:00
|
|
|
|
**/
|
2017-11-29 08:11:34 +01:00
|
|
|
|
hb_font_t *
|
|
|
|
|
hb_coretext_font_create (CTFontRef ct_font)
|
|
|
|
|
{
|
2018-01-31 14:16:08 +01:00
|
|
|
|
CGFontRef cg_font = CTFontCopyGraphicsFont (ct_font, nullptr);
|
2017-11-29 08:11:34 +01:00
|
|
|
|
hb_face_t *face = hb_coretext_face_create (cg_font);
|
|
|
|
|
CFRelease (cg_font);
|
|
|
|
|
hb_font_t *font = hb_font_create (face);
|
|
|
|
|
hb_face_destroy (face);
|
|
|
|
|
|
2018-11-03 20:03:06 +01:00
|
|
|
|
if (unlikely (hb_object_is_immutable (font)))
|
2017-11-29 08:11:34 +01:00
|
|
|
|
return font;
|
|
|
|
|
|
Remove assumption about Core Text working in 96 DPI
Core Text doesn't actually have a concept of DPI internally, as it
doesn't rasterize anything by itself, it just generates vector paths
that get passed along to Core Graphics.
In practice this means Core Text operates in the classical macOS
logical DPI of 72, with one typographic point corresponding to one
point in the Core Graphics coordinate system, which for a normal
bitmap context then corresponds to one pixel -- or two pixels for
a "retina" context with a 2x scale transform.
Scaling the font point sizes given to HarfBuzz to an assumed DPI
of 96 is problematic with this in mind, as fonts with optical
features such as 'trak' tables for tracking, or color glyphs,
will then base the metrics off of the wrong point size compared
to what the client asked for.
This in turn causes mismatches between the metrics of the shaped
text and the actual rasterization, which doesn't include the 72
to 96 DPI scaling.
If a 96 DPI is needed, such as on the Web, the scaling should be
done outside of HarfBuzz, allowing the client to keep the DPI of
the shaping in sync with the rasterization.
The recommended way to do that is by scaling the font point size,
not by applying a transform to the target Core Graphics context,
to let Core Text choose the right optical features of the target
point size, as described in WWDC 2015 session 804:
https://developer.apple.com/videos/play/wwdc2015/804/
2018-12-17 00:48:35 +01:00
|
|
|
|
hb_font_set_ptem (font, CTFontGetSize (ct_font));
|
2017-12-17 18:32:33 +01:00
|
|
|
|
|
2017-11-29 08:11:34 +01:00
|
|
|
|
/* Let there be dragons here... */
|
2018-11-16 14:43:25 +01:00
|
|
|
|
font->data.coretext.cmpexch (nullptr, (hb_coretext_font_data_t *) CFRetain (ct_font));
|
2017-11-29 08:11:34 +01:00
|
|
|
|
|
|
|
|
|
return font;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-20 18:35:39 +02:00
|
|
|
|
/**
|
2020-12-30 22:58:37 +01:00
|
|
|
|
* hb_coretext_font_get_ct_font:
|
2019-05-20 18:35:39 +02:00
|
|
|
|
* @font: #hb_font_t to work upon
|
|
|
|
|
*
|
|
|
|
|
* Fetches the CTFontRef associated with the specified
|
|
|
|
|
* #hb_font_t font object.
|
|
|
|
|
*
|
|
|
|
|
* Return value: the CTFontRef found
|
|
|
|
|
*
|
|
|
|
|
* Since: 0.9.10
|
|
|
|
|
*/
|
2017-11-29 08:11:34 +01:00
|
|
|
|
CTFontRef
|
|
|
|
|
hb_coretext_font_get_ct_font (hb_font_t *font)
|
|
|
|
|
{
|
2022-06-28 21:30:44 +02:00
|
|
|
|
CTFontRef ct_font = (CTFontRef) (const void *) font->data.coretext;
|
|
|
|
|
return ct_font ? (CTFontRef) ct_font : nullptr;
|
2017-11-29 08:11:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-12-10 00:47:36 +01:00
|
|
|
|
/*
|
|
|
|
|
* shaper
|
|
|
|
|
*/
|
|
|
|
|
|
2013-08-12 06:33:28 +02:00
|
|
|
|
struct feature_record_t {
|
|
|
|
|
unsigned int feature;
|
|
|
|
|
unsigned int setting;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct active_feature_t {
|
|
|
|
|
feature_record_t rec;
|
|
|
|
|
unsigned int order;
|
|
|
|
|
|
2019-04-12 23:50:03 +02:00
|
|
|
|
HB_INTERNAL static int cmp (const void *pa, const void *pb) {
|
2017-10-31 18:17:43 +01:00
|
|
|
|
const active_feature_t *a = (const active_feature_t *) pa;
|
|
|
|
|
const active_feature_t *b = (const active_feature_t *) pb;
|
2013-08-12 06:33:28 +02:00
|
|
|
|
return a->rec.feature < b->rec.feature ? -1 : a->rec.feature > b->rec.feature ? 1 :
|
|
|
|
|
a->order < b->order ? -1 : a->order > b->order ? 1 :
|
|
|
|
|
a->rec.setting < b->rec.setting ? -1 : a->rec.setting > b->rec.setting ? 1 :
|
|
|
|
|
0;
|
|
|
|
|
}
|
2022-01-19 19:46:21 +01:00
|
|
|
|
bool operator== (const active_feature_t& f) const {
|
|
|
|
|
return cmp (this, &f) == 0;
|
2013-08-12 06:33:28 +02:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct feature_event_t {
|
|
|
|
|
unsigned int index;
|
|
|
|
|
bool start;
|
|
|
|
|
active_feature_t feature;
|
|
|
|
|
|
2019-04-12 23:50:03 +02:00
|
|
|
|
HB_INTERNAL static int cmp (const void *pa, const void *pb) {
|
2017-10-31 18:17:43 +01:00
|
|
|
|
const feature_event_t *a = (const feature_event_t *) pa;
|
|
|
|
|
const feature_event_t *b = (const feature_event_t *) pb;
|
2013-08-12 06:33:28 +02:00
|
|
|
|
return a->index < b->index ? -1 : a->index > b->index ? 1 :
|
|
|
|
|
a->start < b->start ? -1 : a->start > b->start ? 1 :
|
|
|
|
|
active_feature_t::cmp (&a->feature, &b->feature);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct range_record_t {
|
|
|
|
|
CTFontRef font;
|
|
|
|
|
unsigned int index_first; /* == start */
|
|
|
|
|
unsigned int index_last; /* == end - 1 */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2012-07-24 21:52:32 +02:00
|
|
|
|
hb_bool_t
|
2012-07-30 23:48:04 +02:00
|
|
|
|
_hb_coretext_shape (hb_shape_plan_t *shape_plan,
|
|
|
|
|
hb_font_t *font,
|
2019-08-24 15:27:14 +02:00
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
|
const hb_feature_t *features,
|
|
|
|
|
unsigned int num_features)
|
2012-07-24 21:52:32 +02:00
|
|
|
|
{
|
2012-07-30 23:48:04 +02:00
|
|
|
|
hb_face_t *face = font->face;
|
2018-11-16 08:29:13 +01:00
|
|
|
|
CGFontRef cg_font = (CGFontRef) (const void *) face->data.coretext;
|
2022-06-28 21:30:44 +02:00
|
|
|
|
CTFontRef ct_font = (CTFontRef) (const void *) font->data.coretext;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2017-10-11 13:05:59 +02:00
|
|
|
|
CGFloat ct_font_size = CTFontGetSize (ct_font);
|
2016-02-22 06:59:39 +01:00
|
|
|
|
CGFloat x_mult = (CGFloat) font->x_scale / ct_font_size;
|
|
|
|
|
CGFloat y_mult = (CGFloat) font->y_scale / ct_font_size;
|
|
|
|
|
|
2014-08-11 21:29:18 +02:00
|
|
|
|
/* Attach marks to their bases, to match the 'ot' shaper.
|
2018-10-03 21:02:16 +02:00
|
|
|
|
* Adapted from a very old version of hb-ot-shape:hb_form_clusters().
|
2014-08-11 21:29:18 +02:00
|
|
|
|
* Note that this only makes us be closer to the 'ot' shaper,
|
|
|
|
|
* but by no means the same. For example, if there's
|
|
|
|
|
* B1 M1 B2 M2, and B1-B2 form a ligature, M2's cluster will
|
|
|
|
|
* continue pointing to B2 even though B2 was merged into B1's
|
|
|
|
|
* cluster... */
|
2016-02-22 07:07:20 +01:00
|
|
|
|
if (buffer->cluster_level == HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES)
|
2014-08-11 21:29:18 +02:00
|
|
|
|
{
|
|
|
|
|
hb_unicode_funcs_t *unicode = buffer->unicode;
|
|
|
|
|
unsigned int count = buffer->len;
|
|
|
|
|
hb_glyph_info_t *info = buffer->info;
|
|
|
|
|
for (unsigned int i = 1; i < count; i++)
|
|
|
|
|
if (HB_UNICODE_GENERAL_CATEGORY_IS_MARK (unicode->general_category (info[i].codepoint)))
|
|
|
|
|
buffer->merge_clusters (i - 1, i + 1);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 02:05:25 +01:00
|
|
|
|
hb_vector_t<feature_record_t> feature_records;
|
|
|
|
|
hb_vector_t<range_record_t> range_records;
|
2014-08-11 21:08:19 +02:00
|
|
|
|
|
2013-08-12 06:33:28 +02:00
|
|
|
|
/*
|
|
|
|
|
* Set up features.
|
|
|
|
|
* (copied + modified from code from hb-uniscribe.cc)
|
|
|
|
|
*/
|
|
|
|
|
if (num_features)
|
|
|
|
|
{
|
|
|
|
|
/* Sort features by start/end events. */
|
2018-10-30 02:05:25 +01:00
|
|
|
|
hb_vector_t<feature_event_t> feature_events;
|
2013-08-12 06:33:28 +02:00
|
|
|
|
for (unsigned int i = 0; i < num_features; i++)
|
|
|
|
|
{
|
2019-12-18 14:57:14 +01:00
|
|
|
|
active_feature_t feature;
|
|
|
|
|
|
2020-06-08 02:29:04 +02:00
|
|
|
|
#if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
|
2018-10-13 23:03:32 +02:00
|
|
|
|
const hb_aat_feature_mapping_t * mapping = hb_aat_layout_find_feature_mapping (features[i].tag);
|
2013-08-12 06:33:28 +02:00
|
|
|
|
if (!mapping)
|
2019-08-24 15:27:14 +02:00
|
|
|
|
continue;
|
2013-08-12 06:33:28 +02:00
|
|
|
|
|
|
|
|
|
feature.rec.feature = mapping->aatFeatureType;
|
|
|
|
|
feature.rec.setting = features[i].value ? mapping->selectorToEnable : mapping->selectorToDisable;
|
2019-12-18 14:57:14 +01:00
|
|
|
|
#else
|
|
|
|
|
feature.rec.feature = features[i].tag;
|
|
|
|
|
feature.rec.setting = features[i].value;
|
|
|
|
|
#endif
|
2013-08-12 06:33:28 +02:00
|
|
|
|
feature.order = i;
|
|
|
|
|
|
|
|
|
|
feature_event_t *event;
|
|
|
|
|
|
|
|
|
|
event = feature_events.push ();
|
|
|
|
|
event->index = features[i].start;
|
|
|
|
|
event->start = true;
|
|
|
|
|
event->feature = feature;
|
|
|
|
|
|
|
|
|
|
event = feature_events.push ();
|
|
|
|
|
event->index = features[i].end;
|
|
|
|
|
event->start = false;
|
|
|
|
|
event->feature = feature;
|
|
|
|
|
}
|
2014-06-19 21:30:18 +02:00
|
|
|
|
feature_events.qsort ();
|
2013-08-12 06:33:28 +02:00
|
|
|
|
/* Add a strategic final event. */
|
|
|
|
|
{
|
|
|
|
|
active_feature_t feature;
|
|
|
|
|
feature.rec.feature = HB_TAG_NONE;
|
|
|
|
|
feature.rec.setting = 0;
|
|
|
|
|
feature.order = num_features + 1;
|
|
|
|
|
|
|
|
|
|
feature_event_t *event = feature_events.push ();
|
|
|
|
|
event->index = 0; /* This value does magic. */
|
|
|
|
|
event->start = false;
|
|
|
|
|
event->feature = feature;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Scan events and save features for each range. */
|
2018-10-30 02:05:25 +01:00
|
|
|
|
hb_vector_t<active_feature_t> active_features;
|
2013-08-12 06:33:28 +02:00
|
|
|
|
unsigned int last_index = 0;
|
2018-12-22 00:46:51 +01:00
|
|
|
|
for (unsigned int i = 0; i < feature_events.length; i++)
|
2013-08-12 06:33:28 +02:00
|
|
|
|
{
|
|
|
|
|
feature_event_t *event = &feature_events[i];
|
|
|
|
|
|
|
|
|
|
if (event->index != last_index)
|
|
|
|
|
{
|
2019-08-24 15:27:14 +02:00
|
|
|
|
/* Save a snapshot of active features and the range. */
|
2013-08-12 06:33:28 +02:00
|
|
|
|
range_record_t *range = range_records.push ();
|
|
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
|
if (active_features.length)
|
2013-08-12 06:33:28 +02:00
|
|
|
|
{
|
|
|
|
|
CFMutableArrayRef features_array = CFArrayCreateMutable(kCFAllocatorDefault, 0, &kCFTypeArrayCallBacks);
|
|
|
|
|
|
|
|
|
|
/* TODO sort and resolve conflicting features? */
|
2014-06-19 21:30:18 +02:00
|
|
|
|
/* active_features.qsort (); */
|
2018-12-22 00:46:51 +01:00
|
|
|
|
for (unsigned int j = 0; j < active_features.length; j++)
|
2013-08-12 06:33:28 +02:00
|
|
|
|
{
|
2020-06-08 02:29:04 +02:00
|
|
|
|
#if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
|
2017-07-14 18:11:46 +02:00
|
|
|
|
CFStringRef keys[] = {
|
2013-08-12 06:33:28 +02:00
|
|
|
|
kCTFontFeatureTypeIdentifierKey,
|
|
|
|
|
kCTFontFeatureSelectorIdentifierKey
|
|
|
|
|
};
|
2017-07-14 18:11:46 +02:00
|
|
|
|
CFNumberRef values[] = {
|
2013-08-12 06:33:28 +02:00
|
|
|
|
CFNumberCreate (kCFAllocatorDefault, kCFNumberIntType, &active_features[j].rec.feature),
|
|
|
|
|
CFNumberCreate (kCFAllocatorDefault, kCFNumberIntType, &active_features[j].rec.setting)
|
|
|
|
|
};
|
2019-12-18 14:57:14 +01:00
|
|
|
|
#else
|
|
|
|
|
char tag[5] = {HB_UNTAG (active_features[j].rec.feature)};
|
|
|
|
|
CFTypeRef keys[] = {
|
|
|
|
|
kCTFontOpenTypeFeatureTag,
|
|
|
|
|
kCTFontOpenTypeFeatureValue
|
|
|
|
|
};
|
|
|
|
|
CFTypeRef values[] = {
|
|
|
|
|
CFStringCreateWithCString (kCFAllocatorDefault, tag, kCFStringEncodingASCII),
|
|
|
|
|
CFNumberCreate (kCFAllocatorDefault, kCFNumberIntType, &active_features[j].rec.setting)
|
|
|
|
|
};
|
|
|
|
|
#endif
|
2018-09-16 19:33:48 +02:00
|
|
|
|
static_assert ((ARRAY_LENGTH_CONST (keys) == ARRAY_LENGTH_CONST (values)), "");
|
2013-08-12 06:33:28 +02:00
|
|
|
|
CFDictionaryRef dict = CFDictionaryCreate (kCFAllocatorDefault,
|
|
|
|
|
(const void **) keys,
|
|
|
|
|
(const void **) values,
|
2017-07-14 18:11:46 +02:00
|
|
|
|
ARRAY_LENGTH (keys),
|
2013-08-12 06:33:28 +02:00
|
|
|
|
&kCFTypeDictionaryKeyCallBacks,
|
|
|
|
|
&kCFTypeDictionaryValueCallBacks);
|
2017-07-14 18:11:46 +02:00
|
|
|
|
for (unsigned int i = 0; i < ARRAY_LENGTH (values); i++)
|
|
|
|
|
CFRelease (values[i]);
|
2013-08-12 06:33:28 +02:00
|
|
|
|
|
|
|
|
|
CFArrayAppendValue (features_array, dict);
|
|
|
|
|
CFRelease (dict);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CFDictionaryRef attributes = CFDictionaryCreate (kCFAllocatorDefault,
|
|
|
|
|
(const void **) &kCTFontFeatureSettingsAttribute,
|
|
|
|
|
(const void **) &features_array,
|
|
|
|
|
1,
|
|
|
|
|
&kCFTypeDictionaryKeyCallBacks,
|
|
|
|
|
&kCFTypeDictionaryValueCallBacks);
|
|
|
|
|
CFRelease (features_array);
|
|
|
|
|
|
|
|
|
|
CTFontDescriptorRef font_desc = CTFontDescriptorCreateWithAttributes (attributes);
|
|
|
|
|
CFRelease (attributes);
|
|
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
|
range->font = CTFontCreateCopyWithAttributes (ct_font, 0.0, nullptr, font_desc);
|
2013-08-12 06:33:28 +02:00
|
|
|
|
CFRelease (font_desc);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-10-15 12:11:08 +02:00
|
|
|
|
range->font = nullptr;
|
2013-08-12 06:33:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
range->index_first = last_index;
|
|
|
|
|
range->index_last = event->index - 1;
|
|
|
|
|
|
|
|
|
|
last_index = event->index;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-02 02:48:37 +02:00
|
|
|
|
if (event->start)
|
|
|
|
|
{
|
2019-08-24 15:27:14 +02:00
|
|
|
|
active_features.push (event->feature);
|
2013-08-12 06:33:28 +02:00
|
|
|
|
} else {
|
2022-01-19 19:46:21 +01:00
|
|
|
|
active_feature_t *feature = active_features.lsearch (event->feature);
|
2013-08-12 06:33:28 +02:00
|
|
|
|
if (feature)
|
2022-11-26 23:18:16 +01:00
|
|
|
|
active_features.remove_ordered (feature - active_features.arrayZ);
|
2013-08-12 06:33:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-24 21:52:32 +02:00
|
|
|
|
unsigned int scratch_size;
|
2013-11-13 20:44:01 +01:00
|
|
|
|
hb_buffer_t::scratch_buffer_t *scratch = buffer->get_scratch_buffer (&scratch_size);
|
2013-11-13 20:33:57 +01:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
#define ALLOCATE_ARRAY(Type, name, len, on_no_room) \
|
2013-11-13 20:33:57 +01:00
|
|
|
|
Type *name = (Type *) scratch; \
|
2019-05-14 02:28:59 +02:00
|
|
|
|
do { \
|
2013-11-13 20:33:57 +01:00
|
|
|
|
unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \
|
2014-08-11 21:08:19 +02:00
|
|
|
|
if (unlikely (_consumed > scratch_size)) \
|
|
|
|
|
{ \
|
|
|
|
|
on_no_room; \
|
|
|
|
|
assert (0); \
|
|
|
|
|
} \
|
2013-11-13 20:33:57 +01:00
|
|
|
|
scratch += _consumed; \
|
|
|
|
|
scratch_size -= _consumed; \
|
2019-05-14 02:28:59 +02:00
|
|
|
|
} while (0)
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2020-04-28 19:30:00 +02:00
|
|
|
|
ALLOCATE_ARRAY (UniChar, pchars, buffer->len * 2, ((void)nullptr) /*nothing*/);
|
2012-07-24 21:52:32 +02:00
|
|
|
|
unsigned int chars_len = 0;
|
|
|
|
|
for (unsigned int i = 0; i < buffer->len; i++) {
|
|
|
|
|
hb_codepoint_t c = buffer->info[i].codepoint;
|
2014-07-11 20:54:42 +02:00
|
|
|
|
if (likely (c <= 0xFFFFu))
|
2012-07-24 21:52:32 +02:00
|
|
|
|
pchars[chars_len++] = c;
|
2014-07-11 20:54:42 +02:00
|
|
|
|
else if (unlikely (c > 0x10FFFFu))
|
|
|
|
|
pchars[chars_len++] = 0xFFFDu;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
else {
|
2014-07-11 20:54:42 +02:00
|
|
|
|
pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
|
2016-08-09 02:24:04 +02:00
|
|
|
|
pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1));
|
2012-07-24 21:52:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-28 19:30:00 +02:00
|
|
|
|
ALLOCATE_ARRAY (unsigned int, log_clusters, chars_len, ((void)nullptr) /*nothing*/);
|
2014-08-11 19:25:43 +02:00
|
|
|
|
chars_len = 0;
|
|
|
|
|
for (unsigned int i = 0; i < buffer->len; i++)
|
|
|
|
|
{
|
|
|
|
|
hb_codepoint_t c = buffer->info[i].codepoint;
|
|
|
|
|
unsigned int cluster = buffer->info[i].cluster;
|
|
|
|
|
log_clusters[chars_len++] = cluster;
|
|
|
|
|
if (hb_in_range (c, 0x10000u, 0x10FFFFu))
|
|
|
|
|
log_clusters[chars_len++] = cluster; /* Surrogates. */
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
#define FAIL(...) \
|
|
|
|
|
HB_STMT_START { \
|
2017-10-15 12:11:08 +02:00
|
|
|
|
DEBUG_MSG (CORETEXT, nullptr, __VA_ARGS__); \
|
2014-08-11 21:08:19 +02:00
|
|
|
|
ret = false; \
|
|
|
|
|
goto fail; \
|
2019-06-19 00:15:06 +02:00
|
|
|
|
} HB_STMT_END
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
bool ret = true;
|
2017-10-15 12:11:08 +02:00
|
|
|
|
CFStringRef string_ref = nullptr;
|
|
|
|
|
CTLineRef line = nullptr;
|
2013-08-08 03:08:54 +02:00
|
|
|
|
|
2018-10-18 17:18:42 +02:00
|
|
|
|
if (false)
|
2014-08-11 21:08:19 +02:00
|
|
|
|
{
|
|
|
|
|
resize_and_retry:
|
2014-08-12 02:45:12 +02:00
|
|
|
|
DEBUG_MSG (CORETEXT, buffer, "Buffer resize");
|
2014-08-11 21:08:19 +02:00
|
|
|
|
/* string_ref uses the scratch-buffer for backing store, and line references
|
|
|
|
|
* string_ref (via attr_string). We must release those before resizing buffer. */
|
|
|
|
|
assert (string_ref);
|
|
|
|
|
assert (line);
|
|
|
|
|
CFRelease (string_ref);
|
|
|
|
|
CFRelease (line);
|
2017-10-15 12:11:08 +02:00
|
|
|
|
string_ref = nullptr;
|
|
|
|
|
line = nullptr;
|
2014-08-12 21:49:47 +02:00
|
|
|
|
|
|
|
|
|
/* Get previous start-of-scratch-area, that we use later for readjusting
|
|
|
|
|
* our existing scratch arrays. */
|
|
|
|
|
unsigned int old_scratch_used;
|
|
|
|
|
hb_buffer_t::scratch_buffer_t *old_scratch;
|
|
|
|
|
old_scratch = buffer->get_scratch_buffer (&old_scratch_used);
|
|
|
|
|
old_scratch_used = scratch - old_scratch;
|
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
if (unlikely (!buffer->ensure (buffer->allocated * 2)))
|
|
|
|
|
FAIL ("Buffer resize failed");
|
|
|
|
|
|
2014-08-12 21:49:47 +02:00
|
|
|
|
/* Adjust scratch, pchars, and log_cluster arrays. This is ugly, but really the
|
|
|
|
|
* cleanest way to do without completely restructuring the rest of this shaper. */
|
2014-08-11 21:08:19 +02:00
|
|
|
|
scratch = buffer->get_scratch_buffer (&scratch_size);
|
|
|
|
|
pchars = reinterpret_cast<UniChar *> (((char *) scratch + ((char *) pchars - (char *) old_scratch)));
|
|
|
|
|
log_clusters = reinterpret_cast<unsigned int *> (((char *) scratch + ((char *) log_clusters - (char *) old_scratch)));
|
2014-08-12 21:49:47 +02:00
|
|
|
|
scratch += old_scratch_used;
|
|
|
|
|
scratch_size -= old_scratch_used;
|
2014-08-11 21:08:19 +02:00
|
|
|
|
}
|
2013-08-08 03:08:54 +02:00
|
|
|
|
{
|
2017-10-15 12:11:08 +02:00
|
|
|
|
string_ref = CFStringCreateWithCharactersNoCopy (nullptr,
|
2014-08-11 21:08:19 +02:00
|
|
|
|
pchars, chars_len,
|
|
|
|
|
kCFAllocatorNull);
|
|
|
|
|
if (unlikely (!string_ref))
|
|
|
|
|
FAIL ("CFStringCreateWithCharactersNoCopy failed");
|
|
|
|
|
|
|
|
|
|
/* Create an attributed string, populate it, and create a line from it, then release attributed string. */
|
2013-08-08 03:08:54 +02:00
|
|
|
|
{
|
2014-08-12 02:01:37 +02:00
|
|
|
|
CFMutableAttributedStringRef attr_string = CFAttributedStringCreateMutable (kCFAllocatorDefault,
|
|
|
|
|
chars_len);
|
2014-08-11 21:08:19 +02:00
|
|
|
|
if (unlikely (!attr_string))
|
|
|
|
|
FAIL ("CFAttributedStringCreateMutable failed");
|
|
|
|
|
CFAttributedStringReplaceString (attr_string, CFRangeMake (0, 0), string_ref);
|
2014-08-13 01:10:33 +02:00
|
|
|
|
if (HB_DIRECTION_IS_VERTICAL (buffer->props.direction))
|
|
|
|
|
{
|
|
|
|
|
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
|
|
|
|
|
kCTVerticalFormsAttributeName, kCFBooleanTrue);
|
|
|
|
|
}
|
2014-08-13 01:26:35 +02:00
|
|
|
|
|
2014-08-13 01:17:19 +02:00
|
|
|
|
if (buffer->props.language)
|
|
|
|
|
{
|
2014-08-13 01:26:35 +02:00
|
|
|
|
/* What's the iOS equivalent of this check?
|
|
|
|
|
* The symbols was introduced in iOS 7.0.
|
|
|
|
|
* At any rate, our fallback is safe and works fine. */
|
2019-02-11 08:46:05 +01:00
|
|
|
|
#if !(defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) && MAC_OS_X_VERSION_MIN_REQUIRED < 1090
|
2014-08-13 01:26:35 +02:00
|
|
|
|
# define kCTLanguageAttributeName CFSTR ("NSLanguage")
|
|
|
|
|
#endif
|
2019-08-24 15:27:14 +02:00
|
|
|
|
CFStringRef lang = CFStringCreateWithCStringNoCopy (kCFAllocatorDefault,
|
2014-08-13 01:17:19 +02:00
|
|
|
|
hb_language_to_string (buffer->props.language),
|
|
|
|
|
kCFStringEncodingUTF8,
|
|
|
|
|
kCFAllocatorNull);
|
|
|
|
|
if (unlikely (!lang))
|
2019-08-24 15:27:14 +02:00
|
|
|
|
{
|
2018-01-31 14:24:27 +01:00
|
|
|
|
CFRelease (attr_string);
|
2014-08-13 01:17:19 +02:00
|
|
|
|
FAIL ("CFStringCreateWithCStringNoCopy failed");
|
2019-08-24 15:27:14 +02:00
|
|
|
|
}
|
2014-08-13 01:17:19 +02:00
|
|
|
|
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
|
|
|
|
|
kCTLanguageAttributeName, lang);
|
|
|
|
|
CFRelease (lang);
|
|
|
|
|
}
|
2014-08-11 21:08:19 +02:00
|
|
|
|
CFAttributedStringSetAttribute (attr_string, CFRangeMake (0, chars_len),
|
2017-10-11 13:05:59 +02:00
|
|
|
|
kCTFontAttributeName, ct_font);
|
2014-08-11 21:08:19 +02:00
|
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
|
if (num_features && range_records.length)
|
2013-08-12 06:33:28 +02:00
|
|
|
|
{
|
2014-08-11 21:08:19 +02:00
|
|
|
|
unsigned int start = 0;
|
|
|
|
|
range_record_t *last_range = &range_records[0];
|
|
|
|
|
for (unsigned int k = 0; k < chars_len; k++)
|
|
|
|
|
{
|
|
|
|
|
range_record_t *range = last_range;
|
|
|
|
|
while (log_clusters[k] < range->index_first)
|
|
|
|
|
range--;
|
|
|
|
|
while (log_clusters[k] > range->index_last)
|
|
|
|
|
range++;
|
|
|
|
|
if (range != last_range)
|
|
|
|
|
{
|
|
|
|
|
if (last_range->font)
|
|
|
|
|
CFAttributedStringSetAttribute (attr_string, CFRangeMake (start, k - start),
|
|
|
|
|
kCTFontAttributeName, last_range->font);
|
|
|
|
|
|
|
|
|
|
start = k;
|
|
|
|
|
}
|
2013-08-12 06:33:28 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
last_range = range;
|
|
|
|
|
}
|
|
|
|
|
if (start != chars_len && last_range->font)
|
|
|
|
|
CFAttributedStringSetAttribute (attr_string, CFRangeMake (start, chars_len - start),
|
|
|
|
|
kCTFontAttributeName, last_range->font);
|
2013-08-12 06:33:28 +02:00
|
|
|
|
}
|
2017-07-14 18:11:46 +02:00
|
|
|
|
/* Enable/disable kern if requested.
|
|
|
|
|
*
|
|
|
|
|
* Note: once kern is disabled, reenabling it doesn't currently seem to work in CoreText.
|
|
|
|
|
*/
|
|
|
|
|
if (num_features)
|
|
|
|
|
{
|
|
|
|
|
unsigned int zeroint = 0;
|
|
|
|
|
CFNumberRef zero = CFNumberCreate (kCFAllocatorDefault, kCFNumberIntType, &zeroint);
|
|
|
|
|
for (unsigned int i = 0; i < num_features; i++)
|
|
|
|
|
{
|
|
|
|
|
const hb_feature_t &feature = features[i];
|
|
|
|
|
if (feature.tag == HB_TAG('k','e','r','n') &&
|
|
|
|
|
feature.start < chars_len && feature.start < feature.end)
|
|
|
|
|
{
|
|
|
|
|
CFRange feature_range = CFRangeMake (feature.start,
|
2019-08-24 15:27:14 +02:00
|
|
|
|
hb_min (feature.end, chars_len) - feature.start);
|
2017-07-14 18:11:46 +02:00
|
|
|
|
if (feature.value)
|
|
|
|
|
CFAttributedStringRemoveAttribute (attr_string, feature_range, kCTKernAttributeName);
|
|
|
|
|
else
|
|
|
|
|
CFAttributedStringSetAttribute (attr_string, feature_range, kCTKernAttributeName, zero);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
CFRelease (zero);
|
|
|
|
|
}
|
2013-08-12 06:33:28 +02:00
|
|
|
|
|
2014-08-11 23:46:50 +02:00
|
|
|
|
int level = HB_DIRECTION_IS_FORWARD (buffer->props.direction) ? 0 : 1;
|
|
|
|
|
CFNumberRef level_number = CFNumberCreate (kCFAllocatorDefault, kCFNumberIntType, &level);
|
2019-02-11 08:46:05 +01:00
|
|
|
|
#if !(defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) && MAC_OS_X_VERSION_MIN_REQUIRED < 1060
|
2018-04-06 00:03:36 +02:00
|
|
|
|
extern const CFStringRef kCTTypesetterOptionForcedEmbeddingLevel;
|
|
|
|
|
#endif
|
2014-08-11 23:46:50 +02:00
|
|
|
|
CFDictionaryRef options = CFDictionaryCreate (kCFAllocatorDefault,
|
|
|
|
|
(const void **) &kCTTypesetterOptionForcedEmbeddingLevel,
|
|
|
|
|
(const void **) &level_number,
|
|
|
|
|
1,
|
|
|
|
|
&kCFTypeDictionaryKeyCallBacks,
|
|
|
|
|
&kCFTypeDictionaryValueCallBacks);
|
2017-07-14 18:11:46 +02:00
|
|
|
|
CFRelease (level_number);
|
2014-08-11 23:46:50 +02:00
|
|
|
|
if (unlikely (!options))
|
2018-01-31 14:24:27 +01:00
|
|
|
|
{
|
2019-08-24 15:27:14 +02:00
|
|
|
|
CFRelease (attr_string);
|
|
|
|
|
FAIL ("CFDictionaryCreate failed");
|
2018-01-31 14:24:27 +01:00
|
|
|
|
}
|
2014-08-11 23:46:50 +02:00
|
|
|
|
|
|
|
|
|
CTTypesetterRef typesetter = CTTypesetterCreateWithAttributedStringAndOptions (attr_string, options);
|
|
|
|
|
CFRelease (options);
|
2014-08-11 21:08:19 +02:00
|
|
|
|
CFRelease (attr_string);
|
2014-08-11 23:46:50 +02:00
|
|
|
|
if (unlikely (!typesetter))
|
|
|
|
|
FAIL ("CTTypesetterCreateWithAttributedStringAndOptions failed");
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 23:46:50 +02:00
|
|
|
|
line = CTTypesetterCreateLine (typesetter, CFRangeMake(0, 0));
|
|
|
|
|
CFRelease (typesetter);
|
|
|
|
|
if (unlikely (!line))
|
|
|
|
|
FAIL ("CTTypesetterCreateLine failed");
|
|
|
|
|
}
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
CFArrayRef glyph_runs = CTLineGetGlyphRuns (line);
|
|
|
|
|
unsigned int num_runs = CFArrayGetCount (glyph_runs);
|
2017-10-15 12:11:08 +02:00
|
|
|
|
DEBUG_MSG (CORETEXT, nullptr, "Num runs: %d", num_runs);
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
buffer->len = 0;
|
2022-03-21 17:37:42 +01:00
|
|
|
|
uint32_t status_or = 0;
|
2021-02-17 19:12:56 +01:00
|
|
|
|
CGFloat advances_so_far = 0;
|
2015-04-22 04:21:32 +02:00
|
|
|
|
/* For right-to-left runs, CoreText returns the glyphs positioned such that
|
|
|
|
|
* any trailing whitespace is to the left of (0,0). Adjust coordinate system
|
|
|
|
|
* to fix for that. Test with any RTL string with trailing spaces.
|
2018-04-12 11:10:45 +02:00
|
|
|
|
* https://crbug.com/469028
|
2015-04-22 04:21:32 +02:00
|
|
|
|
*/
|
|
|
|
|
if (HB_DIRECTION_IS_BACKWARD (buffer->props.direction))
|
|
|
|
|
{
|
|
|
|
|
advances_so_far -= CTLineGetTrailingWhitespaceWidth (line);
|
|
|
|
|
if (HB_DIRECTION_IS_VERTICAL (buffer->props.direction))
|
|
|
|
|
advances_so_far = -advances_so_far;
|
|
|
|
|
}
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
const CFRange range_all = CFRangeMake (0, 0);
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
for (unsigned int i = 0; i < num_runs; i++)
|
2013-11-30 01:17:42 +01:00
|
|
|
|
{
|
2014-08-11 21:08:19 +02:00
|
|
|
|
CTRunRef run = static_cast<CTRunRef>(CFArrayGetValueAtIndex (glyph_runs, i));
|
2014-08-12 02:02:45 +02:00
|
|
|
|
CTRunStatus run_status = CTRunGetStatus (run);
|
|
|
|
|
status_or |= run_status;
|
|
|
|
|
DEBUG_MSG (CORETEXT, run, "CTRunStatus: %x", run_status);
|
2021-02-17 19:12:56 +01:00
|
|
|
|
CGFloat run_advance = CTRunGetTypographicBounds (run, range_all, nullptr, nullptr, nullptr);
|
2015-01-28 19:43:32 +01:00
|
|
|
|
if (HB_DIRECTION_IS_VERTICAL (buffer->props.direction))
|
|
|
|
|
run_advance = -run_advance;
|
2021-02-17 19:12:56 +01:00
|
|
|
|
DEBUG_MSG (CORETEXT, run, "Run advance: %g", (double) run_advance);
|
2014-08-11 21:08:19 +02:00
|
|
|
|
|
|
|
|
|
/* CoreText does automatic font fallback (AKA "cascading") for characters
|
|
|
|
|
* not supported by the requested font, and provides no way to turn it off,
|
2014-08-12 16:32:41 +02:00
|
|
|
|
* so we must detect if the returned run uses a font other than the requested
|
2014-08-11 21:08:19 +02:00
|
|
|
|
* one and fill in the buffer with .notdef glyphs instead of random glyph
|
|
|
|
|
* indices from a different font.
|
|
|
|
|
*/
|
|
|
|
|
CFDictionaryRef attributes = CTRunGetAttributes (run);
|
|
|
|
|
CTFontRef run_ct_font = static_cast<CTFontRef>(CFDictionaryGetValue (attributes, kCTFontAttributeName));
|
2017-10-11 13:05:59 +02:00
|
|
|
|
if (!CFEqual (run_ct_font, ct_font))
|
2014-08-11 01:05:25 +02:00
|
|
|
|
{
|
2014-08-12 16:32:41 +02:00
|
|
|
|
/* The run doesn't use our main font instance. We have to figure out
|
|
|
|
|
* whether font fallback happened, or this is just CoreText giving us
|
|
|
|
|
* another CTFont using the same underlying CGFont. CoreText seems
|
|
|
|
|
* to do that in a variety of situations, one of which being vertical
|
|
|
|
|
* text, but also perhaps for caching reasons.
|
|
|
|
|
*
|
|
|
|
|
* First, see if it uses any of our subfonts created to set font features...
|
|
|
|
|
*
|
|
|
|
|
* Next, compare the CGFont to the one we used to create our fonts.
|
|
|
|
|
* Even this doesn't work all the time.
|
|
|
|
|
*
|
|
|
|
|
* Finally, we compare PS names, which I don't think are unique...
|
|
|
|
|
*
|
|
|
|
|
* Looks like if we really want to be sure here we have to modify the
|
|
|
|
|
* font to change the name table, similar to what we do in the uniscribe
|
|
|
|
|
* backend.
|
|
|
|
|
*
|
|
|
|
|
* However, even that wouldn't work if we were passed in the CGFont to
|
2016-04-04 23:54:32 +02:00
|
|
|
|
* construct a hb_face to begin with.
|
2014-08-12 16:32:41 +02:00
|
|
|
|
*
|
2018-04-12 11:10:45 +02:00
|
|
|
|
* See: https://github.com/harfbuzz/harfbuzz/pull/36
|
2016-04-04 23:54:32 +02:00
|
|
|
|
*
|
|
|
|
|
* Also see: https://bugs.chromium.org/p/chromium/issues/detail?id=597098
|
2014-08-12 16:32:41 +02:00
|
|
|
|
*/
|
2014-08-11 21:08:19 +02:00
|
|
|
|
bool matched = false;
|
2018-12-22 00:46:51 +01:00
|
|
|
|
for (unsigned int i = 0; i < range_records.length; i++)
|
2014-08-11 21:08:19 +02:00
|
|
|
|
if (range_records[i].font && CFEqual (run_ct_font, range_records[i].font))
|
|
|
|
|
{
|
|
|
|
|
matched = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (!matched)
|
2014-08-12 16:32:41 +02:00
|
|
|
|
{
|
2018-01-31 14:16:08 +01:00
|
|
|
|
CGFontRef run_cg_font = CTFontCopyGraphicsFont (run_ct_font, nullptr);
|
2014-08-12 16:32:41 +02:00
|
|
|
|
if (run_cg_font)
|
|
|
|
|
{
|
2017-10-11 13:05:59 +02:00
|
|
|
|
matched = CFEqual (run_cg_font, cg_font);
|
2014-08-12 16:32:41 +02:00
|
|
|
|
CFRelease (run_cg_font);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!matched)
|
|
|
|
|
{
|
2017-10-11 13:05:59 +02:00
|
|
|
|
CFStringRef font_ps_name = CTFontCopyName (ct_font, kCTFontPostScriptNameKey);
|
2014-08-12 16:32:41 +02:00
|
|
|
|
CFStringRef run_ps_name = CTFontCopyName (run_ct_font, kCTFontPostScriptNameKey);
|
|
|
|
|
CFComparisonResult result = CFStringCompare (run_ps_name, font_ps_name, 0);
|
|
|
|
|
CFRelease (run_ps_name);
|
|
|
|
|
CFRelease (font_ps_name);
|
|
|
|
|
if (result == kCFCompareEqualTo)
|
|
|
|
|
matched = true;
|
|
|
|
|
}
|
|
|
|
|
if (!matched)
|
2013-11-30 01:17:42 +01:00
|
|
|
|
{
|
2014-08-11 21:08:19 +02:00
|
|
|
|
CFRange range = CTRunGetStringRange (run);
|
2019-08-24 15:27:14 +02:00
|
|
|
|
DEBUG_MSG (CORETEXT, run, "Run used fallback font: %ld..%ld",
|
2014-08-12 05:47:16 +02:00
|
|
|
|
range.location, range.location + range.length);
|
2014-08-11 21:08:19 +02:00
|
|
|
|
if (!buffer->ensure_inplace (buffer->len + range.length))
|
|
|
|
|
goto resize_and_retry;
|
|
|
|
|
hb_glyph_info_t *info = buffer->info + buffer->len;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2015-01-22 04:19:33 +01:00
|
|
|
|
hb_codepoint_t notdef = 0;
|
|
|
|
|
hb_direction_t dir = buffer->props.direction;
|
|
|
|
|
hb_position_t x_advance, y_advance, x_offset, y_offset;
|
|
|
|
|
hb_font_get_glyph_advance_for_direction (font, notdef, dir, &x_advance, &y_advance);
|
|
|
|
|
hb_font_get_glyph_origin_for_direction (font, notdef, dir, &x_offset, &y_offset);
|
|
|
|
|
hb_position_t advance = x_advance + y_advance;
|
|
|
|
|
x_offset = -x_offset;
|
|
|
|
|
y_offset = -y_offset;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-13 00:57:08 +02:00
|
|
|
|
unsigned int old_len = buffer->len;
|
2014-08-11 21:08:19 +02:00
|
|
|
|
for (CFIndex j = range.location; j < range.location + range.length; j++)
|
|
|
|
|
{
|
|
|
|
|
UniChar ch = CFStringGetCharacterAtIndex (string_ref, j);
|
|
|
|
|
if (hb_in_range<UniChar> (ch, 0xDC00u, 0xDFFFu) && range.location < j)
|
|
|
|
|
{
|
|
|
|
|
ch = CFStringGetCharacterAtIndex (string_ref, j - 1);
|
|
|
|
|
if (hb_in_range<UniChar> (ch, 0xD800u, 0xDBFFu))
|
|
|
|
|
/* This is the second of a surrogate pair. Don't need .notdef
|
|
|
|
|
* for this one. */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2015-01-28 19:51:33 +01:00
|
|
|
|
if (buffer->unicode->is_default_ignorable (ch))
|
2019-08-24 15:27:14 +02:00
|
|
|
|
continue;
|
2014-08-11 21:08:19 +02:00
|
|
|
|
|
|
|
|
|
info->codepoint = notdef;
|
2014-08-11 21:11:59 +02:00
|
|
|
|
info->cluster = log_clusters[j];
|
2014-08-11 21:08:19 +02:00
|
|
|
|
|
|
|
|
|
info->mask = advance;
|
2015-08-20 16:39:53 +02:00
|
|
|
|
info->var1.i32 = x_offset;
|
|
|
|
|
info->var2.i32 = y_offset;
|
2014-08-11 21:08:19 +02:00
|
|
|
|
|
|
|
|
|
info++;
|
|
|
|
|
buffer->len++;
|
|
|
|
|
}
|
2014-08-13 00:57:08 +02:00
|
|
|
|
if (HB_DIRECTION_IS_BACKWARD (buffer->props.direction))
|
|
|
|
|
buffer->reverse_range (old_len, buffer->len);
|
2015-01-28 19:43:32 +01:00
|
|
|
|
advances_so_far += run_advance;
|
2014-08-11 21:08:19 +02:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
unsigned int num_glyphs = CTRunGetGlyphCount (run);
|
|
|
|
|
if (num_glyphs == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
2014-08-12 21:49:47 +02:00
|
|
|
|
if (!buffer->ensure_inplace (buffer->len + num_glyphs))
|
2014-08-11 21:08:19 +02:00
|
|
|
|
goto resize_and_retry;
|
|
|
|
|
|
2014-08-12 05:47:16 +02:00
|
|
|
|
hb_glyph_info_t *run_info = buffer->info + buffer->len;
|
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
/* Testing used to indicate that CTRunGetGlyphsPtr, etc (almost?) always
|
|
|
|
|
* succeed, and so copying data to our own buffer will be rare. Reports
|
2017-10-15 12:11:08 +02:00
|
|
|
|
* have it that this changed in OS X 10.10 Yosemite, and nullptr is returned
|
2014-08-11 21:08:19 +02:00
|
|
|
|
* frequently. At any rate, we can test that codepath by setting USE_PTR
|
|
|
|
|
* to false. */
|
2014-08-12 20:25:11 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
#define USE_PTR true
|
2014-08-12 20:25:11 +02:00
|
|
|
|
|
|
|
|
|
#define SCRATCH_SAVE() \
|
|
|
|
|
unsigned int scratch_size_saved = scratch_size; \
|
|
|
|
|
hb_buffer_t::scratch_buffer_t *scratch_saved = scratch
|
|
|
|
|
|
|
|
|
|
#define SCRATCH_RESTORE() \
|
|
|
|
|
scratch_size = scratch_size_saved; \
|
2019-06-19 00:20:38 +02:00
|
|
|
|
scratch = scratch_saved
|
2014-08-12 20:25:11 +02:00
|
|
|
|
|
2015-01-28 19:43:32 +01:00
|
|
|
|
{ /* Setup glyphs */
|
2019-08-24 15:27:14 +02:00
|
|
|
|
SCRATCH_SAVE();
|
2017-10-15 12:11:08 +02:00
|
|
|
|
const CGGlyph* glyphs = USE_PTR ? CTRunGetGlyphsPtr (run) : nullptr;
|
2014-08-12 05:47:16 +02:00
|
|
|
|
if (!glyphs) {
|
|
|
|
|
ALLOCATE_ARRAY (CGGlyph, glyph_buf, num_glyphs, goto resize_and_retry);
|
|
|
|
|
CTRunGetGlyphs (run, range_all, glyph_buf);
|
|
|
|
|
glyphs = glyph_buf;
|
|
|
|
|
}
|
2017-10-15 12:11:08 +02:00
|
|
|
|
const CFIndex* string_indices = USE_PTR ? CTRunGetStringIndicesPtr (run) : nullptr;
|
2014-08-12 05:47:16 +02:00
|
|
|
|
if (!string_indices) {
|
|
|
|
|
ALLOCATE_ARRAY (CFIndex, index_buf, num_glyphs, goto resize_and_retry);
|
|
|
|
|
CTRunGetStringIndices (run, range_all, index_buf);
|
|
|
|
|
string_indices = index_buf;
|
|
|
|
|
}
|
|
|
|
|
hb_glyph_info_t *info = run_info;
|
|
|
|
|
for (unsigned int j = 0; j < num_glyphs; j++)
|
|
|
|
|
{
|
|
|
|
|
info->codepoint = glyphs[j];
|
|
|
|
|
info->cluster = log_clusters[string_indices[j]];
|
|
|
|
|
info++;
|
|
|
|
|
}
|
2014-08-12 20:25:11 +02:00
|
|
|
|
SCRATCH_RESTORE();
|
2014-08-11 21:08:19 +02:00
|
|
|
|
}
|
2014-08-12 05:47:16 +02:00
|
|
|
|
{
|
2019-08-24 15:27:14 +02:00
|
|
|
|
/* Setup positions.
|
2015-01-28 19:43:32 +01:00
|
|
|
|
* Note that CoreText does not return advances for glyphs. As such,
|
|
|
|
|
* for all but last glyph, we use the delta position to next glyph as
|
|
|
|
|
* advance (in the advance direction only), and for last glyph we set
|
|
|
|
|
* whatever is needed to make the whole run's advance add up. */
|
2019-08-24 15:27:14 +02:00
|
|
|
|
SCRATCH_SAVE();
|
2017-10-15 12:11:08 +02:00
|
|
|
|
const CGPoint* positions = USE_PTR ? CTRunGetPositionsPtr (run) : nullptr;
|
2014-08-12 05:47:16 +02:00
|
|
|
|
if (!positions) {
|
|
|
|
|
ALLOCATE_ARRAY (CGPoint, position_buf, num_glyphs, goto resize_and_retry);
|
|
|
|
|
CTRunGetPositions (run, range_all, position_buf);
|
|
|
|
|
positions = position_buf;
|
|
|
|
|
}
|
|
|
|
|
hb_glyph_info_t *info = run_info;
|
|
|
|
|
if (HB_DIRECTION_IS_HORIZONTAL (buffer->props.direction))
|
|
|
|
|
{
|
2021-06-14 20:31:02 +02:00
|
|
|
|
hb_position_t x_offset = round ((positions[0].x - advances_so_far) * x_mult);
|
2014-08-12 05:47:16 +02:00
|
|
|
|
for (unsigned int j = 0; j < num_glyphs; j++)
|
|
|
|
|
{
|
2021-02-17 19:12:56 +01:00
|
|
|
|
CGFloat advance;
|
2015-01-28 19:43:32 +01:00
|
|
|
|
if (likely (j + 1 < num_glyphs))
|
|
|
|
|
advance = positions[j + 1].x - positions[j].x;
|
|
|
|
|
else /* last glyph */
|
|
|
|
|
advance = run_advance - (positions[j].x - positions[0].x);
|
2022-06-28 23:43:57 +02:00
|
|
|
|
/* int cast necessary to pass through negative values. */
|
|
|
|
|
info->mask = (int) round (advance * x_mult);
|
2015-08-20 16:39:53 +02:00
|
|
|
|
info->var1.i32 = x_offset;
|
2021-06-14 20:31:02 +02:00
|
|
|
|
info->var2.i32 = round (positions[j].y * y_mult);
|
2014-08-12 05:47:16 +02:00
|
|
|
|
info++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-06-14 20:31:02 +02:00
|
|
|
|
hb_position_t y_offset = round ((positions[0].y - advances_so_far) * y_mult);
|
2014-08-12 05:47:16 +02:00
|
|
|
|
for (unsigned int j = 0; j < num_glyphs; j++)
|
|
|
|
|
{
|
2021-02-17 19:12:56 +01:00
|
|
|
|
CGFloat advance;
|
2015-01-28 19:43:32 +01:00
|
|
|
|
if (likely (j + 1 < num_glyphs))
|
|
|
|
|
advance = positions[j + 1].y - positions[j].y;
|
|
|
|
|
else /* last glyph */
|
|
|
|
|
advance = run_advance - (positions[j].y - positions[0].y);
|
2022-06-28 23:43:57 +02:00
|
|
|
|
/* int cast necessary to pass through negative values. */
|
|
|
|
|
info->mask = (int) round (advance * y_mult);
|
2021-06-14 20:31:02 +02:00
|
|
|
|
info->var1.i32 = round (positions[j].x * x_mult);
|
2015-08-20 16:39:53 +02:00
|
|
|
|
info->var2.i32 = y_offset;
|
2014-08-12 05:47:16 +02:00
|
|
|
|
info++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-08-12 20:25:11 +02:00
|
|
|
|
SCRATCH_RESTORE();
|
2015-01-28 19:43:32 +01:00
|
|
|
|
advances_so_far += run_advance;
|
2014-08-11 21:08:19 +02:00
|
|
|
|
}
|
2014-08-12 20:25:11 +02:00
|
|
|
|
#undef SCRATCH_RESTORE
|
|
|
|
|
#undef SCRATCH_SAVE
|
2014-08-11 21:08:19 +02:00
|
|
|
|
#undef USE_PTR
|
2012-07-24 21:52:32 +02:00
|
|
|
|
#undef ALLOCATE_ARRAY
|
|
|
|
|
|
2014-08-12 05:47:16 +02:00
|
|
|
|
buffer->len += num_glyphs;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
}
|
2014-08-11 01:05:25 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
buffer->clear_positions ();
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
unsigned int count = buffer->len;
|
2014-08-12 05:47:16 +02:00
|
|
|
|
hb_glyph_info_t *info = buffer->info;
|
|
|
|
|
hb_glyph_position_t *pos = buffer->pos;
|
|
|
|
|
if (HB_DIRECTION_IS_HORIZONTAL (buffer->props.direction))
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
pos->x_advance = info->mask;
|
2015-08-20 16:39:53 +02:00
|
|
|
|
pos->x_offset = info->var1.i32;
|
|
|
|
|
pos->y_offset = info->var2.i32;
|
2017-08-14 00:08:34 +02:00
|
|
|
|
|
2022-06-16 00:57:16 +02:00
|
|
|
|
info++; pos++;
|
2014-08-12 05:47:16 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
pos->y_advance = info->mask;
|
2015-08-20 16:39:53 +02:00
|
|
|
|
pos->x_offset = info->var1.i32;
|
|
|
|
|
pos->y_offset = info->var2.i32;
|
2017-08-14 00:08:34 +02:00
|
|
|
|
|
2022-06-16 00:57:16 +02:00
|
|
|
|
info++; pos++;
|
2014-08-12 05:47:16 +02:00
|
|
|
|
}
|
2012-07-24 21:52:32 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
/* Fix up clusters so that we never return out-of-order indices;
|
|
|
|
|
* if core text has reordered glyphs, we'll merge them to the
|
2014-08-12 02:02:45 +02:00
|
|
|
|
* beginning of the reordered cluster. CoreText is nice enough
|
|
|
|
|
* to tell us whenever it has produced nonmonotonic results...
|
|
|
|
|
* Note that we assume the input clusters were nonmonotonic to
|
|
|
|
|
* begin with.
|
2014-08-11 21:08:19 +02:00
|
|
|
|
*
|
|
|
|
|
* This does *not* mean we'll form the same clusters as Uniscribe
|
|
|
|
|
* or the native OT backend, only that the cluster indices will be
|
|
|
|
|
* monotonic in the output buffer. */
|
2022-06-28 23:38:58 +02:00
|
|
|
|
if (count > 1 && (status_or & kCTRunStatusNonMonotonic) &&
|
|
|
|
|
buffer->cluster_level != HB_BUFFER_CLUSTER_LEVEL_CHARACTERS)
|
2014-08-11 08:04:38 +02:00
|
|
|
|
{
|
2014-08-11 21:08:19 +02:00
|
|
|
|
hb_glyph_info_t *info = buffer->info;
|
|
|
|
|
if (HB_DIRECTION_IS_FORWARD (buffer->props.direction))
|
2014-08-11 08:04:38 +02:00
|
|
|
|
{
|
2014-08-11 21:08:19 +02:00
|
|
|
|
unsigned int cluster = info[count - 1].cluster;
|
|
|
|
|
for (unsigned int i = count - 1; i > 0; i--)
|
|
|
|
|
{
|
2019-05-08 05:54:31 +02:00
|
|
|
|
cluster = hb_min (cluster, info[i - 1].cluster);
|
2014-08-11 21:08:19 +02:00
|
|
|
|
info[i - 1].cluster = cluster;
|
|
|
|
|
}
|
2012-07-26 21:58:45 +02:00
|
|
|
|
}
|
2014-08-11 21:08:19 +02:00
|
|
|
|
else
|
2014-08-11 08:04:38 +02:00
|
|
|
|
{
|
2014-08-11 21:08:19 +02:00
|
|
|
|
unsigned int cluster = info[0].cluster;
|
|
|
|
|
for (unsigned int i = 1; i < count; i++)
|
|
|
|
|
{
|
2019-05-08 05:54:31 +02:00
|
|
|
|
cluster = hb_min (cluster, info[i].cluster);
|
2014-08-11 21:08:19 +02:00
|
|
|
|
info[i].cluster = cluster;
|
|
|
|
|
}
|
2012-07-26 21:58:45 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-28 23:43:57 +02:00
|
|
|
|
/* TODO: Sometimes the above positioning code generates negative
|
|
|
|
|
* advance values. Fix them up. Example, with NotoNastaliqUrdu
|
|
|
|
|
* font and sequence ابهد. */
|
|
|
|
|
|
2022-01-22 19:41:30 +01:00
|
|
|
|
buffer->clear_glyph_flags ();
|
|
|
|
|
buffer->unsafe_to_break ();
|
2017-11-11 02:14:27 +01:00
|
|
|
|
|
2014-08-11 23:46:50 +02:00
|
|
|
|
#undef FAIL
|
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
fail:
|
|
|
|
|
if (string_ref)
|
|
|
|
|
CFRelease (string_ref);
|
|
|
|
|
if (line)
|
|
|
|
|
CFRelease (line);
|
|
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
|
for (unsigned int i = 0; i < range_records.length; i++)
|
2014-08-11 21:08:19 +02:00
|
|
|
|
if (range_records[i].font)
|
|
|
|
|
CFRelease (range_records[i].font);
|
2013-07-30 20:48:23 +02:00
|
|
|
|
|
2014-08-11 21:08:19 +02:00
|
|
|
|
return ret;
|
2012-07-24 21:52:32 +02:00
|
|
|
|
}
|
2014-03-15 00:37:55 +01:00
|
|
|
|
|
|
|
|
|
|
2019-06-18 07:41:49 +02:00
|
|
|
|
#endif
|