This file is indexed.

/usr/include/dballe/db/v6/postgresql/levtr.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
58
59
60
61
62
63
#ifndef DBALLE_DB_V6_POSTGRESQL_LEV_TR_H
#define DBALLE_DB_V6_POSTGRESQL_LEV_TR_H

#include <dballe/db/db.h>
#include <dballe/db/v6/levtr.h>
#include <dballe/sql/fwd.h>
#include <cstdio>
#include <memory>

namespace dballe {
struct Record;
struct Msg;

namespace msg {
struct Context;
}

namespace db {
namespace v6 {
namespace postgresql {
struct DB;

/**
 * Precompiled queries to manipulate the lev_tr table
 */
struct PostgreSQLLevTrV6 : public v6::LevTr
{
protected:
    /**
     * DB connection.
     */
    dballe::sql::PostgreSQLConnection& conn;

    DBRow working_row;

public:
    PostgreSQLLevTrV6(dballe::sql::PostgreSQLConnection& conn);
    PostgreSQLLevTrV6(const LevTr&) = delete;
    PostgreSQLLevTrV6(const LevTr&&) = delete;
    PostgreSQLLevTrV6& operator=(const PostgreSQLLevTrV6&) = delete;
    ~PostgreSQLLevTrV6();

    /**
     * Return the ID for the given Level and Trange, adding it to the database
     * if it does not already exist
     */
    int obtain_id(const Level& lev, const Trange& tr) override;

    const DBRow* read(int id) override;
    void read_all(std::function<void(const DBRow&)> dest) override;

    /**
     * Dump the entire contents of the table to an output stream
     */
    void dump(FILE* out) override;
};


}
}
}
}
#endif