blob: 98962b2d3cc1ec708152111dfd5f0b0a7fa432ee [file] [log] [blame]
Andreas Huber1aec3972016-08-26 09:26:32 -07001/*
2 * Copyright (C) 2016 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
Andreas Huberc9410c72016-07-28 12:18:40 -070017#ifndef ENUM_TYPE_H_
18
19#define ENUM_TYPE_H_
20
Yifan Hong57886972016-08-17 10:42:15 -070021#include "ConstantExpression.h"
Andreas Huberc9410c72016-07-28 12:18:40 -070022#include "NamedType.h"
23
Andreas Huber881227d2016-08-02 14:20:21 -070024#include <vector>
Andreas Huberc9410c72016-07-28 12:18:40 -070025
26namespace android {
27
Andreas Huber31629bc2016-08-03 09:06:40 -070028struct EnumValue;
Andreas Huberc9410c72016-07-28 12:18:40 -070029
30struct EnumType : public NamedType {
Andreas Huber9ed827c2016-08-22 12:31:13 -070031 EnumType(const char *localName,
32 std::vector<EnumValue *> *values,
Andreas Huberc9410c72016-07-28 12:18:40 -070033 Type *storageType = NULL);
34
Andreas Huber8d3ac0c2016-08-04 14:49:23 -070035 const Type *storageType() const;
36 const std::vector<EnumValue *> &values() const;
37
Andreas Huber737080b2016-08-02 15:38:04 -070038 const ScalarType *resolveToScalarType() const override;
39
Andreas Huber8d3ac0c2016-08-04 14:49:23 -070040 bool isEnum() const override;
41
Andreas Huber881227d2016-08-02 14:20:21 -070042 std::string getCppType(StorageMode mode, std::string *extra) const override;
43
Andreas Huber2831d512016-08-15 09:33:47 -070044 std::string getJavaType() const override;
45 std::string getJavaSuffix() const override;
46
Andreas Huber881227d2016-08-02 14:20:21 -070047 void emitReaderWriter(
48 Formatter &out,
49 const std::string &name,
50 const std::string &parcelObj,
51 bool parcelObjIsPointer,
52 bool isReader,
53 ErrorMode mode) const override;
54
Andreas Huber85eabdb2016-08-25 11:24:49 -070055 void emitJavaFieldReaderWriter(
56 Formatter &out,
57 const std::string &blobName,
58 const std::string &fieldName,
59 const std::string &offset,
60 bool isReader) const override;
61
Andreas Huber881227d2016-08-02 14:20:21 -070062 status_t emitTypeDeclarations(Formatter &out) const override;
Andreas Huber85eabdb2016-08-25 11:24:49 -070063
64 status_t emitJavaTypeDeclarations(
65 Formatter &out, bool atTopLevel) const override;
Andreas Huber881227d2016-08-02 14:20:21 -070066
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070067 status_t emitVtsTypeDeclarations(Formatter &out) const override;
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070068 status_t emitVtsAttributeType(Formatter &out) const override;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070069
Andreas Huber85eabdb2016-08-25 11:24:49 -070070 void getAlignmentAndSize(size_t *align, size_t *size) const override;
71
Andreas Huberc9410c72016-07-28 12:18:40 -070072private:
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070073 void getTypeChain(std::vector<const EnumType *> *out) const;
Andreas Huber881227d2016-08-02 14:20:21 -070074 std::vector<EnumValue *> *mValues;
Andreas Huberc9410c72016-07-28 12:18:40 -070075 Type *mStorageType;
76
77 DISALLOW_COPY_AND_ASSIGN(EnumType);
78};
79
Andreas Huber31629bc2016-08-03 09:06:40 -070080struct EnumValue {
Yifan Hong57886972016-08-17 10:42:15 -070081 EnumValue(const char *name, const ConstantExpression *value = nullptr);
Andreas Huber31629bc2016-08-03 09:06:40 -070082
83 std::string name() const;
84 const char *value() const;
Yifan Hong57886972016-08-17 10:42:15 -070085 const char *cppValue(ScalarType::Kind castKind) const;
86 const char *comment() const;
Andreas Huber31629bc2016-08-03 09:06:40 -070087
88private:
89 std::string mName;
Yifan Hong57886972016-08-17 10:42:15 -070090 const ConstantExpression *mValue;
Andreas Huber31629bc2016-08-03 09:06:40 -070091
92 DISALLOW_COPY_AND_ASSIGN(EnumValue);
93};
94
Andreas Huberc9410c72016-07-28 12:18:40 -070095} // namespace android
96
97#endif // ENUM_TYPE_H_
98