From dd6fd39ae3bb2404cca9281f31624a3587fa2928 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 18 Oct 2016 17:56:25 +0200 Subject: [PATCH] First attempt to implement JsonSerializable --- src/matrix-event-base.vala | 39 +++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/src/matrix-event-base.vala b/src/matrix-event-base.vala index e707dc8..843dc83 100644 --- a/src/matrix-event-base.vala +++ b/src/matrix-event-base.vala @@ -19,7 +19,9 @@ /** * Base class for Matrix events. */ -public abstract class Matrix.Event.Base : GLib.Object, GLib.Initable { +public abstract class Matrix.Event.Base : GLib.Object, + GLib.Initable, + Json.Serializable { private Error? _construct_error = null; private bool _inited = false; private Json.Node? _json; @@ -77,6 +79,8 @@ public abstract class Matrix.Event.Base : GLib.Object, GLib.Initable { } } + // Implementation of GLib.Initable + public bool init(GLib.Cancellable? cancellable = null) throws Error, Matrix.Error @@ -95,6 +99,39 @@ public abstract class Matrix.Event.Base : GLib.Object, GLib.Initable { return true; } + // Implementation of Json.Serializable + + + public unowned ParamSpec + find_property(string name) + { + return get_class().find_property(name); + } + + public Json.Node + serialize_property(string property_name, + Value value, + ParamSpec pspec) + { + return default_serialize_property(property_name, value, pspec); + } + + public bool + deserialize_property(string property_name, + out Value value, + ParamSpec pspec, + Json.Node property_node) + { + value = Value(pspec.value_type); + + return default_deserialize_property(property_name, + value, + pspec, + property_node); + } + + // Own methods + private void initialize_from_json(Json.Node json_data) throws Matrix.Error