mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 09:14:22 +01:00
90 lines
1.8 KiB
C
90 lines
1.8 KiB
C
#include <time.h>
|
|
|
|
#include "tmate.h"
|
|
|
|
static int msgpack_write(void *data, const char *buf, unsigned int len)
|
|
{
|
|
struct tmate_encoder *encoder = data;
|
|
|
|
evbuffer_add(encoder->buffer, buf, len);
|
|
|
|
if ((encoder->ev_readable.ev_flags & EVLIST_INSERTED) &&
|
|
!(encoder->ev_readable.ev_flags & EVLIST_ACTIVE)) {
|
|
event_active(&encoder->ev_readable, EV_READ, 0);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void tmate_encoder_init(struct tmate_encoder *encoder)
|
|
{
|
|
msgpack_packer_init(&encoder->pk, encoder, &msgpack_write);
|
|
encoder->buffer = evbuffer_new();
|
|
}
|
|
|
|
#define msgpack_pack_string(pk, str) do { \
|
|
int __strlen = strlen(str); \
|
|
msgpack_pack_raw(pk, __strlen); \
|
|
msgpack_pack_raw_body(pk, str, __strlen); \
|
|
} while(0)
|
|
|
|
#define pack(what, ...) msgpack_pack_##what(&tmate_encoder->pk, __VA_ARGS__)
|
|
|
|
void tmate_write_header(void)
|
|
{
|
|
pack(array, 2);
|
|
pack(int, TMATE_HEADER);
|
|
pack(int, TMATE_PROTOCOL_VERSION);
|
|
}
|
|
|
|
void tmate_sync_window(struct window *w)
|
|
{
|
|
struct window_pane *wp;
|
|
int num_panes = 0;
|
|
int active_pane_id = -1;
|
|
|
|
pack(array, 7);
|
|
pack(int, TMATE_SYNC_WINDOW);
|
|
|
|
pack(int, w->id);
|
|
pack(string, w->name);
|
|
pack(int, w->sx);
|
|
pack(int, w->sy);
|
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry)
|
|
num_panes++;
|
|
|
|
pack(array, num_panes);
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
pack(array, 5);
|
|
pack(int, wp->id);
|
|
pack(int, wp->sx);
|
|
pack(int, wp->sy);
|
|
pack(int, wp->xoff);
|
|
pack(int, wp->yoff);
|
|
|
|
if (wp == w->active)
|
|
active_pane_id = wp->id;
|
|
}
|
|
pack(int, active_pane_id);
|
|
}
|
|
|
|
void tmate_pty_data(struct window_pane *wp, const char *buf, size_t len)
|
|
{
|
|
size_t max_write, to_write;
|
|
|
|
max_write = TMATE_MAX_MESSAGE_SIZE - 4;
|
|
while (len > 0) {
|
|
to_write = len < max_write ? len : max_write;
|
|
|
|
pack(array, 3);
|
|
pack(int, TMATE_PTY_DATA);
|
|
pack(int, wp->id);
|
|
pack(raw, to_write);
|
|
pack(raw_body, buf, to_write);
|
|
|
|
buf += to_write;
|
|
len -= to_write;
|
|
}
|
|
}
|