-
Notifications
You must be signed in to change notification settings - Fork 303
/
Copy pathxeContainerFormatParser.hpp
128 lines (104 loc) · 3.29 KB
/
xeContainerFormatParser.hpp
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#ifndef _XECONTAINERFORMATPARSER_HPP
#define _XECONTAINERFORMATPARSER_HPP
/*-------------------------------------------------------------------------
* drawElements Quality Program Test Executor
* ------------------------------------------
*
* Copyright 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*//*!
* \file
* \brief Test log container format parser.
*//*--------------------------------------------------------------------*/
#include "xeDefs.hpp"
#include "deRingBuffer.hpp"
namespace xe
{
enum ContainerElement
{
CONTAINERELEMENT_INCOMPLETE = 0,
CONTAINERELEMENT_END_OF_STRING,
CONTAINERELEMENT_BEGIN_SESSION,
CONTAINERELEMENT_END_SESSION,
CONTAINERELEMENT_SESSION_INFO,
CONTAINERELEMENT_BEGIN_TEST_CASE_RESULT,
CONTAINERELEMENT_END_TEST_CASE_RESULT,
CONTAINERELEMENT_TERMINATE_TEST_CASE_RESULT,
CONTAINERELEMENT_TEST_LOG_DATA,
CONTAINERELEMENT_TEST_RUN_PARAM_SESSION_BEGIN,
CONTAINERELEMENT_TEST_RUN_PARAM_SESSION_END,
CONTAINERELEMENT_TEST_RUN_PARAM_BEGIN,
CONTAINERELEMENT_TEST_RUN_PARAM_END,
CONTAINERELEMENT_LAST
};
class ContainerParseError : public ParseError
{
public:
ContainerParseError(const std::string &message) : ParseError(message)
{
}
};
class ContainerFormatParser
{
public:
ContainerFormatParser(void);
~ContainerFormatParser(void);
void clear(void);
void feed(const uint8_t *bytes, size_t numBytes);
void advance(void);
ContainerElement getElement(void) const
{
return m_element;
}
// SESSION_INFO
const char *getSessionInfoAttribute(void) const;
const char *getSessionInfoValue(void) const;
// BEGIN_TEST_CASE
const char *getTestCasePath(void) const;
// TERMINATE_TEST_CASE
const char *getTerminateReason(void) const;
// TEST_LOG_DATA
int getDataSize(void) const;
void getData(uint8_t *dst, int numBytes, int offset);
// TEST_RUN_PARAM
const char *getTestRunsParams(void) const;
private:
ContainerFormatParser(const ContainerFormatParser &other);
ContainerFormatParser &operator=(const ContainerFormatParser &other);
void error(const std::string &what);
enum State
{
STATE_AT_LINE_START,
STATE_CONTAINER_LINE,
STATE_DATA,
STATE_LAST
};
enum
{
END_OF_STRING = 0, //!< End of string (0).
END_OF_BUFFER = 0xffffffff //!< End of current data buffer.
};
int getChar(int offset) const;
void parseContainerLine(void);
void parseContainerValue(std::string &dst, int &offset) const;
ContainerElement m_element;
int m_elementLen;
State m_state;
std::string m_attribute;
std::string m_value;
de::RingBuffer<uint8_t> m_buf;
};
} // namespace xe
#endif // _XECONTAINERFORMATPARSER_HPP