blob: e733d99b5bbd0b974552e5115c83dd1cc5567ccd [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>
Timur Iskhakov891a8662017-08-25 21:53:48 -070024#include <vector>
Andreas Huber3599d922016-08-09 10:42:57 -070025
26namespace android {
27
28struct Formatter;
Steven Morelandd537ab02016-09-12 10:32:01 -070029
30struct AnnotationParam {
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070031 virtual ~AnnotationParam() {}
Steven Morelandd537ab02016-09-12 10:32:01 -070032
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070033 const std::string& getName() const;
Steven Morelandd537ab02016-09-12 10:32:01 -070034
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070035 virtual std::vector<std::string> getValues() const = 0;
36 virtual std::string getSingleValue() const = 0;
Steven Morelanddb1b1b62017-01-10 09:50:55 -080037
38 /* Returns unquoted version of getSingleValue */
39 std::string getSingleString() const;
40
41 /* Returns value interpretted as a boolean */
42 bool getSingleBool() const;
43
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070044 protected:
Steven Morelandd537ab02016-09-12 10:32:01 -070045 const std::string mName;
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070046
47 AnnotationParam(const std::string& name);
Steven Morelandd537ab02016-09-12 10:32:01 -070048};
49
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070050struct StringAnnotationParam : AnnotationParam {
51 StringAnnotationParam(const std::string& name, std::vector<std::string>* values);
52
53 std::vector<std::string> getValues() const override;
54 std::string getSingleValue() const override;
55
56 private:
57 std::vector<std::string>* const mValues;
58};
59
Timur Iskhakov7a85dc22017-08-10 19:06:41 -070060using AnnotationParamVector = std::vector<AnnotationParam*>;
Andreas Huber3599d922016-08-09 10:42:57 -070061
62struct Annotation {
Neel Mehta69920a62019-07-22 16:22:13 -070063 Annotation(const std::string& name, AnnotationParamVector* params);
Andreas Huber3599d922016-08-09 10:42:57 -070064
65 std::string name() const;
Zhuoyao Zhang5158db42016-08-10 10:25:20 -070066 const AnnotationParamVector &params() const;
Andreas Huber019d21d2016-10-03 12:59:47 -070067 const AnnotationParam *getParam(const std::string &name) const;
Andreas Huber3599d922016-08-09 10:42:57 -070068
69 void dump(Formatter &out) const;
70
Timur Iskhakovcec46c42017-08-09 00:22:02 -070071 private:
Andreas Huber3599d922016-08-09 10:42:57 -070072 std::string mName;
Steven Morelandd537ab02016-09-12 10:32:01 -070073 AnnotationParamVector *mParams;
Andreas Huber3599d922016-08-09 10:42:57 -070074
75 DISALLOW_COPY_AND_ASSIGN(Annotation);
76};
77
78} // namespace android
79
80#endif // ANNOTATION_H_