2020-08-18 01:23:41 +03:00
/*
* Copyright 2020 Michail Vourlakos < mvourlakos @ gmail . com >
*
* This file is part of Latte - Dock
*
* Latte - Dock is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation ; either version 2 of
* the License , or ( at your option ) any later version .
*
* Latte - Dock is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# include "storage.h"
// local
2020-08-18 02:15:28 +03:00
# include "importer.h"
2020-08-18 01:44:10 +03:00
# include "manager.h"
# include "../lattecorona.h"
2020-08-18 02:56:33 +03:00
# include "../screenpool.h"
2020-08-18 02:15:28 +03:00
# include "../layout/abstractlayout.h"
2020-08-18 02:56:33 +03:00
# include "../view/view.h"
2020-08-18 01:23:41 +03:00
// Qt
# include <QDebug>
# include <QDir>
# include <QFile>
# include <QFileInfo>
// KDE
# include <KConfigGroup>
2020-08-20 17:28:29 +03:00
# include <KPluginMetaData>
2020-08-18 01:23:41 +03:00
# include <KSharedConfig>
2020-08-20 17:28:29 +03:00
# include <KPackage/Package>
# include <KPackage/PackageLoader>
2020-08-18 01:23:41 +03:00
// Plasma
# include <Plasma>
# include <Plasma/Applet>
# include <Plasma/Containment>
namespace Latte {
namespace Layouts {
2020-08-19 17:36:25 +03:00
const int Storage : : IDNULL = - 1 ;
const int Storage : : IDBASE = 0 ;
2020-08-18 01:23:41 +03:00
Storage : : Storage ( )
{
qDebug ( ) < < " >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> LAYOUTS::STORAGE, TEMP DIR ::: " < < m_storageTmpDir . path ( ) ;
2020-08-19 15:14:46 +03:00
SubContaimentIdentityData data ;
//! Systray
2020-08-19 16:26:08 +03:00
m_subIdentities < < SubContaimentIdentityData { . cfgGroup = " Configuration " , . cfgProperty = " SystrayContainmentId " } ;
2020-08-19 15:14:46 +03:00
//! Group applet
2020-08-19 16:26:08 +03:00
m_subIdentities < < SubContaimentIdentityData { . cfgGroup = " Configuration " , . cfgProperty = " ContainmentId " } ;
2020-08-18 01:23:41 +03:00
}
Storage : : ~ Storage ( )
{
}
Storage * Storage : : self ( )
{
static Storage store ;
return & store ;
}
bool Storage : : isWritable ( const Layout : : GenericLayout * layout ) const
{
QFileInfo layoutFileInfo ( layout - > file ( ) ) ;
if ( layoutFileInfo . exists ( ) & & ! layoutFileInfo . isWritable ( ) ) {
return false ;
} else {
return true ;
}
}
bool Storage : : isLatteContainment ( Plasma : : Containment * containment ) const
{
if ( ! containment ) {
return false ;
}
if ( containment - > pluginMetaData ( ) . pluginId ( ) = = " org.kde.latte.containment " ) {
return true ;
}
return false ;
}
bool Storage : : isLatteContainment ( const KConfigGroup & group ) const
{
QString pluginId = group . readEntry ( " plugin " , " " ) ;
return pluginId = = " org.kde.latte.containment " ;
}
2020-08-19 15:01:45 +03:00
bool Storage : : isSubContainment ( const Layout : : GenericLayout * layout , const Plasma : : Applet * applet ) const
{
if ( ! layout | | ! applet ) {
return false ;
}
for ( const auto containment : * layout - > containments ( ) ) {
Plasma : : Applet * parentApplet = qobject_cast < Plasma : : Applet * > ( containment - > parent ( ) ) ;
if ( parentApplet & & parentApplet = = applet ) {
return true ;
}
}
return false ;
}
bool Storage : : isSubContainment ( const KConfigGroup & appletGroup ) const
{
2020-08-19 16:26:08 +03:00
return isValid ( subContainmentId ( appletGroup ) ) ;
2020-08-19 15:01:45 +03:00
}
2020-08-19 16:26:08 +03:00
bool Storage : : isValid ( const int & id )
2020-08-19 15:01:45 +03:00
{
2020-08-19 16:26:08 +03:00
return id > = IDBASE ;
}
2020-08-19 15:01:45 +03:00
2020-08-19 16:26:08 +03:00
int Storage : : subContainmentId ( const KConfigGroup & appletGroup ) const
{
2020-08-19 15:14:46 +03:00
//! cycle through subcontainments identities
for ( auto subidentity : m_subIdentities ) {
KConfigGroup appletConfigGroup = appletGroup ;
2020-08-19 15:01:45 +03:00
2020-08-19 15:14:46 +03:00
if ( ! subidentity . cfgGroup . isEmpty ( ) ) {
//! if identity provides specific configuration group
2020-08-19 16:26:08 +03:00
if ( appletConfigGroup . hasGroup ( subidentity . cfgGroup ) ) {
2020-08-19 15:14:46 +03:00
appletConfigGroup = appletGroup . group ( subidentity . cfgGroup ) ;
}
}
if ( ! subidentity . cfgProperty . isEmpty ( ) ) {
//! if identity provides specific property for configuration group
if ( appletConfigGroup . hasKey ( subidentity . cfgProperty ) ) {
2020-08-19 16:26:08 +03:00
return appletConfigGroup . readEntry ( subidentity . cfgProperty , IDNULL ) ;
2020-08-19 15:14:46 +03:00
}
2020-08-19 15:01:45 +03:00
}
}
2020-08-19 16:26:08 +03:00
return IDNULL ;
}
int Storage : : subIdentityIndex ( const KConfigGroup & appletGroup ) const
{
if ( ! isSubContainment ( appletGroup ) ) {
return IDNULL ;
}
//! cycle through subcontainments identities
for ( int i = 0 ; i < m_subIdentities . count ( ) ; + + i ) {
KConfigGroup appletConfigGroup = appletGroup ;
if ( ! m_subIdentities [ i ] . cfgGroup . isEmpty ( ) ) {
//! if identity provides specific configuration group
if ( appletConfigGroup . hasGroup ( m_subIdentities [ i ] . cfgGroup ) ) {
appletConfigGroup = appletGroup . group ( m_subIdentities [ i ] . cfgGroup ) ;
}
}
if ( ! m_subIdentities [ i ] . cfgProperty . isEmpty ( ) ) {
//! if identity provides specific property for configuration group
if ( appletConfigGroup . hasKey ( m_subIdentities [ i ] . cfgProperty ) ) {
int subId = appletConfigGroup . readEntry ( m_subIdentities [ i ] . cfgProperty , IDNULL ) ;
return isValid ( subId ) ? i : IDNULL ;
}
}
}
return IDNULL ;
2020-08-19 15:01:45 +03:00
}
Plasma : : Containment * Storage : : subContainmentOf ( const Layout : : GenericLayout * layout , const Plasma : : Applet * applet )
{
if ( ! layout | | ! applet ) {
return nullptr ;
}
if ( isSubContainment ( layout , applet ) ) {
for ( const auto containment : * layout - > containments ( ) ) {
Plasma : : Applet * parentApplet = qobject_cast < Plasma : : Applet * > ( containment - > parent ( ) ) ;
if ( parentApplet & & parentApplet = = applet ) {
return containment ;
}
}
}
return nullptr ;
}
2020-08-19 15:14:46 +03:00
void Storage : : lock ( const Layout : : GenericLayout * layout )
{
QFileInfo layoutFileInfo ( layout - > file ( ) ) ;
if ( layoutFileInfo . exists ( ) & & layoutFileInfo . isWritable ( ) ) {
QFile ( layout - > file ( ) ) . setPermissions ( QFileDevice : : ReadUser | QFileDevice : : ReadGroup | QFileDevice : : ReadOther ) ;
}
}
2020-08-18 01:56:11 +03:00
void Storage : : unlock ( const Layout : : GenericLayout * layout )
2020-08-18 01:23:41 +03:00
{
QFileInfo layoutFileInfo ( layout - > file ( ) ) ;
if ( layoutFileInfo . exists ( ) & & ! layoutFileInfo . isWritable ( ) ) {
QFile ( layout - > file ( ) ) . setPermissions ( QFileDevice : : ReadUser | QFileDevice : : WriteUser | QFileDevice : : ReadGroup | QFileDevice : : ReadOther ) ;
}
}
2020-08-18 01:56:11 +03:00
void Storage : : importToCorona ( const Layout : : GenericLayout * layout )
{
if ( ! layout - > corona ( ) ) {
return ;
}
//! Setting mutable for create a containment
layout - > corona ( ) - > setImmutability ( Plasma : : Types : : Mutable ) ;
QString temp1FilePath = m_storageTmpDir . path ( ) + " / " + layout - > name ( ) + " .multiple.views " ;
//! we need to copy first the layout file because the kde cache
//! may not have yet been updated (KSharedConfigPtr)
//! this way we make sure at the latest changes stored in the layout file
//! will be also available when changing to Multiple Layouts
QString tempLayoutFilePath = m_storageTmpDir . path ( ) + " / " + layout - > name ( ) + " .multiple.tmplayout " ;
//! WE NEED A WAY TO COPY A CONTAINMENT!!!!
QFile tempLayoutFile ( tempLayoutFilePath ) ;
QFile copyFile ( temp1FilePath ) ;
QFile layoutOriginalFile ( layout - > file ( ) ) ;
if ( tempLayoutFile . exists ( ) ) {
tempLayoutFile . remove ( ) ;
}
if ( copyFile . exists ( ) )
copyFile . remove ( ) ;
layoutOriginalFile . copy ( tempLayoutFilePath ) ;
KSharedConfigPtr filePtr = KSharedConfig : : openConfig ( tempLayoutFilePath ) ;
KSharedConfigPtr newFile = KSharedConfig : : openConfig ( temp1FilePath ) ;
KConfigGroup copyGroup = KConfigGroup ( newFile , " Containments " ) ;
KConfigGroup current_containments = KConfigGroup ( filePtr , " Containments " ) ;
current_containments . copyTo ( & copyGroup ) ;
copyGroup . sync ( ) ;
//! update ids to unique ones
QString temp2File = newUniqueIdsLayoutFromFile ( layout , temp1FilePath ) ;
//! Finally import the configuration
importLayoutFile ( layout , temp2File ) ;
}
2020-08-18 01:44:10 +03:00
QString Storage : : availableId ( QStringList all , QStringList assigned , int base )
{
bool found = false ;
int i = base ;
while ( ! found & & i < 32000 ) {
QString iStr = QString : : number ( i ) ;
if ( ! all . contains ( iStr ) & & ! assigned . contains ( iStr ) ) {
return iStr ;
}
i + + ;
}
return QString ( " " ) ;
}
bool Storage : : appletGroupIsValid ( const KConfigGroup & appletGroup )
{
return ! ( appletGroup . keyList ( ) . count ( ) = = 0
& & appletGroup . groupList ( ) . count ( ) = = 1
& & appletGroup . groupList ( ) . at ( 0 ) = = " Configuration "
& & appletGroup . group ( " Configuration " ) . keyList ( ) . count ( ) = = 1
& & appletGroup . group ( " Configuration " ) . hasKey ( " PreloadWeight " ) ) ;
}
QString Storage : : newUniqueIdsLayoutFromFile ( const Layout : : GenericLayout * layout , QString file )
{
if ( ! layout - > corona ( ) ) {
return QString ( ) ;
}
QString tempFile = m_storageTmpDir . path ( ) + " / " + layout - > name ( ) + " .views.newids " ;
QFile copyFile ( tempFile ) ;
if ( copyFile . exists ( ) ) {
copyFile . remove ( ) ;
}
//! BEGIN updating the ids in the temp file
QStringList allIds ;
allIds < < layout - > corona ( ) - > containmentsIds ( ) ;
allIds < < layout - > corona ( ) - > appletsIds ( ) ;
QStringList toInvestigateContainmentIds ;
QStringList toInvestigateAppletIds ;
2020-08-19 16:26:08 +03:00
QStringList toInvestigateSubContIds ;
2020-08-18 01:44:10 +03:00
2020-08-19 16:26:08 +03:00
//! first is the subcontainment id
QHash < QString , QString > subParentContainmentIds ;
QHash < QString , QString > subAppletIds ;
2020-08-18 01:44:10 +03:00
//qDebug() << "Ids:" << allIds;
//qDebug() << "to copy containments: " << toCopyContainmentIds;
//qDebug() << "to copy applets: " << toCopyAppletIds;
QStringList assignedIds ;
QHash < QString , QString > assigned ;
KSharedConfigPtr filePtr = KSharedConfig : : openConfig ( file ) ;
KConfigGroup investigate_conts = KConfigGroup ( filePtr , " Containments " ) ;
//! Record the containment and applet ids
for ( const auto & cId : investigate_conts . groupList ( ) ) {
toInvestigateContainmentIds < < cId ;
auto appletsEntries = investigate_conts . group ( cId ) . group ( " Applets " ) ;
toInvestigateAppletIds < < appletsEntries . groupList ( ) ;
2020-08-19 16:26:08 +03:00
//! investigate for subcontainments
2020-08-18 01:44:10 +03:00
for ( const auto & appletId : appletsEntries . groupList ( ) ) {
2020-08-19 16:26:08 +03:00
int subId = subContainmentId ( appletsEntries . group ( appletId ) ) ;
//! It is a subcontainment !!!
if ( isValid ( subId ) ) {
QString tSubIdStr = QString : : number ( subId ) ;
toInvestigateSubContIds < < tSubIdStr ;
subParentContainmentIds [ tSubIdStr ] = cId ;
subAppletIds [ tSubIdStr ] = appletId ;
qDebug ( ) < < " subcontainment was found in the containment... " ;
2020-08-18 01:44:10 +03:00
}
}
}
//! Reassign containment and applet ids to unique ones
for ( const auto & contId : toInvestigateContainmentIds ) {
QString newId = availableId ( allIds , assignedIds , 12 ) ;
assignedIds < < newId ;
assigned [ contId ] = newId ;
}
for ( const auto & appId : toInvestigateAppletIds ) {
QString newId = availableId ( allIds , assignedIds , 40 ) ;
assignedIds < < newId ;
assigned [ appId ] = newId ;
}
qDebug ( ) < < " ALL CORONA IDS ::: " < < allIds ;
qDebug ( ) < < " FULL ASSIGNMENTS ::: " < < assigned ;
for ( const auto & cId : toInvestigateContainmentIds ) {
QString value = assigned [ cId ] ;
if ( assigned . contains ( value ) ) {
QString value2 = assigned [ value ] ;
if ( cId ! = assigned [ cId ] & & ! value2 . isEmpty ( ) & & cId = = value2 ) {
qDebug ( ) < < " PROBLEM APPEARED !!!! FOR :::: " < < cId < < " .. fixed .. " ;
assigned [ cId ] = cId ;
assigned [ value ] = value ;
}
}
}
for ( const auto & aId : toInvestigateAppletIds ) {
QString value = assigned [ aId ] ;
if ( assigned . contains ( value ) ) {
QString value2 = assigned [ value ] ;
if ( aId ! = assigned [ aId ] & & ! value2 . isEmpty ( ) & & aId = = value2 ) {
qDebug ( ) < < " PROBLEM APPEARED !!!! FOR :::: " < < aId < < " .. fixed .. " ;
assigned [ aId ] = aId ;
assigned [ value ] = value ;
}
}
}
qDebug ( ) < < " FIXED FULL ASSIGNMENTS ::: " < < assigned ;
//! update applet ids in their containment order and in MultipleLayouts update also the layoutId
for ( const auto & cId : investigate_conts . groupList ( ) ) {
//! Update options that contain applet ids
//! (appletOrder) and (lockedZoomApplets) and (userBlocksColorizingApplets)
QStringList options ;
options < < " appletOrder " < < " lockedZoomApplets " < < " userBlocksColorizingApplets " ;
for ( const auto & settingStr : options ) {
QString order1 = investigate_conts . group ( cId ) . group ( " General " ) . readEntry ( settingStr , QString ( ) ) ;
if ( ! order1 . isEmpty ( ) ) {
QStringList order1Ids = order1 . split ( " ; " ) ;
QStringList fixedOrder1Ids ;
for ( int i = 0 ; i < order1Ids . count ( ) ; + + i ) {
fixedOrder1Ids . append ( assigned [ order1Ids [ i ] ] ) ;
}
QString fixedOrder1 = fixedOrder1Ids . join ( " ; " ) ;
investigate_conts . group ( cId ) . group ( " General " ) . writeEntry ( settingStr , fixedOrder1 ) ;
}
}
if ( layout - > corona ( ) - > layoutsManager ( ) - > memoryUsage ( ) = = MemoryUsage : : MultipleLayouts ) {
investigate_conts . group ( cId ) . writeEntry ( " layoutId " , layout - > name ( ) ) ;
}
}
2020-08-19 16:26:08 +03:00
//! must update also the sub id in its applet
for ( const auto & subId : toInvestigateSubContIds ) {
KConfigGroup subParentContainment = investigate_conts . group ( subParentContainmentIds [ subId ] ) ;
KConfigGroup subAppletConfig = subParentContainment . group ( " Applets " ) . group ( subAppletIds [ subId ] ) ;
int entityIndex = subIdentityIndex ( subAppletConfig ) ;
if ( entityIndex > = 0 ) {
if ( ! m_subIdentities [ entityIndex ] . cfgGroup . isEmpty ( ) ) {
subAppletConfig = subAppletConfig . group ( m_subIdentities [ entityIndex ] . cfgGroup ) ;
}
if ( ! m_subIdentities [ entityIndex ] . cfgProperty . isEmpty ( ) ) {
subAppletConfig . writeEntry ( m_subIdentities [ entityIndex ] . cfgProperty , assigned [ subId ] ) ;
subParentContainment . sync ( ) ;
}
}
2020-08-18 01:44:10 +03:00
}
investigate_conts . sync ( ) ;
//! Copy To Temp 2 File And Update Correctly The Ids
KSharedConfigPtr file2Ptr = KSharedConfig : : openConfig ( tempFile ) ;
KConfigGroup fixedNewContainmets = KConfigGroup ( file2Ptr , " Containments " ) ;
for ( const auto & contId : investigate_conts . groupList ( ) ) {
QString pluginId = investigate_conts . group ( contId ) . readEntry ( " plugin " , " " ) ;
if ( pluginId ! = " org.kde.desktopcontainment " ) { //!don't add ghost containments
KConfigGroup newContainmentGroup = fixedNewContainmets . group ( assigned [ contId ] ) ;
investigate_conts . group ( contId ) . copyTo ( & newContainmentGroup ) ;
newContainmentGroup . group ( " Applets " ) . deleteGroup ( ) ;
for ( const auto & appId : investigate_conts . group ( contId ) . group ( " Applets " ) . groupList ( ) ) {
KConfigGroup appletGroup = investigate_conts . group ( contId ) . group ( " Applets " ) . group ( appId ) ;
KConfigGroup newAppletGroup = fixedNewContainmets . group ( assigned [ contId ] ) . group ( " Applets " ) . group ( assigned [ appId ] ) ;
appletGroup . copyTo ( & newAppletGroup ) ;
}
}
}
fixedNewContainmets . sync ( ) ;
return tempFile ;
}
2020-08-18 02:23:34 +03:00
void Storage : : syncToLayoutFile ( const Layout : : GenericLayout * layout , bool removeLayoutId )
{
if ( ! layout - > corona ( ) | | ! isWritable ( layout ) ) {
return ;
}
KSharedConfigPtr filePtr = KSharedConfig : : openConfig ( layout - > file ( ) ) ;
KConfigGroup oldContainments = KConfigGroup ( filePtr , " Containments " ) ;
oldContainments . deleteGroup ( ) ;
qDebug ( ) < < " LAYOUT :: " < < layout - > name ( ) < < " is syncing its original file. " ;
for ( const auto containment : * layout - > containments ( ) ) {
if ( removeLayoutId ) {
containment - > config ( ) . writeEntry ( " layoutId " , " " ) ;
}
KConfigGroup newGroup = oldContainments . group ( QString : : number ( containment - > id ( ) ) ) ;
containment - > config ( ) . copyTo ( & newGroup ) ;
if ( ! removeLayoutId ) {
newGroup . writeEntry ( " layoutId " , " " ) ;
newGroup . sync ( ) ;
}
}
oldContainments . sync ( ) ;
}
2020-08-18 01:44:10 +03:00
QList < Plasma : : Containment * > Storage : : importLayoutFile ( const Layout : : GenericLayout * layout , QString file )
{
KSharedConfigPtr filePtr = KSharedConfig : : openConfig ( file ) ;
auto newContainments = layout - > corona ( ) - > importLayout ( KConfigGroup ( filePtr , " " ) ) ;
qDebug ( ) < < " imported containments ::: " < < newContainments . length ( ) ;
QList < Plasma : : Containment * > importedDocks ;
for ( const auto containment : newContainments ) {
if ( isLatteContainment ( containment ) ) {
qDebug ( ) < < " new latte containment id: " < < containment - > id ( ) ;
importedDocks < < containment ;
}
}
return importedDocks ;
}
2021-02-06 00:47:51 +03:00
ViewDelayedCreationData Storage : : newView ( const Layout : : GenericLayout * destination , const QString & templateFile )
{
if ( ! destination | | ! destination - > corona ( ) ) {
return ViewDelayedCreationData ( ) ;
}
qDebug ( ) < < " new view for layout " ;
//! Setting mutable for create a containment
destination - > corona ( ) - > setImmutability ( Plasma : : Types : : Mutable ) ;
//! update ids to unique ones
QString temp2File = newUniqueIdsLayoutFromFile ( destination , templateFile ) ;
//! Finally import the configuration
QList < Plasma : : Containment * > importedViews = importLayoutFile ( destination , temp2File ) ;
Plasma : : Containment * newContainment = ( importedViews . size ( ) = = 1 ? importedViews [ 0 ] : nullptr ) ;
if ( ! newContainment | | ! newContainment - > kPackage ( ) . isValid ( ) ) {
2021-02-06 01:14:11 +03:00
qWarning ( ) < < " the requested containment plugin can not be located or loaded from: " < < templateFile ;
2021-02-06 00:47:51 +03:00
return ViewDelayedCreationData ( ) ;
}
auto config = newContainment - > config ( ) ;
int primaryScrId = destination - > corona ( ) - > screenPool ( ) - > primaryScreenId ( ) ;
2021-02-06 01:14:11 +03:00
QList < Plasma : : Types : : Location > edges = destination - > freeEdges ( primaryScrId ) ;
qDebug ( ) < < " org.kde.latte current template edge : " < < newContainment - > location ( ) < < " free edges :: " < < edges ;
2021-02-06 00:47:51 +03:00
2021-02-06 01:14:11 +03:00
//! if selected template screen edge is not free
if ( ! edges . contains ( newContainment - > location ( ) ) ) {
if ( edges . count ( ) > 0 ) {
newContainment - > setLocation ( edges . at ( 0 ) ) ;
} else {
newContainment - > setLocation ( Plasma : : Types : : BottomEdge ) ;
}
2021-02-06 00:47:51 +03:00
}
config . writeEntry ( " onPrimary " , true ) ;
config . writeEntry ( " lastScreen " , primaryScrId ) ;
newContainment - > config ( ) . sync ( ) ;
ViewDelayedCreationData result ;
result . containment = newContainment ;
result . forceOnPrimary = false ;
result . explicitScreen = primaryScrId ;
result . reactToScreenChange = false ;
return result ;
}
2021-02-15 21:53:40 +03:00
void Storage : : clearExportedLayoutSettings ( KConfigGroup & layoutSettingsGroup )
{
layoutSettingsGroup . writeEntry ( " preferredForShortcutsTouched " , false ) ;
layoutSettingsGroup . writeEntry ( " lastUsedActivity " , QString ( ) ) ;
layoutSettingsGroup . writeEntry ( " activities " , QStringList ( ) ) ;
layoutSettingsGroup . sync ( ) ;
}
2021-02-13 02:22:44 +03:00
bool Storage : : exportTemplate ( const QString & originFile , const QString & destinationFile , const Data : : AppletsTable & approvedApplets )
{
if ( originFile . isEmpty ( ) | | ! QFile ( originFile ) . exists ( ) | | destinationFile . isEmpty ( ) ) {
return false ;
}
if ( QFile ( destinationFile ) . exists ( ) ) {
QFile : : remove ( destinationFile ) ;
}
QFile ( originFile ) . copy ( destinationFile ) ;
KSharedConfigPtr destFilePtr = KSharedConfig : : openConfig ( destinationFile ) ;
KConfigGroup containments = KConfigGroup ( destFilePtr , " Containments " ) ;
2021-02-27 19:07:47 +03:00
QStringList rejectedSubContainments ;
//! clear applets that are not approved
2021-02-13 02:22:44 +03:00
for ( const auto & cId : containments . groupList ( ) ) {
2021-02-27 19:07:47 +03:00
//! clear properties
containments . group ( cId ) . writeEntry ( " layoutId " , QString ( ) ) ;
if ( isLatteContainment ( containments . group ( cId ) ) ) {
containments . group ( cId ) . writeEntry ( " isPreferredForShortcuts " , false ) ;
}
//! clear applets
2021-02-13 02:22:44 +03:00
auto applets = containments . group ( cId ) . group ( " Applets " ) ;
for ( const auto & aId : applets . groupList ( ) ) {
QString pluginId = applets . group ( aId ) . readEntry ( " plugin " , " " ) ;
2021-02-27 19:07:47 +03:00
if ( ! approvedApplets . containsId ( pluginId ) ) {
if ( ! isSubContainment ( applets . group ( aId ) ) ) {
//!remove all configuration for that applet
for ( const auto & configId : applets . group ( aId ) . groupList ( ) ) {
applets . group ( aId ) . group ( configId ) . deleteGroup ( ) ;
}
} else {
//! register which subcontaiments should return to default properties
rejectedSubContainments < < QString : : number ( subContainmentId ( applets . group ( aId ) ) ) ;
2021-02-13 02:22:44 +03:00
}
}
}
}
2021-02-27 19:07:47 +03:00
//! clear rejected SubContainments
for ( const auto & cId : containments . groupList ( ) ) {
if ( rejectedSubContainments . contains ( cId ) ) {
containments . group ( cId ) . group ( " General " ) . deleteGroup ( ) ;
}
} ;
2021-02-15 21:53:40 +03:00
KConfigGroup layoutSettingsGrp ( destFilePtr , " LayoutSettings " ) ;
clearExportedLayoutSettings ( layoutSettingsGrp ) ;
2021-02-13 02:22:44 +03:00
containments . sync ( ) ;
return true ;
}
2021-02-13 20:52:52 +03:00
bool Storage : : exportTemplate ( const Layout : : GenericLayout * layout , Plasma : : Containment * containment , const QString & destinationFile , const Data : : AppletsTable & approvedApplets )
{
if ( ! layout | | ! containment | | destinationFile . isEmpty ( ) ) {
return false ;
}
if ( QFile ( destinationFile ) . exists ( ) ) {
QFile : : remove ( destinationFile ) ;
}
KSharedConfigPtr destFilePtr = KSharedConfig : : openConfig ( destinationFile ) ;
KConfigGroup copied_conts = KConfigGroup ( destFilePtr , " Containments " ) ;
KConfigGroup copied_c1 = KConfigGroup ( & copied_conts , QString : : number ( containment - > id ( ) ) ) ;
containment - > config ( ) . copyTo ( & copied_c1 ) ;
//!investigate if there are subcontainments in the containment to copy also
//! subId, subAppletId
QHash < uint , QString > subInfo ;
auto applets = containment - > config ( ) . group ( " Applets " ) ;
for ( const auto & applet : applets . groupList ( ) ) {
int tSubId = subContainmentId ( applets . group ( applet ) ) ;
//! It is a subcontainment !!!
if ( isValid ( tSubId ) ) {
subInfo [ tSubId ] = applet ;
qDebug ( ) < < " subcontainment with id " < < tSubId < < " was found in the containment... ::: " < < containment - > id ( ) ;
}
}
if ( subInfo . count ( ) > 0 ) {
for ( const auto subId : subInfo . keys ( ) ) {
Plasma : : Containment * subcontainment { nullptr } ;
for ( const auto containment : layout - > corona ( ) - > containments ( ) ) {
if ( containment - > id ( ) = = subId ) {
subcontainment = containment ;
break ;
}
}
if ( subcontainment ) {
KConfigGroup copied_sub = KConfigGroup ( & copied_conts , QString : : number ( subcontainment - > id ( ) ) ) ;
subcontainment - > config ( ) . copyTo ( & copied_sub ) ;
}
}
}
//! end of subcontainments specific code
2021-02-27 19:07:47 +03:00
QStringList rejectedSubContainments ;
2021-02-13 20:52:52 +03:00
//! clear applets that are not approved
for ( const auto & cId : copied_conts . groupList ( ) ) {
2021-02-27 19:07:47 +03:00
//! clear properties
copied_conts . group ( cId ) . writeEntry ( " layoutId " , QString ( ) ) ;
if ( isLatteContainment ( copied_conts . group ( cId ) ) ) {
copied_conts . group ( cId ) . writeEntry ( " isPreferredForShortcuts " , false ) ;
}
//! clear applets
2021-02-13 20:52:52 +03:00
auto applets = copied_conts . group ( cId ) . group ( " Applets " ) ;
for ( const auto & aId : applets . groupList ( ) ) {
QString pluginId = applets . group ( aId ) . readEntry ( " plugin " , " " ) ;
2021-02-27 19:07:47 +03:00
if ( ! approvedApplets . containsId ( pluginId ) ) {
if ( ! isSubContainment ( applets . group ( aId ) ) ) {
//!remove all configuration for that applet
for ( const auto & configId : applets . group ( aId ) . groupList ( ) ) {
applets . group ( aId ) . group ( configId ) . deleteGroup ( ) ;
}
} else {
//! register which subcontaiments should return to default properties
rejectedSubContainments < < QString : : number ( subContainmentId ( applets . group ( aId ) ) ) ;
2021-02-13 20:52:52 +03:00
}
}
}
}
2021-02-27 19:07:47 +03:00
//! clear rejected SubContainments
for ( const auto & cId : copied_conts . groupList ( ) ) {
if ( rejectedSubContainments . contains ( cId ) ) {
copied_conts . group ( cId ) . group ( " General " ) . deleteGroup ( ) ;
}
} ;
2021-02-15 21:53:40 +03:00
KConfigGroup layoutSettingsGrp ( destFilePtr , " LayoutSettings " ) ;
clearExportedLayoutSettings ( layoutSettingsGrp ) ;
2021-02-13 22:12:32 +03:00
copied_conts . sync ( ) ;
2021-02-13 20:52:52 +03:00
return true ;
}
2020-08-18 02:56:33 +03:00
ViewDelayedCreationData Storage : : copyView ( const Layout : : GenericLayout * layout , Plasma : : Containment * containment )
{
if ( ! containment | | ! layout - > corona ( ) ) {
return ViewDelayedCreationData ( ) ;
}
qDebug ( ) < < " copying containment layout " ;
//! Setting mutable for create a containment
layout - > corona ( ) - > setImmutability ( Plasma : : Types : : Mutable ) ;
QString temp1File = m_storageTmpDir . path ( ) + " / " + layout - > name ( ) + " .copy.view " ;
//! WE NEED A WAY TO COPY A CONTAINMENT!!!!
QFile copyFile ( temp1File ) ;
2021-02-06 00:47:51 +03:00
if ( copyFile . exists ( ) ) {
2020-08-18 02:56:33 +03:00
copyFile . remove ( ) ;
2021-02-06 00:47:51 +03:00
}
2020-08-18 02:56:33 +03:00
KSharedConfigPtr newFile = KSharedConfig : : openConfig ( temp1File ) ;
KConfigGroup copied_conts = KConfigGroup ( newFile , " Containments " ) ;
KConfigGroup copied_c1 = KConfigGroup ( & copied_conts , QString : : number ( containment - > id ( ) ) ) ;
containment - > config ( ) . copyTo ( & copied_c1 ) ;
2020-08-19 16:26:08 +03:00
//!investigate if there are subcontainments in the containment to copy also
2020-08-18 02:56:33 +03:00
2020-08-19 16:26:08 +03:00
//! subId, subAppletId
QHash < uint , QString > subInfo ;
2020-08-18 02:56:33 +03:00
auto applets = containment - > config ( ) . group ( " Applets " ) ;
for ( const auto & applet : applets . groupList ( ) ) {
2020-08-19 16:26:08 +03:00
int tSubId = subContainmentId ( applets . group ( applet ) ) ;
2020-08-18 02:56:33 +03:00
2020-08-19 16:26:08 +03:00
//! It is a subcontainment !!!
if ( isValid ( tSubId ) ) {
subInfo [ tSubId ] = applet ;
qDebug ( ) < < " subcontainment with id " < < tSubId < < " was found in the containment... ::: " < < containment - > id ( ) ;
2020-08-18 02:56:33 +03:00
}
}
2020-08-19 16:26:08 +03:00
if ( subInfo . count ( ) > 0 ) {
for ( const auto subId : subInfo . keys ( ) ) {
Plasma : : Containment * subcontainment { nullptr } ;
2020-08-18 02:56:33 +03:00
for ( const auto containment : layout - > corona ( ) - > containments ( ) ) {
2020-08-19 16:26:08 +03:00
if ( containment - > id ( ) = = subId ) {
subcontainment = containment ;
2020-08-18 02:56:33 +03:00
break ;
}
}
2020-08-19 16:26:08 +03:00
if ( subcontainment ) {
KConfigGroup copied_sub = KConfigGroup ( & copied_conts , QString : : number ( subcontainment - > id ( ) ) ) ;
subcontainment - > config ( ) . copyTo ( & copied_sub ) ;
2020-08-18 02:56:33 +03:00
}
}
}
2020-08-19 16:26:08 +03:00
//! end of subcontainments specific code
2020-08-18 02:56:33 +03:00
//! update ids to unique ones
QString temp2File = newUniqueIdsLayoutFromFile ( layout , temp1File ) ;
//! Finally import the configuration
QList < Plasma : : Containment * > importedDocks = importLayoutFile ( layout , temp2File ) ;
Plasma : : Containment * newContainment { nullptr } ;
if ( importedDocks . size ( ) = = 1 ) {
newContainment = importedDocks [ 0 ] ;
}
if ( ! newContainment | | ! newContainment - > kPackage ( ) . isValid ( ) ) {
qWarning ( ) < < " the requested containment plugin can not be located or loaded " ;
return ViewDelayedCreationData ( ) ;
}
auto config = newContainment - > config ( ) ;
//in multi-screen environment the copied dock is moved to alternative screens first
const auto screens = qGuiApp - > screens ( ) ;
auto dock = layout - > viewForContainment ( containment ) ;
bool setOnExplicitScreen = false ;
2020-08-19 16:26:08 +03:00
int dockScrId = IDNULL ;
int copyScrId = IDNULL ;
2020-08-18 02:56:33 +03:00
if ( dock ) {
dockScrId = dock - > positioner ( ) - > currentScreenId ( ) ;
qDebug ( ) < < " COPY DOCK SCREEN ::: " < < dockScrId ;
2020-08-19 16:26:08 +03:00
if ( isValid ( dockScrId ) & & screens . count ( ) > 1 ) {
2020-08-18 02:56:33 +03:00
for ( const auto scr : screens ) {
copyScrId = layout - > corona ( ) - > screenPool ( ) - > id ( scr - > name ( ) ) ;
//the screen must exist and not be the same with the original dock
2020-08-19 16:26:08 +03:00
if ( isValid ( copyScrId ) & & copyScrId ! = dockScrId ) {
2020-08-18 02:56:33 +03:00
QList < Plasma : : Types : : Location > fEdges = layout - > freeEdges ( copyScrId ) ;
if ( fEdges . contains ( ( Plasma : : Types : : Location ) containment - > location ( ) ) ) {
///set this containment to an explicit screen
config . writeEntry ( " onPrimary " , false ) ;
config . writeEntry ( " lastScreen " , copyScrId ) ;
newContainment - > setLocation ( containment - > location ( ) ) ;
qDebug ( ) < < " COPY DOCK SCREEN NEW SCREEN ::: " < < copyScrId ;
setOnExplicitScreen = true ;
break ;
}
}
}
}
}
if ( ! setOnExplicitScreen ) {
QList < Plasma : : Types : : Location > edges = layout - > freeEdges ( newContainment - > screen ( ) ) ;
if ( edges . count ( ) > 0 ) {
newContainment - > setLocation ( edges . at ( 0 ) ) ;
} else {
newContainment - > setLocation ( Plasma : : Types : : BottomEdge ) ;
}
config . writeEntry ( " onPrimary " , true ) ;
config . writeEntry ( " lastScreen " , dockScrId ) ;
}
newContainment - > config ( ) . sync ( ) ;
ViewDelayedCreationData result ;
2020-08-19 16:26:08 +03:00
if ( setOnExplicitScreen & & isValid ( copyScrId ) ) {
2020-08-18 02:56:33 +03:00
qDebug ( ) < < " Copy Dock in explicit screen ::: " < < copyScrId ;
result . containment = newContainment ;
result . forceOnPrimary = false ;
result . explicitScreen = copyScrId ;
result . reactToScreenChange = true ;
} else {
qDebug ( ) < < " Copy Dock in current screen... " ;
result . containment = newContainment ;
result . forceOnPrimary = false ;
result . explicitScreen = dockScrId ;
result . reactToScreenChange = false ;
}
return result ;
}
2020-08-18 02:15:28 +03:00
bool Storage : : isBroken ( const Layout : : GenericLayout * layout , QStringList & errors ) const
{
if ( layout - > file ( ) . isEmpty ( ) | | ! QFile ( layout - > file ( ) ) . exists ( ) ) {
return false ;
}
QStringList ids ;
QStringList conts ;
QStringList applets ;
KSharedConfigPtr lFile = KSharedConfig : : openConfig ( layout - > file ( ) ) ;
if ( ! layout - > corona ( ) ) {
KConfigGroup containmentsEntries = KConfigGroup ( lFile , " Containments " ) ;
ids < < containmentsEntries . groupList ( ) ;
conts < < ids ;
for ( const auto & cId : containmentsEntries . groupList ( ) ) {
auto appletsEntries = containmentsEntries . group ( cId ) . group ( " Applets " ) ;
QStringList validAppletIds ;
bool updated { false } ;
for ( const auto & appletId : appletsEntries . groupList ( ) ) {
KConfigGroup appletGroup = appletsEntries . group ( appletId ) ;
if ( Layouts : : Storage : : appletGroupIsValid ( appletGroup ) ) {
validAppletIds < < appletId ;
} else {
updated = true ;
//! heal layout file by removing applet config records that are not used any more
qDebug ( ) < < " Layout: " < < layout - > name ( ) < < " removing deprecated applet : " < < appletId ;
appletsEntries . deleteGroup ( appletId ) ;
}
}
if ( updated ) {
appletsEntries . sync ( ) ;
}
ids < < validAppletIds ;
applets < < validAppletIds ;
}
} else {
for ( const auto containment : * layout - > containments ( ) ) {
ids < < QString : : number ( containment - > id ( ) ) ;
conts < < QString : : number ( containment - > id ( ) ) ;
for ( const auto applet : containment - > applets ( ) ) {
ids < < QString : : number ( applet - > id ( ) ) ;
applets < < QString : : number ( applet - > id ( ) ) ;
}
}
}
# if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
QSet < QString > idsSet = QSet < QString > : : fromList ( ids ) ;
# else
QSet < QString > idsSet ( ids . begin ( ) , ids . end ( ) ) ;
# endif
/* a different way to count duplicates
QMap < QString , int > countOfStrings ;
for ( int i = 0 ; i < ids . count ( ) ; i + + ) {
countOfStrings [ ids [ i ] ] + + ;
} */
if ( idsSet . count ( ) ! = ids . count ( ) ) {
qDebug ( ) < < " ---- ERROR - BROKEN LAYOUT :: " < < layout - > name ( ) < < " ---- " ;
if ( ! layout - > corona ( ) ) {
qDebug ( ) < < " --- storaged file : " < < layout - > file ( ) ;
} else {
if ( layout - > corona ( ) - > layoutsManager ( ) - > memoryUsage ( ) = = MemoryUsage : : MultipleLayouts ) {
qDebug ( ) < < " --- in multiple layouts hidden file : " < < Layouts : : Importer : : layoutUserFilePath ( Layout : : MULTIPLELAYOUTSHIDDENNAME ) ;
} else {
qDebug ( ) < < " --- in active layout file : " < < layout - > file ( ) ;
}
}
qDebug ( ) < < " Containments :: " < < conts ;
qDebug ( ) < < " Applets :: " < < applets ;
for ( const QString & c : conts ) {
if ( applets . contains ( c ) ) {
QString errorStr = i18n ( " Same applet and containment id found ::: " ) + c ;
qDebug ( ) < < " Error: " < < errorStr ;
errors < < errorStr ;
}
}
for ( int i = 0 ; i < ids . count ( ) ; + + i ) {
for ( int j = i + 1 ; j < ids . count ( ) ; + + j ) {
if ( ids [ i ] = = ids [ j ] ) {
QString errorStr = i18n ( " Different applets with same id ::: " ) + ids [ i ] ;
qDebug ( ) < < " Error: " < < errorStr ;
errors < < errorStr ;
}
}
}
qDebug ( ) < < " -- - -- - -- - -- - - -- - - - - -- - - - - " ;
if ( ! layout - > corona ( ) ) {
KConfigGroup containmentsEntries = KConfigGroup ( lFile , " Containments " ) ;
for ( const auto & cId : containmentsEntries . groupList ( ) ) {
auto appletsEntries = containmentsEntries . group ( cId ) . group ( " Applets " ) ;
qDebug ( ) < < " CONTAINMENT : " < < cId < < " APPLETS : " < < appletsEntries . groupList ( ) ;
}
} else {
for ( const auto containment : * layout - > containments ( ) ) {
QStringList appletsIds ;
for ( const auto applet : containment - > applets ( ) ) {
appletsIds < < QString : : number ( applet - > id ( ) ) ;
}
qDebug ( ) < < " CONTAINMENT : " < < containment - > id ( ) < < " APPLETS : " < < appletsIds . join ( " , " ) ;
}
}
return true ;
}
return false ;
}
2020-08-18 03:13:05 +03:00
2020-08-20 17:28:29 +03:00
//! AppletsData Information
Data : : Applet Storage : : metadata ( const QString & pluginId )
{
Data : : Applet data ;
data . id = pluginId ;
KPackage : : Package pkg = KPackage : : PackageLoader : : self ( ) - > loadPackage ( QStringLiteral ( " Plasma/Applet " ) ) ;
pkg . setDefaultPackageRoot ( QStringLiteral ( " plasma/plasmoids " ) ) ;
pkg . setPath ( pluginId ) ;
if ( pkg . isValid ( ) ) {
data . name = pkg . metadata ( ) . name ( ) ;
data . description = pkg . metadata ( ) . description ( ) ;
2021-02-13 03:20:31 +03:00
QString iconName = pkg . metadata ( ) . iconName ( ) ;
if ( ! iconName . startsWith ( " / " ) & & iconName . contains ( " / " ) ) {
data . icon = QFileInfo ( pkg . metadata ( ) . fileName ( ) ) . absolutePath ( ) + " / " + iconName ;
} else {
data . icon = iconName ;
}
2020-08-20 17:28:29 +03:00
}
return data ;
}
Data : : AppletsTable Storage : : plugins ( const Layout : : GenericLayout * layout , const int containmentid )
{
Data : : AppletsTable knownapplets ;
Data : : AppletsTable unknownapplets ;
if ( ! layout ) {
return knownapplets ;
}
//! empty means all containments are valid
QList < int > validcontainmentids ;
if ( isValid ( containmentid ) ) {
validcontainmentids < < containmentid ;
//! searching for specific containment and subcontainments and ignore all other containments
for ( auto containment : * layout - > containments ( ) ) {
if ( containment - > id ( ) ! = containmentid ) {
//! ignore irrelevant containments
continue ;
}
for ( auto applet : containment - > applets ( ) ) {
if ( isSubContainment ( layout , applet ) ) {
validcontainmentids < < subContainmentId ( applet - > config ( ) ) ;
}
}
}
}
//! cycle through valid contaiments in order to retrieve their metadata
for ( auto containment : * layout - > containments ( ) ) {
if ( validcontainmentids . count ( ) > 0 & & ! validcontainmentids . contains ( containment - > id ( ) ) ) {
//! searching only for valid containments
continue ;
}
for ( auto applet : containment - > applets ( ) ) {
2021-02-27 19:07:47 +03:00
QString pluginId = applet - > pluginMetaData ( ) . pluginId ( ) ;
if ( ! knownapplets . containsId ( pluginId ) & & ! unknownapplets . containsId ( pluginId ) ) {
Data : : Applet appletdata = metadata ( pluginId ) ;
if ( appletdata . isValid ( ) ) {
knownapplets . insertBasedOnName ( appletdata ) ;
} else {
unknownapplets . insertBasedOnId ( appletdata ) ;
2020-08-20 17:28:29 +03:00
}
}
}
}
knownapplets < < unknownapplets ;
return knownapplets ;
}
Data : : AppletsTable Storage : : plugins ( const QString & layoutfile , const int containmentid )
{
Data : : AppletsTable knownapplets ;
Data : : AppletsTable unknownapplets ;
if ( layoutfile . isEmpty ( ) ) {
return knownapplets ;
}
KSharedConfigPtr lFile = KSharedConfig : : openConfig ( layoutfile ) ;
KConfigGroup containmentGroups = KConfigGroup ( lFile , " Containments " ) ;
//! empty means all containments are valid
QList < int > validcontainmentids ;
if ( isValid ( containmentid ) ) {
validcontainmentids < < containmentid ;
//! searching for specific containment and subcontainments and ignore all other containments
for ( const auto & cId : containmentGroups . groupList ( ) ) {
if ( cId . toInt ( ) ! = containmentid ) {
//! ignore irrelevant containments
continue ;
}
auto appletGroups = containmentGroups . group ( cId ) . group ( " Applets " ) ;
for ( const auto & appletId : appletGroups . groupList ( ) ) {
KConfigGroup appletCfg = appletGroups . group ( appletId ) ;
if ( isSubContainment ( appletCfg ) ) {
validcontainmentids < < subContainmentId ( appletCfg ) ;
}
}
}
}
//! cycle through valid contaiments in order to retrieve their metadata
for ( const auto & cId : containmentGroups . groupList ( ) ) {
if ( validcontainmentids . count ( ) > 0 & & ! validcontainmentids . contains ( cId . toInt ( ) ) ) {
//! searching only for valid containments
continue ;
}
auto appletGroups = containmentGroups . group ( cId ) . group ( " Applets " ) ;
for ( const auto & appletId : appletGroups . groupList ( ) ) {
KConfigGroup appletCfg = appletGroups . group ( appletId ) ;
2021-02-27 19:07:47 +03:00
QString pluginId = appletCfg . readEntry ( " plugin " , " " ) ;
2020-08-20 17:28:29 +03:00
2021-02-27 19:07:47 +03:00
if ( ! knownapplets . containsId ( pluginId ) & & ! unknownapplets . containsId ( pluginId ) ) {
Data : : Applet appletdata = metadata ( pluginId ) ;
2020-08-20 17:28:29 +03:00
2021-02-27 19:07:47 +03:00
if ( appletdata . isInstalled ( ) ) {
knownapplets . insertBasedOnName ( appletdata ) ;
} else if ( appletdata . isValid ( ) ) {
unknownapplets . insertBasedOnId ( appletdata ) ;
2020-08-20 17:28:29 +03:00
}
}
}
}
knownapplets < < unknownapplets ;
return knownapplets ;
}
2020-08-18 03:13:05 +03:00
//! Data For Reports
2020-08-19 16:26:08 +03:00
void Storage : : subContainmentsInfo ( const QString & file , QHash < int , QList < int > > & subContainments , QList < int > & assignedSubContainments , QList < int > & orphanSubContainments )
2020-08-18 03:13:05 +03:00
{
2020-08-19 16:26:08 +03:00
subContainments . clear ( ) ;
assignedSubContainments . clear ( ) ;
orphanSubContainments . clear ( ) ;
2020-08-18 03:13:05 +03:00
KSharedConfigPtr lFile = KSharedConfig : : openConfig ( file ) ;
KConfigGroup containmentGroups = KConfigGroup ( lFile , " Containments " ) ;
2020-08-19 16:26:08 +03:00
//! assigned subcontainments
2020-08-18 03:13:05 +03:00
for ( const auto & cId : containmentGroups . groupList ( ) ) {
if ( Layouts : : Storage : : self ( ) - > isLatteContainment ( containmentGroups . group ( cId ) ) ) {
auto applets = containmentGroups . group ( cId ) . group ( " Applets " ) ;
for ( const auto & applet : applets . groupList ( ) ) {
KConfigGroup appletSettings = applets . group ( applet ) . group ( " Configuration " ) ;
2020-08-19 16:26:08 +03:00
int tSubId = appletSettings . readEntry ( " SystrayContainmentId " , IDNULL ) ;
2020-08-18 03:13:05 +03:00
2020-08-19 16:26:08 +03:00
if ( isValid ( tSubId ) ) {
assignedSubContainments < < tSubId ;
subContainments [ cId . toInt ( ) ] . append ( tSubId ) ;
2020-08-18 03:13:05 +03:00
}
}
}
}
2020-08-19 16:26:08 +03:00
//! orphan subcontainments
2020-08-18 03:13:05 +03:00
for ( const auto & cId : containmentGroups . groupList ( ) ) {
2020-08-19 16:26:08 +03:00
if ( ! Layouts : : Storage : : self ( ) - > isLatteContainment ( containmentGroups . group ( cId ) ) & & ! assignedSubContainments . contains ( cId . toInt ( ) ) ) {
orphanSubContainments < < cId . toInt ( ) ;
2020-08-18 03:13:05 +03:00
}
}
}
2020-08-19 16:26:08 +03:00
QList < Layout : : ViewData > Storage : : viewsData ( const QString & file , const QHash < int , QList < int > > & subContainments )
2020-08-18 03:13:05 +03:00
{
QList < Layout : : ViewData > viewsData ;
KSharedConfigPtr lFile = KSharedConfig : : openConfig ( file ) ;
KConfigGroup containmentGroups = KConfigGroup ( lFile , " Containments " ) ;
for ( const auto & cId : containmentGroups . groupList ( ) ) {
if ( Layouts : : Storage : : self ( ) - > isLatteContainment ( containmentGroups . group ( cId ) ) ) {
Layout : : ViewData vData ;
int id = cId . toInt ( ) ;
//! id
vData . id = id ;
//! active
vData . active = false ;
//! onPrimary
vData . onPrimary = containmentGroups . group ( cId ) . readEntry ( " onPrimary " , true ) ;
//! Screen
2020-08-19 16:26:08 +03:00
vData . screenId = containmentGroups . group ( cId ) . readEntry ( " lastScreen " , IDNULL ) ;
2020-08-18 03:13:05 +03:00
//! location
vData . location = containmentGroups . group ( cId ) . readEntry ( " location " , ( int ) Plasma : : Types : : BottomEdge ) ;
2020-08-19 16:26:08 +03:00
//! subcontainments
vData . subContainments = subContainments [ id ] ;
2020-08-18 03:13:05 +03:00
viewsData < < vData ;
}
}
return viewsData ;
}
QList < int > Storage : : viewsScreens ( const QString & file )
{
QList < int > screens ;
KSharedConfigPtr lFile = KSharedConfig : : openConfig ( file ) ;
KConfigGroup containmentGroups = KConfigGroup ( lFile , " Containments " ) ;
for ( const auto & cId : containmentGroups . groupList ( ) ) {
if ( Layouts : : Storage : : self ( ) - > isLatteContainment ( containmentGroups . group ( cId ) ) ) {
2020-08-19 16:26:08 +03:00
int screenId = containmentGroups . group ( cId ) . readEntry ( " lastScreen " , IDNULL ) ;
2020-08-18 03:13:05 +03:00
2020-08-19 16:26:08 +03:00
if ( isValid ( screenId ) & & ! screens . contains ( screenId ) ) {
2020-08-18 03:13:05 +03:00
screens < < screenId ;
}
}
}
return screens ;
}
2020-08-18 01:23:41 +03:00
}
}