Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Slow loading of monospace fonts #247

Closed
Itsusinn opened this issue Apr 26, 2024 · 7 comments
Closed

Slow loading of monospace fonts #247

Itsusinn opened this issue Apr 26, 2024 · 7 comments

Comments

@Itsusinn
Copy link
Contributor

Itsusinn commented Apr 26, 2024

cloned_monospace_font_ids.into_iter().for_each(|id| {
if let Some(font) = ret.get_font(id) {
font.scripts().iter().copied().for_each(|script| {
ret.per_script_monospace_font_ids
.entry(script)
.or_default()
.push(font.id);
});
}
});

It takes 2 seconds on my nixos

which makes startup slow

@Itsusinn
Copy link
Contributor Author

Itsusinn commented Apr 26, 2024

I change the code into

        log::error!("before foreach");
        cloned_monospace_font_ids.into_iter().for_each(|id| {
            if let Some(font) = ret.get_font(id) {
                log::error!("font id:{} size:{}", font.id, font.scripts.len());
                font.scripts().iter().copied().for_each(|script| {
                    ret.per_script_monospace_font_ids
                        .entry(script)
                        .or_default()
                        .push(font.id);
                });
            }
        });
        log::error!("after foreach");

then i get

CLICK ME

[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] before foreach
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967297 size:4
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967298 size:4
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967299 size:4
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967377 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967378 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967379 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967380 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967381 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967382 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967383 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967384 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967385 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967386 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967387 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967388 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967389 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967390 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967391 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967392 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967393 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967394 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967395 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967396 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967397 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967398 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967399 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967400 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967401 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967402 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967403 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967404 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967405 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967406 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967407 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967408 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967409 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967410 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967411 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967412 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967425 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967426 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967427 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967428 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967429 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967430 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967431 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967432 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967433 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967434 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967435 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967436 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967437 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967438 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967439 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967440 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967441 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967442 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967443 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967444 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967445 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967446 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967447 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967448 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967449 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967450 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967451 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967452 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967453 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967454 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967455 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967456 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967457 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967458 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967459 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967460 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967473 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967474 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967475 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967476 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967477 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967478 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967479 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967480 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967481 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967482 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967483 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967484 size:14
[2024-04-26T14:56:58Z ERROR cosmic_text::font::system] font id:4294967485 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967486 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967487 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967488 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967489 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967490 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967491 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967492 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967493 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967494 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967495 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967496 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967497 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967498 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967499 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967500 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967501 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967502 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967503 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967504 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967505 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967506 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967507 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967508 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967521 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967522 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967523 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967524 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967525 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967526 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967527 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967528 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967529 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967530 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967531 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967532 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967533 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967534 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967535 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967536 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967537 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967538 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967539 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967540 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967541 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967542 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967543 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967544 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967545 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967546 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967547 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967548 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967549 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967550 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967551 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967552 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967553 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967554 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967555 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967556 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967569 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967570 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967571 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967572 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967573 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967574 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967575 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967576 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967577 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967578 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967579 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967580 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967581 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967582 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967583 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967584 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967585 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967586 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967587 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967588 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967589 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967590 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967591 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967592 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967593 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967594 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967595 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967596 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967597 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967598 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967599 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967600 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967601 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967602 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967603 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967604 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967617 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967618 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967619 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967620 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967621 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967622 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967623 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967624 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967625 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967626 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967627 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967628 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967629 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967630 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967631 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967632 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967633 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967634 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967635 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967636 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967637 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967638 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967639 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967640 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967641 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967642 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967643 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967644 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967645 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967646 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967647 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967648 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967649 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967650 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967651 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967652 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967665 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967666 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967667 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967668 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967669 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967670 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967671 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967672 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967673 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967674 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967675 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967676 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967677 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967678 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967679 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967680 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967681 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967682 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967683 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967684 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967685 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967686 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967687 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967688 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967689 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967690 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967691 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967692 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967693 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967694 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967695 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967696 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967697 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967698 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967699 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967700 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967713 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967714 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967715 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967716 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967717 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967718 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967719 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967720 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967721 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967722 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967723 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967724 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967725 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967726 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967727 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967728 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967729 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967730 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967731 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967732 size:14
[2024-04-26T14:56:59Z ERROR cosmic_text::font::system] font id:4294967733 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967734 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967735 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967736 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967737 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967738 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967739 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967740 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967741 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967742 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967743 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967744 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967745 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967746 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967747 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967748 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967761 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967762 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967763 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967764 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967765 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967766 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967767 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967768 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967769 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967770 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967771 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967772 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967773 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967774 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967775 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967776 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967777 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967778 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967779 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967780 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967781 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967782 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967783 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967784 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967785 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967786 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967787 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967788 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967789 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967790 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967791 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967792 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967793 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967794 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967795 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967796 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967809 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967810 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967811 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967812 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967813 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967814 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967815 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967816 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967817 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967818 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967819 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967820 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967821 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967822 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967823 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967824 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967825 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967826 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967827 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967828 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967829 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967830 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967831 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967832 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967833 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967834 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967835 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967836 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967837 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967838 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967839 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967840 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967841 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967842 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967843 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967844 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967845 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967846 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967847 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967848 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967849 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967850 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967851 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967852 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967853 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967854 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967855 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967856 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967857 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967858 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967859 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967860 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967861 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967862 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967863 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967864 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967865 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967866 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967867 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967868 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967869 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967870 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967871 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967872 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967873 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967874 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967875 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967876 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967877 size:0
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294967878 size:4
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968142 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968145 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968148 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968151 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968154 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968157 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968169 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968170 size:8
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968171 size:8
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968172 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968181 size:12
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968182 size:6
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968183 size:6
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968184 size:6
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968202 size:6
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968203 size:6
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968204 size:6
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968205 size:6
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968226 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968227 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968228 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968229 size:14
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] font id:4294968238 size:2
[2024-04-26T14:57:00Z ERROR cosmic_text::font::system] after foreach

@Itsusinn
Copy link
Contributor Author

Itsusinn commented Apr 26, 2024

I would like make a pr to solve this problem.
My first thought is use something like rayon, but i am not sure if it is doable or suitable

@Itsusinn
Copy link
Contributor Author

pub fn get_font(&mut self, id: fontdb::ID) -> Option<Arc<Font>> {
self.font_cache
.entry(id)
.or_insert_with(|| {
#[cfg(feature = "std")]
unsafe {
self.db.make_shared_face_data(id);
}
match Font::new(&self.db, id) {
Some(font) => Some(Arc::new(font)),
None => {
log::warn!(
"failed to load font '{}'",
self.db.face(id)?.post_script_name
);
None
}
}
})
.clone()
}

https://docs.rs/fontdb/0.16.2/src/fontdb/lib.rs.html#656-689

Maybe IO bound

@Itsusinn

This comment was marked as outdated.

@Itsusinn

This comment was marked as outdated.

@Itsusinn
Copy link
Contributor Author

Itsusinn commented Apr 28, 2024

perf

It's CPU bound.
Most time spent on parsing ttf

@Itsusinn
Copy link
Contributor Author

#249

@Itsusinn Itsusinn closed this as completed Jun 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant