Message ID | 20250220072446.190256-1-frederic.danis@collabora.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 1c4f5276723627a5844c92f8f23bfa552145939a |
Headers | show |
Series | [BlueZ,1/2] obexd/client/map: Add SupportedTypes property to MessageAccess1 | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=935872 ---Test result--- Test Summary: CheckPatch PENDING 0.20 seconds GitLint PENDING 0.24 seconds BuildEll PASS 20.18 seconds BluezMake PASS 1469.28 seconds MakeCheck PASS 22.35 seconds MakeDistcheck PASS 155.80 seconds CheckValgrind PASS 212.05 seconds CheckSmatch PASS 281.72 seconds bluezmakeextell PASS 97.19 seconds IncrementalBuild PENDING 0.22 seconds ScanBuild PASS 848.62 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
Hello: This series was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Thu, 20 Feb 2025 08:24:45 +0100 you wrote: > This lists the message types supported the remote MSE. > Possible values are: EMAIL, SMS_GSM, SMS_CDMA, MMS and IM. > > Those values can be used as message type when sending a message > using PushMessage method. > --- > obexd/client/map.c | 47 +++++++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 46 insertions(+), 1 deletion(-) Here is the summary with links: - [BlueZ,1/2] obexd/client/map: Add SupportedTypes property to MessageAccess1 https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=1c4f52767236 - [BlueZ,2/2] doc: Add SupportedTypes property to MessageAccess1 https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=41431caf8af3 You are awesome, thank you!
diff --git a/obexd/client/map.c b/obexd/client/map.c index b8820335b..7ca33cfe0 100644 --- a/obexd/client/map.c +++ b/obexd/client/map.c @@ -51,6 +51,12 @@ #define CHARSET_NATIVE 0 #define CHARSET_UTF8 1 +#define SDP_MESSAGE_TYPE_EMAIL 0x01 +#define SDP_MESSAGE_TYPE_SMS_GSM 0x02 +#define SDP_MESSAGE_TYPE_SMS_CDMA 0x04 +#define SDP_MESSAGE_TYPE_MMS 0x08 +#define SDP_MESSAGE_TYPE_IM 0x10 + static const char * const filter_list[] = { "subject", "timestamp", @@ -1992,6 +1998,45 @@ static const GDBusMethodTable map_methods[] = { { } }; +static gboolean get_supported_types(const GDBusPropertyTable *property, + DBusMessageIter *iter, void *user_data) +{ + struct map_data *map = user_data; + DBusMessageIter entry; + const char *str; + + dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, + DBUS_TYPE_STRING_AS_STRING, &entry); + if (map->supported_message_types & SDP_MESSAGE_TYPE_EMAIL) { + str = "EMAIL"; + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &str); + } + if (map->supported_message_types & SDP_MESSAGE_TYPE_SMS_GSM) { + str = "SMS_GSM"; + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &str); + } + if (map->supported_message_types & SDP_MESSAGE_TYPE_SMS_CDMA) { + str = "SMS_CDMA"; + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &str); + } + if (map->supported_message_types & SDP_MESSAGE_TYPE_MMS) { + str = "MMS"; + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &str); + } + if (map->supported_message_types & SDP_MESSAGE_TYPE_IM) { + str = "IM"; + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &str); + } + dbus_message_iter_close_container(iter, &entry); + + return TRUE; +} + +static const GDBusPropertyTable map_properties[] = { + { "SupportedTypes", "as", get_supported_types }, + { } +}; + static void map_msg_remove(void *data) { struct map_msg *msg = data; @@ -2201,7 +2246,7 @@ static int map_probe(struct obc_session *session) set_notification_registration(map, true); if (!g_dbus_register_interface(conn, path, MAP_INTERFACE, map_methods, - NULL, NULL, map, map_free)) { + NULL, map_properties, map, map_free)) { map_free(map); return -ENOMEM;