Validate parent object for accessibility and layout

This commit is contained in:
James Westman 2021-11-12 17:10:30 -06:00
parent 2224f0958c
commit e759569c3f
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
8 changed files with 40 additions and 4 deletions

View file

@ -106,6 +106,14 @@ def _get_docs(gir, name):
class A11y(AstNode): class A11y(AstNode):
@validate("accessibility")
def container_is_widget(self):
widget = self.root.gir.get_type("Widget", "Gtk")
container_type = self.parent_by_type(ast.Object).gir_class
if container_type and not container_type.assignable_to(widget):
raise CompileError(f"{container_type.full_name} is not a {widget.full_name}, so it doesn't have accessibility properties")
def emit_xml(self, xml: XmlEmitter): def emit_xml(self, xml: XmlEmitter):
xml.start_tag("accessibility") xml.start_tag("accessibility")
for child in self.children: for child in self.children:
@ -158,7 +166,7 @@ a11y_prop = Group(
a11y = Group( a11y = Group(
A11y, A11y,
Sequence( Sequence(
Keyword("accessibility"), Keyword("accessibility", True),
OpenBlock().expected("`{`"), OpenBlock().expected("`{`"),
Until(a11y_prop, CloseBlock()), Until(a11y_prop, CloseBlock()),
) )

View file

@ -19,7 +19,7 @@
from ..ast import BaseAttribute from ..ast import BaseAttribute
from ..ast_utils import AstNode from ..ast_utils import AstNode, validate
from ..completions_utils import * from ..completions_utils import *
from ..lsp_utils import Completion, CompletionItemKind from ..lsp_utils import Completion, CompletionItemKind
from ..parse_tree import * from ..parse_tree import *
@ -28,6 +28,14 @@ from ..xml_emitter import XmlEmitter
class Layout(AstNode): class Layout(AstNode):
@validate("layout")
def container_is_widget(self):
widget = self.root.gir.get_type("Widget", "Gtk")
container_type = self.parent_by_type(ast.Object).gir_class
if container_type and not container_type.assignable_to(widget):
raise CompileError(f"{container_type.full_name} is not a {widget.full_name}, so it doesn't have layout properties")
def emit_xml(self, xml: XmlEmitter): def emit_xml(self, xml: XmlEmitter):
xml.start_tag("layout") xml.start_tag("layout")
for child in self.children: for child in self.children:
@ -56,7 +64,7 @@ layout_prop = Group(
layout = Group( layout = Group(
Layout, Layout,
Sequence( Sequence(
Keyword("layout"), Keyword("layout", True),
OpenBlock().expected("`{`"), OpenBlock().expected("`{`"),
Until(layout_prop, CloseBlock()), Until(layout_prop, CloseBlock()),
) )

View file

@ -514,12 +514,16 @@ class UseLiteral(ParseNode):
class Keyword(ParseNode): class Keyword(ParseNode):
""" Matches the given identifier. """ """ Matches the given identifier. """
def __init__(self, kw): def __init__(self, kw, set_token=False):
self.kw = kw self.kw = kw
self.set_token = True
def _parse(self, ctx: ParseContext): def _parse(self, ctx: ParseContext):
token = ctx.next_token() token = ctx.next_token()
if token.type != TokenType.IDENT: if token.type != TokenType.IDENT:
return False return False
if self.set_token:
ctx.set_group_val(self.kw, True, token)
return str(token) == self.kw return str(token) == self.kw

View file

@ -0,0 +1,6 @@
using Gtk 4.0;
using GObject 2.0;
GObject.Object {
accessibility {}
}

View file

@ -0,0 +1 @@
5,3,13,GObject.Object is not a Gtk.Widget, so it doesn't have accessibility properties

View file

@ -0,0 +1,6 @@
using Gtk 4.0;
using GObject 2.0;
GObject.Object {
layout {}
}

View file

@ -0,0 +1 @@
5,3,6,GObject.Object is not a Gtk.Widget, so it doesn't have layout properties

View file

@ -112,6 +112,7 @@ class TestSamples(unittest.TestCase):
def test_sample_errors(self): def test_sample_errors(self):
self.assert_sample_error("a11y_in_non_widget")
self.assert_sample_error("a11y_prop_dne") self.assert_sample_error("a11y_prop_dne")
self.assert_sample_error("a11y_prop_obj_dne") self.assert_sample_error("a11y_prop_obj_dne")
self.assert_sample_error("a11y_prop_type") self.assert_sample_error("a11y_prop_type")
@ -120,6 +121,7 @@ class TestSamples(unittest.TestCase):
self.assert_sample_error("duplicate_obj_id") self.assert_sample_error("duplicate_obj_id")
self.assert_sample_error("enum_member_dne") self.assert_sample_error("enum_member_dne")
self.assert_sample_error("invalid_bool") self.assert_sample_error("invalid_bool")
self.assert_sample_error("layout_in_non_widget")
self.assert_sample_error("ns_not_imported") self.assert_sample_error("ns_not_imported")
self.assert_sample_error("not_a_class") self.assert_sample_error("not_a_class")
self.assert_sample_error("object_dne") self.assert_sample_error("object_dne")