~ubuntu-branches/ubuntu/wily/recoll/wily

« back to all changes in this revision

Viewing changes to index/fsindexer.h

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2015-08-03 14:16:32 UTC
  • mfrom: (33.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150803141632-w5a1cr8ub2rkyvfe
Tags: 1.21.0-1
* New upstream release.
* debian/control:
  + Build-depend on python3-dev, python-dev, not python3-all-dev and
    python-all-dev. Thanks to Steve Langasek for patch. (Closes: #793636)
  + Added Build-depends on bison.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
     * We open the database,
61
61
     * then call a file system walk for each top-level directory.
62
62
     */
63
 
    bool index(bool quickshallow = 0);
 
63
    bool index(int flags);
64
64
 
65
65
    /** Index a list of files. No db cleaning or stemdb updating */
66
 
    bool indexFiles(std::list<std::string> &files, ConfIndexer::IxFlag f = 
67
 
                    ConfIndexer::IxFNone);
 
66
    bool indexFiles(std::list<std::string> &files, 
 
67
                    int f = ConfIndexer::IxFNone);
68
68
 
69
69
    /** Purge a list of files. */
70
70
    bool purgeFiles(std::list<std::string> &files);
136
136
    // needs a config option
137
137
    bool         m_detectxattronly;
138
138
 
 
139
    // No retry of previously failed files
 
140
    bool         m_noretryfailed;
 
141
 
139
142
#ifdef IDX_THREADS
140
143
    friend void *FsIndexerDbUpdWorker(void*);
141
144
    friend void *FsIndexerInternfileWorker(void*);