diff --git a/.gitignore b/.gitignore
index 42f0c29..b077ef9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -67,7 +67,6 @@ Makefile.in
/src/matrix-event-call-candidates.c
/src/matrix-event-call-answer.c
/src/matrix-event-call-hangup.c
-/src/matrix-event-call-base.c
/src/matrix-glib-0.0.pc
/src/matrix-message-notice.c
/src/matrix-message-file.c
diff --git a/src/Makefile.am b/src/Makefile.am
index e7166f1..1ee9f62 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -31,7 +31,6 @@ libmatrix_glib_0_0_la_VALA_SOURCES = \
matrix-event-room-guest-access.vala \
matrix-event-room-redaction.vala \
matrix-event-room-third-party-invite.vala \
- matrix-event-call-base.vala \
matrix-event-call-invite.vala \
matrix-event-call-candidates.vala \
matrix-event-call-answer.vala \
@@ -98,6 +97,7 @@ INST_H_SRC_FILES = \
matrix-types.h \
matrix-compacts.h \
matrix-event-base.h \
+ matrix-event-call-base.h \
matrix-message-base.h \
matrix-message-text.h \
matrix-message-location.h \
@@ -136,6 +136,7 @@ libmatrix_glib_0_0_la_SOURCES = \
matrix-types.c \
matrix-compacts.c \
matrix-event-base.c \
+ matrix-event-call-base.c \
matrix-message-base.c \
matrix-message-text.c \
matrix-message-location.c \
diff --git a/src/matrix-event-call-base.c b/src/matrix-event-call-base.c
new file mode 100644
index 0000000..2c49826
--- /dev/null
+++ b/src/matrix-event-call-base.c
@@ -0,0 +1,304 @@
+/*
+ * This file is part of matrix-glib-sdk
+ *
+ * matrix-glib-sdk 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.
+ *
+ * matrix-glib-sdk 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 matrix-glib-sdk. If not, see
+ * .
+ */
+
+#include "matrix-event-call-base.h"
+#include "matrix-enumtypes.h"
+
+/**
+ * SECTION:matrix-event-call-base
+ * @short_description: Abstract base class for call related events
+ *
+ * Base class for m.call.* events.
+ */
+
+enum {
+ PROP_0,
+ PROP_CALL_ID,
+ PROP_VERSION,
+ NUM_PROPERTIES
+};
+
+static GParamSpec *matrix_event_call_properties[NUM_PROPERTIES];
+
+typedef struct {
+ gchar *call_id;
+ gint _version;
+} MatrixEventCallPrivate;
+
+/**
+ * MatrixEventCall:
+ *
+ * Object structure.
+ */
+G_DEFINE_TYPE_WITH_PRIVATE(MatrixEventCall, matrix_event_call, MATRIX_EVENT_TYPE_ROOM);
+
+static void
+matrix_event_call_real_from_json(MatrixEventBase *matrix_event_base, JsonNode *json_data, GError **error)
+{
+ MatrixEventCallPrivate *priv;
+ JsonObject *root;
+ JsonObject *content_root;
+ JsonNode *content_node;
+ JsonNode *node;
+
+ g_return_if_fail(json_data != NULL);
+
+ priv = matrix_event_call_get_instance_private(MATRIX_EVENT_CALL(matrix_event_base));
+ root = json_node_get_object(json_data);
+ content_node = json_object_get_member(root, "content");
+ content_root = json_node_get_object(content_node);
+
+ if ((node = json_object_get_member(content_root, "call_id")) != NULL) {
+ g_free(priv->call_id);
+ priv->call_id = g_strdup(json_node_get_string(node));
+ } else {
+ g_warning("content.call_id is missing from a m.call.* event");
+ }
+
+ if ((node = json_object_get_member(content_root, "version")) != NULL) {
+ priv->_version = json_node_get_int(node);
+ } else {
+ g_warning("content.version is missing from a m.call.* event");
+ }
+
+ MATRIX_EVENT_BASE_CLASS(matrix_event_call_parent_class)->from_json(matrix_event_base, json_data, error);
+}
+
+static void
+matrix_event_call_real_to_json(MatrixEventBase *matrix_event_base, JsonNode *json_data, GError **error)
+{
+ MatrixEventCallPrivate *priv;
+ JsonObject *root;
+ JsonObject *content_root;
+ JsonNode *content_node;
+
+ g_return_if_fail(json_data != NULL);
+
+ priv = matrix_event_call_get_instance_private(MATRIX_EVENT_CALL(matrix_event_base));
+
+ if (priv->call_id == NULL) {
+ g_set_error(error, MATRIX_ERROR, MATRIX_ERROR_INCOMPLETE,
+ "Won't generate a m.call.hangup event without call_id");
+
+ return;
+ }
+
+ if (priv->_version < 0) {
+ g_set_error(error, MATRIX_ERROR, MATRIX_ERROR_INCOMPLETE,
+ "Won't generate a m.call.hangup event without version");
+
+ return;
+ }
+
+ root = json_node_get_object(json_data);
+ content_node = json_object_get_member(root, "content");
+ content_root = json_node_get_object(content_node);
+
+ json_object_set_string_member(content_root, "call_id", priv->call_id);
+ json_object_set_int_member(content_root, "version", priv->_version);
+
+ MATRIX_EVENT_BASE_CLASS(matrix_event_call_parent_class)->to_json(matrix_event_base, json_data, error);
+}
+
+MatrixEventCall *
+matrix_event_call_construct(GType object_type)
+{
+ return (MatrixEventCall *)matrix_event_room_construct(object_type);
+}
+
+/**
+ * matrix_event_call_get_call_id:
+ * @event: a #MatrixEventCall
+ *
+ * Get the identifier of the call.
+ *
+ * The value returned is owned by @event and should not be freed.
+ *
+ * Returns: (transfer none) (nullable): the call ID
+ */
+const gchar *
+matrix_event_call_get_call_id(MatrixEventCall *matrix_event_call)
+{
+ MatrixEventCallPrivate *priv;
+
+ g_return_val_if_fail(matrix_event_call != NULL, NULL);
+
+ priv = matrix_event_call_get_instance_private(matrix_event_call);
+
+ return priv->call_id;
+}
+
+/**
+ * matrix_event_call_set_call_id:
+ * @event: a #MatrixEventCall
+ * @call_id: a call identifier
+ *
+ * Set the identifier of the call represented by @event.
+ */
+void
+matrix_event_call_set_call_id(MatrixEventCall *matrix_event_call, const gchar *call_id)
+{
+ MatrixEventCallPrivate *priv;
+
+ g_return_if_fail(matrix_event_call != NULL);
+
+ priv = matrix_event_call_get_instance_private(matrix_event_call);
+
+ if (g_strcmp0(call_id, priv->call_id) != 0) {
+ g_free(priv->call_id);
+ priv->call_id = g_strdup(call_id);
+
+ g_object_notify_by_pspec((GObject *)matrix_event_call, matrix_event_call_properties[PROP_CALL_ID]);
+ }
+}
+
+/**
+ * matrix_event_call_get_version:
+ * @event: a #MatrixEventCall
+ *
+ * Get the version of the call.
+ *
+ * Returns: the call version
+ */
+gint
+matrix_event_call_get_version(MatrixEventCall *matrix_event_call)
+{
+ MatrixEventCallPrivate *priv;
+
+ g_return_val_if_fail(matrix_event_call != NULL, 0);
+
+ priv = matrix_event_call_get_instance_private(matrix_event_call);
+
+ return priv->_version;
+}
+
+/**
+ * matrix_event_call_set_version:
+ * @event: a #MatrixEventCall
+ * @version: a call version
+ *
+ * Set the version of the call.
+ */
+void
+matrix_event_call_set_version(MatrixEventCall *matrix_event_call, gint version)
+{
+ MatrixEventCallPrivate *priv;
+
+ g_return_if_fail(matrix_event_call != NULL);
+
+ priv = matrix_event_call_get_instance_private(matrix_event_call);
+
+ if (priv->_version != version) {
+ priv->_version = version;
+
+ g_object_notify_by_pspec((GObject *)matrix_event_call, matrix_event_call_properties[PROP_VERSION]);
+ }
+}
+
+static void
+matrix_event_call_finalize(GObject *gobject)
+{
+ MatrixEventCallPrivate *priv = matrix_event_call_get_instance_private(MATRIX_EVENT_CALL(gobject));
+
+ g_free(priv->call_id);
+
+ G_OBJECT_CLASS(matrix_event_call_parent_class)->finalize(gobject);
+}
+
+static void
+matrix_event_call_get_property(GObject *gobject, guint property_id, GValue *value, GParamSpec *pspec)
+{
+ MatrixEventCall *matrix_event_call = MATRIX_EVENT_CALL(gobject);
+
+ switch (property_id) {
+ case PROP_CALL_ID:
+ g_value_set_string(value, matrix_event_call_get_call_id(matrix_event_call));
+
+ break;
+ case PROP_VERSION:
+ g_value_set_int(value, matrix_event_call_get_version(matrix_event_call));
+
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID(gobject, property_id, pspec);
+
+ break;
+ }
+}
+
+static void
+matrix_event_call_set_property(GObject *gobject, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+ MatrixEventCall *matrix_event_call = MATRIX_EVENT_CALL(gobject);
+
+ switch (property_id) {
+ case PROP_CALL_ID:
+ matrix_event_call_set_call_id(matrix_event_call, g_value_get_string(value));
+
+ break;
+ case PROP_VERSION:
+ matrix_event_call_set_version(matrix_event_call, g_value_get_int(value));
+
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID(gobject, property_id, pspec);
+
+ break;
+ }
+}
+
+static void
+matrix_event_call_class_init(MatrixEventCallClass *klass)
+{
+ ((MatrixEventBaseClass *)klass)->from_json = matrix_event_call_real_from_json;
+ ((MatrixEventBaseClass *)klass)->to_json = matrix_event_call_real_to_json;
+ G_OBJECT_CLASS(klass)->get_property = matrix_event_call_get_property;
+ G_OBJECT_CLASS(klass)->set_property = matrix_event_call_set_property;
+ G_OBJECT_CLASS(klass)->finalize = matrix_event_call_finalize;
+
+ /**
+ * MatrixEventCall:call-id:
+ *
+ * The ID of the call this event relates to.
+ */
+ matrix_event_call_properties[PROP_CALL_ID] = g_param_spec_string(
+ "call-id", "call-id", "call-id",
+ NULL,
+ G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE);
+ g_object_class_install_property(G_OBJECT_CLASS(klass), PROP_CALL_ID, matrix_event_call_properties[PROP_CALL_ID]);
+
+ /**
+ * MatrixEventCall:version:
+ *
+ * The version of the VoIP specification this message adheres to.
+ */
+ matrix_event_call_properties[PROP_VERSION] = g_param_spec_int(
+ "version", "version", "version",
+ -1, G_MAXINT, -1,
+ G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE);
+ g_object_class_install_property(G_OBJECT_CLASS(klass), PROP_VERSION, matrix_event_call_properties[PROP_VERSION]);
+}
+
+static void
+matrix_event_call_init(MatrixEventCall *matrix_event_call)
+{
+ MatrixEventCallPrivate *priv = matrix_event_call_get_instance_private(matrix_event_call);
+
+ priv->call_id = NULL;
+ priv->_version = -1;
+}
diff --git a/src/matrix-event-call-base.h b/src/matrix-event-call-base.h
new file mode 100644
index 0000000..fa566d3
--- /dev/null
+++ b/src/matrix-event-call-base.h
@@ -0,0 +1,55 @@
+/*
+ * This file is part of matrix-glib-sdk
+ *
+ * matrix-glib-sdk 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.
+ *
+ * matrix-glib-sdk 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 matrix-glib-sdk. If not, see
+ * .
+ */
+
+#ifndef __MATRIX_GLIB_SDK_EVENT_CALL_BASE_H__
+# define __MATRIX_GLIB_SDK_EVENT_CALL_BASE_H__
+
+# include
+# include "matrix-event-room-base.h"
+
+G_BEGIN_DECLS
+
+# define MATRIX_EVENT_TYPE_CALL (matrix_event_call_get_type ())
+# define MATRIX_EVENT_CALL(o) (G_TYPE_CHECK_INSTANCE_CAST((o), MATRIX_EVENT_TYPE_CALL, MatrixEventCall))
+# define MATRIX_EVENT_CALL_CLASS(c) (G_TYPE_CHECK_CLASS_CAST((c), MATRIX_EVENT_TYPE_CALL, MatrixEventCallClass))
+# define MATRIX_EVENT_IS_CALL(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), MATRIX_EVENT_TYPE_CALL))
+# define MATRIX_EVENT_IS_CALL_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE((c), MATRIX_EVENT_TYPE_CALL))
+# define MATRIX_EVENT_CALL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), MATRIX_EVENT_TYPE_CALL, MatrixEventCallClass))
+
+typedef struct _MatrixEventCall MatrixEventCall;
+typedef struct _MatrixEventCallClass MatrixEventCallClass;
+G_DEFINE_AUTOPTR_CLEANUP_FUNC(MatrixEventCall, g_object_unref);
+
+struct _MatrixEventCall {
+ MatrixEventRoom parent_instance;
+};
+
+struct _MatrixEventCallClass {
+ MatrixEventRoomClass parent_class;
+};
+
+GType matrix_event_call_get_type (void) G_GNUC_CONST;
+MatrixEventCall* matrix_event_call_construct (GType object_type);
+const gchar *matrix_event_call_get_call_id (MatrixEventCall *event);
+void matrix_event_call_set_call_id (MatrixEventCall *event, const gchar *call_id);
+gint matrix_event_call_get_version (MatrixEventCall *event);
+void matrix_event_call_set_version (MatrixEventCall *event, gint version);
+
+G_END_DECLS
+
+#endif /* __MATRIX_GLIB_SDK_EVENT_CALL_BASE_H__ */
diff --git a/src/matrix-event-call-base.vala b/src/matrix-event-call-base.vala
deleted file mode 100644
index e1550cb..0000000
--- a/src/matrix-event-call-base.vala
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * This file is part of matrix-glib-sdk
- *
- * matrix-glib-sdk 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.
- *
- * matrix-glib-sdk 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 matrix-glib-sdk. If not, see
- * .
- */
-
-/**
- * Base class for m.call.* events.
- */
-public abstract class Matrix.Event.Call : Matrix.Event.Room {
- /**
- * The ID of the call this event relates to.
- */
- public string? call_id { get; set; default = null; }
-
- /**
- * The version of the VoIP specification this message adheres to.
- */
- public int version { get; set; default = -1; }
-
- protected override void
- from_json(Json.Node json_data)
- throws Matrix.Error
- {
- var content_root = json_data.get_object()
- .get_member("content").get_object();
- Json.Node? node;
-
- if ((node = content_root.get_member("call_id")) != null) {
- _call_id = node.get_string();
- } else {
- warning("content.call_id is missing from a m.call.hangup event");
- }
-
- if ((node = content_root.get_member("version")) != null) {
- _version = (int)node.get_int();
- } else {
- warning("content.version is missing from a m.call.hangup event");
- }
-
- base.from_json(json_data);
- }
-
- protected override void
- to_json(Json.Node json_data)
- throws Matrix.Error
- {
- if (_call_id == null) {
- throw new Matrix.Error.INCOMPLETE(
- "Won't generate a m.call.hangup event without call_id");
- }
-
- if (_version < 0) {
- throw new Matrix.Error.INCOMPLETE(
- "Won't generate a m.call.hangup event without version");
- }
-
- var content_root = json_data.get_object()
- .get_member("content").get_object();
-
- content_root.set_string_member("call_id", _call_id);
- content_root.set_int_member("version", version);
-
- base.to_json(json_data);
- }
-}
diff --git a/vapi/c-api.vapi b/vapi/c-api.vapi
index ebdf9ce..5b26eb3 100644
--- a/vapi/c-api.vapi
+++ b/vapi/c-api.vapi
@@ -633,6 +633,24 @@ namespace Matrix {
to_json(Json.Node json_data)
throws Matrix.Error;
}
+
+ [CCode (cheader_filename = "matrix-event-call-base.h")]
+ public abstract class Call : Room {
+ public string? call_id { get; set; default = null; }
+ public int version { get; set; default = -1; }
+
+ public Call();
+
+ protected override void
+ from_json(Json.Node json_data)
+ throws Matrix.Error;
+
+ protected override void
+ to_json(Json.Node json_data)
+ throws Matrix.Error
+ {
+ }
+ }
}
[CCode (gir_namespace = "MatrixMessage", gir_version = "0.0")]