aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-08-24 18:26:15 +0200
committerMattias Andrée <maandree@operamail.com>2015-08-24 18:32:05 +0200
commit34ac2225ffd7d93870200fe68e07ae32ec1522f8 (patch)
treeb8c25c874260cb8564f9221dcec68c289c7bd3ec /src
parentupdate info manual for the new parameter in construct_error_message (diff)
downloadmds-34ac2225ffd7d93870200fe68e07ae32ec1522f8.tar.gz
mds-34ac2225ffd7d93870200fe68e07ae32ec1522f8.tar.bz2
mds-34ac2225ffd7d93870200fe68e07ae32ec1522f8.tar.xz
mds-kkbd: decipher handle_keyboard_enumeration and fix a minor bug in it
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/mds-kkbd.c54
1 files changed, 40 insertions, 14 deletions
diff --git a/src/mds-kkbd.c b/src/mds-kkbd.c
index 7c83560..c4883d0 100644
--- a/src/mds-kkbd.c
+++ b/src/mds-kkbd.c
@@ -756,9 +756,10 @@ int handle_enumerate_keyboards(const char* recv_client_id, const char* recv_mess
* @param recv_modify_id The value of the `Modify ID`-header, `NULL` if omitted
* @return Zero on success, -1 on error
*/
-int handle_keyboard_enumeration(const char* recv_modify_id) /* TODO proofread */
+int handle_keyboard_enumeration(const char* recv_modify_id)
{
- size_t i, off, top, n = lengthof(KEYBOARD_ID "\n") + 3 * sizeof(size_t);
+ size_t i, off, m, n = lengthof(KEYBOARD_ID "\n") + 3 * sizeof(size_t);
+ ssize_t top;
uint32_t msgid;
int r, have_len = 0;
@@ -779,7 +780,12 @@ int handle_keyboard_enumeration(const char* recv_modify_id) /* TODO proofread */
n += received.payload_size;
- n += off = 64 + strlen(recv_modify_id) + 3 * sizeof(size_t);
+ /* Calculate an upper bound for the outbound message.
+ `off` is an upper bound for the outbound message's
+ headers plus empty line and thus where we should
+ write the payload to the buffer. */
+ off = sizeof("Modify ID: \nMessage ID: \nLength: \n\n") / sizeof(char) - 1;
+ n += off += strlen(recv_modify_id) + 10 + 3 * sizeof(size_t);
/* Make sure the buffer fits the message, add one additional
@@ -793,6 +799,11 @@ int handle_keyboard_enumeration(const char* recv_modify_id) /* TODO proofread */
message_id = message_id == INT32_MAX ? 0 : (message_id + 1);
);
+
+ /* Write outbound message payload. */
+
+ /* Write inbound message's headers to the outbound message,
+ `n` keeps track of were we are. */
n = off;
for (i = 0; i < received.header_count; i++)
{
@@ -807,26 +818,41 @@ int handle_keyboard_enumeration(const char* recv_modify_id) /* TODO proofread */
}
else
{
- sprintf(send_buffer + n,
- "%s\n",
- header);
- n += strlen(header) + 1;
+ m = strlen(header);
+ memcpy(send_buffer + n, header, m * sizeof(char)), n += m;
+ send_buffer[n++] = '\n';
}
}
+ /* Mark end of inbound headers. */
+ send_buffer[n++] = '\n';
+ /* Write inbound message's payload to the outbound message. */
memcpy(send_buffer + n, received.payload, received.payload_size * sizeof(char));
n += received.payload_size;
+ /* Change `n` to tell the length of the outbound message's payload. */
n -= off;
+
+ /* Complete outbound message. */
+
+ /* Write the outbound message's headers. */
sprintf(send_buffer,
"Modify ID: %s\n"
"Message ID: %" PRIu32 "\n"
- "Length: %zu\n",
- recv_modify_id, msgid, n);
- top = strlen(send_buffer) + 1;
- send_buffer[top - 1] = '\n';
- off -= top;
- n += top;
- memmove(send_buffer + off, send_buffer, top * sizeof(char));
+ "Length: %zu\n%zn",
+ recv_modify_id, msgid, n, &top);
+ /* Write the empty line. */
+ send_buffer[(size_t)(top++)] = '\n';
+ /* Calculate what the offset in the entire buffer for the
+ message should be, and move the message to that offset.
+ Only the headers and the empty line should be moved, so
+ that it is juxtaposed with the payload. */
+ off -= (size_t)top;
+ memmove(send_buffer + off, send_buffer, ((size_t)top) * sizeof(char));
+ /* Calculate the final length of the message. */
+ n += (size_t)top;
+
+
+ /* Send message. */
with_mutex (send_mutex,
r = full_send(send_buffer + off, n);