This file is indexed.

/usr/include/dballe/db/v6/postgresql/repinfo.h is in libdballe-dev 7.21-1build1.

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
51
52
53
54
55
56
57
58
#ifndef DBALLE_DB_V6_POSTGRESQL_REPINFO_H
#define DBALLE_DB_V6_POSTGRESQL_REPINFO_H

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

namespace dballe {
struct Record;

namespace db {
namespace v6 {
namespace postgresql {

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

    PostgreSQLRepinfoBase(dballe::sql::PostgreSQLConnection& conn);
    PostgreSQLRepinfoBase(const PostgreSQLRepinfoBase&) = delete;
    PostgreSQLRepinfoBase(const PostgreSQLRepinfoBase&&) = delete;
    virtual ~PostgreSQLRepinfoBase();
    PostgreSQLRepinfoBase& operator=(const PostgreSQLRepinfoBase&) = delete;

    void dump(FILE* out) override;

protected:
    int id_use_count(unsigned id, const char* name) override;
    void delete_entry(unsigned id) override;
    void update_entry(const v6::repinfo::Cache& entry) override;
    void insert_entry(const v6::repinfo::Cache& entry) override;

    void read_cache() override;
    void insert_auto_entry(const char* memo) override;
};

struct PostgreSQLRepinfoV6 : public PostgreSQLRepinfoBase
{
    PostgreSQLRepinfoV6(dballe::sql::PostgreSQLConnection& conn);

protected:
    int id_use_count(unsigned id, const char* name) override;
};

}
}
}
}
#endif