blob: d24d7173aa26ad9d3905822ac154761fce4308dd [file] [log] [blame]
Yi Jin0a3406f2017-06-22 19:23:11 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef INCIDENT_HELPER_H
18#define INCIDENT_HELPER_H
19
20#include <utils/Errors.h>
21#include <utils/String8.h>
22
23using namespace android;
24
25/**
26 * Base class for text parser
27 */
28class TextParserBase {
29public:
30 String8 name;
31
32 TextParserBase(String8 name) : name(name) {};
33 virtual ~TextParserBase() {};
34
35 virtual status_t Parse(const int in, const int out) const = 0;
36};
37
38/**
Yi Jin99c248f2017-08-25 18:11:58 -070039 * No op parser returns what it reads
40 */
41class NoopParser : public TextParserBase {
42public:
43 NoopParser() : TextParserBase(String8("NoopParser")) {};
44 ~NoopParser() {};
45
46 virtual status_t Parse(const int in, const int out) const;
47};
48
49/**
Yi Jin0a3406f2017-06-22 19:23:11 -070050 * This parser is used for testing only, results in timeout.
51 */
52class TimeoutParser : public TextParserBase {
53public:
54 TimeoutParser() : TextParserBase(String8("TimeoutParser")) {};
55 ~TimeoutParser() {};
56
57 virtual status_t Parse(const int /** in */, const int /** out */) const { while (true); };
58};
59
60/**
61 * This parser is used for testing only, results in reversed input text.
62 */
63class ReverseParser : public TextParserBase {
64public:
65 ReverseParser() : TextParserBase(String8("ReverseParser")) {};
66 ~ReverseParser() {};
67
68 virtual status_t Parse(const int in, const int out) const;
69};
70
71/**
72 * Kernel wakeup sources parser, parses text to protobuf in /d/wakeup_sources
73 */
Yi Jin0a3406f2017-06-22 19:23:11 -070074class KernelWakesParser : public TextParserBase {
75public:
76 KernelWakesParser() : TextParserBase(String8("KernelWakeSources")) {};
77 ~KernelWakesParser() {};
78
79 virtual status_t Parse(const int in, const int out) const;
80};
81
Yi Jinb44f7d42017-07-21 12:12:59 -070082/**
Yi Jin810b14f2017-09-11 19:01:08 -070083 * PageTypeInfo parser, parses text to protobuf in /proc/pageinfotype
84 */
85class PageTypeInfoParser : public TextParserBase {
86public:
87 PageTypeInfoParser() : TextParserBase(String8("PageTypeInfo")) {};
88 ~PageTypeInfoParser() {};
89
90 virtual status_t Parse(const int in, const int out) const;
91};
92
93/**
Yi Jinb44f7d42017-07-21 12:12:59 -070094 * Procrank parser, parses text produced by command procrank
95 */
Yi Jinb44f7d42017-07-21 12:12:59 -070096class ProcrankParser : public TextParserBase {
97public:
98 ProcrankParser() : TextParserBase(String8("ProcrankParser")) {};
99 ~ProcrankParser() {};
100
101 virtual status_t Parse(const int in, const int out) const;
102};
103
Yi Jin0a3406f2017-06-22 19:23:11 -0700104#endif // INCIDENT_HELPER_H