aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm/DMReporter.h
blob: f7803dc67fdd76687ab17d5e477b53ff119404ce (plain)
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
#ifndef DMReporter_DEFINED
#define DMReporter_DEFINED

#include "SkString.h"
#include "SkTArray.h"
#include "SkThread.h"
#include "SkTime.h"
#include "SkTypes.h"

// Used to report status changes including failures.  All public methods are threadsafe.
namespace DM {

class Reporter : SkNoncopyable {
public:
    Reporter() : fPending(0), fFailed(0) {}

    void taskCreated()   { sk_atomic_inc(&fPending); }
    void taskDestroyed() { sk_atomic_dec(&fPending); }
    void fail(SkString msg);

    void printStatus(SkString name, SkMSec timeMs) const;

    void getFailures(SkTArray<SkString>*) const;

private:
    int32_t fPending; // atomic
    int32_t fFailed;  // atomic, == fFailures.count().

    mutable SkMutex fMutex;  // Guards fFailures.
    SkTArray<SkString> fFailures;
};


}  // namespace DM

#endif  // DMReporter_DEFINED