This file is indexed.

/usr/include/dballe/db/v6/mysql/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
51
52
53
54
55
56
57
#ifndef DBALLE_DB_V6_MYSQL_REPINFO_H
#define DBALLE_DB_V6_MYSQL_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 mysql {

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

    MySQLRepinfoBase(dballe::sql::MySQLConnection& conn);
    MySQLRepinfoBase(const MySQLRepinfoBase&) = delete;
    MySQLRepinfoBase(const MySQLRepinfoBase&&) = delete;
    virtual ~MySQLRepinfoBase();
    MySQLRepinfoBase& operator=(const MySQLRepinfoBase&) = delete;

    void dump(FILE* out) override;

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

struct MySQLRepinfoV6 : public MySQLRepinfoBase
{
    MySQLRepinfoV6(dballe::sql::MySQLConnection& conn);

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

}
}
}
}
#endif