Skip to content

Commit 69aee89

Browse files
committed
desktop/transaction: log transaction commit attempts
This information is helpful when debugging transaction timeout issues.
1 parent 32b93ef commit 69aee89

File tree

1 file changed

+39
-8
lines changed

1 file changed

+39
-8
lines changed

sway/desktop/transaction.c

+39-8
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,15 @@ static void transaction_commit(struct sway_transaction *transaction) {
439439
instruction->container_state.content_height);
440440
++transaction->num_waiting;
441441

442+
sway_log(SWAY_DEBUG, "Transaction %p[%d]: configure view %p to %dx%d+%d+%d, serial %d",
443+
transaction, i, node->sway_container->view,
444+
(int)instruction->container_state.content_width,
445+
(int)instruction->container_state.content_height,
446+
(int)instruction->container_state.content_x,
447+
(int)instruction->container_state.content_y,
448+
instruction->serial
449+
);
450+
442451
// From here on we are rendering a saved buffer of the view, which
443452
// means we can send a frame done event to make the client redraw it
444453
// as soon as possible. Additionally, this is required if a view is
@@ -514,28 +523,50 @@ void transaction_notify_view_ready_by_serial(struct sway_view *view,
514523
uint32_t serial) {
515524
struct sway_transaction_instruction *instruction =
516525
view->container->node.instruction;
517-
if (instruction != NULL && instruction->serial == serial) {
518-
set_instruction_ready(instruction);
526+
if (instruction != NULL) {
527+
if (instruction->serial == serial) {
528+
sway_log(SWAY_DEBUG,
529+
"Transaction %p: view %p acked serial %d",
530+
instruction->transaction, view, serial);
531+
set_instruction_ready(instruction);
532+
} else {
533+
sway_log(SWAY_DEBUG,
534+
"Transaction %p: view %p acked serial %d, was expecting %d",
535+
instruction->transaction, view, serial, instruction->serial);
536+
}
519537
}
520538
}
521539

522540
void transaction_notify_view_ready_by_geometry(struct sway_view *view,
523541
double x, double y, int width, int height) {
524542
struct sway_transaction_instruction *instruction =
525543
view->container->node.instruction;
526-
if (instruction != NULL &&
527-
(int)instruction->container_state.content_x == (int)x &&
528-
(int)instruction->container_state.content_y == (int)y &&
529-
instruction->container_state.content_width == width &&
530-
instruction->container_state.content_height == height) {
531-
set_instruction_ready(instruction);
544+
if (instruction != NULL) {
545+
int txn_x = (int)instruction->container_state.content_x;
546+
int txn_y = (int)instruction->container_state.content_y;
547+
int txn_width = instruction->container_state.content_width;
548+
int txn_height = instruction->container_state.content_height;
549+
if (txn_x == (int)x && txn_y == (int)y &&
550+
txn_width == width && txn_height == height) {
551+
sway_log(SWAY_DEBUG,
552+
"Transaction %p: view %p acked geometry %dx%d+%d+%d",
553+
instruction->transaction, view, width, height, (int)x, (int)y);
554+
set_instruction_ready(instruction);
555+
} else {
556+
sway_log(SWAY_DEBUG,
557+
"Transaction %p: view %p acked geometry %dx%d+%d+%d, was expecting %dx%d+%d+%d",
558+
instruction->transaction, view, width, height, (int)x, (int)y,
559+
txn_width, txn_height, txn_x, txn_y);
560+
}
532561
}
533562
}
534563

535564
void transaction_notify_view_ready_immediately(struct sway_view *view) {
536565
struct sway_transaction_instruction *instruction =
537566
view->container->node.instruction;
538567
if (instruction != NULL) {
568+
sway_log(SWAY_DEBUG, "Transaction %p: view %p marked ready",
569+
instruction->transaction, view);
539570
set_instruction_ready(instruction);
540571
}
541572
}

0 commit comments

Comments
 (0)