blob: 5490c931bb9bfc00659277c60e26552cc5f67ad2 [file] [log] [blame]
Zonr Changc383a502010-10-12 01:52:08 +08001/*
2 * Copyright 2010, 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
Stephen Hinese639eb52010-11-08 19:27:20 -080017#ifndef _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_ // NOLINT
18#define _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_
Shih-wei Liao462aefd2010-06-04 15:32:04 -070019
Shih-wei Liao462aefd2010-06-04 15:32:04 -070020#include <cstdio>
Stephen Hinese639eb52010-11-08 19:27:20 -080021#include <list>
22#include <map>
23#include <string>
24
25#include "clang/Lex/Preprocessor.h"
Shih-wei Liao462aefd2010-06-04 15:32:04 -070026
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070027#include "llvm/ADT/StringSet.h"
28#include "llvm/ADT/StringMap.h"
Shih-wei Liao462aefd2010-06-04 15:32:04 -070029
Shih-wei Liao462aefd2010-06-04 15:32:04 -070030namespace llvm {
zonr6315f762010-10-05 15:35:14 +080031 class LLVMContext;
32 class TargetData;
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070033} // namespace llvm
Shih-wei Liao462aefd2010-06-04 15:32:04 -070034
35namespace clang {
zonr6315f762010-10-05 15:35:14 +080036 class VarDecl;
37 class ASTContext;
38 class TargetInfo;
39 class FunctionDecl;
40 class SourceManager;
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070041} // namespace clang
Shih-wei Liao462aefd2010-06-04 15:32:04 -070042
43namespace slang {
Zonr Changa41ce1d2010-10-06 02:23:12 +080044 class RSExportable;
45 class RSExportVar;
46 class RSExportFunc;
47 class RSExportType;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070048
49class RSContext {
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070050 typedef llvm::StringSet<> NeedExportVarSet;
51 typedef llvm::StringSet<> NeedExportFuncSet;
52 typedef llvm::StringSet<> NeedExportTypeSet;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070053
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070054 public:
Zonr Changa41ce1d2010-10-06 02:23:12 +080055 typedef std::list<RSExportable*> ExportableList;
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070056 typedef std::list<RSExportVar*> ExportVarList;
57 typedef std::list<RSExportFunc*> ExportFuncList;
58 typedef llvm::StringMap<RSExportType*> ExportTypeMap;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070059
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070060 private:
Stephen Hines9e5b5032010-11-03 13:19:14 -070061 clang::Preprocessor &mPP;
62 clang::ASTContext &mCtx;
63 const clang::TargetInfo &mTarget;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070064
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070065 llvm::TargetData *mTargetData;
66 llvm::LLVMContext &mLLVMContext;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070067
Zonr Changa41ce1d2010-10-06 02:23:12 +080068 ExportableList mExportables;
69
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070070 NeedExportTypeSet mNeedExportTypes;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070071
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070072 std::string *mLicenseNote;
73 std::string mReflectJavaPackageName;
74 std::string mReflectJavaPathName;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070075
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070076 bool processExportVar(const clang::VarDecl *VD);
77 bool processExportFunc(const clang::FunctionDecl *FD);
78 bool processExportType(const llvm::StringRef &Name);
Shih-wei Liao537446c2010-06-11 16:05:55 -070079
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070080 ExportVarList mExportVars;
81 ExportFuncList mExportFuncs;
82 ExportTypeMap mExportTypes;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070083
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070084 public:
Stephen Hines9e5b5032010-11-03 13:19:14 -070085 RSContext(clang::Preprocessor &PP,
86 clang::ASTContext &Ctx,
87 const clang::TargetInfo &Target);
Shih-wei Liao462aefd2010-06-04 15:32:04 -070088
Stephen Hines9e5b5032010-11-03 13:19:14 -070089 inline clang::Preprocessor &getPreprocessor() const { return mPP; }
90 inline clang::ASTContext &getASTContext() const { return mCtx; }
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070091 inline const llvm::TargetData *getTargetData() const { return mTargetData; }
92 inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; }
93 inline const clang::SourceManager *getSourceManager() const {
Stephen Hines9e5b5032010-11-03 13:19:14 -070094 return &mPP.getSourceManager();
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070095 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -070096
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070097 inline void setLicenseNote(const std::string &S) {
98 mLicenseNote = new std::string(S);
99 }
100 inline const std::string *getLicenseNote() const { return mLicenseNote; }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700101
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700102 inline void addExportType(const std::string &S) {
103 mNeedExportTypes.insert(S);
104 return;
105 }
Victor Hsiehd8a0d182010-07-07 19:22:33 +0800106
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700107 inline void setReflectJavaPackageName(const std::string &S) {
108 mReflectJavaPackageName = S;
109 return;
110 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700111
Stephen Hinesc808a992010-11-29 17:20:42 -0800112 bool processExport();
Zonr Changa41ce1d2010-10-06 02:23:12 +0800113 inline void newExportable(RSExportable *E) {
114 if (E != NULL)
115 mExportables.push_back(E);
116 }
Zonr Chang641558f2010-10-12 21:07:06 +0800117 typedef ExportableList::iterator exportable_iterator;
118 exportable_iterator exportable_begin() {
119 return mExportables.begin();
120 }
121 exportable_iterator exportable_end() {
122 return mExportables.end();
123 }
Shih-wei Liao537446c2010-06-11 16:05:55 -0700124
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700125 typedef ExportVarList::const_iterator const_export_var_iterator;
126 const_export_var_iterator export_vars_begin() const {
127 return mExportVars.begin();
128 }
129 const_export_var_iterator export_vars_end() const {
130 return mExportVars.end();
131 }
132 inline bool hasExportVar() const {
133 return !mExportVars.empty();
134 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700135
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700136 typedef ExportFuncList::const_iterator const_export_func_iterator;
137 const_export_func_iterator export_funcs_begin() const {
138 return mExportFuncs.begin();
139 }
140 const_export_func_iterator export_funcs_end() const {
141 return mExportFuncs.end();
142 }
143 inline bool hasExportFunc() const { return !mExportFuncs.empty(); }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700144
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700145 typedef ExportTypeMap::iterator export_type_iterator;
146 typedef ExportTypeMap::const_iterator const_export_type_iterator;
147 export_type_iterator export_types_begin() { return mExportTypes.begin(); }
148 export_type_iterator export_types_end() { return mExportTypes.end(); }
149 const_export_type_iterator export_types_begin() const {
150 return mExportTypes.begin();
151 }
152 const_export_type_iterator export_types_end() const {
153 return mExportTypes.end();
154 }
155 inline bool hasExportType() const { return !mExportTypes.empty(); }
156 export_type_iterator findExportType(const llvm::StringRef &TypeName) {
157 return mExportTypes.find(TypeName);
158 }
159 const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
160 const {
161 return mExportTypes.find(TypeName);
162 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700163
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700164 // Insert the specified Typename/Type pair into the map. If the key already
165 // exists in the map, return false and ignore the request, otherwise insert it
166 // and return true.
167 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700168
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700169 bool reflectToJava(const std::string &OutputPathBase,
170 const std::string &OutputPackageName,
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700171 const std::string &InputFileName,
172 const std::string &OutputBCFileName,
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700173 std::string *RealPackageName);
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700174
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700175 ~RSContext();
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700176};
177
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700178} // namespace slang
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700179
Stephen Hinese639eb52010-11-08 19:27:20 -0800180#endif // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_ NOLINT