This file is indexed.

/usr/include/dballe/db/v7/sqlite/repinfo.h is in libdballe-dev 7.21-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#ifndef DBALLE_DB_V7_SQLITE_REPINFO_H
#define DBALLE_DB_V7_SQLITE_REPINFO_H

#include <dballe/db/v7/repinfo.h>
#include <dballe/sql/fwd.h>
#include <vector>
#include <string>
#include <map>

namespace dballe {
struct Record;

namespace db {
namespace v7 {
namespace sqlite {

/**
 * Fast cached access to the repinfo table
 */
struct SQLiteRepinfoV7 : public v7::Repinfo
{
    /**
     * DB connection. The pointer is assumed always valid during the
     * lifetime of the object
     */
    dballe::sql::SQLiteConnection& conn;

    SQLiteRepinfoV7(dballe::sql::SQLiteConnection& conn);
    SQLiteRepinfoV7(const SQLiteRepinfoV7&) = delete;
    SQLiteRepinfoV7(const SQLiteRepinfoV7&&) = delete;
    virtual ~SQLiteRepinfoV7();
    SQLiteRepinfoV7& operator=(const SQLiteRepinfoV7&) = delete;

    void dump(FILE* out) override;

protected:
    /// Return how many time this ID is used in the database
    int id_use_count(unsigned id, const char* name) override;
    void delete_entry(unsigned id) override;
    void update_entry(const v7::repinfo::Cache& entry) override;
    void insert_entry(const v7::repinfo::Cache& entry) override;
    void read_cache() override;
    void insert_auto_entry(const char* memo) override;
};

}
}
}
}
#endif