blob: 5aeb4771bef09ee8ba480b10047842b4e55a7995 [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
Steven Moreland979e0992016-09-07 09:18:08 -070042 std::string getCppType(StorageMode mode,
43 std::string *extra,
44 bool specifyNamespaces) const override;
Andreas Huber881227d2016-08-02 14:20:21 -070045
Andreas Huber2831d512016-08-15 09:33:47 -070046 std::string getJavaType() const override;
47 std::string getJavaSuffix() const override;
48
Andreas Huber881227d2016-08-02 14:20:21 -070049 void emitReaderWriter(
50 Formatter &out,
51 const std::string &name,
52 const std::string &parcelObj,
53 bool parcelObjIsPointer,
54 bool isReader,
55 ErrorMode mode) const override;
56
Andreas Huber85eabdb2016-08-25 11:24:49 -070057 void emitJavaFieldReaderWriter(
58 Formatter &out,
59 const std::string &blobName,
60 const std::string &fieldName,
61 const std::string &offset,
62 bool isReader) const override;
63
Andreas Huber881227d2016-08-02 14:20:21 -070064 status_t emitTypeDeclarations(Formatter &out) const override;
Andreas Huber85eabdb2016-08-25 11:24:49 -070065
66 status_t emitJavaTypeDeclarations(
67 Formatter &out, bool atTopLevel) const override;
Andreas Huber881227d2016-08-02 14:20:21 -070068
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070069 status_t emitVtsTypeDeclarations(Formatter &out) const override;
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070070 status_t emitVtsAttributeType(Formatter &out) const override;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070071
Andreas Huber85eabdb2016-08-25 11:24:49 -070072 void getAlignmentAndSize(size_t *align, size_t *size) const override;
73
Andreas Huberc9410c72016-07-28 12:18:40 -070074private:
Zhuoyao Zhang864c7712016-08-16 15:35:28 -070075 void getTypeChain(std::vector<const EnumType *> *out) const;
Andreas Huber881227d2016-08-02 14:20:21 -070076 std::vector<EnumValue *> *mValues;
Andreas Huberc9410c72016-07-28 12:18:40 -070077 Type *mStorageType;
78
79 DISALLOW_COPY_AND_ASSIGN(EnumType);
80};
81
Andreas Huber31629bc2016-08-03 09:06:40 -070082struct EnumValue {
Yifan Hong57886972016-08-17 10:42:15 -070083 EnumValue(const char *name, const ConstantExpression *value = nullptr);
Andreas Huber31629bc2016-08-03 09:06:40 -070084
85 std::string name() const;
86 const char *value() const;
Yifan Hong57886972016-08-17 10:42:15 -070087 const char *cppValue(ScalarType::Kind castKind) const;
Yifan Hong19ca75a2016-08-31 10:20:03 -070088 const char *javaValue(ScalarType::Kind castKind) const;
Yifan Hong57886972016-08-17 10:42:15 -070089 const char *comment() const;
Andreas Huber31629bc2016-08-03 09:06:40 -070090
91private:
92 std::string mName;
Yifan Hong57886972016-08-17 10:42:15 -070093 const ConstantExpression *mValue;
Andreas Huber31629bc2016-08-03 09:06:40 -070094
95 DISALLOW_COPY_AND_ASSIGN(EnumValue);
96};
97
Andreas Huberc9410c72016-07-28 12:18:40 -070098} // namespace android
99
100#endif // ENUM_TYPE_H_
101