blob: c41612de4eb301823876f945e688ed5684100992 [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;
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
Yi Jin04625ad2017-10-17 18:29:33 -070071#endif // TEXT_PARSER_BASE_H