/* * Copyright (c) 2022 Huawei Device Co., Ltd. * 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. */ #ifndef OHOS_IDL_PARSER_H #define OHOS_IDL_PARSER_H #include "ast/ast_interface_type.h" #include "ast/ast_method.h" #include "ast/ast_module.h" #include "ast/ast_type.h" #include "parser/lexer.h" #include "parser/token.h" #include "util/autoptr.h" #include "util/light_refcount_base.h" #include "util/options.h" #include "util/string.h" namespace OHOS { namespace Idl { class Parser { public: explicit Parser(const Options& options); ~Parser() = default; bool Parse(const String& sourceFile); AutoPtr GetModule() const { return module_; } private: class ErrorInfo : public LightRefCountBase { public: String file_; Token token_; int lineNo_; int columnNo_; String message_; AutoPtr next_; }; bool ParseFile(); bool ParseLicense(); bool ParseInterface(); bool ParseInterfaceMiddle(Token& token, String& interfaceFullName); bool ParseInterfaceEnd(Token& token, String& interfaceFullName, bool hasProperties, bool oneway, bool ret); bool ParseMethod(ASTInterfaceType* interface); bool ParseMethodProperties(bool& oneway, bool& cacheable, int& cacheTime); bool ParseMethodName(Token& token, ASTType* type, ASTInterfaceType* interface); bool ParseMethodBrackets(Token& token, ASTMethod* method, bool& ret); bool ParseParameter(ASTMethod* method); bool ParseParameterPeek(Token& token); bool ParseParameterInOut(Token& token, ASTParameter* parameter); void SetMethodAttr(ASTMethod* method, ASTType *returnType, bool oneway, bool cacheable, int cacheTime); AutoPtr NameSpaceEmpty(); AutoPtr ParseType(); AutoPtr ParseList(); AutoPtr ParseMap(); bool ParseSequenceable(); bool CheckIntegrity(); bool IsValidTypeName(const String& typeName); static bool IsPrimitiveType(Token token) { return token >= Token::BOOLEAN && token <= Token::STRING; } void LogError(Token token, const String& message); void ShowError(); static const char* tag; const Options& options_; AutoPtr module_; AutoPtr parsingInterface_; Lexer lexer_; AutoPtr errors_; }; } // namespace Idl } // namespace OHOS #endif // OHOS_IDL_PARSER_H