# adw_breakpoint.py # # Copyright 2023 James Westman # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 3 of the # License, or (at your option) any later version. # # This file is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this program. If not, see . # # SPDX-License-Identifier: LGPL-3.0-or-later from .common import * from .contexts import ScopeCtx, ValueTypeCtx from .gobject_object import Object, validate_parent_type from .values import Value class AdwBreakpointCondition(AstNode): grammar = [ UseExact("kw", "condition"), "(", UseQuoted("condition"), Match(")").expected(), ] @property def condition(self) -> str: return self.tokens["condition"] @property def document_symbol(self) -> DocumentSymbol: return DocumentSymbol( "condition", SymbolKind.Property, self.range, self.group.tokens["kw"].range, self.condition, ) @docs("kw") def keyword_docs(self): klass = self.root.gir.get_type("Breakpoint", "Adw") if klass is None: return None prop = klass.properties.get("condition") assert isinstance(prop, gir.Property) return prop.doc @validate() def unique(self): self.validate_unique_in_parent("Duplicate condition statement") class AdwBreakpointSetter(AstNode): grammar = Statement( UseIdent("object"), Match(".").expected(), UseIdent("property"), Match(":").expected(), Value, ) @property def object_id(self) -> str: return self.tokens["object"] @property def object(self) -> T.Optional[Object]: return self.context[ScopeCtx].objects.get(self.object_id) @property def property_name(self) -> T.Optional[str]: return self.tokens["property"] @property def value(self) -> Value: return self.children[Value][0] @property def gir_class(self) -> T.Optional[GirType]: if self.object is not None: return self.object.gir_class else: return None @property def gir_property(self) -> T.Optional[gir.Property]: if ( self.gir_class is not None and not isinstance(self.gir_class, ExternType) and self.property_name is not None ): assert isinstance(self.gir_class, gir.Class) or isinstance( self.gir_class, gir.TemplateType ) return self.gir_class.properties.get(self.property_name) else: return None @property def document_symbol(self) -> DocumentSymbol: return DocumentSymbol( f"{self.object_id}.{self.property_name}", SymbolKind.Property, self.range, self.group.tokens["object"].range, self.value.range.text, ) @context(ValueTypeCtx) def value_type(self) -> ValueTypeCtx: if self.gir_property is not None: type = self.gir_property.type else: type = None return ValueTypeCtx(type, allow_null=True) @docs("object") def object_docs(self): if self.object is not None: return f"```\n{self.object.signature}\n```" else: return None @docs("property") def property_docs(self): if self.gir_property is not None: return self.gir_property.doc else: return None @validate("object") def object_exists(self): if self.object is None: raise CompileError( f"Could not find object with ID {self.object_id}", did_you_mean=(self.object_id, self.context[ScopeCtx].objects.keys()), ) @validate("property") def property_exists(self): if self.gir_class is None or self.gir_class.incomplete: # Objects that we have no gir data on should not be validated # This happens for classes defined by the app itself return if self.gir_property is None and self.property_name is not None: raise CompileError( f"Class {self.gir_class.full_name} does not have a property called {self.property_name}", did_you_mean=(self.property_name, self.gir_class.properties.keys()), ) @validate() def unique(self): self.validate_unique_in_parent( f"Duplicate setter for {self.object_id}.{self.property_name}", lambda x: x.object_id == self.object_id and x.property_name == self.property_name, ) class AdwBreakpointSetters(AstNode): grammar = [ Keyword("setters"), Match("{").expected(), Until(AdwBreakpointSetter, "}"), ] @property def setters(self) -> T.List[AdwBreakpointSetter]: return self.children[AdwBreakpointSetter] @property def document_symbol(self) -> DocumentSymbol: return DocumentSymbol( "setters", SymbolKind.Struct, self.range, self.group.tokens["setters"].range, ) @validate() def container_is_breakpoint(self): validate_parent_type(self, "Adw", "Breakpoint", "breakpoint setters") @validate() def unique(self): self.validate_unique_in_parent("Duplicate setters block")