Child: [ec3dbb] (diff)

Download this file

fetcher.h    72 lines (63 with data), 2.7 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
/* Copyright (C) 2012 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 _FETCHER_H_INCLUDED_
#define _FETCHER_H_INCLUDED_
#include <sys/stat.h>
#include <string>
#include "rcldoc.h"
class RclConfig;
/**
* Definition for a generic method to retrieve the data
* for a document designated by its index data (udi/ipath/url).
* This is used to retrieve the data for previewing. The
* actual implementation is specific to the kind of backend (file
* system, beagle cache, others in the future ?), and of course may
* share code with the indexing-time functions from the specific backend.
*/
class DocFetcher {
public:
/** A RawDoc is the data for a source document either as a memory
block, or pointed to by a file name */
struct RawDoc {
enum RawDocKind {RDK_FILENAME, RDK_DATA};
RawDocKind kind;
std::string data; // Doc data or file name
struct stat st; // Only used if RDK_FILENAME
};
/**
* Return the data for the requested document, either as a
* file-system file or as a memory object (maybe stream too in the
* future?)
* @param cnf the global config
* @param idoc the data gathered from the index for this doc (udi/ipath)
* @param out we may return either a file name or the document data.
*/
virtual bool fetch(RclConfig* cnf, const Rcl::Doc& idoc, RawDoc& out) = 0;
/**
* Return the signature for the requested document. This is used for
* up-to-date tests performed out of indexing (e.g.: verifying that a
* document is not stale before previewing it).
* @param cnf the global config
* @param idoc the data gathered from the index for this doc (udi/ipath)
* @param sig output.
*/
virtual bool makesig(RclConfig* cnf, const Rcl::Doc& idoc, string& sig) = 0;
virtual ~DocFetcher() {}
};
/** Returns an appropriate fetcher object given the backend string identifier */
DocFetcher *docFetcherMake(const Rcl::Doc& idoc);
#endif /* _FETCHER_H_INCLUDED_ */