blob: 784c181d9741c4014cb2bd3e0ddabab2edeb7dfe [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
Yi Jin04625ad2017-10-17 18:29:33 -070017#ifndef TEXT_PARSER_BASE_H
18#define TEXT_PARSER_BASE_H
Yi Jin0a3406f2017-06-22 19:23:11 -070019
20#include <utils/Errors.h>
21#include <utils/String8.h>
22
23using namespace android;
Yi Jin6cacbcb2018-03-30 14:04:52 -070024using namespace std;
Yi Jin0a3406f2017-06-22 19:23:11 -070025
26/**
27 * Base class for text parser
28 */
29class TextParserBase {
30public:
31 String8 name;
32
33 TextParserBase(String8 name) : name(name) {};
34 virtual ~TextParserBase() {};
35
36 virtual status_t Parse(const int in, const int out) const = 0;
37};
38
39/**
Yi Jin99c248f2017-08-25 18:11:58 -070040 * No op parser returns what it reads
41 */
42class NoopParser : public TextParserBase {
43public:
44 NoopParser() : TextParserBase(String8("NoopParser")) {};
45 ~NoopParser() {};
46
47 virtual status_t Parse(const int in, const int out) const;
48};
49
50/**
Yi Jin0a3406f2017-06-22 19:23:11 -070051 * This parser is used for testing only, results in timeout.
52 */
53class TimeoutParser : public TextParserBase {
54public:
55 TimeoutParser() : TextParserBase(String8("TimeoutParser")) {};
56 ~TimeoutParser() {};
57
58 virtual status_t Parse(const int /** in */, const int /** out */) const { while (true); };
59};
60
61/**
62 * This parser is used for testing only, results in reversed input text.
63 */
64class ReverseParser : public TextParserBase {
65public:
66 ReverseParser() : TextParserBase(String8("ReverseParser")) {};
67 ~ReverseParser() {};
68
69 virtual status_t Parse(const int in, const int out) const;
70};
71
Yi Jin4bab3a12018-01-10 16:50:59 -080072#endif // TEXT_PARSER_BASE_H