~ubuntu-branches/ubuntu/utopic/nepomuk-core/utopic

« back to all changes in this revision

Viewing changes to services/fileindexer/indexer/indexer.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-05-26 15:25:35 UTC
  • Revision ID: package-import@ubuntu.com-20120526152535-h8vkccjezmf2xtlb
Tags: upstream-4.8.80a
Import upstream version 4.8.80a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   This file is part of the Nepomuk KDE project.
 
3
   Copyright (C) 2010 Sebastian Trueg <trueg@kde.org>
 
4
   Copyright (C) 2011 Vishesh Handa <handa.vish@gmail.com>
 
5
 
 
6
   This library is free software; you can redistribute it and/or
 
7
   modify it under the terms of the GNU Lesser General Public
 
8
   License as published by the Free Software Foundation; either
 
9
   version 2.1 of the License, or (at your option) version 3, or any
 
10
   later version accepted by the membership of KDE e.V. (or its
 
11
   successor approved by the membership of KDE e.V.), which shall
 
12
   act as a proxy defined in Section 6 of version 3 of the license.
 
13
 
 
14
   This library is distributed in the hope that it will be useful,
 
15
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
   Lesser General Public License for more details.
 
18
 
 
19
   You should have received a copy of the GNU Lesser General Public
 
20
   License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
21
*/
 
22
 
 
23
#ifndef _NEPOMUK_STRIG_INDEXER_H_
 
24
#define _NEPOMUK_STRIG_INDEXER_H_
 
25
 
 
26
#include <QtCore/QObject>
 
27
#include <KUrl>
 
28
 
 
29
class QDateTime;
 
30
class QDataStream;
 
31
class QFileInfo;
 
32
 
 
33
namespace Nepomuk2 {
 
34
 
 
35
    class Resource;
 
36
 
 
37
    class Indexer : public QObject
 
38
    {
 
39
        Q_OBJECT
 
40
 
 
41
    public:
 
42
        /**
 
43
         * Create a new indexer.
 
44
         */
 
45
        Indexer( QObject* parent = 0 );
 
46
 
 
47
        /**
 
48
         * Destructor
 
49
         */
 
50
        ~Indexer();
 
51
 
 
52
        /**
 
53
         * Index a single local file or folder (files in a folder will
 
54
         * not be indexed recursively).
 
55
         */
 
56
        bool indexFile( const KUrl& url, const KUrl resUri, uint mtime = 0 );
 
57
 
 
58
        /**
 
59
         * Index a single local file or folder (files in a folder will
 
60
         * not be indexed recursively). This method does the exact same
 
61
         * as the above except that it saves an addditional stat of the
 
62
         * file.
 
63
         */
 
64
        bool indexFile( const QFileInfo& info, const KUrl resUri, uint mtime=0 );
 
65
 
 
66
        /**
 
67
         * Index a file whose contents are provided via standard input.
 
68
         */
 
69
        bool indexStdin( const KUrl resUri, uint mtime=0 );
 
70
        
 
71
        QString lastError() const;
 
72
 
 
73
    private:
 
74
        class Private;
 
75
        Private* const d;
 
76
    };
 
77
}
 
78
 
 
79
#endif