This file is indexed.

/usr/include/measurement_kit/report/base_reporter.hpp is in libmeasurement-kit-dev 0.7.1-2build1.

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
// Part of measurement-kit <https://measurement-kit.github.io/>.
// Measurement-kit is free software. See AUTHORS and LICENSE for more
// information on the copying conditions.
#ifndef MEASUREMENT_KIT_REPORT_BASE_REPORTER_HPP
#define MEASUREMENT_KIT_REPORT_BASE_REPORTER_HPP

#include <measurement_kit/report/report.hpp>
#include <measurement_kit/report/entry.hpp>

namespace mk {
namespace report {

class Report;

class BaseReporter : public NonCopyable, public NonMovable {
  public:
    static Var<BaseReporter> make();

    virtual ~BaseReporter();

    // TODO: refactor moving these inline functions inside of the .cpp file

    virtual Continuation<Error> open(Report &) {
        return do_open_([=](Callback<Error> cb) { cb(NoError()); });
    }

    virtual Continuation<Error> write_entry(Entry e) {
        return do_write_entry_(e, [=](Callback<Error> cb) { cb(NoError()); });
    }

    virtual Continuation<Error> close() {
        return do_close_([=](Callback<Error> cb) { cb(NoError()); });
    }

    virtual std::string get_report_id() {
        return ""; /* This is basically "invalid report id" */
    }

  protected:
    BaseReporter() {}

    Continuation<Error> do_open_(Continuation<Error> cc);

    Continuation<Error> do_write_entry_(Entry, Continuation<Error> cc);

    Continuation<Error> do_close_(Continuation<Error> cc);

  private:

    bool openned_ = false;
    bool closed_ = false;
    std::string prev_entry_;
};

} // namespace report
} // namespace mk
#endif