2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999,2000 Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 #include <gtk/gtkmain.h>
24 #include "automaton.h"
26 Automaton
*automaton_create(gint num
)
30 g_return_val_if_fail(num
> 0, NULL
);
32 atm
= g_new0(Automaton
, 1);
34 atm
->state
= g_new0(AtmState
, num
);
39 void automaton_destroy(Automaton
*atm
)
47 void automaton_input_cb(gpointer data
, gint dummy_source
,
48 GdkInputCondition condition
)
50 Automaton
*atm
= (Automaton
*)data
;
54 /* We get out sockinfo from the atm context and not from the
55 * passed file descriptor because we can't map that one back
57 sock
= atm
->help_sock
;
58 g_assert(sock
->sock
== dummy_source
);
60 if (atm
->timeout_tag
> 0) {
61 gtk_timeout_remove(atm
->timeout_tag
);
65 gdk_input_remove(atm
->tag
);
68 next
= atm
->state
[atm
->num
].handler(sock
, atm
->data
);
73 if (next
>= 0 && next
<= atm
->max
&& next
!= atm
->num
) {
75 atm
->tag
= sock_gdk_input_add(sock
,
76 atm
->state
[atm
->num
].condition
,
80 atm
->terminate(sock
, data
);