1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_FEEDBACK_FEEDBACK_REPORT_H_
6 #define COMPONENTS_FEEDBACK_FEEDBACK_REPORT_H_
10 #include "base/basictypes.h"
11 #include "base/callback_forward.h"
12 #include "base/files/file_path.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/time/time.h"
17 class SequencedTaskRunner
;
22 typedef base::Callback
<void(const std::string
&)> QueueCallback
;
24 // This class holds a feedback report. Once a report is created, a disk backup
25 // for it is created automatically. This backup needs to explicitly be
26 // deleted by calling DeleteReportOnDisk.
27 class FeedbackReport
: public base::RefCounted
<FeedbackReport
> {
29 FeedbackReport(const base::FilePath
& path
,
30 const base::Time
& upload_at
,
31 const std::string
& data
,
32 scoped_refptr
<base::SequencedTaskRunner
> task_runner
);
34 // Stops the disk write of the report and deletes the report file if already
36 void DeleteReportOnDisk();
38 const base::Time
& upload_at() const { return upload_at_
; }
39 const std::string
& data() const { return data_
; }
41 // Loads the reports still on disk and queues then using the given callback.
42 // This call blocks on the file reads.
43 static void LoadReportsAndQueue(const base::FilePath
& user_dir
,
44 QueueCallback callback
);
47 friend class base::RefCounted
<FeedbackReport
>;
48 virtual ~FeedbackReport();
50 // Name of the file corresponding to this report.
53 base::FilePath reports_path_
;
54 base::Time upload_at_
; // Upload this report at or after this time.
57 scoped_refptr
<base::SequencedTaskRunner
> reports_task_runner_
;
59 DISALLOW_COPY_AND_ASSIGN(FeedbackReport
);
62 } // namespace feedback
64 #endif // COMPONENTS_FEEDBACK_FEEDBACK_REPORT_H_