/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. * *************************************************************/ #ifndef _IDLC_IDLC_HXX_ #define _IDLC_IDLC_HXX_ #include #include #include #ifdef SAL_UNX #define SEPARATOR '/' #define PATH_SEPARATOR "/" #else #define SEPARATOR '\\' #define PATH_SEPARATOR "\\" #endif class AstInterface; class AstModule; class AstType; class Options; class ErrorHandler; class Idlc { public: Idlc(Options* pOptions); virtual ~Idlc(); void init(); Options* getOptions() { return m_pOptions; } AstStack* scopes() { return m_pScopes; } AstModule* getRoot() { return m_pRoot; } ErrorHandler* error() { return m_pErrorHandler; } const ::rtl::OString& getFileName() { return m_fileName; } void setFileName(const ::rtl::OString& fileName) { m_fileName = fileName; } const ::rtl::OString& getMainFileName() { return m_mainFileName; } void setMainFileName(const ::rtl::OString& mainFileName) { m_mainFileName = mainFileName; } const ::rtl::OString& getRealFileName() { return m_realFileName; } void setRealFileName(const ::rtl::OString& realFileName) { m_realFileName = realFileName; } const ::rtl::OString& getDocumentation() { m_bIsDocValid = sal_False; return m_documentation; } void setDocumentation(const ::rtl::OString& documentation) { m_documentation = documentation; m_bIsDocValid = sal_True; } sal_Bool isDocValid(); sal_Bool isInMainFile() { return m_bIsInMainfile; } void setInMainfile(sal_Bool bInMainfile) { m_bIsInMainfile = bInMainfile; } sal_uInt32 getErrorCount() { return m_errorCount; } void setErrorCount(sal_uInt32 errorCount) { m_errorCount = errorCount; } void incErrorCount() { m_errorCount++; } sal_uInt32 getWarningCount() { return m_warningCount; } void setWarningCount(sal_uInt32 warningCount) { m_warningCount = warningCount; } void incWarningCount() { m_warningCount++; } sal_uInt32 getLineNumber() { return m_lineNumber; } void setLineNumber(sal_uInt32 lineNumber) { m_lineNumber = lineNumber; } void incLineNumber() { m_lineNumber++; } ParseState getParseState() { return m_parseState; } void setParseState(ParseState parseState) { m_parseState = parseState; } void insertInclude(const ::rtl::OString& inc) { m_includes.insert(inc); } StringSet* getIncludes() { return &m_includes; } void setPublished(bool published) { m_published = published; } bool isPublished() const { return m_published; } void reset(); private: Options* m_pOptions; AstStack* m_pScopes; AstModule* m_pRoot; ErrorHandler* m_pErrorHandler; ::rtl::OString m_fileName; ::rtl::OString m_mainFileName; ::rtl::OString m_realFileName; ::rtl::OString m_documentation; sal_Bool m_bIsDocValid; sal_Bool m_bGenerateDoc; sal_Bool m_bIsInMainfile; bool m_published; sal_uInt32 m_errorCount; sal_uInt32 m_warningCount; sal_uInt32 m_lineNumber; ParseState m_parseState; StringSet m_includes; }; sal_Int32 compileFile(const ::rtl::OString * pathname); // a null pathname means stdin sal_Int32 produceFile(const ::rtl::OString& filenameBase); // filenameBase is filename without ".idl" void removeIfExists(const ::rtl::OString& pathname); ::rtl::OString makeTempName(const ::rtl::OString& prefix, const ::rtl::OString& postfix); sal_Bool copyFile(const ::rtl::OString* source, const ::rtl::OString& target); // a null source means stdin sal_Bool isFileUrl(const ::rtl::OString& fileName); ::rtl::OString convertToAbsoluteSystemPath(const ::rtl::OString& fileName); ::rtl::OString convertToFileUrl(const ::rtl::OString& fileName); Idlc* SAL_CALL idlc(); Idlc* SAL_CALL setIdlc(Options* pOptions); AstDeclaration const * resolveTypedefs(AstDeclaration const * type); AstDeclaration const * deconstructAndResolveTypedefs( AstDeclaration const * type, sal_Int32 * rank); AstInterface const * resolveInterfaceTypedefs(AstType const * type); #endif // _IDLC_IDLC_HXX_