This file is indexed.

/usr/include/dballe/db/v7/postgresql/station.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
#ifndef DBALLE_DB_V7_POSTGRESQL_STATION_H
#define DBALLE_DB_V7_POSTGRESQL_STATION_H

#include <dballe/db/v7/station.h>
#include <functional>
#include <memory>

namespace wreport {
struct Var;
}

namespace dballe {
namespace db {
namespace v7 {
namespace postgresql {

/**
 * Precompiled queries to manipulate the station table
 */
class PostgreSQLStation : public v7::Station
{
protected:
    /**
     * DB connection.
     */
    dballe::sql::PostgreSQLConnection& conn;

    /// Lookup the ID of a station, returning true if it was found, false if not
    bool maybe_get_id(const StationDesc& st, int* id) override;

    void _dump(std::function<void(int, int, const Coords& coords, const char* ident)> out) override;

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

    stations_t::iterator lookup_id(State& st, int id) override;
    stations_t::iterator obtain_id(State& st, const StationDesc& desc) override;

    void get_station_vars(int id_station, std::function<void(std::unique_ptr<wreport::Var>)> dest) override;
    void add_station_vars(int id_station, Record& rec) override;
};

}
}
}
}
#endif