From: Rico Tzschichholz Date: Wed, 26 May 2021 16:39:20 +0000 (+0200) Subject: codegen: Implementing GLib.Source.prepare/check is optional since 2.36 X-Git-Tag: 0.50.10~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90f6ea4860a8084c139d10bbf4a14f40313fb24c;p=thirdparty%2Fvala.git codegen: Implementing GLib.Source.prepare/check is optional since 2.36 --- diff --git a/codegen/valaccodemethodcallmodule.vala b/codegen/valaccodemethodcallmodule.vala index 3b4d03b24..7154c18df 100644 --- a/codegen/valaccodemethodcallmodule.vala +++ b/codegen/valaccodemethodcallmodule.vala @@ -206,10 +206,27 @@ public class Vala.CCodeMethodCallModule : CCodeAssignmentModule { // g_source_new string class_prefix = get_ccode_lower_case_name (current_class); + string prepare_func = "NULL"; + string check_func = "NULL"; + foreach (Method impl in current_class.get_methods ()) { + if (!impl.overrides) { + continue; + } + switch (impl.name) { + case "prepare": + prepare_func = "%s_real_prepare".printf (class_prefix); + break; + case "check": + check_func = "%s_real_check".printf (class_prefix); + break; + default: + break; + } + } var funcs = new CCodeDeclaration ("const GSourceFuncs"); funcs.modifiers = CCodeModifiers.STATIC; - funcs.add_declarator (new CCodeVariableDeclarator ("_source_funcs", new CCodeConstant ("{ %s_real_prepare, %s_real_check, %s_real_dispatch, %s_finalize}".printf (class_prefix, class_prefix, class_prefix, class_prefix)))); + funcs.add_declarator (new CCodeVariableDeclarator ("_source_funcs", new CCodeConstant ("{ %s, %s, %s_real_dispatch, %s_finalize}".printf (prepare_func, check_func, class_prefix, class_prefix)))); ccode.add_statement (funcs); ccall.add_argument (new CCodeCastExpression (new CCodeUnaryExpression (CCodeUnaryOperator.ADDRESS_OF, new CCodeIdentifier ("_source_funcs")), "GSourceFuncs *")); diff --git a/tests/objects/gsource.vala b/tests/objects/gsource.vala index cb2543979..c2185b9a7 100644 --- a/tests/objects/gsource.vala +++ b/tests/objects/gsource.vala @@ -13,6 +13,13 @@ class FooSource : Source { } } +class ManamSource : Source { + public override bool dispatch (SourceFunc? callback) { + return false; + } +} + void main () { var foo = new FooSource (); + var manam = new ManamSource (); } diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index a81812741..4d8b298f4 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -2077,8 +2077,13 @@ namespace GLib { [CCode (cname = "G_SOURCE_REMOVE")] public const bool REMOVE; +#if VALA_0_18 + protected virtual bool prepare (out int timeout_); + protected virtual bool check (); +#else protected abstract bool prepare (out int timeout_); protected abstract bool check (); +#endif protected abstract bool dispatch (SourceFunc? _callback); } @@ -2096,10 +2101,10 @@ namespace GLib { [CCode (has_type_id = false)] public struct SourceFuncs { - public SourcePrepareFunc prepare; - public SourceCheckFunc check; + public SourcePrepareFunc? prepare; + public SourceCheckFunc? check; public SourceDispatchFunc dispatch; - public SourceFinalizeFunc finalize; + public SourceFinalizeFunc? finalize; } [CCode (has_target = false)]