blob: 2fdf2682a162b256368f45f95690f76c0431509e [file] [log] [blame]
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001/*
2 * Copyright (C) 2015 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
17#ifndef AAPT_JAVA_CLASS_GENERATOR_H
18#define AAPT_JAVA_CLASS_GENERATOR_H
19
20#include "ResourceTable.h"
21#include "ResourceValues.h"
Adam Lesinski76565542016-03-10 21:55:04 -080022#include "process/IResourceTableConsumer.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070023#include "util/StringPiece.h"
24
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080025#include <ostream>
26#include <string>
27
28namespace aapt {
29
Adam Lesinskib274e352015-11-06 15:14:35 -080030class AnnotationProcessor;
Adam Lesinski6cbfb1d2016-03-31 13:33:02 -070031class ClassDefinition;
Adam Lesinskib274e352015-11-06 15:14:35 -080032
Adam Lesinski1ab598f2015-08-14 14:26:04 -070033struct JavaClassGeneratorOptions {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070034 /*
35 * Specifies whether to use the 'final' modifier
36 * on resource entries. Default is true.
37 */
38 bool useFinal = true;
Adam Lesinski9e10ac72015-10-16 14:37:48 -070039
Adam Lesinskicacb28f2016-10-19 12:18:14 -070040 enum class SymbolTypes {
41 kAll,
42 kPublicPrivate,
43 kPublic,
44 };
Adam Lesinski9e10ac72015-10-16 14:37:48 -070045
Adam Lesinskicacb28f2016-10-19 12:18:14 -070046 SymbolTypes types = SymbolTypes::kAll;
Adam Lesinski3524a232016-04-01 19:19:24 -070047
Adam Lesinskicacb28f2016-10-19 12:18:14 -070048 /**
49 * A list of JavaDoc annotations to add to the comments of all generated
50 * classes.
51 */
52 std::vector<std::string> javadocAnnotations;
Adam Lesinski1ab598f2015-08-14 14:26:04 -070053};
54
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080055/*
56 * Generates the R.java file for a resource table.
57 */
Adam Lesinski1ab598f2015-08-14 14:26:04 -070058class JavaClassGenerator {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070059 public:
60 JavaClassGenerator(IAaptContext* context, ResourceTable* table,
61 const JavaClassGeneratorOptions& options);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080062
Adam Lesinskicacb28f2016-10-19 12:18:14 -070063 /*
64 * Writes the R.java file to `out`. Only symbols belonging to `package` are
65 * written.
66 * All symbols technically belong to a single package, but linked libraries
67 * will
68 * have their names mangled, denoting that they came from a different package.
69 * We need to generate these symbols in a separate file.
70 * Returns true on success.
71 */
72 bool generate(const StringPiece& packageNameToGenerate, std::ostream* out);
Adam Lesinski9e10ac72015-10-16 14:37:48 -070073
Adam Lesinskicacb28f2016-10-19 12:18:14 -070074 bool generate(const StringPiece& packageNameToGenerate,
75 const StringPiece& outputPackageName, std::ostream* out);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080076
Adam Lesinskicacb28f2016-10-19 12:18:14 -070077 const std::string& getError() const;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080078
Adam Lesinskicacb28f2016-10-19 12:18:14 -070079 private:
80 bool addMembersToTypeClass(const StringPiece& packageNameToGenerate,
81 const ResourceTablePackage* package,
82 const ResourceTableType* type,
83 ClassDefinition* outTypeClassDef);
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080084
Adam Lesinskicacb28f2016-10-19 12:18:14 -070085 void addMembersToStyleableClass(const StringPiece& packageNameToGenerate,
86 const std::string& entryName,
87 const Styleable* styleable,
88 ClassDefinition* outStyleableClassDef);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070089
Adam Lesinskicacb28f2016-10-19 12:18:14 -070090 bool skipSymbol(SymbolState state);
Adam Lesinski9e10ac72015-10-16 14:37:48 -070091
Adam Lesinskicacb28f2016-10-19 12:18:14 -070092 IAaptContext* mContext;
93 ResourceTable* mTable;
94 JavaClassGeneratorOptions mOptions;
95 std::string mError;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080096};
97
98inline const std::string& JavaClassGenerator::getError() const {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070099 return mError;
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800100}
101
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700102} // namespace aapt
Adam Lesinski6f6ceb72014-11-14 14:48:12 -0800103
Adam Lesinskicacb28f2016-10-19 12:18:14 -0700104#endif // AAPT_JAVA_CLASS_GENERATOR_H