goldendict-ng/src/instances.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

187 lines
4.8 KiB
C++
Raw Normal View History

2012-02-20 21:47:14 +00:00
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "instances.hh"
#include <set>
#include <QBuffer>
#include <utility>
namespace Instances {
using std::set;
using std::string;
Group::Group( Config::Group const & cfgGroup,
2022-07-08 13:47:09 +00:00
std::vector< sptr< Dictionary::Class > > const & allDictionaries,
Config::Group const & inactiveGroup ):
id( cfgGroup.id ),
name( cfgGroup.name ),
icon( cfgGroup.icon ),
2017-05-05 14:39:51 +00:00
favoritesFolder( cfgGroup.favoritesFolder ),
shortcut( cfgGroup.shortcut )
{
if ( !cfgGroup.iconData.isEmpty() )
iconData = iconFromData( cfgGroup.iconData );
QMap< string, sptr< Dictionary::Class > > groupDicts;
QList< string > dictOrderList;
2022-07-08 13:47:09 +00:00
auto dictMap = Dictionary::dictToMap( allDictionaries );
2023-05-13 00:44:17 +00:00
for ( auto const & dict : cfgGroup.dictionaries ) {
std::string const dictId = dict.id.toStdString();
2023-05-13 00:44:17 +00:00
if ( dictMap.contains( dictId ) ) {
groupDicts.insert( dictId, dictMap[ dictId ] );
dictOrderList.push_back( dictId );
}
}
// Remove inactive dictionaries
if ( !inactiveGroup.dictionaries.isEmpty() ) {
2023-05-13 00:44:17 +00:00
for ( auto const & dict : inactiveGroup.dictionaries ) {
string const dictId = dict.id.toStdString();
2023-05-13 00:44:17 +00:00
groupDicts.remove( dictId );
dictOrderList.removeOne( dictId );
}
}
for ( const auto & dictId : dictOrderList ) {
if ( groupDicts.contains( dictId ) ) {
dictionaries.push_back( groupDicts[ dictId ] );
}
}
}
Group::Group( QString name_ ):
id( 0 ),
name( std::move( name_ ) )
{
}
Group::Group( unsigned id_, QString name_ ):
id( id_ ),
name( std::move( name_ ) )
{
}
Config::Group Group::makeConfigGroup()
{
Config::Group result;
result.id = id;
result.name = name;
result.icon = icon;
result.shortcut = shortcut;
2017-05-05 14:39:51 +00:00
result.favoritesFolder = favoritesFolder;
if ( !iconData.isNull() ) {
QDataStream stream( &result.iconData, QIODevice::WriteOnly );
stream << iconData;
}
2023-05-13 00:44:17 +00:00
for ( auto const & dict : dictionaries ) {
result.dictionaries.push_back(
2023-05-13 00:44:17 +00:00
Config::DictionaryRef( dict->getId().c_str(), QString::fromUtf8( dict->getName().c_str() ) ) );
}
return result;
}
QIcon Group::makeIcon() const
{
if ( !iconData.isNull() )
return iconData;
QIcon i = icon.size() ? QIcon( ":/flags/" + icon ) : QIcon();
return i;
}
void Group::checkMutedDictionaries( Config::MutedDictionaries * mutedDictionaries ) const
{
Config::MutedDictionaries temp;
2023-05-13 00:44:17 +00:00
for ( auto const & dict : dictionaries ) {
auto dictId = QString::fromStdString( dict->getId() );
if ( mutedDictionaries->contains( dictId ) )
temp.insert( dictId );
}
*mutedDictionaries = temp;
}
Group * Groups::findGroup( unsigned id )
{
for ( unsigned x = 0; x < size(); ++x )
if ( operator[]( x ).id == id )
return &( operator[]( x ) );
2023-05-13 00:44:17 +00:00
return nullptr;
}
Group const * Groups::findGroup( unsigned id ) const
{
for ( unsigned x = 0; x < size(); ++x )
if ( operator[]( x ).id == id )
return &( operator[]( x ) );
2023-05-13 00:44:17 +00:00
return nullptr;
}
void complementDictionaryOrder( Group & group,
Group const & inactiveDictionaries,
vector< sptr< Dictionary::Class > > const & dicts )
{
2023-05-13 00:44:17 +00:00
set< string, std::less<> > presentIds;
for ( unsigned x = group.dictionaries.size(); x--; )
presentIds.insert( group.dictionaries[ x ]->getId() );
for ( unsigned x = inactiveDictionaries.dictionaries.size(); x--; )
presentIds.insert( inactiveDictionaries.dictionaries[ x ]->getId() );
for ( const auto & dict : dicts ) {
if ( presentIds.find( dict->getId() ) == presentIds.end() )
group.dictionaries.push_back( dict );
}
}
void updateNames( Config::Group & group, vector< sptr< Dictionary::Class > > const & allDictionaries )
{
for ( unsigned x = group.dictionaries.size(); x--; ) {
std::string const id = group.dictionaries[ x ].id.toStdString();
for ( unsigned y = allDictionaries.size(); y--; )
if ( allDictionaries[ y ]->getId() == id ) {
group.dictionaries[ x ].name = QString::fromUtf8( allDictionaries[ y ]->getName().c_str() );
break;
}
}
}
void updateNames( Config::Groups & groups, vector< sptr< Dictionary::Class > > const & allDictionaries )
{
for ( auto & group : groups )
updateNames( group, allDictionaries );
}
void updateNames( Config::Class & cfg, vector< sptr< Dictionary::Class > > const & allDictionaries )
{
updateNames( cfg.dictionaryOrder, allDictionaries );
updateNames( cfg.inactiveDictionaries, allDictionaries );
updateNames( cfg.groups, allDictionaries );
}
QIcon iconFromData( QByteArray const & iconData )
{
QDataStream stream( iconData );
QIcon result;
stream >> result;
return result;
}
} // namespace Instances