1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <TextLayoutCache.hxx>
24 #include <o3tl/hash_combine.hxx>
25 #include <o3tl/lru_map.hxx>
26 #include <unotools/configmgr.hxx>
27 #include <vcl/lazydelete.hxx>
28 #include <officecfg/Office/Common.hxx>
32 TextLayoutCache::TextLayoutCache(sal_Unicode
const* pStr
, sal_Int32
const nEnd
)
34 vcl::ScriptRun
aScriptRun(reinterpret_cast<const UChar
*>(pStr
), nEnd
);
35 while (aScriptRun
.next())
37 runs
.emplace_back(aScriptRun
.getScriptStart(), aScriptRun
.getScriptEnd(),
38 aScriptRun
.getScriptCode());
44 struct TextLayoutCacheCost
46 size_t operator()(const std::shared_ptr
<const TextLayoutCache
>& item
) const
48 return item
->runs
.size() * sizeof(item
->runs
.front());
53 std::shared_ptr
<const TextLayoutCache
> TextLayoutCache::Create(OUString
const& rString
)
55 typedef o3tl::lru_map
<OUString
, std::shared_ptr
<const TextLayoutCache
>, FirstCharsStringHash
,
56 FastStringCompareEqual
, TextLayoutCacheCost
>
58 static vcl::DeleteOnDeinit
<Cache
> cache(
59 !utl::ConfigManager::IsFuzzing()
60 ? officecfg::Office::Common::Cache::Font::TextRunsCacheSize::get()
62 if (Cache
* map
= cache
.get())
64 auto it
= map
->find(rString
);
67 auto ret
= std::make_shared
<const TextLayoutCache
>(rString
.getStr(), rString
.getLength());
68 map
->insert({ rString
, ret
});
71 return std::make_shared
<const TextLayoutCache
>(rString
.getStr(), rString
.getLength());
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */