""" Copyright 2017 Inmanta 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. Contact: code@inmanta.com"""fromtypingimportOptionalimportinmanta.ast.exportasast_exportfrominmanta.astimportCompilerException,LocatableString,Location,Rangefrominmanta.stable_apiimportstable_apifrominmanta.warningsimportInmantaWarning
[docs]@stable_apiclassParserException(CompilerException):"""Exception occurring during the parsing of the code"""def__init__(self,location:Location,value:object,msg:Optional[str]=None)->None:ifmsgisNone:msg="Syntax error at token %s"%valueelse:msg="Syntax error: %s"%msgCompilerException.__init__(self,msg)self.set_location(location)self.value=valuedefexport(self)->ast_export.Error:error:ast_export.Error=super().export()error.category=ast_export.ErrorCategory.parserreturnerror
classParserWarning(InmantaWarning,ParserException):"""Warning occurring during the parsing of the code"""def__init__(self,location:Location,value:object,msg:str)->None:InmantaWarning.__init__(self)ParserException.__init__(self,location,value,msg)# Override parent message since it's not an errorself.msg=msgclassSyntaxDeprecationWarning(ParserWarning):"""Deprecation warning occurring during the parsing of the code"""def__init__(self,location:Range,value:object,msg:str)->None:ParserWarning.__init__(self,location,value,msg)classInvalidNamespaceAccess(ParserException):""" Exception raised when a namespace access is attempted with '.' rather than '::'. """def__init__(self,invalid:LocatableString)->None:self.invalid:LocatableString=invalidsuper().__init__(location=invalid.location,value=str(invalid),msg=(f"invalid namespace access `{invalid}`. Namespaces should be accessed with '::' rather than '.'. "f"The '.' separator is reserved for attribute and relation access. Did you mean: `{self.suggest_replacement()}`"),)defsuggest_replacement(self)->str:""" Returns the suggested replacement to fix this error. """returnstr(self.invalid).replace(".","::")