summaryrefslogtreecommitdiff
path: root/gui/KPackageKitD/kpackagekitd.cpp
blob: 90d670c0b0b629ec084f5a8e06e7096a2f11bb3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/***************************************************************************
 *   Copyright (C) 2008 by Daniel Nicoletti                                *
 *   mirttex85-pk@yahoo.com.br                                             *
 *                                                                         *
 *   This program 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.                                   *
 *                                                                         *
 *   This program 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, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include <kgenericfactory.h>
#include <KStandardDirs>
#include <KConfigGroup>
#include <QDateTime>

#include <KMessageBox>
#include <limits.h>
#include "kpackagekitd.h"

K_PLUGIN_FACTORY(KPackageKitFactory, registerPlugin<KPackageKit>(); )
K_EXPORT_PLUGIN(KPackageKitFactory("kpackagekitd"))

KPackageKit::KPackageKit(QObject *parent, const QList<QVariant>&)
    : KDEDModule(parent)
{
    m_qtimer = new QTimer(this);
    connect(m_qtimer, SIGNAL(timeout()), this, SLOT(init()));
    // Start after 10 minutes, 600000 msec
    // To keep the startup fast..
    m_qtimer->start(600000);
}

KPackageKit::~KPackageKit()
{
    delete m_qtimer;
    delete m_confWatch;
}

void KPackageKit::init()
{
    m_qtimer->stop();
    m_qtimer->disconnect();
    connect(m_qtimer, SIGNAL(timeout()), this, SLOT(checkUpdates()));
    read();
    //check if any changes to the file occour
    //this also prevents from reading when a checkUpdate happens
    m_confWatch = new KDirWatch(this);
    m_confWatch->addFile( KStandardDirs::locateLocal("config", "KPackageKit") );
    connect(m_confWatch, SIGNAL( dirty(const QString &) ), this, SLOT( checkUpdates() ));
    connect(m_confWatch, SIGNAL( created(const QString &) ), this, SLOT( checkUpdates() ));
    connect(m_confWatch, SIGNAL( deleted(const QString &) ), this, SLOT( checkUpdates() ));
    m_confWatch->startScan();
}

void KPackageKit::read()
{
    KConfig config("KPackageKit");
    KConfigGroup checkUpdateGroup( &config, "CheckUpdate" );
    if ( checkUpdateGroup.readEntry( "never", false ) )
        return;
    // default to one day, 86400 sec
    uint interval = checkUpdateGroup.readEntry( "interval", 86400 );
    uint lastCheck = checkUpdateGroup.readEntry( "lastChecked", 0 );
    uint now = QDateTime::currentDateTime().toTime_t();
    if ( interval + lastCheck < now ) {
        checkUpdates();
    }
    else
    {
        //interval - (now - lastCheck)
        //Schedule for msecs...
        //check first to see any overflow...
        if ( (now - lastCheck - interval) > 4294966 )
            m_qtimer->start( UINT_MAX );
        else
            m_qtimer->start( (now - lastCheck - interval) * 1000 );
    }
}

void KPackageKit::write()
{
    KConfig config("KPackageKit");
    KConfigGroup checkUpdateGroup( &config, "CheckUpdate" );
    checkUpdateGroup.writeEntry( "lastChecked", QDateTime::currentDateTime().toTime_t() );
}

void KPackageKit::checkUpdates()
{
//     KMessageBox::questionYesNo( 0, tr("Local ") + KStandardDirs::locateLocal("config", "KPackageKit")  , "Restart?");
}