| /* |
| Copyright 2019 Alain Dargelas |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| |
| /* |
| * File: CompilePackage.h |
| * Author: alain |
| * |
| * Created on March 22, 2018, 9:57 PM |
| */ |
| |
| #ifndef COMPILEPACKAGE_H |
| #define COMPILEPACKAGE_H |
| |
| namespace SURELOG { |
| |
| struct FunctorCompilePackage { |
| FunctorCompilePackage(CompileDesign* compiler, Package* package, |
| Design* design, SymbolTable* symbols, |
| ErrorContainer* errors) |
| : m_compileDesign(compiler), |
| m_package(package), |
| m_design(design), |
| m_symbols(symbols), |
| m_errors(errors) {} |
| int operator()() const; |
| |
| private: |
| CompileDesign* m_compileDesign; |
| Package* m_package; |
| Design* m_design; |
| SymbolTable* m_symbols; |
| ErrorContainer* m_errors; |
| }; |
| |
| class CompilePackage { |
| public: |
| CompilePackage(CompileDesign* compiler, Package* package, Design* design, |
| SymbolTable* symbols, ErrorContainer* errors) |
| : m_compileDesign(compiler), |
| m_package(package), |
| m_design(design), |
| m_symbols(symbols), |
| m_errors(errors) { |
| m_helper.seterrorReporting(errors, symbols); |
| } |
| |
| bool compile(); |
| |
| virtual ~CompilePackage(); |
| |
| private: |
| bool collectObjects_(); |
| CompileDesign* m_compileDesign; |
| Package* m_package; |
| Design* m_design; |
| SymbolTable* m_symbols; |
| ErrorContainer* m_errors; |
| CompileHelper m_helper; |
| }; |
| |
| }; // namespace SURELOG |
| |
| #endif /* COMPILEPACKAGE_H */ |