Branch libreoffice-5-0-4
[LibreOffice.git] / vcl / inc / fontcache.hxx
blob416319c28db08684a3b9f2524d33397dc4381b56
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #ifndef INCLUDED_VCL_INC_FONTCACHE_HXX
21 #define INCLUDED_VCL_INC_FONTCACHE_HXX
23 #include <rtl/ustring.hxx>
24 #include <vcl/dllapi.h>
25 #include <unordered_map>
27 #include "fontmanager.hxx"
29 namespace psp
32 class VCL_PLUGIN_PUBLIC FontCache
34 struct FontDir;
35 friend struct FontDir;
36 struct FontFile;
37 friend struct FontFile;
39 typedef std::list< PrintFontManager::PrintFont* > FontCacheEntry;
40 struct FontFile
42 FontCacheEntry m_aEntry;
45 typedef std::unordered_map< OString, FontFile, OStringHash > FontDirMap;
46 struct FontDir
48 sal_Int64 m_nTimestamp;
49 bool m_bNoFiles;
50 bool m_bUserOverrideOnly;
51 FontDirMap m_aEntries;
53 FontDir() : m_nTimestamp(0), m_bNoFiles(false), m_bUserOverrideOnly( false ) {}
56 typedef std::unordered_map< int, FontDir > FontCacheData;
57 FontCacheData m_aCache;
58 OUString m_aCacheFile;
59 bool m_bDoFlush;
61 void read();
62 void clearCache();
64 static void copyPrintFont( const PrintFontManager::PrintFont* pFrom, PrintFontManager::PrintFont* pTo );
65 static bool equalsPrintFont( const PrintFontManager::PrintFont* pLeft, PrintFontManager::PrintFont* pRight );
66 static PrintFontManager::PrintFont* clonePrintFont( const PrintFontManager::PrintFont* pFont );
68 void createCacheDir( int nDirID );
69 public:
70 FontCache();
71 ~FontCache();
73 bool getFontCacheFile( int nDirID, const OString& rFile, std::list< PrintFontManager::PrintFont* >& rNewFonts ) const;
74 void updateFontCacheEntry( const PrintFontManager::PrintFont*, bool bFlush );
76 // returns false for non cached directory
77 // a cached but empty directory will return true but not append anything
78 bool listDirectory( const OString& rDir, std::list< PrintFontManager::PrintFont* >& rNewFonts ) const;
79 // returns true for directoris that contain only user overridden fonts
80 bool scanAdditionalFiles( const OString& rDir );
82 void flush();
85 } // namespace psp
87 #endif // INCLUDED_VCL_INC_FONTCACHE_HXX
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */