annotate src/tooltalk.c @ 20:859a2309aef8 r19-15b93

Import from CVS: tag r19-15b93
author cvs
date Mon, 13 Aug 2007 08:50:05 +0200
parents 0293115a14e9
children e04119814345
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Tooltalk support for Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Written by John Rose <john.rose@eng.sun.com>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 Heavily modified and cleaned up by Ben Wing <ben.wing@eng.sun.com>. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include <X11/Xlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <tt_c.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "process.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "tooltalk.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 Lisp_Object Vtooltalk_fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #ifdef TT_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 static FILE *tooltalk_log_file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Vtooltalk_message_handler_hook,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Vtooltalk_pattern_handler_hook,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Vtooltalk_unprocessed_message_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Qtooltalk_message_handler_hook,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Qtooltalk_pattern_handler_hook,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Qtooltalk_unprocessed_message_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Qreceive_tooltalk_message,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Qtt_address,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Qtt_args_count,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Qtt_arg_bval,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Qtt_arg_ival,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Qtt_arg_mode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Qtt_arg_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Qtt_arg_val,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Qtt_class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Qtt_category,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Qtt_disposition,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 Qtt_file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Qtt_gid,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Qtt_handler,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Qtt_handler_ptype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Qtt_object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Qtt_op,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 Qtt_opnum,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Qtt_otype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Qtt_scope,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Qtt_sender,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Qtt_sender_ptype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Qtt_session,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Qtt_state,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Qtt_status,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Qtt_status_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Qtt_uid,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 Qtt_callback,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Qtt_plist,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Qtt_prop,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 Qtt_reject, /* return-tooltalk-message */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Qtt_reply,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 Qtt_fail,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 Q_TT_MODE_UNDEFINED, /* enum Tt_mode */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 Q_TT_IN,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Q_TT_OUT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Q_TT_INOUT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Q_TT_MODE_LAST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Q_TT_SCOPE_NONE, /* enum Tt_scope */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Q_TT_SESSION,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 Q_TT_FILE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Q_TT_BOTH,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Q_TT_FILE_IN_SESSION,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Q_TT_CLASS_UNDEFINED, /* enum Tt_class */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Q_TT_NOTICE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Q_TT_REQUEST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 Q_TT_CLASS_LAST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 Q_TT_CATEGORY_UNDEFINED, /* enum Tt_category */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Q_TT_OBSERVE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Q_TT_HANDLE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 Q_TT_CATEGORY_LAST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 Q_TT_PROCEDURE, /* typedef enum Tt_address */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 Q_TT_OBJECT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Q_TT_HANDLER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 Q_TT_OTYPE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 Q_TT_ADDRESS_LAST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Q_TT_CREATED, /* enum Tt_state */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 Q_TT_SENT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Q_TT_HANDLED,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 Q_TT_FAILED,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Q_TT_QUEUED,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 Q_TT_STARTED,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Q_TT_REJECTED,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 Q_TT_STATE_LAST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 Q_TT_DISCARD, /* enum Tt_disposition */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Q_TT_QUEUE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 Q_TT_START;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 static Lisp_Object Tooltalk_Message_plist_str, Tooltalk_Pattern_plist_str;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 Lisp_Object Qtooltalk_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* Used to GCPRO tooltalk message and pattern objects while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 they're sitting inside of some active tooltalk message or pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 There may not be any other pointers to these objects. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 Lisp_Object Vtooltalk_message_gcpro, Vtooltalk_pattern_gcpro;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 /* machinery for tooltalk-message type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 /* */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 Lisp_Object Qtooltalk_messagep;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 struct Lisp_Tooltalk_Message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 Lisp_Object plist_sym, callback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Tt_message m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 static Lisp_Object mark_tooltalk_message (Lisp_Object, void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 static void print_tooltalk_message (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 DEFINE_LRECORD_IMPLEMENTATION ("tooltalk-message", tooltalk_message,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 mark_tooltalk_message, print_tooltalk_message,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 struct Lisp_Tooltalk_Message);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 mark_tooltalk_message (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (markobj) (XTOOLTALK_MESSAGE (obj)->callback);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 return XTOOLTALK_MESSAGE (obj)->plist_sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 print_tooltalk_message (Lisp_Object obj, Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 struct Lisp_Tooltalk_Message *p = XTOOLTALK_MESSAGE (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 error ("printing unreadable object #<tooltalk_message 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 p->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 sprintf (buf, "#<tooltalk_message id:%d 0x%x>", (int) p->m, p->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 make_tooltalk_message (Tt_message m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 struct Lisp_Tooltalk_Message *msg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 = alloc_lcrecord (sizeof (struct Lisp_Tooltalk_Message),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 lrecord_tooltalk_message);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 msg->m = m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 msg->callback = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 msg->plist_sym = Fmake_symbol (Tooltalk_Message_plist_str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 XSETTOOLTALK_MESSAGE (val, msg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 Tt_message
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
200 unbox_tooltalk_message (Lisp_Object msg)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
202 CHECK_TOOLTALK_MESSAGE (msg);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
203 return XTOOLTALK_MESSAGE (msg)->m;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
206 DEFUN ("tooltalk-message-p", Ftooltalk_message_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 Return non-nil if OBJECT is a tooltalk message.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
208 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
209 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 return (TOOLTALK_MESSAGEP (object) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 /* */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 /* machinery for tooltalk-pattern type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 Lisp_Object Qtooltalk_patternp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 struct Lisp_Tooltalk_Pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 Lisp_Object plist_sym, callback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 Tt_pattern p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 static Lisp_Object mark_tooltalk_pattern (Lisp_Object, void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 static void print_tooltalk_pattern (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 DEFINE_LRECORD_IMPLEMENTATION ("tooltalk-pattern", tooltalk_pattern,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 mark_tooltalk_pattern, print_tooltalk_pattern,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 0, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 struct Lisp_Tooltalk_Pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 mark_tooltalk_pattern (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (markobj) (XTOOLTALK_PATTERN (obj)->callback);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 return XTOOLTALK_PATTERN (obj)->plist_sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 print_tooltalk_pattern (Lisp_Object obj, Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 struct Lisp_Tooltalk_Pattern *p = XTOOLTALK_PATTERN (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 error ("printing unreadable object #<tooltalk_pattern 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 p->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 sprintf (buf, "#<tooltalk_pattern id:%d 0x%x>", (int) p->p, p->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 make_tooltalk_pattern (Tt_pattern p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 struct Lisp_Tooltalk_Pattern *pat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 = alloc_lcrecord (sizeof (struct Lisp_Tooltalk_Pattern),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 lrecord_tooltalk_pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 pat->p = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 pat->callback = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 pat->plist_sym = Fmake_symbol (Tooltalk_Pattern_plist_str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 XSETTOOLTALK_PATTERN (val, pat);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 static Tt_pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 unbox_tooltalk_pattern (Lisp_Object pattern)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 CHECK_TOOLTALK_PATTERN (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 return XTOOLTALK_PATTERN (pattern)->p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
283 DEFUN ("tooltalk-pattern-p", Ftooltalk_pattern_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 Return non-nil if OBJECT is a tooltalk pattern.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
285 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
286 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 return (TOOLTALK_PATTERNP (object) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 tooltalk_constant_value (Lisp_Object s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 if (INTP (s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 return XINT (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 else if (SYMBOLP (s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 return XINT (XSYMBOL (s)->value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 return 0; /* should never occur */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 check_status (Tt_status st)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 if (tt_is_err (st))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 signal_error (Qtooltalk_error,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 Fcons (build_string (tt_status_message (st)), Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
313 DEFUN ("receive-tooltalk-message", Freceive_tooltalk_message, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 Run tt_message_receive().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 This function is the process handler for the ToolTalk connection process.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
316 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
317 (ignore1, ignore2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 Tt_message mess = tt_message_receive ();
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
321 Lisp_Object msg = make_tooltalk_message (mess);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
324 GCPRO1 (msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 if (mess != NULL && !NILP (Vtooltalk_unprocessed_message_hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 va_run_hook_with_args (Qtooltalk_unprocessed_message_hook, 1,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
327 msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 /* see comment in event-stream.c about this return value. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 return make_int (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 static Tt_callback_action
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 tooltalk_message_callback (Tt_message m, Tt_pattern p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 Lisp_Object cb;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
339 Lisp_Object msg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 Lisp_Object pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 #ifdef TT_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 int i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 fprintf (tooltalk_log_file, "message_cb: %d\n", m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 fprintf (tooltalk_log_file, "op: %s (", tt_message_op (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 for (j = tt_message_args_count (m), i = 0; i < j; i++) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 fprintf (tooltalk_log_file, "%s \"%s\"", tt_message_arg_type (m, i),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 tt_message_arg_val (m, i));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 fprintf (tooltalk_log_file, "%s", i == j-1 ? ")" : ", ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 fprintf (tooltalk_log_file, "\n\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 fflush (tooltalk_log_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
357 VOID_TO_LISP (msg, tt_message_user (m, TOOLTALK_MESSAGE_KEY));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 pattern = make_tooltalk_pattern (p);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
359 cb = XTOOLTALK_MESSAGE (msg)->callback;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
360 GCPRO2 (msg, pattern);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 if (!NILP (Vtooltalk_message_handler_hook))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
362 va_run_hook_with_args (Qtooltalk_message_handler_hook, 2, msg,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 if ((SYMBOLP (cb) && EQ (Qt, Ffboundp (cb))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (CONSP (cb) && EQ (Qlambda, Fcar (cb)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 !NILP (Flistp (Fcar (Fcdr (cb))))))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
368 call2 (cb, msg, pattern);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 tt_message_destroy (m);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
372 Fremhash (msg, Vtooltalk_message_gcpro);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 return TT_CALLBACK_PROCESSED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 static Tt_callback_action
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 tooltalk_pattern_callback (Tt_message m, Tt_pattern p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 Lisp_Object cb;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
382 Lisp_Object msg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 Lisp_Object pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 #ifdef TT_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 int i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 fprintf (tooltalk_log_file, "pattern_cb: %d\n", m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 fprintf (tooltalk_log_file, "op: %s (", tt_message_op (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 for (j = tt_message_args_count (m), i = 0; i < j; i++) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 fprintf (tooltalk_log_file, "%s \"%s\"", tt_message_arg_type (m, i),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 tt_message_arg_val (m, i));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 fprintf (tooltalk_log_file, "%s", i == j-1 ? ")" : ", ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 fprintf (tooltalk_log_file, "\n\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 fflush (tooltalk_log_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
400 msg = make_tooltalk_message (m);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 VOID_TO_LISP (pattern, tt_pattern_user (p, TOOLTALK_PATTERN_KEY));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 cb = XTOOLTALK_PATTERN (pattern)->callback;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
403 GCPRO2 (msg, pattern);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 if (!NILP (Vtooltalk_pattern_handler_hook))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
405 va_run_hook_with_args (Qtooltalk_pattern_handler_hook, 2, msg,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 if (SYMBOLP (cb) && EQ (Qt, Ffboundp (cb)))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
409 call2 (cb, msg, pattern);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 tt_message_destroy (m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 return TT_CALLBACK_PROCESSED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 tt_mode_symbol (Tt_mode n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 switch (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 {
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
421 case TT_MODE_UNDEFINED: return Q_TT_MODE_UNDEFINED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
422 case TT_IN: return Q_TT_IN;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
423 case TT_OUT: return Q_TT_OUT;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
424 case TT_INOUT: return Q_TT_INOUT;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
425 case TT_MODE_LAST: return Q_TT_MODE_LAST;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
426 default: return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 tt_scope_symbol (Tt_scope n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 switch (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 {
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
435 case TT_SCOPE_NONE: return Q_TT_SCOPE_NONE;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
436 case TT_SESSION: return Q_TT_SESSION;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
437 case TT_FILE: return Q_TT_FILE;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
438 case TT_BOTH: return Q_TT_BOTH;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
439 case TT_FILE_IN_SESSION: return Q_TT_FILE_IN_SESSION;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
440 default: return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 tt_class_symbol (Tt_class n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 switch (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 {
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
450 case TT_CLASS_UNDEFINED: return Q_TT_CLASS_UNDEFINED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
451 case TT_NOTICE: return Q_TT_NOTICE;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
452 case TT_REQUEST: return Q_TT_REQUEST;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
453 case TT_CLASS_LAST: return Q_TT_CLASS_LAST;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
454 default: return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 * This is not being used. Is that a mistake or is this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 * simply not necessary?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 tt_category_symbol (Tt_category n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 switch (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 {
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
468 case TT_CATEGORY_UNDEFINED: return Q_TT_CATEGORY_UNDEFINED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
469 case TT_OBSERVE: return Q_TT_OBSERVE;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
470 case TT_HANDLE: return Q_TT_HANDLE;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
471 case TT_CATEGORY_LAST: return Q_TT_CATEGORY_LAST;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
472 default: return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 tt_address_symbol (Tt_address n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 switch (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 {
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
482 case TT_PROCEDURE: return Q_TT_PROCEDURE;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
483 case TT_OBJECT: return Q_TT_OBJECT;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
484 case TT_HANDLER: return Q_TT_HANDLER;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
485 case TT_OTYPE: return Q_TT_OTYPE;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
486 case TT_ADDRESS_LAST: return Q_TT_ADDRESS_LAST;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
487 default: return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 tt_state_symbol (Tt_state n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 switch (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 {
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
496 case TT_CREATED: return Q_TT_CREATED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
497 case TT_SENT: return Q_TT_SENT;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
498 case TT_HANDLED: return Q_TT_HANDLED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
499 case TT_FAILED: return Q_TT_FAILED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
500 case TT_QUEUED: return Q_TT_QUEUED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
501 case TT_STARTED: return Q_TT_STARTED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
502 case TT_REJECTED: return Q_TT_REJECTED;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
503 case TT_STATE_LAST: return Q_TT_STATE_LAST;
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 2
diff changeset
504 default: return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 tt_build_string (char *s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 return build_string ((s) ? s : "");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 tt_opnum_string (int n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 char buf[32];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 sprintf (buf, "%u", n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 return build_string (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 tt_message_arg_ival_string (Tt_message m, int n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 char buf[32];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 int value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 check_status (tt_message_arg_ival (m, n, &value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 sprintf (buf, "%d", value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 return build_string (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 tt_message_arg_bval_vector (Tt_message m, int n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 /* !!#### This function has not been Mule-ized */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 Bufbyte *value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 int len = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 check_status (tt_message_arg_bval (m, n, &value, &len));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 return make_string (value, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
546 DEFUN ("get-tooltalk-message-attribute", Fget_tooltalk_message_attribute, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 Return the indicated Tooltalk message attribute. Attributes are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 identified by symbols with the same name (underscores and all) as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 suffix of the Tooltalk tt_message_<attribute> function that extracts the value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 String attribute values are copied, enumerated type values (except disposition)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 are converted to symbols - e.g. TT_HANDLER is 'TT_HANDLER, uid and gid are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 represented by fixnums (small integers), opnum is converted to a string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 and disposition is converted to a fixnum. We convert opnum (a C int) to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 string, e.g. 123 => \"123\" because there's no guarantee that opnums will fit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 within the range of Lisp integers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 Use the 'plist attribute instead of the C API 'user attribute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 for user defined message data. To retrieve the value of a message property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 specify the indicator for argn. For example to get the value of a property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 called 'rflag, use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (get-tooltalk-message-attribute message 'plist 'rflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 To get the value of a message argument use one of the 'arg_val (strings),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 'arg_ival (integers), or 'arg_bval (strings with embedded nulls), attributes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 For example to get the integer value of the third argument:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (get-tooltalk-message-attribute message 'arg_ival 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 As you can see, argument numbers are zero based. The type of each argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 can be retrieved with the 'arg_type attribute; however, Tooltalk doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 define any semantics for the string value of 'arg_type. Conventionally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 \"string\" is used for strings and \"int\" for 32 bit integers. Note that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 Emacs Lisp stores the lengths of strings explicitly (unlike C) so treating the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 value returned by 'arg_bval like a string is fine.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
575 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
576 (msg, attribute, argn))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
578 Tt_message m = unbox_tooltalk_message (msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 int n = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 CHECK_SYMBOL (attribute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 if (EQ (attribute, (Qtt_arg_bval)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 EQ (attribute, (Qtt_arg_ival)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 EQ (attribute, (Qtt_arg_mode)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 EQ (attribute, (Qtt_arg_type)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 EQ (attribute, (Qtt_arg_val)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 CHECK_INT (argn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 n = XINT (argn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 if (!VALID_TOOLTALK_MESSAGEP (m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 else if (EQ (attribute, Qtt_arg_bval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 return tt_message_arg_bval_vector (m, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 else if (EQ (attribute, Qtt_arg_ival))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 return tt_message_arg_ival_string (m, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 else if (EQ (attribute, Qtt_arg_mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 return tt_mode_symbol (tt_message_arg_mode (m, n));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 else if (EQ (attribute, Qtt_arg_type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 return tt_build_string (tt_message_arg_type (m, n));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 else if (EQ (attribute, Qtt_arg_val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 return tt_message_arg_bval_vector (m, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 else if (EQ (attribute, Qtt_args_count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 return make_int (tt_message_args_count (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 else if (EQ (attribute, Qtt_address))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 return tt_address_symbol (tt_message_address (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 else if (EQ (attribute, Qtt_class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 return tt_class_symbol (tt_message_class (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 else if (EQ (attribute, Qtt_disposition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 return make_int (tt_message_disposition (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 else if (EQ (attribute, Qtt_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 return tt_build_string (tt_message_file (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 else if (EQ (attribute, Qtt_gid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 return make_int (tt_message_gid (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 else if (EQ (attribute, Qtt_handler))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 return tt_build_string (tt_message_handler (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 else if (EQ (attribute, Qtt_handler_ptype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 return tt_build_string (tt_message_handler_ptype (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 else if (EQ (attribute, Qtt_object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 return tt_build_string (tt_message_object (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 else if (EQ (attribute, Qtt_op))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 return tt_build_string (tt_message_op (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 else if (EQ (attribute, Qtt_opnum))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 return tt_opnum_string (tt_message_opnum (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 else if (EQ (attribute, Qtt_otype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 return tt_build_string (tt_message_otype (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 else if (EQ (attribute, Qtt_scope))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 return tt_scope_symbol (tt_message_scope (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 else if (EQ (attribute, Qtt_sender))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 return tt_build_string (tt_message_sender (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 else if (EQ (attribute, Qtt_sender_ptype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 return tt_build_string (tt_message_sender_ptype (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 else if (EQ (attribute, Qtt_session))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 return tt_build_string (tt_message_session (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 else if (EQ (attribute, Qtt_state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 return tt_state_symbol (tt_message_state (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 else if (EQ (attribute, Qtt_status))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 return make_int (tt_message_status (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 else if (EQ (attribute, Qtt_status_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 return tt_build_string (tt_message_status_string (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 else if (EQ (attribute, Qtt_uid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 return make_int (tt_message_uid (m));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 else if (EQ (attribute, Qtt_callback))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
671 return XTOOLTALK_MESSAGE (msg)->callback;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 else if (EQ (attribute, Qtt_prop))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
674 return Fget (XTOOLTALK_MESSAGE (msg)->plist_sym, argn, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 else if (EQ (attribute, Qtt_plist))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
677 return Fcopy_sequence (Fsymbol_plist (XTOOLTALK_MESSAGE (msg)->
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 plist_sym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 signal_simple_error ("invalid value for `get-tooltalk-message-attribute'",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 attribute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
687 DEFUN ("set-tooltalk-message-attribute",
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
688 Fset_tooltalk_message_attribute, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 Initialize one Tooltalk message attribute.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 Attribute names and values are the same as for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 `get-tooltalk-message-attribute'. A property list is provided for user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 data (instead of the 'user message attribute); see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 `get-tooltalk-message-attribute'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 The value of callback should be the name of a function of one argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 It will be applied to the message and matching pattern each time the state of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 message changes. This is usually used to notice when the messages state has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 changed to TT_HANDLED (or TT_FAILED), so that reply argument values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 can be used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 If one of the argument attributes is specified, 'arg_val, 'arg_ival, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 'arg_bval then argn must be the number of an already created argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 New arguments can be added to a message with add-tooltalk-message-arg.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
705 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
706 (value, msg, attribute, argn))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
708 Tt_message m = unbox_tooltalk_message (msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 int n = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 CHECK_SYMBOL (attribute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 if (EQ (attribute, (Qtt_arg_bval)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 EQ (attribute, (Qtt_arg_ival)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 EQ (attribute, (Qtt_arg_val)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 CHECK_INT (argn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 n = XINT (argn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 if (!VALID_TOOLTALK_MESSAGEP (m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 else if (EQ (attribute, Qtt_address))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 tt_message_address_set (m, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 else if (EQ (attribute, Qtt_class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 tt_message_class_set (m, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 else if (EQ (attribute, Qtt_disposition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 tt_message_disposition_set (m, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 else if (EQ (attribute, Qtt_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 tt_message_file_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 else if (EQ (attribute, Qtt_handler_ptype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 tt_message_handler_ptype_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 else if (EQ (attribute, Qtt_handler))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 tt_message_handler_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 else if (EQ (attribute, Qtt_object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 tt_message_object_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 else if (EQ (attribute, Qtt_op))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 tt_message_op_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 else if (EQ (attribute, Qtt_otype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 tt_message_otype_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 else if (EQ (attribute, Qtt_scope))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 tt_message_scope_set (m, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 else if (EQ (attribute, Qtt_sender_ptype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 tt_message_sender_ptype_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 else if (EQ (attribute, Qtt_session))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 tt_message_session_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 else if (EQ (attribute, Qtt_arg_bval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 Extbyte *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 Extcount value_ext_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 GET_STRING_OS_DATA_ALLOCA (value, value_ext, value_ext_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 tt_message_arg_bval_set (m, n, value_ext, value_ext_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 else if (EQ (attribute, Qtt_arg_ival))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 CHECK_INT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 tt_message_arg_ival_set (m, n, XINT (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 else if (EQ (attribute, Qtt_arg_val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 tt_message_arg_val_set (m, n, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 else if (EQ (attribute, Qtt_status))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 CHECK_INT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 tt_message_status_set (m, XINT (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 else if (EQ (attribute, Qtt_status_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 tt_message_status_string_set (m, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 else if (EQ (attribute, Qtt_callback))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 CHECK_SYMBOL (value);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
834 XTOOLTALK_MESSAGE (msg)->callback = value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 else if (EQ (attribute, Qtt_prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
838 return Fput (XTOOLTALK_MESSAGE (msg)->plist_sym, argn, value);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 signal_simple_error ("invalid value for `set-tooltalk-message-attribute'",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 attribute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
846 DEFUN ("return-tooltalk-message", Freturn_tooltalk_message, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 Send a reply to this message. The second argument can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 'reply, 'reject or 'fail; the default is 'reply. Before sending
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 a reply all message arguments whose mode is TT_INOUT or TT_OUT should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 have been filled in - see set-tooltalk-message-attribute.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
851 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
852 (msg, mode))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
854 Tt_message m = unbox_tooltalk_message (msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 if (NILP (mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 mode = Qtt_reply;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 CHECK_SYMBOL (mode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 if (!VALID_TOOLTALK_MESSAGEP (m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 else if (EQ (mode, Qtt_reply))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 tt_message_reply (m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 else if (EQ (mode, Qtt_reject))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 tt_message_reject (m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 else if (EQ (mode, Qtt_fail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 tt_message_fail (m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
873 DEFUN ("create-tooltalk-message", Fcreate_tooltalk_message, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 Create a new tooltalk message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 The messages session attribute is initialized to the default session.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 Other attributes can be initialized with `set-tooltalk-message-attribute'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 `make-tooltalk-message' is the preferred to create and initialize a message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 Optional arg NO-CALLBACK says don't add a C-level callback at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 Normally don't do that; just don't specify the Lisp callback when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 calling `make-tooltalk-message'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
882 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
883 (no_callback))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 Tt_message m = tt_message_create ();
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
886 Lisp_Object msg = make_tooltalk_message (m);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 if (NILP (no_callback))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 tt_message_callback_add (m, tooltalk_message_callback);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 tt_message_session_set (m, tt_default_session ());
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
892 tt_message_user_set (m, TOOLTALK_MESSAGE_KEY, LISP_TO_VOID (msg));
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
893 return msg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
896 DEFUN ("destroy-tooltalk-message", Fdestroy_tooltalk_message, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 Apply tt_message_destroy() to the message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 It's not necessary to destroy messages after they've been processed by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 a message or pattern callback; the Lisp/Tooltalk callback machinery does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 this for you.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
901 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
902 (msg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
904 Tt_message m = unbox_tooltalk_message (msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 if (VALID_TOOLTALK_MESSAGEP (m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 /* #### Should we call Fremhash() here? It seems that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 a common paradigm is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (send-tooltalk-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (destroy-tooltalk-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 which would imply that destroying a sent ToolTalk message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 doesn't actually destroy it; when a response is sent back,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 the callback for the message will still be called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 But then maybe not: Maybe it really does destroy it,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 and the reason for that paradigm is that the author
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 of `send-tooltalk-message' didn't really know what he
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 was talking about when he said that it's a good idea
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 to call `destroy-tooltalk-message' after sending it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 tt_message_destroy (m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
928 DEFUN ("add-tooltalk-message-arg", Fadd_tooltalk_message_arg, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 Append one new argument to the message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 MODE must be one of TT_IN, TT_INOUT, or TT_OUT; VTYPE must be a string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 and VALUE can be a string or an integer. Tooltalk doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 define any semantics for VTYPE, so only the participants in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 protocol you're using need to agree what types mean (if anything).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 Conventionally \"string\" is used for strings and \"int\" for 32 bit integers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 Arguments can initialized by providing a value or with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 `set-tooltalk-message-attribute'. The latter is neccessary if you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 want to initialize the argument with a string that can contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 embedded nulls (use 'arg_bval).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
939 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
940 (msg, mode, vtype, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
942 Tt_message m = unbox_tooltalk_message (msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 Tt_mode n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 CHECK_STRING (vtype);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 CHECK_TOOLTALK_CONSTANT (mode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
948 n = (Tt_mode) tooltalk_constant_value (mode);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 if (!VALID_TOOLTALK_MESSAGEP (m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 CONST char *vtype_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 GET_C_STRING_OS_DATA_ALLOCA (vtype, vtype_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 tt_message_arg_add (m, n, vtype_ext, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 else if (STRINGP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 tt_message_arg_add (m, n, vtype_ext, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 else if (INTP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 tt_message_iarg_add (m, n, vtype_ext, XINT (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
971 DEFUN ("send-tooltalk-message", Fsend_tooltalk_message, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 Send the message on its way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 Once the message has been sent it's almost always a good idea to get rid of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 it with `destroy-tooltalk-message'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
975 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
976 (msg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
978 Tt_message m = unbox_tooltalk_message (msg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 if (VALID_TOOLTALK_MESSAGEP (m))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 tt_message_send (m);
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
983 Fputhash (msg, Qnil, Vtooltalk_message_gcpro);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
989 DEFUN ("create-tooltalk-pattern", Fcreate_tooltalk_pattern, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 Create a new Tooltalk pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 Its session attribute is initialized to be the default session.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
992 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
993 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 Tt_pattern p = tt_pattern_create ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 Lisp_Object pattern = make_tooltalk_pattern (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 tt_pattern_callback_add (p, tooltalk_pattern_callback);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 tt_pattern_session_add (p, tt_default_session ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 tt_pattern_user_set (p, TOOLTALK_PATTERN_KEY, LISP_TO_VOID (pattern));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 return pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1006 DEFUN ("destroy-tooltalk-pattern", Fdestroy_tooltalk_pattern, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 Apply tt_pattern_destroy() to the pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 This effectively unregisters the pattern.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1009 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1010 (pattern))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 Tt_pattern p = unbox_tooltalk_pattern (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 if (VALID_TOOLTALK_PATTERNP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 tt_pattern_destroy (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 Fremhash (pattern, Vtooltalk_pattern_gcpro);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1024 DEFUN ("add-tooltalk-pattern-attribute", Fadd_tooltalk_pattern_attribute, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 Add one value to the indicated pattern attribute.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 All Tooltalk pattern attributes are supported except 'user. The names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 of attributes are the same as the Tooltalk accessors used to set them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 less the \"tooltalk_pattern_\" prefix and the \"_add\" ...
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1029 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1030 (value, pattern, attribute))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 Tt_pattern p = unbox_tooltalk_pattern (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 CHECK_SYMBOL (attribute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 if (!VALID_TOOLTALK_PATTERNP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 else if (EQ (attribute, Qtt_category))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 tt_pattern_category_set (p, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 else if (EQ (attribute, Qtt_address))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 tt_pattern_address_add (p, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 else if (EQ (attribute, Qtt_class))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 tt_pattern_class_add (p, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 else if (EQ (attribute, Qtt_disposition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 tt_pattern_disposition_add (p, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 else if (EQ (attribute, Qtt_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 tt_pattern_file_add (p, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 else if (EQ (attribute, Qtt_object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 tt_pattern_object_add (p, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 else if (EQ (attribute, Qtt_op))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 tt_pattern_op_add (p, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 else if (EQ (attribute, Qtt_otype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 tt_pattern_otype_add (p, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 else if (EQ (attribute, Qtt_scope))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 tt_pattern_scope_add (p, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 else if (EQ (attribute, Qtt_sender))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 tt_pattern_sender_add (p, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 else if (EQ (attribute, Qtt_sender_ptype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 tt_pattern_sender_ptype_add (p, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 else if (EQ (attribute, Qtt_session))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 CHECK_STRING (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 tt_pattern_session_add (p, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 else if (EQ (attribute, Qtt_state))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 CHECK_TOOLTALK_CONSTANT (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 tt_pattern_state_add (p, tooltalk_constant_value (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 else if (EQ (attribute, Qtt_callback))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 CHECK_SYMBOL (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 XTOOLTALK_PATTERN (pattern)->callback = value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1128 DEFUN ("add-tooltalk-pattern-arg", Fadd_tooltalk_pattern_arg, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 Add one fully specified argument to a tooltalk pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 Mode must be one of TT_IN, TT_INOUT, or TT_OUT, type must be a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 Value can be an integer, string or nil. If value is an integer then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 an integer argument (tt_pattern_iarg_add) added otherwise a string argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 is added. At present there's no way to add a binary data argument.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1134 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1135 (pattern, mode, vtype, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 Tt_pattern p = unbox_tooltalk_pattern (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 Tt_mode n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 CHECK_STRING (vtype);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 CHECK_TOOLTALK_CONSTANT (mode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1143 n = (Tt_mode) tooltalk_constant_value (mode);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 if (!VALID_TOOLTALK_PATTERNP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 return Qnil;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1147
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 CONST char *vtype_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 GET_C_STRING_OS_DATA_ALLOCA (vtype, vtype_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 tt_pattern_arg_add (p, n, vtype_ext, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 else if (STRINGP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 CONST char *value_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 GET_C_STRING_OS_DATA_ALLOCA (value, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 tt_pattern_arg_add (p, n, vtype_ext, value_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 else if (INTP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 tt_pattern_iarg_add (p, n, vtype_ext, XINT (value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1168 DEFUN ("register-tooltalk-pattern", Fregister_tooltalk_pattern, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 Emacs will begin receiving messages that match this pattern.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1170 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1171 (pattern))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 Tt_pattern p = unbox_tooltalk_pattern (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 if (VALID_TOOLTALK_PATTERNP (p) && tt_pattern_register (p) == TT_OK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 Fputhash (pattern, Qnil, Vtooltalk_pattern_gcpro);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1185 DEFUN ("unregister-tooltalk-pattern", Funregister_tooltalk_pattern, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 Emacs will stop receiving messages that match this pattern.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1187 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1188 (pattern))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 Tt_pattern p = unbox_tooltalk_pattern (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 if (VALID_TOOLTALK_PATTERNP (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 tt_pattern_unregister (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 Fremhash (pattern, Vtooltalk_pattern_gcpro);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1202 DEFUN ("tooltalk-pattern-prop-get", Ftooltalk_pattern_prop_get, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 Return the value of PROPERTY in tooltalk pattern PATTERN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 This is the last value set with `tooltalk-pattern-prop-set'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1205 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1206 (pattern, property))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 CHECK_TOOLTALK_PATTERN (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 return Fget (XTOOLTALK_PATTERN (pattern)->plist_sym, property, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1213 DEFUN ("tooltalk-pattern-prop-set", Ftooltalk_pattern_prop_set, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 Set the value of PROPERTY to VALUE in tooltalk pattern PATTERN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 It can be retrieved with `tooltalk-pattern-prop-get'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1216 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1217 (pattern, property, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 CHECK_TOOLTALK_PATTERN (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 return Fput (XTOOLTALK_PATTERN (pattern)->plist_sym, property, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1224 DEFUN ("tooltalk-pattern-plist-get", Ftooltalk_pattern_plist_get, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 Return the a list of all the properties currently set in PATTERN.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1226 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1227 (pattern))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 CHECK_TOOLTALK_PATTERN (pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 return Fcopy_sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (Fsymbol_plist (XTOOLTALK_PATTERN (pattern)->plist_sym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1234 DEFUN ("tooltalk-default-procid", Ftooltalk_default_procid, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 Return current default process identifier for your process.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1236 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1237 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 char *procid = tt_default_procid ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 if (!procid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 return build_string (procid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1245 DEFUN ("tooltalk-default-session", Ftooltalk_default_session, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 Return current default session identifier for the current default procid.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1247 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1248 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 char *session = tt_default_session ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 if (!session)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 return build_string (session);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 init_tooltalk (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 char *retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 Lisp_Object lp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 Lisp_Object fil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 retval = tt_open ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 if (tt_ptr_error (retval) != TT_OK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 Vtooltalk_fd = make_int (tt_fd ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 tt_session_join (tt_default_session ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 lp = connect_to_file_descriptor (build_string ("tooltalk"), Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 Vtooltalk_fd, Vtooltalk_fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 if (!NILP (lp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 /* Don't ask the user for confirmation when exiting Emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 Fprocess_kill_without_query (lp, Qnil);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1278 XSETSUBR (fil, &SFreceive_tooltalk_message);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 set_process_filter (lp, fil, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 tt_close ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 Vtooltalk_fd = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 #if defined (SOLARIS2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 /* Apparently the tt_message_send_on_exit() function does not exist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 under SunOS 4.x or IRIX 5 or various other non-Solaris-2 systems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 No big deal if we don't do the following under those systems. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 Tt_message exit_msg = tt_message_create ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 tt_message_op_set (exit_msg, "emacs-aborted");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 tt_message_scope_set (exit_msg, TT_SESSION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 tt_message_class_set (exit_msg, TT_NOTICE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 tt_message_send_on_exit (exit_msg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 tt_message_destroy (exit_msg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1304 DEFUN ("tooltalk-open-connection", Ftooltalk_open_connection, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 Opens a connection to the ToolTalk server.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 Returns t if successful, nil otherwise.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1307 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1308 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 if (!NILP (Vtooltalk_fd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 error ("Already connected to ToolTalk.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 if (noninteractive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 error ("Can't connect to ToolTalk in batch mode.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 init_tooltalk ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 return (NILP (Vtooltalk_fd) ? Qnil : Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 syms_of_tooltalk (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 defsymbol (&Qtooltalk_messagep, "tooltalk-message-p");
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1323 DEFSUBR (Ftooltalk_message_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 defsymbol (&Qtooltalk_patternp, "tooltalk-pattern-p");
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1325 DEFSUBR (Ftooltalk_pattern_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 defsymbol (&Qtooltalk_message_handler_hook, "tooltalk-message-handler-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 defsymbol (&Qtooltalk_pattern_handler_hook, "tooltalk-pattern-handler-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 defsymbol (&Qtooltalk_unprocessed_message_hook,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 "tooltalk-unprocessed-message-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1331 DEFSUBR (Freceive_tooltalk_message);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1332 DEFSUBR (Fcreate_tooltalk_message);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1333 DEFSUBR (Fdestroy_tooltalk_message);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1334 DEFSUBR (Fadd_tooltalk_message_arg);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1335 DEFSUBR (Fget_tooltalk_message_attribute);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1336 DEFSUBR (Fset_tooltalk_message_attribute);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1337 DEFSUBR (Fsend_tooltalk_message);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1338 DEFSUBR (Freturn_tooltalk_message);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1339 DEFSUBR (Fcreate_tooltalk_pattern);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1340 DEFSUBR (Fdestroy_tooltalk_pattern);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1341 DEFSUBR (Fadd_tooltalk_pattern_attribute);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1342 DEFSUBR (Fadd_tooltalk_pattern_arg);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1343 DEFSUBR (Fregister_tooltalk_pattern);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1344 DEFSUBR (Funregister_tooltalk_pattern);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1345 DEFSUBR (Ftooltalk_pattern_plist_get);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1346 DEFSUBR (Ftooltalk_pattern_prop_set);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1347 DEFSUBR (Ftooltalk_pattern_prop_get);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1348 DEFSUBR (Ftooltalk_default_procid);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1349 DEFSUBR (Ftooltalk_default_session);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1350 DEFSUBR (Ftooltalk_open_connection);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 defsymbol (&Qreceive_tooltalk_message, "receive-tooltalk-message");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 defsymbol (&Qtt_address, "address");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 defsymbol (&Qtt_args_count, "args_count");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 defsymbol (&Qtt_arg_bval, "arg_bval");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 defsymbol (&Qtt_arg_ival, "arg_ival");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 defsymbol (&Qtt_arg_mode, "arg_mode");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 defsymbol (&Qtt_arg_type, "arg_type");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 defsymbol (&Qtt_arg_val, "arg_val");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 defsymbol (&Qtt_class, "class");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 defsymbol (&Qtt_category, "category");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 defsymbol (&Qtt_disposition, "disposition");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 defsymbol (&Qtt_file, "file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 defsymbol (&Qtt_gid, "gid");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 defsymbol (&Qtt_handler, "handler");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 defsymbol (&Qtt_handler_ptype, "handler_ptype");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 defsymbol (&Qtt_object, "object");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 defsymbol (&Qtt_op, "op");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 defsymbol (&Qtt_opnum, "opnum");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 defsymbol (&Qtt_otype, "otype");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 defsymbol (&Qtt_scope, "scope");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 defsymbol (&Qtt_sender, "sender");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 defsymbol (&Qtt_sender_ptype, "sender_ptype");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 defsymbol (&Qtt_session, "session");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 defsymbol (&Qtt_state, "state");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 defsymbol (&Qtt_status, "status");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 defsymbol (&Qtt_status_string, "status_string");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 defsymbol (&Qtt_uid, "uid");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 defsymbol (&Qtt_callback, "callback");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 defsymbol (&Qtt_prop, "prop");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 defsymbol (&Qtt_plist, "plist");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 defsymbol (&Qtt_reject, "reject");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 defsymbol (&Qtt_reply, "reply");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 defsymbol (&Qtt_fail, "fail");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 deferror (&Qtooltalk_error, "tooltalk-error", "ToolTalk error", Qio_error);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 vars_of_tooltalk (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 Fprovide (intern ("tooltalk"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 DEFVAR_LISP ("tooltalk-fd", &Vtooltalk_fd /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 File descriptor returned by tt_initialize; nil if not connected to ToolTalk.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 Vtooltalk_fd = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 DEFVAR_LISP ("tooltalk-message-handler-hook",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 &Vtooltalk_message_handler_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 List of functions to be applied to each ToolTalk message reply received.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 This will always occur as a result of our sending a request message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 Functions will be called with two arguments, the message and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 corresponding pattern. This hook will not be called if the request
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 message was created without a C-level callback function (see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 `tooltalk-unprocessed-message-hook').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 Vtooltalk_message_handler_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 DEFVAR_LISP ("tooltalk-pattern-handler-hook",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 &Vtooltalk_pattern_handler_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 List of functions to be applied to each pattern-matching ToolTalk message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 This is all messages except those handled by `tooltalk-message-handler-hook'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 Functions will be called with two arguments, the message and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 corresponding pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 Vtooltalk_pattern_handler_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 DEFVAR_LISP ("tooltalk-unprocessed-message-hook",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 &Vtooltalk_unprocessed_message_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 List of functions to be applied to each unprocessed ToolTalk message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 Unprocessed messages are messages that didn't match any patterns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 Vtooltalk_unprocessed_message_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 Tooltalk_Message_plist_str = build_string ("Tooltalk Message plist");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 Tooltalk_Pattern_plist_str = build_string ("Tooltalk Pattern plist");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 #define MAKE_CONSTANT(name) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 defsymbol (&Q_ ## name, #name); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 Fset (Q_ ## name, make_int (name)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 MAKE_CONSTANT (TT_MODE_UNDEFINED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 MAKE_CONSTANT (TT_IN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 MAKE_CONSTANT (TT_OUT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 MAKE_CONSTANT (TT_INOUT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 MAKE_CONSTANT (TT_MODE_LAST);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 MAKE_CONSTANT (TT_SCOPE_NONE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 MAKE_CONSTANT (TT_SESSION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 MAKE_CONSTANT (TT_FILE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 MAKE_CONSTANT (TT_BOTH);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 MAKE_CONSTANT (TT_FILE_IN_SESSION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 MAKE_CONSTANT (TT_CLASS_UNDEFINED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 MAKE_CONSTANT (TT_NOTICE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 MAKE_CONSTANT (TT_REQUEST);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 MAKE_CONSTANT (TT_CLASS_LAST);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 MAKE_CONSTANT (TT_CATEGORY_UNDEFINED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 MAKE_CONSTANT (TT_OBSERVE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 MAKE_CONSTANT (TT_HANDLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 MAKE_CONSTANT (TT_CATEGORY_LAST);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 MAKE_CONSTANT (TT_PROCEDURE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 MAKE_CONSTANT (TT_OBJECT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 MAKE_CONSTANT (TT_HANDLER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 MAKE_CONSTANT (TT_OTYPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 MAKE_CONSTANT (TT_ADDRESS_LAST);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 MAKE_CONSTANT (TT_CREATED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 MAKE_CONSTANT (TT_SENT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 MAKE_CONSTANT (TT_HANDLED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 MAKE_CONSTANT (TT_FAILED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 MAKE_CONSTANT (TT_QUEUED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 MAKE_CONSTANT (TT_STARTED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 MAKE_CONSTANT (TT_REJECTED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 MAKE_CONSTANT (TT_STATE_LAST);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 MAKE_CONSTANT (TT_DISCARD);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 MAKE_CONSTANT (TT_QUEUE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 MAKE_CONSTANT (TT_START);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 #undef MAKE_CONSTANT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 staticpro (&Vtooltalk_message_gcpro);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 staticpro (&Vtooltalk_pattern_gcpro);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 Vtooltalk_message_gcpro = make_lisp_hashtable (10, HASHTABLE_NONWEAK,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 HASHTABLE_EQ);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 Vtooltalk_pattern_gcpro = make_lisp_hashtable (10, HASHTABLE_NONWEAK,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 HASHTABLE_EQ);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 }