annotate tests/tooltalk/load-file.c @ 5569:d19b6e3bdf91

#'cl-defsubst-expand; avoid mutually-recursive symbol macros. lisp/ChangeLog addition: 2011-09-10 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (cl-defsubst-expand): Change set 2a6a8da4dd7c of http://mid.gmane.org/19966.17522.332164.615228@parhasard.net wasn't sufficiently comprehensive, symbol macros can be mutually rather than simply recursive, and they can equally hang. Thanks for the bug report, Michael Sperber, and for the test case, Stephen Turnbull.
author Aidan Kehoe <kehoea@parhasard.net>
date Sat, 10 Sep 2011 13:17:29 +0100
parents 9fc91aa3a927
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5408
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
1 /* load-file.c - load & execute an Emacs Lisp file in XEmacs using ToolTalk
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
2 Copyright (C) 1995 Sun Microsystems, Inc
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
3
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
4 Author: Vladimir Ivanovic <vladimir@Eng.Sun.COM>
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
5
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
6 This file is part of XEmacs.
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
7
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
8 XEmacs is free software: you can redistribute it and/or modify it
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
9 under the terms of the GNU General Public License as published by the
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
10 Free Software Foundation, either version 3 of the License, or (at your
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
11 option) any later version.
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
12
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
16 for more details.
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
17
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
18 You should have received a copy of the GNU General Public License
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
19 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
20
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
21 /* See `tooltalk-load-file-handler' in the file lisp/tooltalk/tooltalk-init.el
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
22 for the receiver side. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
23
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
24 #include <desktop/tt_c.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
25 #include <stdio.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
26 #include <stdlib.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
27 #include <sys/wait.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
28
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
29 Tt_status tter;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
30
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
31 #define exit_err_ptr(ptr) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
32 if ((tter = tt_ptr_error(ptr)) != TT_OK) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
33 { fprintf(stderr, "%d:%s\n", __LINE__, tt_status_message(tter)); exit(1); }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
34
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
35 #define exit_err(stat) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
36 if ((tter = stat) != TT_OK) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
37 { fprintf(stderr, "%d:%s\n", __LINE__, tt_status_message(tter)); exit(1); }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
38
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
39 Tt_callback_action callback_fn(Tt_message msg, Tt_pattern pat);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
40 static Tt_message create_new_message(char *pathname);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
41 static int initialize_tooltalk(void);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
42 static void usage(void);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
43
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
44 static char* tt_procid;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
45
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
46 Tt_callback_action
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
47 callback_fn(Tt_message msg, Tt_pattern pat)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
48 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
49 tt_message_destroy(msg);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
50 return TT_CALLBACK_PROCESSED;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
51 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
52
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
53 static Tt_message
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
54 create_new_message(char *pathname)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
55 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
56 Tt_message msg;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
57
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
58 msg = tt_message_create();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
59 exit_err_ptr(msg);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
60
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
61 exit_err(tt_message_address_set (msg, TT_PROCEDURE));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
62 exit_err(tt_message_class_set (msg, TT_REQUEST));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
63 exit_err(tt_message_scope_set (msg, TT_SESSION));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
64 exit_err(tt_message_op_set (msg, "emacs-load-file"));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
65 exit_err(tt_message_arg_add (msg, TT_IN, "file", pathname));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
66 exit_err(tt_message_callback_add(msg, callback_fn));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
67
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
68 return msg;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
69 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
71 static int
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
72 initialize_tooltalk(void) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
73 int rcode;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
74
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
75 tt_procid = tt_open();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
76 if ((rcode = tt_ptr_error(tt_procid)) != TT_OK) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
77 return rcode;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
78 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
79
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
80 if ((rcode = tt_session_join(tt_default_session())) != TT_OK) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
81 return (rcode);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
82 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
83 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
84
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
85
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
86 static void
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
87 usage(void)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
88 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
89 fprintf(stderr,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
90 "Usage: load-file pathname\n\n");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
91 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
92
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
93 void
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
94 main(argc, argv)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
95 int argc;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
96 char *argv[];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
97 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
98
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
99 Tt_message msg;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
100
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
101 if (argc != 2) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
102 usage();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
103 exit(0);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
104 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
105
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
106 exit_err(initialize_tooltalk());
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
107
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
108 msg = create_new_message(argv[1]);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
109
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
110 exit_err(tt_message_send(msg));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
111
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
112 return;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
113 }