~ubuntu-branches/ubuntu/precise/kdewebdev-kde4/precise

« back to all changes in this revision

Viewing changes to klinkstatus/src/engine/automationengine.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas, Richard Birnie, Jonathan Thomas
  • Date: 2008-11-26 19:53:39 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081126195339-ngaj5wb31dgthwjh
Tags: 4:4.1.80-0ubuntu1
[ Richard Birnie ]
* New upstream release:
  - Updated build-deps kdelibs5-dev, kdepimlibs5-dev, cmake

[ Jonathan Thomas ]
* Created debian/not-installed, added the kommander headers we don't install
  to it

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by Paulo Moura Guedes                              *
 
3
 *   moura@kdewebdev.org                                                   *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
 
19
 ***************************************************************************/
 
20
 
 
21
#include "automationengine.h"
 
22
 
 
23
#include <KDebug>
 
24
 
 
25
#include <QDir>
 
26
#include <QStringList>
 
27
 
 
28
#include "engine/searchmanageragent.h"
 
29
#include "engine/searchmanager.h"
 
30
 
 
31
 
 
32
void AutomationEngine::startLinkCheck()
 
33
{
 
34
    kDebug(23100) << "AutomationEngine::initLinkChecks";
 
35
 
 
36
    QDir dir(m_configurationFilesDir);
 
37
    dir.setNameFilters(QStringList("*.properties"));
 
38
 
 
39
    QStringList configurationFiles = dir.entryList();
 
40
    //kDebug(23100) << configurationFiles;
 
41
 
 
42
    if(configurationFiles.empty()) {
 
43
        kDebug(23100) << "no configuration files available";
 
44
        emit signalSearchFinished();
 
45
        return;
 
46
    }
 
47
    
 
48
    foreach(QString file, configurationFiles) {
 
49
        check(file);
 
50
    }
 
51
}
 
52
 
 
53
void AutomationEngine::check(QString const& configurationFile)
 
54
{
 
55
    kDebug(23100) << "configurationFile: " << configurationFile;
 
56
    
 
57
    SearchManagerAgent* agent = new SearchManagerAgent(this);
 
58
    agent->setOptionsFilePath(m_configurationFilesDir + "/" + configurationFile);
 
59
 
 
60
    connect(agent, SIGNAL(signalSearchFinished(SearchManager*)),
 
61
        this, SIGNAL(signalSearchFinished()));
 
62
 
 
63
    agent->check();
 
64
}
 
65
 
 
66
 
 
67
#include "automationengine.moc"