blob: fb5fc1ce878fc40301bab7e5a9cd29715ba88c84 [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
zonr6315f762010-10-05 15:35:14 +080017#ifndef _SLANG_COMPILER_RS_CONTEXT_H
18#define _SLANG_COMPILER_RS_CONTEXT_H
Shih-wei Liao462aefd2010-06-04 15:32:04 -070019
20#include <map>
21#include <list>
22#include <string>
23#include <cstdio>
24
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070025#include "llvm/ADT/StringSet.h"
26#include "llvm/ADT/StringMap.h"
Shih-wei Liao462aefd2010-06-04 15:32:04 -070027
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070028#include "clang/Lex/Preprocessor.h"
Shih-wei Liao462aefd2010-06-04 15:32:04 -070029
30namespace 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 // Record the variables/types/elements annotated in #pragma to be exported
71 NeedExportVarSet mNeedExportVars;
72 NeedExportFuncSet mNeedExportFuncs;
73 NeedExportTypeSet mNeedExportTypes;
74 bool mExportAllNonStaticVars;
75 bool mExportAllNonStaticFuncs;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070076
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070077 std::string *mLicenseNote;
78 std::string mReflectJavaPackageName;
79 std::string mReflectJavaPathName;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070080
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070081 bool processExportVar(const clang::VarDecl *VD);
82 bool processExportFunc(const clang::FunctionDecl *FD);
83 bool processExportType(const llvm::StringRef &Name);
Shih-wei Liao537446c2010-06-11 16:05:55 -070084
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070085 ExportVarList mExportVars;
86 ExportFuncList mExportFuncs;
87 ExportTypeMap mExportTypes;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070088
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070089 public:
Stephen Hines9e5b5032010-11-03 13:19:14 -070090 RSContext(clang::Preprocessor &PP,
91 clang::ASTContext &Ctx,
92 const clang::TargetInfo &Target);
Shih-wei Liao462aefd2010-06-04 15:32:04 -070093
Stephen Hines9e5b5032010-11-03 13:19:14 -070094 inline clang::Preprocessor &getPreprocessor() const { return mPP; }
95 inline clang::ASTContext &getASTContext() const { return mCtx; }
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070096 inline const llvm::TargetData *getTargetData() const { return mTargetData; }
97 inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; }
98 inline const clang::SourceManager *getSourceManager() const {
Stephen Hines9e5b5032010-11-03 13:19:14 -070099 return &mPP.getSourceManager();
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700100 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700101
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700102 inline void setLicenseNote(const std::string &S) {
103 mLicenseNote = new std::string(S);
104 }
105 inline const std::string *getLicenseNote() const { return mLicenseNote; }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700106
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700107 inline void addExportVar(const std::string &S) {
108 mNeedExportVars.insert(S);
109 return;
110 }
111 inline void addExportFunc(const std::string &S) {
112 mNeedExportFuncs.insert(S);
113 return;
114 }
115 inline void addExportType(const std::string &S) {
116 mNeedExportTypes.insert(S);
117 return;
118 }
Victor Hsiehd8a0d182010-07-07 19:22:33 +0800119
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700120 inline void setExportAllNonStaticVars(bool flag) {
121 mExportAllNonStaticVars = flag;
122 }
123 inline void setExportAllNonStaticFuncs(bool flag) {
124 mExportAllNonStaticFuncs = flag;
125 }
126 inline void setReflectJavaPackageName(const std::string &S) {
127 mReflectJavaPackageName = S;
128 return;
129 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700130
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700131 void processExport();
Zonr Changa41ce1d2010-10-06 02:23:12 +0800132 inline void newExportable(RSExportable *E) {
133 if (E != NULL)
134 mExportables.push_back(E);
135 }
Zonr Chang641558f2010-10-12 21:07:06 +0800136 typedef ExportableList::iterator exportable_iterator;
137 exportable_iterator exportable_begin() {
138 return mExportables.begin();
139 }
140 exportable_iterator exportable_end() {
141 return mExportables.end();
142 }
Shih-wei Liao537446c2010-06-11 16:05:55 -0700143
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700144 typedef ExportVarList::const_iterator const_export_var_iterator;
145 const_export_var_iterator export_vars_begin() const {
146 return mExportVars.begin();
147 }
148 const_export_var_iterator export_vars_end() const {
149 return mExportVars.end();
150 }
151 inline bool hasExportVar() const {
152 return !mExportVars.empty();
153 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700154
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700155 typedef ExportFuncList::const_iterator const_export_func_iterator;
156 const_export_func_iterator export_funcs_begin() const {
157 return mExportFuncs.begin();
158 }
159 const_export_func_iterator export_funcs_end() const {
160 return mExportFuncs.end();
161 }
162 inline bool hasExportFunc() const { return !mExportFuncs.empty(); }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700163
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700164 typedef ExportTypeMap::iterator export_type_iterator;
165 typedef ExportTypeMap::const_iterator const_export_type_iterator;
166 export_type_iterator export_types_begin() { return mExportTypes.begin(); }
167 export_type_iterator export_types_end() { return mExportTypes.end(); }
168 const_export_type_iterator export_types_begin() const {
169 return mExportTypes.begin();
170 }
171 const_export_type_iterator export_types_end() const {
172 return mExportTypes.end();
173 }
174 inline bool hasExportType() const { return !mExportTypes.empty(); }
175 export_type_iterator findExportType(const llvm::StringRef &TypeName) {
176 return mExportTypes.find(TypeName);
177 }
178 const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
179 const {
180 return mExportTypes.find(TypeName);
181 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700182
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700183 // Insert the specified Typename/Type pair into the map. If the key already
184 // exists in the map, return false and ignore the request, otherwise insert it
185 // and return true.
186 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700187
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700188 bool reflectToJava(const std::string &OutputPathBase,
189 const std::string &OutputPackageName,
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700190 const std::string &InputFileName,
191 const std::string &OutputBCFileName,
Shih-wei Liaob81c6a42010-10-10 14:15:00 -0700192 std::string *RealPackageName);
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700193
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700194 ~RSContext();
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700195};
196
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700197} // namespace slang
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700198
zonr6315f762010-10-05 15:35:14 +0800199#endif // _SLANG_COMPILER_RS_CONTEXT_H