Merge branch 'variant-literal' into 'main'

Draft: Syntax for variants

See merge request jwestman/blueprint-compiler!224
This commit is contained in:
jgcodes2020 2025-01-04 16:29:46 +00:00
commit 79e3e4d8ab
9 changed files with 338 additions and 14 deletions

View file

@ -52,6 +52,7 @@ from .values import (
Translated,
TypeLiteral,
Value,
VariantValue,
)
OBJECT_CONTENT_HOOKS.children = [

View file

@ -22,12 +22,14 @@ from .binding import Binding
from .common import *
from .contexts import ValueTypeCtx
from .gtkbuilder_template import Template
from .values import ArrayValue, ObjectValue, Value
from .values import ArrayValue, ObjectValue, Value, VariantValue
class Property(AstNode):
grammar = Statement(
UseIdent("name"), ":", AnyOf(Binding, ObjectValue, Value, ArrayValue)
UseIdent("name"),
":",
AnyOf(Binding, VariantValue, ObjectValue, Value, ArrayValue),
)
@property
@ -35,7 +37,7 @@ class Property(AstNode):
return self.tokens["name"]
@property
def value(self) -> T.Union[Binding, ObjectValue, Value, ArrayValue]:
def value(self) -> T.Union[Binding, VariantValue, ObjectValue, Value, ArrayValue]:
return self.children[0]
@property

View file

@ -19,7 +19,7 @@
import typing as T
from blueprintcompiler.language.values import StringValue
from blueprintcompiler.language.values import StringValue, VariantValue
from .common import *
from .contexts import ValueTypeCtx
@ -98,8 +98,12 @@ class MenuAttribute(AstNode):
return self.tokens["name"]
@property
def value(self) -> StringValue:
def value(self) -> T.Union[StringValue, VariantValue]:
if len(self.children[StringValue]) > 0:
return self.children[StringValue][0]
elif len(self.children[VariantValue]) > 0:
return self.children[VariantValue][0]
raise CompilerBugError()
@property
def document_symbol(self) -> DocumentSymbol:
@ -133,7 +137,10 @@ menu_attribute = Group(
[
UseIdent("name"),
":",
Err(StringValue, "Expected string or translated string"),
Err(
AnyOf(StringValue, VariantValue),
"Expected string, translated string, or variant",
),
Match(";").expected(),
],
)

View file

@ -19,6 +19,8 @@
import typing as T
import gi
from blueprintcompiler.gir import ArrayType
from blueprintcompiler.lsp_utils import SemanticToken
@ -26,6 +28,10 @@ from .common import *
from .contexts import ScopeCtx, ValueTypeCtx
from .gobject_object import Object
from .types import TypeName
from .variant import VarContent
gi.require_version("GLib", "2.0")
from gi.repository import GLib
class Translated(AstNode):
@ -372,6 +378,67 @@ class IdentLiteral(AstNode):
return None
class VariantValue(AstNode):
grammar = [
"variant",
"<",
UseQuoted("type"),
">",
"(",
Err(VarContent, "Invalid variant content!"),
")",
]
@property
def var_type(self) -> str:
return self.tokens["type"]
@property
def var_value(self) -> str:
return self.children[0].content
@validate()
def validate_for_type(self) -> None:
expected_type = self.context[ValueTypeCtx].value_type
if expected_type is None:
pass
elif (
isinstance(expected_type, gir.IntType)
or isinstance(expected_type, gir.UIntType)
or isinstance(expected_type, gir.FloatType)
or isinstance(expected_type, gir.FloatType)
):
raise CompileError(f"Cannot convert variant to number")
elif isinstance(expected_type, gir.StringType):
raise CompileError("Cannot convert variant to string")
elif (
isinstance(expected_type, gir.Boxed)
and expected_type.full_name == "GLib.Variant"
):
pass
else:
raise CompileError(f"Cannot convert variant into {expected_type.full_name}")
pass
@validate("type")
def validate_type(self):
if not GLib.VariantType.string_is_valid(self.var_type):
raise CompileError(f"`{self.var_type}` is not a valid variant type")
@validate()
def validate_content(self):
if not GLib.VariantType.string_is_valid(self.var_type):
return
try:
var_ty = GLib.VariantType.new(self.var_type)
var_val = GLib.Variant.parse(var_ty, self.var_value)
except GLib.GError as error:
raise CompileError(f"Variant did not match specified type: {error}")
pass
class Literal(AstNode):
grammar = AnyOf(
TypeLiteral,

View file

@ -0,0 +1,122 @@
import typing as T
from blueprintcompiler.gir import ArrayType
from blueprintcompiler.lsp_utils import SemanticToken
from .common import *
from .contexts import ScopeCtx, ValueTypeCtx
from .gobject_object import Object
from .types import TypeName
VAR_CONTENT_HOOKS: list[T.Any] = []
class VarContent(AstNode):
grammar = AnyOf(*VAR_CONTENT_HOOKS)
@property
def content(self) -> str:
return self.children[0].content
class VarContentBool(AstNode):
grammar = AnyOf(
[Keyword("true"), UseLiteral("value", True)],
[Keyword("false"), UseLiteral("value", False)],
)
@property
def content(self) -> str:
if self.tokens["value"]:
return "true"
else:
return "false"
class VarContentString(AstNode):
grammar = UseQuoted("value")
@property
def content(self) -> str:
return utils.escape_quote(self.tokens["value"])
class VarContentNumber(AstNode):
grammar = UseNumberText("value")
@property
def content(self) -> str:
return self.tokens["value"]
class VarContentTuple(AstNode):
grammar = ["(", Delimited(VarContent, ","), ")"]
@property
def content(self) -> str:
inner = ", ".join(child.content for child in self.children)
return f"({inner})"
class VarContentArray(AstNode):
grammar = ["[", Delimited(VarContent, ","), "]"]
@property
def content(self) -> str:
inner = ", ".join(child.content for child in self.children)
return f"[{inner}]"
class VarContentDictEntry(AstNode):
grammar = ["{", VarContent, ",", VarContent, "}"]
@property
def content(self):
return f"{{{self.children[0].content}, {self.children[1].content}}}"
class VarContentDict(AstNode):
grammar = ["{", Delimited([VarContent, ":", VarContent], ","), "}"]
@property
def content(self) -> str:
inner = ", ".join(
f"{key.content}: {value.content}"
for (key, value) in utils.iter_batched(self.children, 2, strict=True)
)
return f"{{{inner}}}"
class VarContentVariant(AstNode):
grammar = ["<", VarContent, ">"]
@property
def content(self) -> str:
return f"<{self.children[0].content}>"
class VarContentMaybe(AstNode):
grammar = AnyOf(
[Keyword("just"), VarContent],
[Keyword("nothing")],
)
@property
def content(self) -> str:
if self.children[0] is not None:
return f"just {self.children[0].content}"
else:
return "nothing"
VarContent.grammar.children = [
VarContentString,
VarContentNumber,
VarContentBool,
VarContentMaybe,
VarContentTuple,
VarContentDict,
VarContentDictEntry,
VarContentArray,
VarContentVariant,
]

View file

@ -1,5 +1,7 @@
import typing as T
from blueprintcompiler.language.values import VariantValue
from ...language import *
from .. import OutputFormat
from .xml_emitter import XmlEmitter
@ -83,6 +85,7 @@ class XmlOutput(OutputFormat):
if isinstance(child, Menu):
self._emit_menu(child, xml)
elif isinstance(child, MenuAttribute):
if isinstance(child.value, StringValue):
xml.start_tag(
"attribute",
name=child.name,
@ -90,6 +93,15 @@ class XmlOutput(OutputFormat):
)
xml.put_text(child.value.string)
xml.end_tag()
elif isinstance(child.value, VariantValue):
xml.start_tag(
"attribute",
name=child.name,
type=child.value.var_type,
)
xml.put_text(child.value.var_value)
xml.end_tag()
else:
raise CompilerBugError()
xml.end_tag()
@ -148,6 +160,11 @@ class XmlOutput(OutputFormat):
self._emit_value(values[-1], xml)
xml.end_tag()
elif isinstance(value, VariantValue):
xml.start_tag("property", **props, type=value.var_type)
xml.put_text(value.var_value)
xml.end_tag()
else:
raise CompilerBugError()
@ -205,6 +222,8 @@ class XmlOutput(OutputFormat):
xml.put_text(self._object_id(value, value.ident))
elif isinstance(value, TypeLiteral):
xml.put_text(value.type_name.glib_type_name)
elif isinstance(value, VariantValue):
xml.put_text(value.value)
else:
if isinstance(value.value, float) and value.value == int(value.value):
xml.put_text(int(value.value))
@ -284,6 +303,10 @@ class XmlOutput(OutputFormat):
xml.start_tag(tag, **attrs)
xml.put_text(value.child.value)
xml.end_tag()
elif isinstance(value.child, VariantValue):
xml.start_tag(tag, **attrs, type=value.child.var_type)
xml.put_text(value.child.var_value)
xml.end_tag()
else:
xml.start_tag(tag, **attrs)
self._emit_value(value, xml)

View file

@ -17,6 +17,7 @@
#
# SPDX-License-Identifier: LGPL-3.0-or-later
import itertools
import typing as T
from dataclasses import dataclass
@ -154,3 +155,18 @@ def unescape_quote(string: str) -> str:
i += 1
return result
def iter_batched(iterable, n, *, strict=False):
"""
Replacement for `itertools.batched()` since the testing infrastructure
uses Python 3.9 at the moment. Copied directly off of the Python docs.
"""
# batched('ABCDEFG', 3) → ABC DEF G
if n < 1:
raise ValueError("n must be at least one")
iterator = iter(iterable)
while batch := tuple(itertools.islice(iterator, n)):
if strict and len(batch) != n:
raise ValueError("batched(): incomplete batch")
yield batch

View file

@ -0,0 +1,42 @@
using Gtk 4.0;
$BlueprintTestObject {
// test-one: variant<"s">("one");
test-zero: variant<"b">(true);
test-one: variant<"s">("one");
test-two: variant<"i">(2);
test-three: variant<"(ii)">((3, 4));
test-four: variant<"ai">([5, 6]);
test-five: variant<"{sv}">({"key", <"value">});
test-six: variant<"a{ss}">({
"GLib": "2.24",
"Gtk": "4.16"
});
test-seven: variant<"ams">([just "2", nothing]);
}
menu test_menu {
submenu {
label: "Test menu";
item {
label: "Option 1";
action: "app.test_menu.set_action";
target: variant<"y">(1);
}
item {
label: "Option 2";
action: "app.test_menu.set_action";
target: variant<"y">(2);
}
item {
label: "Option 3";
action: "app.test_menu.set_action";
target: variant<"y">(3);
}
item {
label: "Option 4";
action: "app.test_menu.set_action";
target: variant<"y">(4);
}
}
}

44
tests/samples/variants.ui Normal file
View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
DO NOT EDIT!
This file was @generated by blueprint-compiler. Instead, edit the
corresponding .blp file and regenerate this file with blueprint-compiler.
-->
<interface>
<requires lib="gtk" version="4.0"/>
<object class="BlueprintTestObject">
<property name="test-zero" type="b">true</property>
<property name="test-one" type="s">"one"</property>
<property name="test-two" type="i">2</property>
<property name="test-three" type="(ii)">(3, 4)</property>
<property name="test-four" type="ai">[5, 6]</property>
<property name="test-five" type="{sv}">{"key", &lt;"value"&gt;}</property>
<property name="test-six" type="a{ss}">{"GLib": "2.24", "Gtk": "4.16"}</property>
<property name="test-seven" type="ams">[just "2", nothing]</property>
</object>
<menu id="test_menu">
<submenu>
<attribute name="label">Test menu</attribute>
<item>
<attribute name="label">Option 1</attribute>
<attribute name="action">app.test_menu.set_action</attribute>
<attribute name="target" type="y">1</attribute>
</item>
<item>
<attribute name="label">Option 2</attribute>
<attribute name="action">app.test_menu.set_action</attribute>
<attribute name="target" type="y">2</attribute>
</item>
<item>
<attribute name="label">Option 3</attribute>
<attribute name="action">app.test_menu.set_action</attribute>
<attribute name="target" type="y">3</attribute>
</item>
<item>
<attribute name="label">Option 4</attribute>
<attribute name="action">app.test_menu.set_action</attribute>
<attribute name="target" type="y">4</attribute>
</item>
</submenu>
</menu>
</interface>