1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/*
* client.c:
*
* Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
* All rights reserved.
*
*/
static char rcsid[] = "$Id$";
/*
* $Log$
* Revision 1.3 2008/02/14 02:46:44 james
* *** empty log message ***
*
* Revision 1.2 2008/02/14 00:57:58 james
* *** empty log message ***
*
* Revision 1.1 2008/02/13 18:05:06 james
* *** empty log message ***
*
*/
#include <sympathy.h>
#include "client.h"
static void
server_msg (IPC_Msg * m, Context * c)
{
switch (m->hdr.type)
{
case IPC_MSG_TYPE_NOOP:
break;
case IPC_MSG_TYPE_DEBUG:
// fprintf (stderr,"%p [%d] %s\n", m, m->hdr.size , m->debug.msg );
break;
case IPC_MSG_TYPE_HISTORY:
history_add (c->h, m->history.history.line);
break;
case IPC_MSG_TYPE_VT102:
if (sizeof (VT102) != m->vt102.len)
abort ();
*(c->v) = m->vt102.vt102;
break;
case IPC_MSG_TYPE_TERM:
vt102_parse (c, m->term.term, m->term.len);
break;
default:
fprintf (stderr, "Unhandeled message type %d\n", m->hdr.type);
}
}
void
client (void)
{
Socket *s;
fd_set rfds, wfds;
ANSI a = { 0 };
Context c;
s = socket_connect ("socket");
if (!s)
{
printf ("no socket");
return;
}
c.t = NULL;
c.v = vt102_new ();
c.h = history_new (200);
c.l = NULL;
c.k = keydis_ipc_new (s);
terminal_register_handlers ();
a.terminal = terminal_open (0, 1);
ansi_reset (&a, NULL);
for (;;)
{
struct timeval tv = { 0, 100000 };
FD_ZERO (&rfds);
FD_ZERO (&wfds);
socket_pre_select (s, &rfds, &wfds);
tty_pre_select (a.terminal, &rfds, &wfds);
select (FD_SETSIZE, &rfds, &wfds, NULL, &tv);
if (socket_post_select (s, &rfds, &wfds))
break;
while (s->msg)
{
server_msg (s->msg, &c);
socket_consume_msg (s);
}
if (ansi_dispatch (&a, &c))
break;
ansi_update (&a, &c);
}
ansi_terminal_reset (&a);
terminal_atexit ();
printf ("QUAT\n");
}
|