/* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "AbstractFontConverter.h" #include #include #include #include #include #include #include #include "Magnum/Text/AbstractGlyphCache.h" #ifndef CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT #include "Magnum/Text/configure.h" #endif namespace Magnum { namespace Text { namespace { std::u32string uniqueUnicode(const std::string& characters) { /* Convert UTF-8 to UTF-32 */ std::u32string result = Utility::Unicode::utf32(characters); /* Remove duplicate glyphs */ std::sort(result.begin(), result.end()); result.erase(std::unique(result.begin(), result.end()), result.end()); return result; } } std::string AbstractFontConverter::pluginInterface() { return /* [interface] */ "cz.mosra.magnum.Text.AbstractFontConverter/0.2" /* [interface] */ ; } #ifndef CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT std::vector AbstractFontConverter::pluginSearchPaths() { return PluginManager::implicitPluginSearchPaths( #ifndef MAGNUM_BUILD_STATIC Utility::Directory::libraryLocation(&pluginInterface), #else {}, #endif #ifdef CORRADE_IS_DEBUG_BUILD MAGNUM_PLUGINS_FONTCONVERTER_DEBUG_DIR, #else MAGNUM_PLUGINS_FONTCONVERTER_DIR, #endif #ifdef CORRADE_IS_DEBUG_BUILD "magnum-d/" #else "magnum/" #endif "fontconverters"); } #endif AbstractFontConverter::AbstractFontConverter() = default; AbstractFontConverter::AbstractFontConverter(PluginManager::AbstractManager& manager, const std::string& plugin): PluginManager::AbstractPlugin{manager, plugin} {} std::vector>> AbstractFontConverter::exportFontToData(AbstractFont& font, AbstractGlyphCache& cache, const std::string& filename, const std::string& characters) const { CORRADE_ASSERT(features() >= (FontConverterFeature::ExportFont|FontConverterFeature::ConvertData), "Text::AbstractFontConverter::exportFontToData(): feature not supported", {}); return doExportFontToData(font, cache, filename, uniqueUnicode(characters)); } std::vector>> AbstractFontConverter::doExportFontToData(AbstractFont& font, AbstractGlyphCache& cache, const std::string& filename, const std::u32string& characters) const { CORRADE_ASSERT(!(features() & FontConverterFeature::MultiFile), "Text::AbstractFontConverter::exportFontToData(): feature advertised but not implemented", {}); std::vector>> out; out.emplace_back(filename, doExportFontToSingleData(font, cache, characters)); return out; } Containers::Array AbstractFontConverter::exportFontToSingleData(AbstractFont& font, AbstractGlyphCache& cache, const std::string& characters) const { CORRADE_ASSERT(features() >= (FontConverterFeature::ExportFont|FontConverterFeature::ConvertData), "Text::AbstractFontConverter::exportFontToSingleData(): feature not supported", nullptr); CORRADE_ASSERT(!(features() & FontConverterFeature::MultiFile), "Text::AbstractFontConverter::exportFontToSingleData(): the format is not single-file", nullptr); return doExportFontToSingleData(font, cache, uniqueUnicode(characters)); } Containers::Array AbstractFontConverter::doExportFontToSingleData(AbstractFont&, AbstractGlyphCache&, const std::u32string&) const { CORRADE_ASSERT_UNREACHABLE("Text::AbstractFontConverter::exportFontToSingleData(): feature advertised but not implemented", {}); } bool AbstractFontConverter::exportFontToFile(AbstractFont& font, AbstractGlyphCache& cache, const std::string& filename, const std::string& characters) const { CORRADE_ASSERT(features() & FontConverterFeature::ExportFont, "Text::AbstractFontConverter::exportFontToFile(): feature not supported", false); return doExportFontToFile(font, cache, filename, uniqueUnicode(characters)); } bool AbstractFontConverter::doExportFontToFile(AbstractFont& font, AbstractGlyphCache& cache, const std::string& filename, const std::u32string& characters) const { CORRADE_ASSERT(features() & FontConverterFeature::ConvertData, "Text::AbstractFontConverter::exportFontToFile(): not implemented", false); /* Export all data */ const auto data = doExportFontToData(font, cache, filename, characters); if(data.empty()) return false; for(const auto& d: data) if(!Utility::Directory::write(d.first, d.second)) { Error() << "Text::AbstractFontConverter::exportFontToFile(): cannot write to file" << d.first; return false; } return true; } std::vector>> AbstractFontConverter::exportGlyphCacheToData(AbstractGlyphCache& cache, const std::string& filename) const { CORRADE_ASSERT(features() >= (FontConverterFeature::ExportGlyphCache|FontConverterFeature::ConvertData), "Text::AbstractFontConverter::exportGlyphCacheToData(): feature not supported", {}); return doExportGlyphCacheToData(cache, filename); } std::vector>> AbstractFontConverter::doExportGlyphCacheToData(AbstractGlyphCache& cache, const std::string& filename) const { CORRADE_ASSERT(!(features() & FontConverterFeature::MultiFile), "Text::AbstractFontConverter::exportGlyphCacheToData(): feature advertised but not implemented", {}); std::vector>> out; out.emplace_back(filename, doExportGlyphCacheToSingleData(cache)); return out; } Containers::Array AbstractFontConverter::exportGlyphCacheToSingleData(AbstractGlyphCache& cache) const { CORRADE_ASSERT(features() >= (FontConverterFeature::ExportGlyphCache|FontConverterFeature::ConvertData), "Text::AbstractFontConverter::exportGlyphCacheToSingleData(): feature not supported", nullptr); CORRADE_ASSERT(!(features() & FontConverterFeature::MultiFile), "Text::AbstractFontConverter::exportGlyphCacheToSingleData(): the format is not single-file", nullptr); return doExportGlyphCacheToSingleData(cache); } Containers::Array AbstractFontConverter::doExportGlyphCacheToSingleData(AbstractGlyphCache&) const { CORRADE_ASSERT_UNREACHABLE("Text::AbstractFontConverter::exportGlyphCacheToSingleData(): feature advertised but not implemented", {}); } bool AbstractFontConverter::exportGlyphCacheToFile(AbstractGlyphCache& cache, const std::string& filename) const { CORRADE_ASSERT(features() & FontConverterFeature::ExportGlyphCache, "Text::AbstractFontConverter::exportGlyphCacheToFile(): feature not supported", false); return doExportGlyphCacheToFile(cache, filename); } bool AbstractFontConverter::doExportGlyphCacheToFile(AbstractGlyphCache& cache, const std::string& filename) const { CORRADE_ASSERT(features() & FontConverterFeature::ConvertData, "Text::AbstractFontConverter::exportGlyphCacheToFile(): not implemented", false); /* Export all data */ const auto data = doExportGlyphCacheToData(cache, filename); if(data.empty()) return false; for(const auto& d: data) if(!Utility::Directory::write(d.first, d.second)) { Error() << "Text::AbstractFontConverter::exportGlyphCacheToFile(): cannot write to file" << d.first; return false; } return true; } Containers::Pointer AbstractFontConverter::importGlyphCacheFromData(const std::vector>>& data) const { CORRADE_ASSERT(features() >= (FontConverterFeature::ImportGlyphCache|FontConverterFeature::ConvertData), "Text::AbstractFontConverter::importGlyphCacheFromData(): feature not supported", nullptr); CORRADE_ASSERT(!data.empty(), "Text::AbstractFontConverter::importGlyphCacheFromData(): no data passed", nullptr); return doImportGlyphCacheFromData(data); } Containers::Pointer AbstractFontConverter::doImportGlyphCacheFromData(const std::vector>>& data) const { CORRADE_ASSERT(!(features() & FontConverterFeature::MultiFile), "Text::AbstractFontConverter::importGlyphCacheFromData(): feature advertised but not implemented", nullptr); CORRADE_ASSERT(data.size() == 1, "Text::AbstractFontConverter::importGlyphCacheFromData(): expected just one file for single-file format", nullptr); return doImportGlyphCacheFromSingleData(data[0].second); } Containers::Pointer AbstractFontConverter::importGlyphCacheFromSingleData(Containers::ArrayView data) const { CORRADE_ASSERT(features() >= (FontConverterFeature::ImportGlyphCache|FontConverterFeature::ConvertData), "Text::AbstractFontConverter::importGlyphCacheFromSingleData(): feature not supported", nullptr); CORRADE_ASSERT(!(features() & FontConverterFeature::MultiFile), "Text::AbstractFontConverter::importGlyphCacheFromSingleData(): the format is not single-file", nullptr); return doImportGlyphCacheFromSingleData(data); } Containers::Pointer AbstractFontConverter::doImportGlyphCacheFromSingleData(Containers::ArrayView) const { CORRADE_ASSERT_UNREACHABLE("Text::AbstractFontConverter::importGlyphCacheFromSingleData(): feature advertised but not implemented", {}); } Containers::Pointer AbstractFontConverter::importGlyphCacheFromFile(const std::string& filename) const { CORRADE_ASSERT(features() & FontConverterFeature::ImportGlyphCache, "Text::AbstractFontConverter::importGlyphCacheFromFile(): feature not supported", nullptr); return doImportGlyphCacheFromFile(filename); } Containers::Pointer AbstractFontConverter::doImportGlyphCacheFromFile(const std::string& filename) const { CORRADE_ASSERT(features() & FontConverterFeature::ConvertData && !(features() & FontConverterFeature::MultiFile), "Text::AbstractFontConverter::importGlyphCacheFromFile(): not implemented", nullptr); /* Open file */ if(!Utility::Directory::exists(filename)) { Error() << "Text::AbstractFontConverter::importGlyphCacheFromFile(): cannot open file" << filename; return nullptr; } return doImportGlyphCacheFromSingleData(Utility::Directory::read(filename)); } Debug& operator<<(Debug& debug, const FontConverterFeature value) { debug << "Text::FontConverterFeature" << Debug::nospace; switch(value) { /* LCOV_EXCL_START */ #define _c(v) case FontConverterFeature::v: return debug << "::" #v; _c(ExportFont) _c(ExportGlyphCache) _c(ImportGlyphCache) _c(ConvertData) _c(MultiFile) #undef _c /* LCOV_EXCL_STOP */ } return debug << "(" << Debug::nospace << reinterpret_cast(Containers::enumCastUnderlyingType(value)) << Debug::nospace << ")"; } Debug& operator<<(Debug& debug, const FontConverterFeatures value) { return Containers::enumSetDebugOutput(debug, value, "Text::FontConverterFeatures{}", { FontConverterFeature::ExportFont, FontConverterFeature::ExportGlyphCache, FontConverterFeature::ImportGlyphCache, FontConverterFeature::ConvertData, FontConverterFeature::MultiFile}); } }}