xapian-core  2.0.0
honey_dbcheck.h
Go to the documentation of this file.
1 
4 /* Copyright (C) 2008,2009,2012,2013,2014,2016,2024 Olly Betts
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see
18  * <https://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef XAPIAN_INCLUDED_HONEY_DBCHECK_H
22 #define XAPIAN_INCLUDED_HONEY_DBCHECK_H
23 
24 #include "xapian/types.h"
25 
26 #include <sys/types.h> // For size_t and off_t.
27 #include <iosfwd>
28 #include <string>
29 #include <string_view>
30 #include <vector>
31 
32 class HoneyVersion;
33 
34 size_t check_honey_table(const char* tablename, std::string_view db_dir,
35  int fd, off_t offset_,
36  const HoneyVersion& version_file, int opts,
37  std::vector<Xapian::termcount>& doclens,
38  std::ostream* out);
39 
40 inline size_t
41 check_honey_table(const char* tablename, std::string_view db_dir,
42  const HoneyVersion& version_file, int opts,
43  std::vector<Xapian::termcount>& doclens,
44  std::ostream* out)
45 {
46  return check_honey_table(tablename, db_dir, -1, 0, version_file, opts,
47  doclens, out);
48 }
49 
50 inline size_t
51 check_honey_table(const char* tablename, int fd, off_t offset_,
52  const HoneyVersion& version_file, int opts,
53  std::vector<Xapian::termcount>& doclens,
54  std::ostream* out)
55 {
56  return check_honey_table(tablename, std::string(), fd, offset_,
57  version_file, opts,
58  doclens, out);
59 }
60 
61 #endif // XAPIAN_INCLUDED_HONEY_DBCHECK_H
The HoneyVersion class manages the revision files.
Definition: honey_version.h:79
std::string db_dir
The database directory.
int fd
File descriptor.
Definition: honey_version.h:96
size_t check_honey_table(const char *tablename, std::string_view db_dir, int fd, off_t offset_, const HoneyVersion &version_file, int opts, std::vector< Xapian::termcount > &doclens, std::ostream *out)
typedefs for Xapian
static const char * opts