Parent: [759d8e] (diff)

Download this file

circache.h    122 lines (104 with data), 4.1 kB

  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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* Copyright (C) 2009 J.F.Dockes
* 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.
*/
#ifndef _circache_h_included_
#define _circache_h_included_
/**
* A data cache implemented as a circularly managed file
*
* A single file is used to stored objects. The file grows to a
* specified maximum size, then is rewritten from the start,
* overwriting older entries.
*
* Data objects inside the cache each have two parts: a data segment and an
* attribute (metadata) dictionary.
* They are named using the same identifiers that are used inside the Recoll
* index (the UDI).
*
* Inside the file. the UDIs are stored inside the entry dictionary
* under the key "udi".
*
* It is assumed that the dictionary are small (they are routinely read/parsed)
*
*/
#include <sys/types.h>
#include <stdint.h>
#include <string>
class ConfSimple;
class CirCacheInternal;
class CirCache {
public:
CirCache(const std::string& dir);
virtual ~CirCache();
virtual std::string getReason();
enum CreateFlags {CC_CRNONE = 0,
// Unique entries: erase older instances when same udi
// is stored.
CC_CRUNIQUE = 1,
// Truncate file (restart from scratch).
CC_CRTRUNCATE = 2
};
virtual bool create(int64_t maxsize, int flags);
enum OpMode {CC_OPREAD, CC_OPWRITE};
virtual bool open(OpMode mode);
virtual std::string getpath();
// Set data to 0 if you just want the header
virtual bool get(const std::string& udi, std::string& dic,
std::string *data = 0, int instance = -1);
// Note: the dicp MUST have an udi entry
enum PutFlags {NoCompHint = 1};
virtual bool put(const std::string& udi, const ConfSimple *dicp,
const std::string& data, unsigned int flags = 0);
virtual bool erase(const std::string& udi, bool reallyclear = false);
/** Walk the archive.
*
* Maybe we'll have separate iterators one day, but this is good
* enough for now. No put() operations should be performed while
* using these.
*/
/** Back to oldest */
virtual bool rewind(bool& eof);
/** Get entry under cursor */
virtual bool getCurrent(std::string& udi, std::string& dic,
std::string *data = 0);
/** Get current entry udi only. Udi can be empty (erased empty), caller
* should call again */
virtual bool getCurrentUdi(std::string& udi);
/** Skip to next. (false && !eof) -> error, (false&&eof)->EOF. */
virtual bool next(bool& eof);
/* Debug. This writes the entry headers to stdout */
virtual bool dump();
/* Utility: append all entries from sdir to ddir.
*
* This does not need to be a member at all, just using the namespace here.
*
* @param ddir destination circache (must be previously created
* with appropriate size)
* @param sdir source circache
* @ret number of entries copied or -a
*/
static int append(const std::string ddir, const std::string& sdir,
std::string *reason = 0);
protected:
CirCacheInternal *m_d;
std::string m_dir;
private:
CirCache(const CirCache&) {}
CirCache& operator=(const CirCache&) {
return *this;
}
};
#endif /* _circache_h_included_ */