From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCH BlueZ 09/12] android/avrcp-lib: Add support for parsing SetPlayerValue response
Date: Wed, 26 Mar 2014 16:13:49 +0200 [thread overview]
Message-ID: <1395843232-26750-9-git-send-email-luiz.dentz@gmail.com> (raw)
In-Reply-To: <1395843232-26750-1-git-send-email-luiz.dentz@gmail.com>
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
---
android/avrcp-lib.c | 59 +++++++++++++++++++++++++++++++++++++++++++----------
android/avrcp-lib.h | 8 +++++---
unit/test-avrcp.c | 9 ++++----
3 files changed, 57 insertions(+), 19 deletions(-)
diff --git a/android/avrcp-lib.c b/android/avrcp-lib.c
index 2c8d0f5..9ce0aa2 100644
--- a/android/avrcp-lib.c
+++ b/android/avrcp-lib.c
@@ -1144,26 +1144,63 @@ int avrcp_get_current_player_value(struct avrcp *session, uint8_t number,
number + 1, get_value_rsp, session);
}
-int avrcp_set_player_value(struct avrcp *session, uint8_t *attributes,
- uint8_t attr_count, uint8_t *values,
- avctp_rsp_cb func, void *user_data)
+static gboolean set_value_rsp(struct avctp *conn,
+ uint8_t code, uint8_t subunit,
+ uint8_t *operands, size_t operand_count,
+ void *user_data)
{
- uint8_t buf[2 * AVRCP_ATTRIBUTE_LAST + 1];
+ struct avrcp *session = user_data;
+ struct avrcp_player *player = session->player;
+ struct avrcp_header *pdu;
+ uint8_t number = 0;
+ uint8_t attrs[AVRCP_ATTRIBUTE_LAST];
+ uint8_t values[AVRCP_ATTRIBUTE_LAST];
+ int err;
+
+ DBG("");
+
+ if (!player || !player->cfm || !player->cfm->set_value)
+ return FALSE;
+
+ pdu = parse_pdu(operands, operand_count);
+ if (!pdu) {
+ err = -EPROTO;
+ goto done;
+ }
+
+ if (code == AVC_CTYPE_REJECTED) {
+ err = parse_status(pdu);
+ goto done;
+ }
+
+ err = parse_value(pdu, &number, attrs, values);
+
+done:
+ player->cfm->set_value(session, err, number, attrs, values,
+ player->user_data);
+
+ return FALSE;
+}
+
+int avrcp_set_player_value(struct avrcp *session, uint8_t number,
+ uint8_t *attrs, uint8_t *values)
+{
+ uint8_t pdu[2 * AVRCP_ATTRIBUTE_LAST + 1];
int i;
- if (attr_count > AVRCP_ATTRIBUTE_LAST)
+ if (number > AVRCP_ATTRIBUTE_LAST)
return -EINVAL;
- buf[0] = attr_count;
+ pdu[0] = number;
- for (i = 0; i < attr_count; i++) {
- buf[i * 2 + 1] = attributes[i];
- buf[i * 2 + 2] = values[i];
+ for (i = 0; i < number; i++) {
+ pdu[i * 2 + 1] = attrs[i];
+ pdu[i * 2 + 2] = values[i];
}
return avrcp_send_req(session, AVC_CTYPE_CONTROL, AVC_SUBUNIT_PANEL,
- AVRCP_SET_PLAYER_VALUE, buf, 2 * attr_count + 1,
- func, user_data);
+ AVRCP_SET_PLAYER_VALUE, pdu, 2 * number + 1,
+ set_value_rsp, session);
}
int avrcp_get_play_status(struct avrcp *session, avctp_rsp_cb func,
diff --git a/android/avrcp-lib.h b/android/avrcp-lib.h
index 30ceda0..2a65f16 100644
--- a/android/avrcp-lib.h
+++ b/android/avrcp-lib.h
@@ -182,6 +182,9 @@ struct avrcp_control_cfm {
void (*get_value) (struct avrcp *session, int err,
uint8_t number, uint8_t *attrs,
uint8_t *values, void *user_data);
+ void (*set_value) (struct avrcp *session, int err,
+ uint8_t number, uint8_t *attrs,
+ uint8_t *values, void *user_data);
};
struct avrcp_passthrough_handler {
@@ -218,9 +221,8 @@ int avrcp_get_player_attribute_text(struct avrcp *session, uint8_t number,
int avrcp_list_player_values(struct avrcp *session, uint8_t attr);
int avrcp_get_player_value_text(struct avrcp *session, uint8_t attr,
uint8_t number, uint8_t *values);
-int avrcp_set_player_value(struct avrcp *session, uint8_t *attributes,
- uint8_t attr_count, uint8_t *values,
- avctp_rsp_cb func, void *user_data);
+int avrcp_set_player_value(struct avrcp *session, uint8_t number,
+ uint8_t *attrs, uint8_t *values);
int avrcp_get_current_player_value(struct avrcp *session, uint8_t number,
uint8_t *attrs);
int avrcp_get_play_status(struct avrcp *session, avctp_rsp_cb func,
diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c
index 016c80c..8f74e9c 100644
--- a/unit/test-avrcp.c
+++ b/unit/test-avrcp.c
@@ -508,13 +508,12 @@ static void test_client(gconstpointer data)
}
if (g_str_equal(context->data->test_name, "/TP/PAS/BV-11-C")) {
- uint8_t attributes[2] = { AVRCP_ATTRIBUTE_EQUALIZER,
+ uint8_t attrs[2] = { AVRCP_ATTRIBUTE_EQUALIZER,
AVRCP_ATTRIBUTE_REPEAT_MODE };
- uint8_t values[] = { 0xaa, 0xff };
+ uint8_t values[2] = { 0xaa, 0xff };
- avrcp_set_player_value(context->session, attributes,
- sizeof(attributes), values,
- NULL, NULL);
+ avrcp_set_player_value(context->session, sizeof(attrs), attrs,
+ values);
}
if (g_str_equal(context->data->test_name, "/TP/MDI/BV-01-C"))
--
1.8.5.3
next prev parent reply other threads:[~2014-03-26 14:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-26 14:13 [PATCH BlueZ 01/12] android/avrcp-lib: Add support for parsing GetCapabilities response Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 02/12] android/avrcp-lib: Add support for parsing ListPlayerAttributes response Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 03/12] android/avrcp-lib: Add support for parsing GetPlayerAttributeText response Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 04/12] android/avrcp-lib: Add avrcp_list_player_values Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 05/12] android/avrcp-lib: Add support for parsing ListPlayerValues response Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 06/12] android/avrcp-lib: Add avrcp_get_player_value_text Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 07/12] android/avrcp-lib: Add support for parsing GetPlayerValueText response Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 08/12] android/avrcp-lib: Add support for parsing GetCurrentPlayerValue response Luiz Augusto von Dentz
2014-03-27 15:01 ` Szymon Janc
2014-03-26 14:13 ` Luiz Augusto von Dentz [this message]
2014-03-26 14:13 ` [PATCH BlueZ 10/12] android/avrcp-lib: Add support for parsing GetPlayStatus response Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 11/12] android/avrcp-lib: Add support for parsing GetElementAttributes response Luiz Augusto von Dentz
2014-03-26 14:13 ` [PATCH BlueZ 12/12] android/avrcp-lib: Add support for parsing RegisterNotification response Luiz Augusto von Dentz
2014-03-27 14:55 ` [PATCH BlueZ 01/12] android/avrcp-lib: Add support for parsing GetCapabilities response Szymon Janc
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=1395843232-26750-9-git-send-email-luiz.dentz@gmail.com \
--to=luiz.dentz@gmail.com \
--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