goldendict-ng/src/metadata.cc
shenleban tongying 0c75d4f399
cmake: updates
* add USE_SYSTEM_FMT & USE_SYSTEM_TOML
* switch back to libeb
2023-06-01 01:28:45 -04:00

39 lines
1.1 KiB
C++

#include "metadata.hh"
#include "toml++/toml.h"
#include <QDebug>
#include <QFile>
std::optional< Metadata::result > Metadata::load( std::string_view filepath )
{
if ( !QFile::exists( QString::fromStdString( std::string{ filepath } ) ) ) {
return std::nullopt;
}
// by default, the optional will be initialized as std::nullopt
Metadata::result result{};
toml::table tbl;
try {
tbl = toml::parse_file( filepath );
}
catch ( toml::parse_error & e ) {
qWarning()<< "Failed to load metadata: " << QString::fromUtf8(filepath.data(),filepath.size())
<< "Reason:" << e.what();
return std::nullopt;
}
if ( toml::array * categories = tbl.get_as< toml::array >( "categories" ) ) {
// result.categories is an optional, it exists, but the vector does not, so we have to create one here
result.categories.emplace();
for ( auto & el : *categories ) {
if ( el.is_string() ) {
result.categories.value().emplace_back( std::move( *el.value_exact< std::string >() ) );
}
}
}
result.name = tbl[ "metadata" ][ "name" ].value_exact< std::string >();
return result;
}