blob: e41d304943154c85bbce426f7cd059295813e4a1 [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 Huber3599d922016-08-09 10:42:57 -070017#ifndef ANNOTATION_H_
18
19#define ANNOTATION_H_
20
21#include <android-base/macros.h>
Steven Morelandd537ab02016-09-12 10:32:01 -070022#include <map>
Andreas Huber3599d922016-08-09 10:42:57 -070023#include <string>
Andreas Huber3599d922016-08-09 10:42:57 -070024
Yifan Hongf24fa852016-09-23 11:03:15 -070025#include "ConstantExpression.h"
26
Andreas Huber3599d922016-08-09 10:42:57 -070027namespace android {
28
29struct Formatter;
Steven Morelandd537ab02016-09-12 10:32:01 -070030
31struct AnnotationParam {
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070032 virtual ~AnnotationParam() {}
Steven Morelandd537ab02016-09-12 10:32:01 -070033
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070034 const std::string& getName() const;
Steven Morelandd537ab02016-09-12 10:32:01 -070035
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070036 virtual std::vector<std::string> getValues() const = 0;
37 virtual std::string getSingleValue() const = 0;
Steven Morelanddb1b1b62017-01-10 09:50:55 -080038
39 /* Returns unquoted version of getSingleValue */
40 std::string getSingleString() const;
41
42 /* Returns value interpretted as a boolean */
43 bool getSingleBool() const;
44
Timur Iskhakovcec46c42017-08-09 00:22:02 -070045 virtual status_t evaluate();
46 virtual status_t validate() const;
47
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070048 protected:
Steven Morelandd537ab02016-09-12 10:32:01 -070049 const std::string mName;
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070050
51 AnnotationParam(const std::string& name);
Steven Morelandd537ab02016-09-12 10:32:01 -070052};
53
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070054struct StringAnnotationParam : AnnotationParam {
55 StringAnnotationParam(const std::string& name, std::vector<std::string>* values);
56
57 std::vector<std::string> getValues() const override;
58 std::string getSingleValue() const override;
59
60 private:
61 std::vector<std::string>* const mValues;
62};
63
64struct ConstantExpressionAnnotationParam : AnnotationParam {
65 ConstantExpressionAnnotationParam(const std::string& name,
66 std::vector<ConstantExpression*>* values);
67
68 std::vector<std::string> getValues() const override;
69 std::string getSingleValue() const override;
70
Timur Iskhakovcec46c42017-08-09 00:22:02 -070071 status_t evaluate() override;
72
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070073 private:
74 std::vector<ConstantExpression*>* const mValues;
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070075};
76
77using AnnotationParamVector = std::vector<AnnotationParam*>;
Andreas Huber3599d922016-08-09 10:42:57 -070078
79struct Annotation {
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070080 Annotation(const char *name, AnnotationParamVector *params);
Andreas Huber3599d922016-08-09 10:42:57 -070081
82 std::string name() const;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070083 const AnnotationParamVector &params() const;
Andreas Huber019d21d2016-10-03 12:59:47 -070084 const AnnotationParam *getParam(const std::string &name) const;
Andreas Huber3599d922016-08-09 10:42:57 -070085
Timur Iskhakovcec46c42017-08-09 00:22:02 -070086 status_t evaluate();
87 status_t validate() const;
88
Andreas Huber3599d922016-08-09 10:42:57 -070089 void dump(Formatter &out) const;
90
Timur Iskhakovcec46c42017-08-09 00:22:02 -070091 private:
Andreas Huber3599d922016-08-09 10:42:57 -070092 std::string mName;
Steven Morelandd537ab02016-09-12 10:32:01 -070093 AnnotationParamVector *mParams;
Andreas Huber3599d922016-08-09 10:42:57 -070094
95 DISALLOW_COPY_AND_ASSIGN(Annotation);
96};
97
98} // namespace android
99
100#endif // ANNOTATION_H_