From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: Christian Fetzer <christian.fetzer@oss.bmw-carit.de>
Cc: "linux-bluetooth@vger.kernel.org" <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH 2/2] obexd: Add property changed signals for 'org.bluez.obex.Message1'
Date: Mon, 2 Sep 2013 13:43:04 +0300 [thread overview]
Message-ID: <CABBYNZJwDHhh2n_jsr7f=KNfVcmcj5w=tDk5CGGJrgrX-TobGg@mail.gmail.com> (raw)
In-Reply-To: <521C50AA.3090802@oss.bmw-carit.de>
Hi Christian,
On Tue, Aug 27, 2013 at 10:09 AM, Christian Fetzer
<christian.fetzer@oss.bmw-carit.de> wrote:
> Hi Luiz,
>
> On 08/26/2013 02:08 PM, Luiz Augusto von Dentz wrote:
>> Hi Christian,
>>
>> On Thu, Aug 22, 2013 at 7:08 PM, Christian Fetzer
>> <christian.fetzer@oss.bmw-carit.de> wrote:
>>> From: Christian Fetzer <christian.fetzer@bmw-carit.de>
>>>
>>> This patch adds property changed signal emissions in case message properties
>>> change on the server.
>>> ---
>>> obexd/client/map.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
>>> 1 file changed, 92 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/obexd/client/map.c b/obexd/client/map.c
>>> index 8864a54..a9a9bcd 100644
>>> --- a/obexd/client/map.c
>>> +++ b/obexd/client/map.c
>>> @@ -792,121 +792,211 @@ static struct map_msg *map_msg_create(struct map_data *data, const char *handle)
>>>
>>> static void parse_subject(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->subject, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->subject);
>>> msg->subject = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Subject");
>>> }
>>>
>>> static void parse_datetime(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->timestamp, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->timestamp);
>>> msg->timestamp = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Timestamp");
>>> }
>>>
>>> static void parse_sender(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->sender, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->sender);
>>> msg->sender = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Sender");
>>> }
>>>
>>> static void parse_sender_address(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->sender_address, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->sender_address);
>>> msg->sender_address = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "SenderAddress");
>>> }
>>>
>>> static void parse_replyto(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->replyto, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->replyto);
>>> msg->replyto = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "ReplyTo");
>>> }
>>>
>>> static void parse_recipient(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->recipient, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->recipient);
>>> msg->recipient = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Recipient");
>>> }
>>>
>>> static void parse_recipient_address(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->recipient_address, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->recipient_address);
>>> msg->recipient_address = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "RecipientAddress");
>>> }
>>>
>>> static void parse_type(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->type, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->type);
>>> msg->type = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Type");
>>> }
>>>
>>> static void parse_size(struct map_msg *msg, const char *value)
>>> {
>>> - msg->size = g_ascii_strtoll(value, NULL, 10);
>>> + uint64_t size = g_ascii_strtoll(value, NULL, 10);
>>> +
>>> + if (msg->size == size)
>>> + return;
>>> +
>>> + msg->size = size;
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Size");
>>> }
>>>
>>> static void parse_text(struct map_msg *msg, const char *value)
>>> {
>>> gboolean flag = strcasecmp(value, "no") != 0;
>>>
>>> + uint8_t oldflags = msg->flags;
>>> if (flag)
>>> msg->flags |= MAP_MSG_FLAG_TEXT;
>>> else
>>> msg->flags &= ~MAP_MSG_FLAG_TEXT;
>>>
>>> + if (msg->flags != oldflags)
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Text");
>>> }
>>>
>>> static void parse_status(struct map_msg *msg, const char *value)
>>> {
>>> + if (g_strcmp0(msg->status, value) == 0)
>>> + return;
>>> +
>>> g_free(msg->status);
>>> msg->status = g_strdup(value);
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Status");
>>> }
>>>
>>> static void parse_attachment_size(struct map_msg *msg, const char *value)
>>> {
>>> - msg->attachment_size = g_ascii_strtoll(value, NULL, 10);
>>> + uint64_t attachment_size = g_ascii_strtoll(value, NULL, 10);
>>> +
>>> + if (msg->attachment_size == attachment_size)
>>> + return;
>>> +
>>> + msg->attachment_size = attachment_size;
>>> +
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "AttachmentSize");
>>> }
>>>
>>> static void parse_priority(struct map_msg *msg, const char *value)
>>> {
>>> gboolean flag = strcasecmp(value, "no") != 0;
>>>
>>> + uint8_t oldflags = msg->flags;
>>> if (flag)
>>> msg->flags |= MAP_MSG_FLAG_PRIORITY;
>>> else
>>> msg->flags &= ~MAP_MSG_FLAG_PRIORITY;
>>>
>>> + if (msg->flags != oldflags)
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Priority");
>>> }
>>>
>>> static void parse_read(struct map_msg *msg, const char *value)
>>> {
>>> gboolean flag = strcasecmp(value, "no") != 0;
>>>
>>> + uint8_t oldflags = msg->flags;
>>> if (flag)
>>> msg->flags |= MAP_MSG_FLAG_READ;
>>> else
>>> msg->flags &= ~MAP_MSG_FLAG_READ;
>>>
>>> + if (msg->flags != oldflags)
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Read");
>>> }
>>>
>>> static void parse_sent(struct map_msg *msg, const char *value)
>>> {
>>> gboolean flag = strcasecmp(value, "no") != 0;
>>>
>>> + uint8_t oldflags = msg->flags;
>>> if (flag)
>>> msg->flags |= MAP_MSG_FLAG_SENT;
>>> else
>>> msg->flags &= ~MAP_MSG_FLAG_SENT;
>>>
>>> + if (msg->flags != oldflags)
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Sent");
>>> }
>>>
>>> static void parse_protected(struct map_msg *msg, const char *value)
>>> {
>>> gboolean flag = strcasecmp(value, "no") != 0;
>>>
>>> + uint8_t oldflags = msg->flags;
>>> if (flag)
>>> msg->flags |= MAP_MSG_FLAG_PROTECTED;
>>> else
>>> msg->flags &= ~MAP_MSG_FLAG_PROTECTED;
>>>
>>> + if (msg->flags != oldflags)
>>> + g_dbus_emit_property_changed(conn, msg->path,
>>> + MAP_MSG_INTERFACE, "Protected");
>>> }
>>>
>>> static struct map_msg_parser {
>>> --
>>> 1.8.3.4
>>
>> Does this make us emit signals when creating the objects? That should
>> probably not be necessary, only emit signals once the value really
>> changes.
>>
>>
>
> The property changed signals are not sent for newly created objects.
> This is already ensured in g_dbus_emit_property_changed (gdbus/object.c:1709).
> Do you prefer an additional check?
Fair enough, I applied it after fixing the new line before defining
oldflags, it looks like it was a copy/paste error please make sure
this does not happen again.
--
Luiz Augusto von Dentz
next prev parent reply other threads:[~2013-09-02 10:43 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-22 16:08 [PATCH 1/2] obexd: Use g_dbus_get_properties when parsing MAP-msg-listing Christian Fetzer
2013-08-22 16:08 ` [PATCH 2/2] obexd: Add property changed signals for 'org.bluez.obex.Message1' Christian Fetzer
2013-08-26 12:08 ` Luiz Augusto von Dentz
2013-08-27 7:09 ` Christian Fetzer
2013-09-02 10:43 ` Luiz Augusto von Dentz [this message]
2013-08-26 12:34 ` [PATCH 1/2] obexd: Use g_dbus_get_properties when parsing MAP-msg-listing Luiz Augusto von Dentz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CABBYNZJwDHhh2n_jsr7f=KNfVcmcj5w=tDk5CGGJrgrX-TobGg@mail.gmail.com' \
--to=luiz.dentz@gmail.com \
--cc=christian.fetzer@oss.bmw-carit.de \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).