annotate src/energize.c @ 186:24ac94803b48

Added tag r20-3b19 for changeset 3d6bfa290dbd
author cvs
date Mon, 13 Aug 2007 09:55:30 +0200
parents 3d6bfa290dbd
children
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 /****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ***
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 *** Copyright (c) 1990 by Sun/Lucid, All Rights Reserved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 *** Copyright (c) 1991-1993 by Lucid, Inc. All Rights Reserved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ***
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 *****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 #ifdef ENERGIZE /* whole file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 /* Display Context for the icons */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 #include <Xm/DialogS.h>
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 82
diff changeset
19 #include "../lwlib/lwlib.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include "process.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 /* Energize editor requests and I/O operations */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "energize.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "systime.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "sysfile.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "syssignal.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 #ifndef CBFileYourself
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 /* This means that emacs is being compiled against the connection library
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 and headers that go with an Energize protocol less than 0.10. We need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 to do some slightly different things in this file because of that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Note that if Emacs is compiled against the 3.0 version of the connection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 library and associated headers, it can still talk to 2.1- or 2.5-level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 servers. But the opposite is not true.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 # define ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 /* The Connection library
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 extern void CWriteQueryChoicesRequest ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 extern void CWriteExecuteChoicesRequest ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 extern void CWriteSheetRequest ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 extern void CWriteSetControlRequest ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 extern void CWriteChoice ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 extern void CWriteProtocol ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 extern int CGetPortNumber ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 /************** Typedefs and Structs ***********************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 /* structure argument used by the next mapping function */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 typedef struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 int n_extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 } binfo_and_n_extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 typedef struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 BufferInfo* binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 int state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 int tell_energize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 } binfo_and_state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 struct reply_wait
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 int serial;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 EId objectId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 EId genericId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 EId itemId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 char answered_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 char status;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 char* message;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 Lisp_Object menu_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Lisp_Object only_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 struct reply_wait* next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 static struct reply_wait *global_reply_wait;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Lisp_Object Venergize_kernel_busy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Lisp_Object Qenergize_kernel_busy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Lisp_Object Venergize_attributes_mapping;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 int energize_extent_gc_threshold;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Lisp_Object Venergize_kernel_busy_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 Lisp_Object Qenergize_kernel_busy_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Lisp_Object Venergize_menu_update_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Lisp_Object Qenergize_menu_update_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 Lisp_Object Qenergize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Lisp_Object Qenergize_auto_revert_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 static void set_energize_extent_data (EXTENT extent, void *data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 static char *kernel_buffer_type_to_elisp_type (char *kernel_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 static CONST void *get_object (EId id, BufferInfo *binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 static void put_object (EId id, BufferInfo *binfo, void *object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 static void remove_object (EId id, BufferInfo *binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 static void free_GDataclass (GDataClass *cl, BufferInfo *binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 static void free_GenericData (GenericData *gen, BufferInfo *binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 static void free_Energize_Extent_Data (Energize_Extent_Data *, BufferInfo *,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 enum Energize_Object_Free_Type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 static BufferInfo *get_buffer_info_for_emacs_buffer (Lisp_Object emacs_buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Editor *editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 static void put_buffer_info (EId id, Lisp_Object emacs_buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 BufferInfo *binfo, Editor *editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 static void handle_sheet_control_change (Widget, EId sheet_id, void* arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 static Connection *make_energize_connection (Editor *editor,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 int fdin, int fdout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 static void close_energize_connection (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Lisp_Object Fclose_connection_to_energize (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 static void mark_all_extents_as_unmodified (BufferInfo *binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 Lisp_Object Fenergize_barf_if_buffer_locked (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Lisp_Object Fconnected_to_energize_p (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 static int get_energize_connection_and_buffer_id (Lisp_Object buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 void **conn_ptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 long *buffer_id_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 void restore_energize_extent_state (EXTENT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 /**************************** Variables *****************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* debugging variable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 int ignore_kernel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 Lisp_Object Venergize_kernel_modification_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 Lisp_Object Venergize_create_buffer_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 Lisp_Object Qenergize_create_buffer_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 Lisp_Object Qenergize_buffer_modified_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Lisp_Object Qbuffer_locked_by_energize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 Lisp_Object Qenergize_user_input_buffer_mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Lisp_Object Qenergize_make_many_buffers_visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 int inside_parse_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 /* List of all buffers currently managed by Energize. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 Staticpro'ed so that they don't get GC'ed from under us. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 static Lisp_Object Venergize_buffers_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 static Editor *energize_connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 static protocol_edit_options *peo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 static int request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 extern int current_debuggerpanel_exposed_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 extern int desired_debuggerpanel_exposed_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 extern int debuggerpanel_sheet;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 /**************************** Macros *****************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #define BUFFER_NOTIFY_BACKGROUND_BIT_SET_P(buffer) 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #define get_extent_data(id,binfo) (Energize_Extent_Data*)get_object(id, binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 #define get_class(id,binfo) (GDataClass*)get_object(id, binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #define get_generic(id,binfo) (GenericData*)get_object(id, binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 #define put_extent_data(id,binfo,obj) put_object(id, binfo, obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 #define put_class(id,binfo,obj) put_object(id, binfo, obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #define put_generic(id,binfo,obj) put_object(id, binfo, obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 #define remove_extent_data(id,binfo) remove_object(id, binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #define remove_class(id,binfo) remove_object(id, binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #define remove_generic(id,binfo) remove_object(id, binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #define DEBUGGER_PSHEET_NAME "DEBUGGER_P_SHEET"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 /* special graphics attribute meaning "use what anyone else's attributes" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 #define GA_NO_CHANGE 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 /* this number should be bigger than any of the "real" GA's */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 #define GA_MAX 0x1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 /**************************** Utilities *****************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 emacs_CWriteRequestBuffer (Connection* conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 /* don't kill emacs with SIGPIPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 SIGTYPE (*old_sigpipe)() =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (SIGTYPE (*) ()) signal (SIGPIPE, SIG_IGN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 result = CWriteRequestBuffer (conn); /* the real one; macroized later */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 signal (SIGPIPE, old_sigpipe);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 #define CWriteRequestBuffer emacs_CWriteRequestBuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 static Energize_Extent_Data *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 extent_to_data (Lisp_Object extent_obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 Energize_Extent_Data *ext = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 if (!EXTENTP (extent_obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 ext = energize_extent_data (XEXTENT (extent_obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 if (ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 if (EQ (ext->extent, extent_obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 return ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 return 0;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 data_to_extent (Energize_Extent_Data *ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 Lisp_Object extent = ext->extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 assert (EXTENTP (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 /* duplicate a string */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 static char*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 copy_string (char *s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 if (!s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 int len = strlen (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 char *res = (char *) xmalloc (len + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 return strcpy (res, s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /* Get objects from the hashtables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 static CONST void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 get_object_internal (EId id, c_hashtable table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 void *res;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 CONST void *found = gethash ((void*)id, table, &res);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 if (found) CHECK_OBJECT (res);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 return found ? res : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 static CONST void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 get_object (EId id, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 return get_object_internal (id, binfo->id_to_object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 put_object_internal (EId id, c_hashtable table, void *object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 if (!PUT_ABLE_OBJECT (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 error ("Can't put 0x%x in table", object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 CHECK_OBJECT (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 puthash ((void*)id, object, table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 put_object (EId id, BufferInfo *binfo, void *object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 put_object_internal (id, binfo->id_to_object, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 remove_object_internal (EId id, c_hashtable table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 void *res;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 if (gethash ((void*)id, table, &res))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 if (OBJECT_FREE (res))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 error ("Free'd object 0x%x still in table!", res);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 remhash ((void*)id, table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 else if (id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 /* #### If this happens for Energize_Extent_Data as a result of extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 finalization, this aborts (because gc_in_progress). These errors are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 awfully bad, so probably they should just be abort()s anyway... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 error ("EId %d not in table!", id);
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 remove_object (EId id, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 remove_object_internal (id, binfo->id_to_object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 /* maphash_function called by free_buffer_info */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 free_object (void *key, void *contents, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 BufferInfo *binfo = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 if (contents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 switch (OBJECT_SEAL (contents))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 case BUF_INFO_SEAL:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 case EXTENT_SEAL:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 free_Energize_Extent_Data ((Energize_Extent_Data *) contents,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 binfo, OFT_MAPHASH);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 case GDATA_CLASS_SEAL:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 free_GDataclass ((GDataClass *) contents, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 case GDATA_SEAL:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 free_GenericData ((GenericData *) contents, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 error ("Bad argument 0x%x to free_object()", contents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 static GDataClass *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 alloc_GDataclass (EId id, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
344 GDataClass *cl = xnew_and_zero (GDataClass);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 cl->seal = GDATA_CLASS_SEAL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 cl->id = id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 put_class (cl->id, binfo, cl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 return cl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 free_GDataclass (GDataClass *cl, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 if (cl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 remove_class (cl->id, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 SET_OBJECT_FREE (cl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 static GenericData *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 alloc_GenericData (EId id, GDataClass *cl, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 GenericData *gen = xnew (GenericData);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 gen->seal = GDATA_SEAL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 gen->id = id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 gen->cl = cl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 /* gen->image = 0;*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 gen->flags = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 gen->modified_state = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 put_generic (gen->id, binfo, gen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 return gen;
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 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 free_GenericData (GenericData *gen, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 if (gen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 remove_generic (gen->id, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 gen->cl = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 SET_OBJECT_FREE (gen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 /* Called to flush the extent from the hash table when Energize tells us to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 lose the extent. This is NOT called from the extent GC finalization method,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 because there would be a period before the next GC when we still had an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 Energize ID that the server thought was dead, and could concievably reuse.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 Since we protect extents from GC until Energize says they're done, if an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 extent still has Energize data by the time it gets collected, something is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 fucked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 free_Energize_Extent_Data (Energize_Extent_Data *ext, BufferInfo *binfo,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 enum Energize_Object_Free_Type free_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 if (ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 Lisp_Object extent_obj = data_to_extent (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 /* Remove the extent, remove the extent's pointer to the data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 and the data's pointer to the extent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 Fdetach_extent (extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 set_energize_extent_data (XEXTENT (extent_obj), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 ext->extent = Qnil; /* at this point, refs will abort */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 /* Remove the data from the hash table, and mark it as dead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 remove_extent_data (ext->id, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 ext->id = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 /* don't free this "sub-guy" via maphash, as it will get taken care
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 of during the course of the maphash without our doing anything */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 if (free_type != OFT_MAPHASH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 if (ext->extentType == CEGeneric)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 free_GenericData (ext->u.generic.gData, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 SET_OBJECT_FREE (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 return;
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 static BufferInfo *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 alloc_BufferInfo (EId id, Lisp_Object name, Lisp_Object filename,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 char *class_str, Editor *editor, Window win, int nobjects)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 BufferInfo *binfo = xnew (BufferInfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 Widget nw = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 Lisp_Object buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 if (win)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 char win_as_string [16];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 nw = XtWindowToWidget (get_x_display (Qnil), win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 if (nw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 nw = XtParent (nw);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
443
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 if (nw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 sprintf (win_as_string, "w%x", nw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 sprintf (win_as_string, "0x%x", win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 binfo->frame =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 Fx_create_frame (Qnil, Qnil, build_string (win_as_string));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 binfo->frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 /* try to re-use a buffer with the same file name if one already exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 * If a buffer already exists but is modified we should do a dialog and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 * ask the user what to do. For now I'll just use a new buffer in that case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 * ParseBuffer will erase the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 if (!NILP (filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 int offct = find_file_compare_truenames;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 find_file_compare_truenames = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 buffer = Fget_file_buffer (filename);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 find_file_compare_truenames = offct;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 if (!NILP (buffer) && !NILP (Fbuffer_modified_p (buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 if (NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 buffer = Fget_buffer_create (Fgenerate_new_buffer_name (name, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 binfo->seal = BUF_INFO_SEAL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 binfo->id = id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 binfo->flags = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 binfo->editor = editor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 binfo->id_to_object = make_hashtable (nobjects);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 binfo->emacs_buffer = buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 binfo->modified_state = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 binfo->editable = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 binfo->output_mark = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 binfo->buffer_type = kernel_buffer_type_to_elisp_type (class_str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 binfo->p_sheet_ids = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 binfo->n_p_sheets = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 binfo->note_ids = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 binfo->n_notes = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 #ifdef I18N4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 binfo->wcmap.valid = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 binfo->wcmap.modiff_stamp = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 binfo->wcmap.map = NULL;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
491 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 put_buffer_info (id, binfo->emacs_buffer, binfo, editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 Venergize_buffers_list = Fcons (buffer, Venergize_buffers_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 * if (nw){
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 * Lisp_Object window = Fframe_selected_window (binfo->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 * Fset_window_buffer (window, binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 * set_text_widget ((NoteWidget)nw,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 * FRAME_X_SHELL_WIDGET (XFRAME (binfo->frame)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 * }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 return binfo;
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 /* free a buffer_info */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 free_buffer_info (BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 maphash (free_object, binfo->id_to_object, (void *)binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 free_hashtable (binfo->id_to_object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 if (energize_connection && energize_connection->binfo_hash)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 if (binfo->id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 remhash ((void *)binfo->id, energize_connection->binfo_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 if (!NILP (binfo->emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 remhash (LISP_TO_VOID (binfo->emacs_buffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 energize_connection->binfo_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 binfo->id = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 binfo->emacs_buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 #ifdef I18N4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 if (binfo->wcmap.valid) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 binfo->wcmap.valid= 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 xfree(binfo->wcmap.map);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
531 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 SET_OBJECT_FREE (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 /* hash for BufferInfo structures */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 static BufferInfo*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 get_buffer_info_for_emacs_buffer (Lisp_Object emacs_buf, Editor *editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 BufferInfo *res;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 if (!editor || !editor->binfo_hash)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 void *vbuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 /* #### Probably should use a Lisp hash table for this; what if the last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 pointer to the buffer was in the editor struct? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 return (gethash (LISP_TO_VOID (emacs_buf),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 editor->binfo_hash,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (void *) &res)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 ? res : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 /* Called by mark_buffer. It is possible for the last remaining pointer to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 an extent object to be in an Energize_Extent_Data structure that is pointed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 at by the binfo->id_to_object table. Since Energize may still reference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 this object by its id (in fact, I think it may even "ressurect" a detached
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
560 extent) we must prevent the extent from being garbage collected. Aside
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 from the obvious lossage (that the extent itself would be trashed) this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 would also cause us to free the Energize_Extent_Data which the server still
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 believes we have. The buffers all get marked because they're on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 `Venergize_buffers_list'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 So, an Energize extent or buffer only ever gets collected when the server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 has claimed that it is done with it (or when the connection is closed).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 Of course, by keeping pointers to lisp objects in C structs under non-lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 hash tables, we again build in the assumption that GC never relocates.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 /* FUCK!! It's not standard-conforming to cast pointers to functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 to or from void*. Give me a fucking break! */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
575 struct markobj_kludge_fmh
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 void (*markobj) (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 mark_energize_buffer_data_extent_mapper (void *key, void *val, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 if (OBJECT_SEAL (val) == EXTENT_SEAL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 struct markobj_kludge_fmh *fmh = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 struct Energize_Extent_Data *ext = (Energize_Extent_Data *) val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 /* Lisp_Object extent = data_to_extent (ext); (will abort if marked) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 Lisp_Object extent = ext->extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 assert (GC_EXTENTP (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 ((*fmh->markobj) (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 mark_energize_buffer_data (struct buffer *b,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 struct markobj_kludge_fmh fmh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 if (!energize_connection || !energize_connection->binfo_hash)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 XSETBUFFER (buffer, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 if (! binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 fmh.markobj = markobj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 maphash (mark_energize_buffer_data_extent_mapper, binfo->id_to_object, &fmh);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 struct buffer_and_sheet_ids
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 EId buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 EId sheet_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 find_sheet_id (void* key, void* contents, void* arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 BufferInfo* binfo = (BufferInfo*)contents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 EId buffer_id = (EId)key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 struct buffer_and_sheet_ids* result = (struct buffer_and_sheet_ids*)arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 if (!result->buffer_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 for (i = 0; i < binfo->n_p_sheets; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 if (binfo->p_sheet_ids [i] == result->sheet_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 result->buffer_id = buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 static EId
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 buffer_id_of_sheet (EId id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 Editor *editor = energize_connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 struct buffer_and_sheet_ids basi;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 if (!energize_connection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 basi.buffer_id = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 basi.sheet_id = id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 maphash (find_sheet_id, editor->binfo_hash, (void*)&basi);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 return basi.buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 static long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 get_energize_buffer_id (Lisp_Object emacs_buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 Editor *editor = energize_connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 BufferInfo *res;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 if (!editor || !editor->binfo_hash)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 else if (!gethash (LISP_TO_VOID (emacs_buf), editor->binfo_hash, (void *)&res))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 return (long) res->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 static char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 kernel_buffer_type_to_elisp_type (char *kernel_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 struct buffer_type_struct *bts =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 kernel_buffer_types_to_elisp_buffer_types_vector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 char *elisp_type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 if (!kernel_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 return UNINITIALIZED_BUFFER_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 while (bts->kernel_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 if (!strcmp (bts->kernel_name, kernel_type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 elisp_type = bts->elisp_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 bts++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 if (!elisp_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 return kernel_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 return elisp_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 get_buffer_type_for_emacs_buffer (Lisp_Object emacs_buf, Editor *editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 if (!(binfo = get_buffer_info_for_emacs_buffer (emacs_buf, editor)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 if (!binfo->buffer_type) binfo->buffer_type =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 UNINITIALIZED_BUFFER_TYPE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 return intern (binfo->buffer_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 set_buffer_type_for_emacs_buffer (Lisp_Object emacs_buf, Editor *editor,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 Lisp_Object type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 if (!(binfo = get_buffer_info_for_emacs_buffer (emacs_buf, editor)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 char *type_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 if (NILP (type)) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 if (SYMBOLP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 XSETSTRING (type, XSYMBOL (type)->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 if (STRINGP (type))
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
722 type_string = (char *) XSTRING_DATA (type);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 type_string = copy_string (type_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 if (!type_string) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 binfo->buffer_type = type_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 return intern (binfo->buffer_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 static BufferInfo*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 get_buffer_info_for_id (EId id, Editor *editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 BufferInfo *res;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 return (gethash ((void *)id, editor->binfo_hash, (void *)&res))?res:0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 put_buffer_info (EId id, Lisp_Object emacs_buf, BufferInfo *binfo,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 Editor *editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 puthash ((void *)id, binfo, editor->binfo_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 puthash (LISP_TO_VOID (emacs_buf), binfo, editor->binfo_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 remove_buffer_info (EId id, Lisp_Object emacs_buf, Editor *editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 void *vbuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 remhash ((void *)id, editor->binfo_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 remhash (LISP_TO_VOID (emacs_buf), editor->binfo_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 /* Conversion between Energize and Emacs buffer positions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 #if defined(I18N4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 /* An emacs position is an index into the buffer... In I18N, foreign
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 characters take up the same amount of space as ASCII characters. Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 is using wide characters. The first position is 1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 An energize position is a straight byte offset into the file when it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 saved onto disk. Foreign characters take up more than one byte. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 first position is 0. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 #define WCMAP_SETSIZE(wcmap,n) { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (wcmap).mapsize = (n); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (wcmap).map = (WCharMapRec *) xrealloc((wcmap).map, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (n) * sizeof(WCharMapRec)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 #define WCMAP_ENLARGE(wcmap) WCMAP_SETSIZE(wcmap, 2*(wcmap.mapsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 #ifndef MB_LEN_MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 #define MB_LEN_MAX 10 /* arbitrarily large enough */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
779 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 static char wcsize_buf[MB_LEN_MAX];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 #define WCSIZE(wc) (isascii(wc) ? 1 : wctomb(wcsize_buf,wc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 #define SANITY_CHECK_NOT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 #ifdef SANITY_CHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 static int sanity=0;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
787 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 sync_buffer_widechar_map (BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 /* #### - check this: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 assert (XBUFFER (binfo->emacs_buffer) == current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 if (!binfo->wcmap.valid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 binfo->wcmap.valid= 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 binfo->wcmap.modiff_stamp= -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 binfo->wcmap.map= NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 WCMAP_SETSIZE (binfo->wcmap, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 if (binfo->wcmap.modiff_stamp == BUF_MODIFF (current_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 return;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 int nbytes, maxpos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 pos = 0, /* start at zero instead of 1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 adjustment = 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 mapindex= 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 wchar_t *buf, t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 #ifdef SANITY_CHECK
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
816 stderr_out ("rebuilding widechar map for %s\n", XSTRING_DATA (current_buffer->name));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
818
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 /* #### this is not gonna compile. move_gap() is now a private function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 inside of insdel.c and it should stay that way. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 if (BUF_BEGV (current_buffer) < GPT && BUF_ZV (current_buffer) > GPT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 move_gap (current_buffer, BUF_BEGV (current_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 binfo->wcmap.modiff_stamp = BUF_MODIFF (current_buffer);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
824
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 buf = BUF_BEG_ADDR (current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 maxpos= (BUF_Z (current_buffer) - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 wctomb (NULL, 0); /* reset shift state of wctomb() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 binfo->wcmap.map[mapindex].pos= pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 binfo->wcmap.map[mapindex].eucsize=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 ((pos<maxpos) ? (nbytes= WCSIZE(buf[pos])) : 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 do {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 while ((pos < maxpos) && (nbytes == WCSIZE(t = buf[pos])))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 ++pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 binfo->wcmap.map[mapindex++].endpos= pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 if (mapindex == binfo->wcmap.mapsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 WCMAP_ENLARGE(binfo->wcmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 if (pos < maxpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 binfo->wcmap.map[mapindex].pos= pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 binfo->wcmap.map[mapindex].eucsize= nbytes= WCSIZE(t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 } while (pos < maxpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 WCMAP_SETSIZE(binfo->wcmap, mapindex);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 static EnergizePos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 EnergizePosForBufpos (Bufpos char_pos, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 int mapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 WCharMapRec map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 EnergizePos byte_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 sync_buffer_widechar_map (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 --char_pos; /* preadjust emacs position */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 mapindex=0, byte_pos=0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 while ((mapindex < binfo->wcmap.mapsize) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (char_pos > (map= binfo->wcmap.map[mapindex++]).pos)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 if (char_pos > map.endpos) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 byte_pos += ((map.endpos - map.pos) * map.eucsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 } else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 byte_pos += ((char_pos - map.pos) * map.eucsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 /* there should be a sanity check here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 #ifdef CHECK_SANITY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 if (!sanity) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 Bufpos check_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 sanity=1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 check_pos= BufposForEnergizePos(byte_pos, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 sanity=0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 if (check_pos != char_pos) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 stderr_out ("ezpos(%d) = %d, Bufpos(%d) = %d\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 char_pos, byte_pos, byte_pos, check_pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
880 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 return byte_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 static Bufpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 BufposForEnergizePos (EnergizePos ez_pos, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 int mapindex, x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 WCharMapRec map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 Bufpos char_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 EnergizePos byte_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 sync_buffer_widechar_map(binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 mapindex=0, byte_pos=0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 while ((mapindex < binfo->wcmap.mapsize) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 (byte_pos <= ez_pos)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 map= binfo->wcmap.map[mapindex++];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 x= (map.eucsize*(map.endpos-map.pos));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 if (ez_pos > (byte_pos + x)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 byte_pos += x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 char_pos = map.endpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 } else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 char_pos = (map.pos + ((ez_pos - byte_pos)/map.eucsize));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 char_pos= (char_pos >= (1 << VALBITS)) ? BUF_Z (current_buffer) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (char_pos + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 #ifdef CHECK_SANITY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 if (!sanity) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 EnergizePos check_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 sanity=1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 check_pos= EnergizePosForBufpos(char_pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 sanity=0;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
915
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 if (check_pos != ez_pos) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 stderr_out ("Bufpos(%d) = %d, EnergizePosForBufpos(%d) = %d\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 ez_pos, char_pos, char_pos, check_pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
921 #endif
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
922 return char_pos;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 #else /* !I18N4 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 static Bufpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 BufposForEnergizePos (EnergizePos energizePos, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
930 return ((energizePos >= (1 << VALBITS)) ? BUF_Z (current_buffer) :
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (energizePos + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 static EnergizePos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 EnergizePosForBufpos (Bufpos emacs_pos, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 return (emacs_pos - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 #endif /* !I18N4 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
943 DEFUN ("energize-update-menubar", Fenergize_update_menubar, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 obsolete
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
945 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
946 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
952 DEFUN ("energize-extent-menu-p", Fenergize_extent_menu_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 Whether the extent has a set of commands defined by Energize.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
954 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
955 (extent_obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 CHECK_EXTENT (extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 if (NILP (Fconnected_to_energize_p ()))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 Energize_Extent_Data *ext = extent_to_data (extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 return (ext && ext->extentType == CEGeneric) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 }
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 /* Do what is needed so that the delayed requests will be notified by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 ** the event loop */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 extern void mark_process_as_being_ready (struct Lisp_Process* process);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 notify_delayed_requests (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 if (energize_connection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 && !NILP (energize_connection->proc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 && energize_connection->conn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 && CRequestDelayedP (energize_connection->conn))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
981 this function no longer exists.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (Replaced by mark_what_as_being_ready, with different arguments.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 Rewrite this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 mark_process_as_being_ready (XPROCESS (energize_connection->proc));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 /******************* IMAGE storage maintenance *******************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 extern GLYPH image_instance_to_glyph (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 static c_hashtable image_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 extern char *strdup ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 extern Lisp_Object Fbuffer_file_name (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 extern Lisp_Object Fmake_face (Lisp_Object name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 extern Lisp_Object Fface_foreground (Lisp_Object face, Lisp_Object frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 extern Lisp_Object Fface_background (Lisp_Object face, Lisp_Object frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 /* Don't let any of these get GCed, since we hold their GLYPH ids in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 a non-lisp hash table (image_cache) . */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 static Lisp_Object Vall_energize_pixmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 /* Parses an image from the image language */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 static GLYPH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 read_energize_image_data (Connection *conn, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 ReqLen l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 char *s = CGetVstring (conn, &l);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 char pix_name [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 char buf [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 int attr_number, pix_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 char *file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 GLYPH result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 /* It is bad news to pass the address of a short to gethash. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 int hashed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 if (s[0] != 'f')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 if (gethash ((void *) s, image_cache, (void *) &hashed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 /* If we have already parsed this image spec (string=) then just return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 the old glyph, instead of calling the lisp code, x_get_pixmap, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 XtGetSubResources again. The result may be 0 if there is no pixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 file name in the resource database.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 return (GLYPH) hashed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 if (3 != sscanf (s, "f %d p %d %s", &attr_number, &pix_len, pix_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 sprintf (buf, "unparsable image: \"%s\"", s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 error (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 assert (pix_len == strlen (pix_name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 /* Read the pixmap file name for this image from the resource db */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 XtResource resource [1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 resource[0].resource_name = pix_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 resource[0].resource_class = XtCBitmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 resource[0].resource_type = XtRString;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 resource[0].resource_size = sizeof (char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 resource[0].resource_offset = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 resource[0].default_type = XtRImmediate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 resource[0].default_addr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 file = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 XtGetSubresources (FRAME_X_SHELL_WIDGET (XFRAME (Fselected_frame (Qnil))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (XtPointer) &file, "image", "Image", resource, 1, NULL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 if (! file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 Lisp_Object lfile = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 Lisp_Object p = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 sprintf (buf, "attribute%d", attr_number);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 GCPRO2 (lfile, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 lfile = build_string (file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 p = Fmake_image_instance (lfile, Qnil); /* may gc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 result = image_instance_to_glyph (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 Vall_energize_pixmaps = Fcons (Fcons (make_int (result), p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 Vall_energize_pixmaps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 if (!EQ (p, glyph_to_image_instance (result)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 if (XIMAGE_INSTANCE (p)->depth == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 /* if depth is >0 then this is an XPM, and its colors are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 controlled by the fg/bg of a face. So don't bother making a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 face for it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 Lisp_Object face, fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 struct face *c_face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 /* #### review this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 face = Fmake_face (intern (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 fg = FACE_FOREGROUND (face, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 bg = FACE_BACKGROUND (face, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 Fcolorize_image_instance (p, fg, bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 /* CGetVstring returns a pointer into the connection buffer; we need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 copy it to use it as a hash key. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 s = strdup (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 hashed = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 puthash ((void *) s, (void *) hashed, image_cache);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 /* Parses Classes from the connection buffer. Defines them for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 * the buffer given as argument */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 read_energize_class_data (Connection *conn, unsigned int number,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 BufferInfo *binfo, unsigned int modify_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 CClass *ptr; /* pointer to class data in buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 GDataClass *cl; /* unmodified class data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 GLYPH g;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 for (i = 0; i < number; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 ptr = CGet (conn, CClass);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 g = read_energize_image_data (conn, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 cl = get_class (ptr->classId, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 if (!cl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 cl = alloc_GDataclass (ptr->classId, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 else if (!modify_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 message("Attempt to create class with existing Id %8x", ptr->classId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 if (ignore_kernel) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 /* if it did exist, we just clobber it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 if (cl->flags != ptr->flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 cl->flags = ptr->flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 BUF_FACECHANGE (XBUFFER (binfo->emacs_buffer))++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 if (cl->glyph != g)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 cl->glyph = g;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 BUF_FACECHANGE (XBUFFER (binfo->emacs_buffer))++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 /* Parse GenericData form the connection buffer. Defines them for the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 * given as argument */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 read_energize_generic_data (Connection *conn, unsigned int number,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 BufferInfo *binfo, unsigned int modify_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 CGeneric *ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 GenericData *gen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 GDataClass *cl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 GLYPH g;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 for (i = 0; i < number; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 ptr = CGet (conn, CGeneric);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 g = read_energize_image_data (conn, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 gen = get_generic (ptr->genericId, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 cl = get_class (ptr->classId, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 if (!gen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 /* create generic if it didn't already exist */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 if (!cl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 message ("Attempt to create generic %8x with undefined class %8x",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 ptr->genericId, ptr->classId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 gen = alloc_GenericData (ptr->genericId, cl, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 gen->glyph = g;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 if (ptr->flags != 0xff) gen->flags = ptr->flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 gen->attribute = ptr->attribute;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 else if (!modify_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 message("Attempt to create generic with existing id %8x",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 ptr->genericId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 else{
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 /* modify the generic */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 int modified = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 if (cl != gen->cl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 modified = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 gen->cl = cl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 if (gen->glyph != g)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 modified = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 gen->glyph = g;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 if (ptr->flags != 0xff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 modified = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 gen->flags = ptr->flags;
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 (gen->attribute != ptr->attribute)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 modified = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 gen->attribute = ptr->attribute;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 if (modified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 BUF_FACECHANGE (XBUFFER (binfo->emacs_buffer))++;
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 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 insert_one_extent (CExtent* ptr, BufferInfo* binfo, int modify_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 Energize_Extent_Data *ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 GenericData *gen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 Bufpos extent_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 Bufpos extent_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 int set_endpoints_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 int created_ext_data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 Lisp_Object buffer = binfo->emacs_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 ext = get_extent_data (ptr->extentId, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 if (!ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 ext = (Energize_Extent_Data *) xmalloc (sizeof (Energize_Extent_Data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 created_ext_data = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 ext->seal = EXTENT_SEAL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 ext->id = ptr->extentId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 ext->extentType = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 ext->extent = Qnil; /* not a normal value: set before we return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 ext->start_pixmap = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 ext->end_pixmap = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 ext->warn_modify = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 put_extent_data (ext->id, binfo, ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 else if (!modify_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 message ("Creating extent with existing id %8x", ptr->extentId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 ext->extentType = ptr->extentType;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 switch (ptr->extentType)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 case CEAttribute:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 ext->u.attr.attrValue = ptr->data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 case CEAbbreviation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 ext->u.abbrev.isOpened = ptr->data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 case CEWriteProtect:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 case CEGeneric:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 gen = get_generic (ptr->data, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 if (!gen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 message ("NewExtents: Nonexistent generic data %8x", ptr->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 ext->u.generic.gData = gen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 message ("Unknown extent type %d", ptr->extentType);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 /* instruct redisplay to recompute the frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 BUF_FACECHANGE (XBUFFER (binfo->emacs_buffer))++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 /* ptr->startPosition == ptr->endPosition == ~0 means to not change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 * the extent endpoints */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 if (ptr->startPosition == ~0 && ptr->endPosition == ~0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 set_endpoints_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 extent_start = ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 extent_end = ~0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 struct buffer *b = XBUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 extent_start = BufposForEnergizePos (ptr->startPosition, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 extent_end = BufposForEnergizePos (ptr->endPosition, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 /* We have to be careful to create the extents with endpoints
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 which are in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 Under certain obscure conditions involving changes made outside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 of Emacs (bug 19983), the server and the editor can have different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 ideas about where the extents are, so these numbers can be off
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 temporarily (during the window between read_energize_extent_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 and Qenergize_auto_revert_buffer in read_energize_buffer_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 from ModifyBufferRType).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 /* Don't allow 0-length extents, as they tend to disappear. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 if (extent_start >= extent_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 extent_end = extent_start + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 /* Don't let them outside the buffer (even if we grew them). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 if (extent_start >= BUF_Z (b)) extent_start = BUF_Z (b) - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 if (extent_end >= BUF_Z (b)) extent_end = BUF_Z (b) - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 if (extent_start < BUF_BEG (b)) extent_start = BUF_BEG (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 if (extent_end < BUF_BEG (b)) extent_end = BUF_BEG (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 /* If they're 0-length again, then the extent must be at point-max.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 In that case, extent it backward (if possible) instead of forward.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 if (extent_start >= extent_end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 && BUF_BEG (b) != BUF_Z (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 extent_start = extent_end - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 /* no zero width extent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 if (set_endpoints_p && extent_start == extent_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 extent_end += 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 /* Now create the extent for the extent-data. There is a 1:1 mapping between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 these, and an extent-data points at an extent (and that extent points
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 back) until energize tells us to delete the extent. This is the only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 function in which ext->extent is ever not an extent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 if (created_ext_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 ext->extent = Fmake_extent (make_int (extent_start),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 make_int (extent_end), buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 set_energize_extent_data (XEXTENT (ext->extent), ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 restore_energize_extent_state (XEXTENT (ext->extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 if (!EQ (buffer, extent_buffer (XEXTENT (ext->extent))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 signal_simple_error_2 ("extent not part of buffer", ext->extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 if (set_endpoints_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 Fset_extent_endpoints (ext->extent, make_int (extent_start),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 make_int (extent_end), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 restore_energize_extent_state (XEXTENT (ext->extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 if (energize_extent_data (XEXTENT (ext->extent)) != ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 extent_duplicable_p (XEXTENT (ext->extent)) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 extent_unique_p (XEXTENT (ext->extent)) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 /* Parse GenericData from the connection buffer. Defines them for the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 * given as argument. Creates the Emacs extents while parsing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 * Energize sends the extents ordered by increasing starting position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 I don't think the following is true any more:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 * Emacs is __much__ faster at inserting them in decreasing starting position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 * also for overlaps to work correctly the outmost extents have to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 * inserted first. This is what the recursive function is trying to do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 read_energize_extent_data (Connection *conn, unsigned int number,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 BufferInfo *binfo, unsigned int modify_ok,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 int extent_offset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 CExtent* all_extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 /* Gets the extents from the connection */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 all_extents = CGetN (conn, CExtent, number);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 /* adjusts the endpoints with the offset */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 for (i = 0; i < number; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 if (all_extents [i].startPosition != ~0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 all_extents [i].startPosition += extent_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 if (all_extents [i].endPosition != ~0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 all_extents [i].endPosition += extent_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 /* inserts them all */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 for (i = number - 1; i >= 0; i--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 insert_one_extent (all_extents + i, binfo, modify_ok);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 /* Parses a CBuffer in the connection stream. If (delete_from != delete_to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 all characters in this range must be deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 string_buffer_compare (char *string, int string_len,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 struct buffer *buf, Bufpos bufpos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 /* !!#### needs to be rewritten for Mule */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 Bufpos first_section_end = BUF_CEILING_OF (buf, bufpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 /* degenerate case, which we consider to be "true" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 if (string_len == 0) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 /* string won't fit in the buffer, so comparison fails */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 if (BUF_Z (buf) < (bufpos + string_len)) return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 /* bad starting position, so comparison fails */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 if (bufpos < BUF_BEG (buf)) return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 char *first_section_chars = (char *) BUF_BYTE_ADDRESS (buf, bufpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 int comp = strncmp (string, first_section_chars,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 first_section_end - bufpos);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1403
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 if (comp) return comp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 if (first_section_end < BUF_ZV (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 /* there is a second section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 char *second_section_chars =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 (char *) BUF_BYTE_ADDRESS (buf, first_section_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 int comp = strncmp (string + (first_section_end - bufpos),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 second_section_chars,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 BUF_ZV (buf) - first_section_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 if (comp) return comp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 /* called by unwind protect, from within ParseBuffer and HandleRemoveExtents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 restore_buffer_state (Lisp_Object state_cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 Lisp_Object bufferId_obj = Fcar (state_cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 unsigned int bufferId = (unsigned int) get_opaque_ptr (bufferId_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 Lisp_Object buffer_modified_state = Fcar (Fcdr (state_cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 Lisp_Object clear_undo_list = Fcdr (Fcdr (state_cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 if (bufferId != 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 if (energize_connection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 && (binfo = get_buffer_info_for_id (bufferId, energize_connection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 && !NILP (binfo->emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 /* Always ignore what Energize tells us about the buffer read-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 state. For files Emacs knows better and for non-file buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 Emacs is hacking the read-only state anyway so let it be. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 XBUFFER (binfo->emacs_buffer)->read_only = buffer_modified_state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 if (!NILP (clear_undo_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 XBUFFER (binfo->emacs_buffer)->undo_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 /* this is just temporary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 message ("Bad bufferId cons cell!");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 /* #### this shit should be using generate-new-buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 rename_the_buffer (Lisp_Object new_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 char number [8];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 Lisp_Object name = new_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 GCPRO1 (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 while (!NILP (Fget_buffer (name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 sprintf (number, "<%d>", ++count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 name = concat2 (new_name, build_string (number));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 Frename_buffer (name, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 destroy_if_energize_extent (EXTENT e, void* arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 struct Energize_Extent_Data *ext = energize_extent_data (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 if (ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 BufferInfo *binfo = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 buffer = extent_buffer (XEXTENT (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 Fdelete_extent (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 if (BUFFERP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 if (binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 free_Energize_Extent_Data (ext, binfo, OFT_GC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 /* #### partly duplicated in free_Energize_Extent_Data() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 set_energize_extent_data (e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 ext->extent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 destroy_all_energize_extents (struct buffer *buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 map_extents (BUF_BEG (buf), BUF_Z (buf), destroy_if_energize_extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 NULL, make_buffer (buf), 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 ME_END_CLOSED | ME_MIGHT_MODIFY_EXTENTS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 restore_inside_parse_buffer (Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 inside_parse_buffer = XINT (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 hack_window_point (Lisp_Object window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 Lisp_Object old_point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 Lisp_Object old_start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 int keep_start_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 /* If we've reverted a buffer, sometimes we want to make sure that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 the window-point doesn't move. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 Fset_marker (XWINDOW (window)->pointm, old_point, binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 if (NILP (binfo->output_mark) && keep_start_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 Fset_marker (XWINDOW (window)->start, old_start, binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 XWINDOW (window)->force_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 read_energize_buffer_data (Connection *conn, CBuffer *cbu, Editor *editor,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 EnergizePos delete_from, EnergizePos delete_to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 Window win, int relative_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 char *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 ReqLen name_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 char *pathname_str;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 ReqLen pathname_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 char *buffer_class_str;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 ReqLen buffer_class_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 Lisp_Object pathname = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 Lisp_Object pathname_directory = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 Lisp_Object buffer_name = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 Lisp_Object filename = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 Lisp_Object display_window = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 int modifying_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 Bufpos previous_point;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 Bufpos from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 Bufpos to;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 Bufpos display_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 char *text;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 ReqLen text_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 int get_chars_from_file = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 Lisp_Object modified_buffer_flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 int extent_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 Lisp_Object restore_buffer_state_cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 int should_keep_window_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 int no_text_deleted = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 /* For some reason calling the GC before parsing the buffer data
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1571 makes a better usage of memory and emacs leaks less when
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1572 creating/deleting LE browser buffers.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 However you don't want to call GC all the tiem so we only do it if the request
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 will create more than a given number of extents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 if (cbu->nExtent > energize_extent_gc_threshold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 garbage_collect_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 record_unwind_protect (save_restriction_restore, save_restriction_save ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 Fwiden (Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 GCPRO4 (buffer_name, pathname, pathname_directory, filename);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 name = CGetVstring (conn, &name_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 /* read the pathname and buffer-class -- Editor Protocol > 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 pathname_str = CGetVstring (conn, &pathname_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 buffer_class_str = CGetVstring (conn, &buffer_class_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 if (name_len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 buffer_name = build_string (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 if (pathname_len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 pathname = build_string (pathname_str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 /* set up pathname_directory */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 if (!NILP (pathname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 if (NILP (Ffile_directory_p (pathname)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 pathname_directory = Ffile_name_directory (pathname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 pathname_directory = pathname;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 /* make sure that pathname_directory ends with a '/', if it exists */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 if (!NILP (pathname_directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 {
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
1607 Bufbyte *str = XSTRING_DATA (pathname_directory);
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
1608 Bytecount size = XSTRING_LENGTH (pathname_directory);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 if (str[size - 1] != '/')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 Lisp_Object tmp = make_string (str, size + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 set_string_byte (XSTRING (tmp), size, '/');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 pathname_directory = tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 /* get or create the BufferInfo */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 if (binfo = get_buffer_info_for_id (cbu->bufferId, editor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 modifying_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 if (NILP (buffer_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 char *dummy = "*Unnamed " IDENTITY_CRISIS " Buffer*";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 buffer_name = build_string (dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 /* create new buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 binfo = alloc_BufferInfo (cbu->bufferId, buffer_name, pathname,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 buffer_class_str, editor, win,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 cbu->nExtent + cbu->nClass + cbu->nGeneric);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 XBUFFER (binfo->emacs_buffer)->read_only =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 cbu->flags == CBReadOnly ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 /* remember where we were in which buffer before we change things */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 if (current_buffer != XBUFFER (binfo->emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 record_unwind_protect (save_excursion_restore, save_excursion_save ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 /* set default-directory */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 if (!NILP (pathname_directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 if (!NILP (Ffile_directory_p (pathname_directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 && !NILP (Ffile_executable_p (pathname_directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 Fset (Qdefault_directory, pathname_directory);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 /* Never set this to nil, that loses badly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 /* else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 Fset (Qdefault_directory, Qnil); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 /* set file name unless it's a directory */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 if (!NILP (pathname) && NILP (Ffile_directory_p (pathname)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 filename = Fexpand_file_name (pathname, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 Fset (Qbuffer_file_name, filename);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 /* set buffer name */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 if (!NILP (buffer_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 if (modifying_p
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
1665 && strcmp ((char*) XSTRING_DATA (buffer_name),
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
1666 (char*) XSTRING_DATA (XBUFFER (binfo->emacs_buffer)->name)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 rename_the_buffer (buffer_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 if (modifying_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 run_hook (Venergize_kernel_modification_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 /* Make sure buffer is current after the hook */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 modified_buffer_flag = Fbuffer_modified_p (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 /* enables buffer edits */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 restore_buffer_state_cons =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 Fcons (make_opaque_ptr ((void *) cbu->bufferId),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 Fcons (XBUFFER (binfo->emacs_buffer)->read_only, Qt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 record_unwind_protect (restore_buffer_state, restore_buffer_state_cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 XBUFFER (binfo->emacs_buffer)->read_only = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 /* any changes here should take place "underneath" these hooks, I think */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 specbind (Qenergize_buffer_modified_hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 specbind (Qfirst_change_hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 specbind (Qbefore_change_functions, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 specbind (Qbefore_change_function, Qnil); /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 /* As energize does not use the after-change-function it's not useful to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 bind it to NIL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 /* specbind (Qafter_change_functions, Qnil); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 /* specbind (Qafter_change_function, Qnil); #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 specbind (Qinhibit_read_only, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 record_unwind_protect (restore_inside_parse_buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 make_int (inside_parse_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 inside_parse_buffer = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 specbind (Qbuffer_undo_list, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 XBUFFER (binfo->emacs_buffer)->undo_list = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 /* BufposForEnergizePos uses the current-buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 from = BufposForEnergizePos (delete_from, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 to = BufposForEnergizePos (delete_to, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 /* See if we should get the characters from the file directly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 Only protocol 0.10+ will do this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 #ifdef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 get_chars_from_file = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 if (cbu->flags != 0xff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 get_chars_from_file = cbu->flags & CBFileYourself;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 get_chars_from_file = binfo->flags & CBFileYourself;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1718
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 /* Even when we get the chars from a file there is an empty text string */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 if (get_chars_from_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 text = CGetVstring (conn, &text_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 text = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 text_len = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 text = CGetVstring (conn, &text_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1730
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 /* updates the visited file modtime */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 if (modifying_p && (from != to || text_len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 /* but only when we do not read the file ourselves */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 && !get_chars_from_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 Fset_buffer_modtime (binfo->emacs_buffer, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 if (!modifying_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 /* clears the buffer in case we re-use a non-energize buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 previous_point = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 buffer_delete_range (current_buffer, BUF_BEG (current_buffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 BUF_Z (current_buffer), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 display_window = Fget_buffer_window (binfo->emacs_buffer, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 previous_point = BUF_PT (current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 if (!NILP (display_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 display_start =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 XINT (Fmarker_position (XWINDOW (display_window)->start));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 if (from != to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 struct buffer *buf = XBUFFER (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 Fwiden (Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 if (!NILP (binfo->output_mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 && marker_position (binfo->output_mark) >= from)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 Fset_marker (binfo->output_mark, make_int (from),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 if (((to - from) == text_len) && !get_chars_from_file &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 !string_buffer_compare (text, text_len, buf, from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 /* the new text is the same as the old text, don't clear
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 the undo list*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 Fsetcdr (Fcdr (restore_buffer_state_cons), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 no_text_deleted = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 destroy_all_energize_extents (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 /* Do not keep window start if we actually delete text */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 should_keep_window_start = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 destroy_all_energize_extents (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 if (!get_chars_from_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 buffer_delete_range (current_buffer, from, to, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 /* Do not clear the undo list if getting the chars from the file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 if (get_chars_from_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 Fsetcdr (Fcdr (restore_buffer_state_cons), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 else if (!text_len && !get_chars_from_file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 /* if there is no text and we didn't delete anything,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 don't clear the undo_list slot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 Fsetcdr (Fcdr (restore_buffer_state_cons), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 /* buffer type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 if (cbu->flags != 0xff && cbu->flags != binfo->flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 if (!modifying_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 if (cbu->flags == CBUserInput)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 Lisp_Object buffer_local_variable_name =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 Qenergize_user_input_buffer_mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 binfo->output_mark = Fmake_marker ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 Fset_marker (binfo->output_mark, make_int (1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 /* make sure that this guy doesn't get GC'd out from under us */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 Fmake_local_variable (buffer_local_variable_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 Fput (buffer_local_variable_name, Qpermanent_local, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 Fset (buffer_local_variable_name, binfo->output_mark);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 /* Make sure buffer is current after the hook */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 binfo->flags = cbu->flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 if (get_chars_from_file && text_len != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 /* I think this is always true, but let's make sure - jwz */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 if (text_len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 if (!NILP (binfo->output_mark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 if (XMARKER (binfo->output_mark)->buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 Fgoto_char (binfo->output_mark, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 /* This should not happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 Fgoto_char (make_int (BUF_ZV (XBUFFER (binfo->emacs_buffer))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 if (BUF_PT (current_buffer) <= previous_point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 display_start += text_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 previous_point += text_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 buffer_insert_raw_string (current_buffer, text, text_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 Fset_marker (binfo->output_mark, make_int (BUF_PT (current_buffer)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 else if (modifying_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 Fgoto_char (make_int (from), Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 if (!no_text_deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 buffer_insert_raw_string (current_buffer, text, text_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 buffer_insert_raw_string (current_buffer, text, text_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 previous_point = XINT (Fgoto_char (make_int (previous_point)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 else if (get_chars_from_file && !modifying_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 /* !modifying_p means the buffer is being created - read the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 from the file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 Finsert_file_contents_internal (Fbuffer_file_name (binfo->emacs_buffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 /* #### coding system not correct */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 Qt, Qnil, Qnil, Qnil, Qnil, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 if (!relative_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 extent_offset = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 else if (!NILP (binfo->output_mark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 extent_offset = EnergizePosForBufpos (XINT (Fmarker_position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 (binfo->output_mark)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 extent_offset = EnergizePosForBufpos (BUF_Z(XBUFFER(binfo->emacs_buffer)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 binfo);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1878
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 if (text_len || !text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 hack_window_point (display_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 make_int (previous_point),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 make_int (display_start),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 should_keep_window_start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 /* Classes, generics and extents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 /* make sure that we have enough room in the hash table */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 expand_hashtable (binfo->id_to_object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 cbu->nClass + cbu->nGeneric + cbu->nExtent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 read_energize_class_data (conn, cbu->nClass, binfo, modifying_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 read_energize_generic_data (conn, cbu->nGeneric, binfo, modifying_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 read_energize_extent_data (conn, cbu->nExtent, binfo, modifying_p, extent_offset);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 /* Restore the modified bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 Fset_buffer_modified_p (modified_buffer_flag, binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 if (get_chars_from_file && modifying_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 /* modifying_p means the buffer already exists and the extents are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 being re-written. It may be that the file has changed on disk,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 and the extents no longer correspond to the text in the buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 which would be bad. So, check the file on disk, and if it has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 changed, offer to revert.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 As this runs lisp code which may prompt the user, and consequently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 may accept process output, be careful to do this after we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 finished reading the current request from the Energize connection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 if (NILP (Fverify_visited_file_modtime (binfo->emacs_buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 call1 (Qenergize_auto_revert_buffer, binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 hack_window_point (display_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 make_int (previous_point),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 make_int (display_start),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 /* restore modified hooks and globals, and return the previous buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 cleanly_destroy_all_widgets (int count, LWLIB_ID *ids)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 /* This just calls lw_destroy_all_widgets, but is careful to make sure that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 this doesn't cause the frames to shrink. If one deletes psheets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 (children of the "control" area of the MainWindow) without first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 unmanaging the MainWindow, the frame resizes. So first unmanage all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 the MainWindows of all applicable frames, then remanage them. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 nasty, but...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 int i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 if (count == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 Lisp_Object frame = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 struct frame *f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 if (!FRAME_X_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 /* Optimization: only unmanage the MainWindow if this frame is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 displaying one of the psheets in question. (Special casing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 the debugger panel as usual...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 for (i = 0; i < count; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 if (ids [i] == debuggerpanel_sheet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 XtUnmanageChild (FRAME_X_CONTAINER_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 goto next_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 for (j = 0; j < FRAME_X_CURRENT_PSHEET_COUNT (f); j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 if (ids [i] == FRAME_X_CURRENT_PSHEETS (f) [j])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 XtUnmanageChild (FRAME_X_CONTAINER_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 goto next_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 next_frame: ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 for (i = 0; i < count; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 lw_destroy_all_widgets (ids [i]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 if (ids [i] == debuggerpanel_sheet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 debuggerpanel_sheet = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 desired_debuggerpanel_exposed_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 Lisp_Object frame = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 struct frame *f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 if (!FRAME_X_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 XtManageChild (FRAME_X_CONTAINER_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 /* kill an Energize buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 forget_buffer (BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 Lisp_Object buffer = binfo->emacs_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 remove_buffer_info (binfo->id, buffer, binfo->editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 Venergize_buffers_list = Fdelq (buffer, Venergize_buffers_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 /* if there was an associated frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 if (!NILP (binfo->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 Fdelete_frame (binfo->frame, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 if (binfo->n_p_sheets > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 /* Also delete the dialog boxes associated with the buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 cleanly_destroy_all_widgets (binfo->n_p_sheets,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 (LWLIB_ID *) binfo->p_sheet_ids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 free_buffer_info (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 XBUFFER (buffer)->undo_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 /* flush the buffer SOE before flushing the extents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 free_buffer_cached_stack (XBUFFER (buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 XBUFFER (buffer)->extents = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 /********************** Request-related utilities ************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 /* outputs a single extent in the connection buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 write_energize_extent_data (Connection *conn, Energize_Extent_Data *ext,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 unsigned int start, unsigned int end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 switch (ext->extentType)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 case CEAttribute:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 CWriteExtent (conn, CEAttribute, ext->id, start, end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 (EId)ext->u.attr.attrValue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 case CEAbbreviation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 CWriteExtent (conn, CEAbbreviation, ext->id, start, end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 (EId)ext->u.abbrev.isOpened);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 case CEGeneric:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 CWriteExtent (conn, CEGeneric, ext->id, start, end, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 case CEWriteProtect:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 CWriteExtent (conn, CEWriteProtect, ext->id, start, end, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 /* Function called by map_extents in SaveBufferToEnergize. Outputs the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 extents for the extents corresponding to Energize objects, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 increments the n_extents count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 write_energize_extent_data_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 binfo_and_n_extents *bane = (binfo_and_n_extents*)arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 Lisp_Object extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 Energize_Extent_Data *ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 XSETEXTENT (extent_obj, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 ext = extent_to_data (extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 if (ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 Bufpos first = XINT (Fextent_start_position (extent_obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 Bufpos last = XINT (Fextent_end_position (extent_obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 write_energize_extent_data (bane->binfo->editor->conn, ext,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 EnergizePosForBufpos (first, bane->binfo),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 EnergizePosForBufpos (last, bane->binfo));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 bane->n_extents += 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 /* Sends a BufferSaved request to energize for binfo */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 write_energize_buffer_data (BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 Connection *conn = binfo->editor->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 EId bufferId = binfo->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 CBuffer *cbu;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 CEditorRequest *req;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 struct buffer *cur_buff = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 Lisp_Object file_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 binfo_and_n_extents bane;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 /* selects the buffer as current */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 /* write header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 cbu = CWriteBufferSavedHeader (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 cbu->bufferId = bufferId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 cbu->flags = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 cbu->nClass = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 cbu->nGeneric = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 /* file name */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 file_name = current_buffer->filename;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 if (STRINGP (file_name))
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2105 CWriteVstring0 (conn, XSTRING_DATA (file_name));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 CWriteVstring0 (conn, "");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 CWriteVstring0 (conn, ""); /* directory name */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 CWriteVstring0 (conn, ""); /* buffer name */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 /* write the text */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 if (binfo->flags & CBFileYourself)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 /* Only the 0.10+ protocol will ask us to write the file directly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 Lisp_Object start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 Lisp_Object end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 XSETINT (start, BUF_BEG (current_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 XSETINT (end, BUF_Z (current_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 Fwrite_region_internal (start, end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 Fbuffer_file_name (binfo->emacs_buffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 /* #### coding system not correct */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 Qnil, Qt, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 CNeedOutputSize (conn, 9);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 CWriteVstringLen (conn, NULL, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 #endif /* ENERGIZE_V2_HEADERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 Lisp_Object string = make_string_from_buffer (current_buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 BUF_BEG (current_buffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 BUF_Z (current_buffer));
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2133 CNeedOutputSize (conn, XSTRING_LENGTH (string) + 9);
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
2134 CWriteVstringLen (conn, XSTRING_DATA (string), XSTRING_LENGTH (string));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 /* write the extents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 bane.binfo = binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 bane.n_extents = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 /* Only write the extents when not filing ourselves */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 if (!(binfo->flags & CBFileYourself))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 map_extents (BUF_BEG (current_buffer), BUF_Z (current_buffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 write_energize_extent_data_mapper, &bane,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 binfo->emacs_buffer, 0, ME_END_CLOSED);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2149
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 /* update nextent in request's header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 req = (CEditorRequest *)conn->header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 req->buffersaved.buffer.nExtent = bane.n_extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 CWriteLength (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 CWriteRequestBuffer (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 /* sets the flags so that we will warn Energize about more modifications */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 binfo->modified_state = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 /* Mark the buffer as non editable so that we will ask Energize about it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 before modifying it again */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 binfo->editable = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 /* restores the buffer as current */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 set_buffer_internal (cur_buff);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 energize_extent_data_id (Energize_Extent_Data *ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 return ext ? ext->id : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 /********************** Menu ("keywords") operations **********************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 something_answered_p (void* arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 struct reply_wait* rw = (struct reply_wait*)arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 return rw->answered_p || !energize_connection || !energize_connection->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 push_wait (struct reply_wait* rw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 rw->next = global_reply_wait;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 global_reply_wait = rw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 remove_wait (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 struct reply_wait* gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 struct reply_wait* previous;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 struct reply_wait* rw = (struct reply_wait *) get_opaque_ptr (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 for (previous = 0, gw = global_reply_wait;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 gw != rw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 previous = gw, gw = gw->next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 if (previous)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 previous->next = gw->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 global_reply_wait = gw->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 static struct reply_wait*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 find_wait_reply (int serial)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 struct reply_wait* gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 for (gw = global_reply_wait; gw && gw->serial != serial; gw = gw->next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 return gw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 wait_for_reply (struct reply_wait* rw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 rw->answered_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 push_wait (rw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 record_unwind_protect (remove_wait, make_opaque_ptr (rw));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 wait_delaying_user_input (something_answered_p, rw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 return rw->answered_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 /* gets the menu for the buffer/extent pair at the head of the request buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 returns the propose choice request if succeeds, nil otherwise (kernel
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 connection closed, or not connected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 get_energize_menu (Lisp_Object buffer, Lisp_Object extent_obj, int selection_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 Lisp_Object only_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 Connection* conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 EId buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 EId extent_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 struct reply_wait rw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 if (!get_energize_connection_and_buffer_id (buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 (void **) &conn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 (long *) &buffer_id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 if (EXTENTP (extent_obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 extent_id = energize_extent_data_id (extent_to_data (extent_obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 extent_id = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 CWriteQueryChoicesRequest (conn, buffer_id, extent_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 conn->header->data =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 selection_p ? CEChasCharSelection | CEChasObjectSelection : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 conn->header->serial = ++request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 CWriteRequestBuffer (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 /* wait for the acknowledge */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 rw.serial = request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 rw.objectId = buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 rw.genericId = extent_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 rw.menu_result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 rw.only_name = only_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 GCPRO2 (rw.menu_result, rw.only_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 wait_for_reply (&rw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 result = rw.menu_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 execute_energize_menu (Lisp_Object buffer, Energize_Extent_Data* ext,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 char* name, EId item_id, EId flags,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 Lisp_Object selection, Lisp_Object no_confirm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 Connection* conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 EId buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 EId extent_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 BufferInfo* binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 struct reply_wait rw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 if (!get_energize_connection_and_buffer_id (buffer, (void**)&conn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 (long*)&buffer_id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 extent_id = energize_extent_data_id (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 if ((flags & CKBuffer) && !NILP (Fbuffer_modified_p (buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 /* saves buffer if requested and needed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 if (binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 write_energize_buffer_data (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 CWriteExecuteChoicesRequest (conn, buffer_id, extent_id, item_id, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 /* send the menu name */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 if (energize_connection->minor >= 7)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 CWriteVstring0 (conn, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 conn->header->serial = ++request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 conn->header->data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 if (STRINGP (selection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 conn->header->data |= CEChasCharSelection;
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2313 CWriteVstringLen (conn, XSTRING_DATA (selection),
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2314 XSTRING_LENGTH (selection));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 else if (VECTORP (selection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
2318 int i, len;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 EId data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 conn->header->data |= CEChasObjectSelection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 /* writes the length */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
2323 data = len = XVECTOR_LENGTH (selection);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 CWrite (conn, EId, &data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 /* writes the elements */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
2327 for (i = 0; i < len; i++)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
2329 if (CONSP (XVECTOR_DATA (selection) [i]))
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
2330 data = lisp_to_word (XVECTOR_DATA (selection) [i]);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 else
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
2332 data = XINT (XVECTOR_DATA (selection) [i]);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 CWrite (conn, EId, &data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 else if (CONSP (selection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
2338 Lisp_Object type = Fcar (selection);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 Lisp_Object value = Fcdr (selection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 if (EQ (type, intern ("ENERGIZE_OBJECT"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 && STRINGP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 conn->header->data |= CEChasObjectSelection;
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2344 CWriteN (conn, char, XSTRING_DATA (value),
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2345 XSTRING_LENGTH (value));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 else if (!NILP (selection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 error ("unrecognized energize selection");
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2350
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 if (!NILP (no_confirm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 conn->header->data |= CECnoConfirm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 CWriteLength (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 CWriteRequestBuffer (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 /* wait for the acknowledge */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 rw.serial = request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 rw.objectId = buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 rw.genericId = extent_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 rw.itemId = item_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 rw.message = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 if (wait_for_reply (&rw) && !rw.status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 char message [128];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 if (energize_connection && energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 sprintf (message, IDENTITY_CRISIS " command failed: %.80s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 (rw.message ? rw.message : "(null)"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 sprintf (message, "Connection to " IDENTITY_CRISIS " was closed.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 if (rw.message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 xfree (rw.message);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 error (message);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 if (rw.message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 xfree (rw.message);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 if (!energize_connection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 error ("Connection to " IDENTITY_CRISIS " was closed.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 /* Returns a list of vectors representing the menu choices. Next request
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 in connection must be a ProposeChoices. The list is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 (buffer extent <item1> ... <itemN>). <itemI> is (name id1 id2 flags).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 Idi is (high . low). We build the list in reverse order and nreverse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 it. If (only_name != 0), we only return the item of named only_name as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 a vector. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 list_choices (Lisp_Object buffer, Lisp_Object extent_obj,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 Lisp_Object only_name, CProposeChoicesRequest* creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 Connection *conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 Lisp_Object item_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 Lisp_Object item;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 struct Lisp_Vector *v;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 CChoice *choice;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 ReqLen name_length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 char *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 char *arg_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 if (energize_connection && energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 conn = energize_connection->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 if (!creq || creq->head.reqType != ProposeChoicesRType)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 CSkipRequest (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 item = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 item_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 GCPRO3 (only_name, item_list, item);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 for (i = 0; i < (int)(creq->nChoices); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 choice = CGet (conn, CChoice);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 name = CGetVstring (conn, &name_length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 if (!name_length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 /* the argument, if passed, is another string after the NUL (!)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 * this is a quick hack to provide cheap arguments to menus entries */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 arg_name = strchr (name, 0240);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 if (arg_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 *arg_name= 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 arg_name += 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 if (!NILP (only_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 {
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2440 if (!strcmp ((char*) XSTRING_DATA (only_name), name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 if (NILP (item))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 item = make_vector (5, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 v = XVECTOR (item);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 v->contents [0] = only_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 v->contents [1] = word_to_lisp (choice->choiceId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 v->contents [2] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 v->contents [3] = make_int (choice->flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 v->contents [4] = arg_name ? build_string (arg_name) : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 item = make_vector (5, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 v = XVECTOR (item);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 v->contents [0] = build_string (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 v->contents [1] = word_to_lisp (choice->choiceId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 v->contents [2] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 v->contents [3] = make_int (choice->flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 v->contents [4] = arg_name ? build_string (arg_name) : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 item_list = Fcons (item, item_list); /* pushes in the list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 if (NILP (only_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 item_list = Fcons (buffer, Fcons (extent_obj, Fnreverse (item_list)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 return NILP (only_name) ? item_list : item;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2474 DEFUN ("energize-list-menu", Fenergize_list_menu, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 Request the set of menu options from the Energize server that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 appropriate to the buffer and the extent. Extent can be (), in which case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 the options are requested for the whole buffer. Selection-p tells
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2478 if the selection is available on the dislpay emacs is using.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 Returns the options as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 a list that can be passed to energize-activate-menu. Items
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 in the list can also be passed to energize-execute-menu-item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 The list is (buffer extent or () <item1> ... <itemN>).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 where <itemI> is (name id1 id2 flags); idI is (high . low).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 If optional argument only-name is provided only the item with name only-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 is returned, or () if no such item exists.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2486 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2487 (buffer, extent_obj, selection_p, only_name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 Lisp_Object res;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 if (!energize_connection || !energize_connection->conn) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 if (!NILP (only_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 CHECK_STRING (only_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 res = get_energize_menu (buffer, extent_obj, !NILP (selection_p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 only_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 notify_delayed_requests ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 return res;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2503 DEFUN ("energize-execute-menu-item", Fenergize_execute_menu_item, 3, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 Item is a vector received by energize-list-menu. Sends a request to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 execute the code associated to this menu inside the Energize server.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 Optional fourth argument is a string or a vector to be used as the selection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 for entry disabled because they need the selection.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2508 Optional fifth argument, if non NIL, tells Energize to not request
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 confirmation before executing the command.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2510 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2511 (buffer, extent_obj, item, selection, no_confirm))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 struct Lisp_Vector *v;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 if (!energize_connection || !energize_connection->conn) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 CHECK_VECTOR (item);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 v = XVECTOR (item);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 if (vector_length (v) != 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 error ("Bad menu item to energize-execute-menu-item");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 /* ignore the flags for now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 execute_energize_menu (buffer, extent_to_data (extent_obj),
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
2526 (char*) XSTRING_DATA (v->contents [0]),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 lisp_to_word (v->contents [1]),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 XINT (v->contents [3]),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 selection,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 no_confirm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2535 DEFUN ("energize-execute-command-internal",
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2536 Fenergize_execute_command_internal, 3, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 Command is a string naming an energize command. Sends a request to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 execute this command inside the Energize server.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 Optional fourth argument is a string or a vector to be used as the selection.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2540 Optional fifth argument, if non NIL, tells Energize to not request
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 confirmation before executing the command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 See also 'energize-list-menu'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2544 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2545 (buffer, extent_obj, command, selection, no_confirm))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 if (!energize_connection || !energize_connection->conn) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 CHECK_STRING (command);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 execute_energize_menu (buffer, extent_to_data (extent_obj),
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
2553 (char*) XSTRING_DATA (command), 0, 0, selection,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 no_confirm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 /********************************* kill buffer interface ****************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2561 DEFUN ("energize-buffer-type-internal", Fenergize_buffer_type, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 Return a symbol denoting the buffer type if buffer is an Energize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 buffer, else it returns NIL.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2564 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2565 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 if (!energize_connection) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 return get_buffer_type_for_emacs_buffer (buffer, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2573 DEFUN ("set-energize-buffer-type-internal", Fset_energize_buffer_type_internal, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 Return the type symbol which is the new buffer-type, if the buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 an Energize buffer and the type is non-NIL symbol, else it returns NIL.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2576 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2577 (buffer, type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 if (!energize_connection || (NILP (type))) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 CHECK_SYMBOL (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 if (!(binfo =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 get_buffer_info_for_emacs_buffer (buffer, energize_connection)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 set_buffer_type_for_emacs_buffer (buffer, energize_connection, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2594 DEFUN ("energize-buffer-p", Fenergize_buffer_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 Whether buffer is an Energize buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2596 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2597 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 if (!energize_connection) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 if (!(binfo =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 get_buffer_info_for_emacs_buffer (buffer, energize_connection)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2611 DEFUN ("energize-buffer-id", Fenergize_buffer_id, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 Return (high . low) if buffer is an Energize buffer, otherwise nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2613 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2614 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 if (!energize_connection) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 if (!(binfo =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 get_buffer_info_for_emacs_buffer (buffer, energize_connection)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 return word_to_lisp (binfo->id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2628 DEFUN ("energize-request-kill-buffer", Fenergize_request_kill_buffer, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 Sends a request to energize for killing buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2630 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
2631 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 if (!energize_connection) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 if (!(binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 /* Tell Energize about it if connected */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 if (energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 CWriteKillBufferHeader (energize_connection->conn, binfo->id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 CWriteRequestBuffer (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 /* Clears the internal state */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 forget_buffer (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 /******************** Handle requests from the kernel *********************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 #include "cadillac-btl-extern.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 /* turn logging on or off, etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 handle_logging_request (Editor *editor, CLoggingRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 /* I'm a lumberjack and I'm ok... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 ReqLen name_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 char* data_filename = CGetVstring (editor->conn, &name_len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 char *execname =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 (STRINGP (Vinvocation_directory))?
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
2672 ((char *) XSTRING_DATA (Vinvocation_directory)):0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 switch (creq->type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 case CLRInitBTL:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 cadillac_terminate_logging (); /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 cadillac_initialize_backtrace_logging /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 (data_filename, execname, (long) creq->limit, (long) creq->interval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 case CLRInitPCL:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 cadillac_terminate_logging (); /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 cadillac_initialize_pc_logging /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 (data_filename, execname, (long) creq->limit, (long) creq->interval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 case CLRStart:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 cadillac_start_logging (); /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 case CLRStop:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 cadillac_stop_logging (); /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 case CLRTerminate:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 cadillac_terminate_logging (); /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 case CLRSetLogSignal:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 cadillac_set_log_signal (creq->signal); /* #### rename me */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 error ("Bad logging request type %d", creq->type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 message ("Logging request, but no such code in image.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 /* creates a new buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 handle_new_buffer_request (Editor *editor, CNewBufferRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 read_energize_buffer_data (editor->conn, &creq->buffer, editor, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 creq->transientId, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 if (!NILP (Venergize_create_buffer_hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 CBuffer *cbu = &creq->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 BufferInfo *binfo = get_buffer_info_for_id (cbu->bufferId, editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 if (binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 Lisp_Object prev_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 buffer = binfo->emacs_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 if (!NILP (binfo->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 prev_frame = Fselected_frame (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 Fselect_frame (binfo->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 va_run_hook_with_args (Qenergize_create_buffer_hook, 1, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 if (!NILP (binfo->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 Fselect_frame (prev_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 /* Modifies the contents of a buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 handle_modify_buffer_request (Editor *editor, CModifyBufferRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 read_energize_buffer_data (editor->conn, &creq->newData, editor,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 creq->startPosition, creq->endPosition,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 0, creq->head.data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 make_buffer_and_extent_visible (Lisp_Object list, Lisp_Object go_there)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 call2 (Qenergize_make_many_buffers_visible, list, go_there);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 /* pops a buffer and scroll to a extent: calls to lisp */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 handle_ensure_visible_request (Editor *editor, CEnsureVisibleRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 Energize_Extent_Data *ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 Lisp_Object buffer_extent_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 buffer_extent_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 GCPRO1 (buffer_extent_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 binfo = get_buffer_info_for_id (creq->bufferId, editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 if (!binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 message ("EnsureVisibleRequest: unknown buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 goto finished;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 if (!NILP (binfo->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 /* ignore ensure visible for postit note buffers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 goto finished;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 if (creq->extentId)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 ext = get_extent_data (creq->extentId, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 if (!ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 message ("EnsureVisibleRequest: ignoring unknown extent");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 ext = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 buffer_extent_list = Fcons (ext ? data_to_extent (ext) : Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 buffer_extent_list = Fcons (binfo->emacs_buffer, buffer_extent_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 make_buffer_and_extent_visible (buffer_extent_list, creq->head.data ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 finished:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 CSkipRequest (editor->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 handle_ensure_many_visible_request (Editor *editor,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 CEnsureManyVisibleRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 Energize_Extent_Data *ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 Lisp_Object buffer_extent_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 int n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 EId buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 EId extent_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 buffer_extent_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 GCPRO1 (buffer_extent_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 for (n = creq->head.data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 buffer_id = creq->bufferId,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 extent_id = creq->extentId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 n--,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 buffer_id = n ? *(CGet (editor->conn, EId)) : 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 extent_id = n ? *(CGet (editor->conn, EId)) : 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 binfo = get_buffer_info_for_id (buffer_id, editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 if (!binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 message ("EnsureManyVisibleRequest: ignoring unknown buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 if (!NILP (binfo->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 /* silently ignore ensure visible for postit note buffers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 if (extent_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 ext = get_extent_data (extent_id, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 if (!ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 message ("EnsureManyVisibleRequest: ignoring unknown extent");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 ext = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 /* cons in reverse order and reverse the list before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 calling make_buffer_and_extent_visible */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 buffer_extent_list = Fcons (binfo->emacs_buffer, buffer_extent_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 buffer_extent_list = Fcons (ext ? data_to_extent (ext) : Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 buffer_extent_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 buffer_extent_list = Fnreverse (buffer_extent_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 make_buffer_and_extent_visible (buffer_extent_list, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 /* Update the cached menus, ie update the menubar for now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 handle_propose_choices_request (Editor *editor, CProposeChoicesRequest *req)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 BufferInfo* binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 Lisp_Object buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 Lisp_Object extent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 Lisp_Object choices = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 struct reply_wait* rw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 GCPRO3 (buffer, extent, choices);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 /* get the buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 binfo = get_buffer_info_for_id (req->objectId, editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 if (binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 buffer = binfo->emacs_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 /* get the extent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 if (binfo && req->genericId)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 Energize_Extent_Data* ext = get_extent_data (req->genericId, binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 if (ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 extent = data_to_extent (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 extent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 extent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 /* find if we were waiting for a reply */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 rw = find_wait_reply (req->head.serial);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 /* handle the request */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 if (rw && rw->objectId == req->objectId && rw->genericId == req->genericId)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 /* It's a reply for a get_energize_menu call */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 rw->answered_p = True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 rw->status = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 rw->menu_result = list_choices (buffer, extent, rw->only_name, req);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 /* It's a menu update, call the hook */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 choices = list_choices (buffer, extent, Qnil, req);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 va_run_hook_with_args (Qenergize_menu_update_hook, 1, choices);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 /* Kills a buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 unmodify_buffer_and_kill_it (Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 Fset_buffer_modified_p (Qnil, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 /* kill it. This will call the Energize hook to do the right thing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 Fkill_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 handle_kill_buffer_request (Editor *editor, CKillBufferRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 if (!(binfo = get_buffer_info_for_id (creq->bufferId, editor)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 message ("KillBufferVisibleRequest: unregistered buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 unmodify_buffer_and_kill_it (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 handle_remove_extents_request (Editor *editor, CRemoveExtentsRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 EId *ids;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 Lisp_Object restore_buffer_state_cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 if (!(binfo = get_buffer_info_for_id (creq->bufferId, editor)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 message ("RemoveExtentsRequest: unregistered buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 CSkipRequest (editor->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 /* enable buffer edits */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 restore_buffer_state_cons =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 Fcons (make_opaque_ptr ((void *) creq->bufferId),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 Fcons (XBUFFER (binfo->emacs_buffer)->read_only, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 record_unwind_protect (restore_buffer_state, restore_buffer_state_cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 XBUFFER (binfo->emacs_buffer)->read_only = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 /* save old hook values */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 specbind (Qenergize_buffer_modified_hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 ids = CGetN (editor->conn, EId, creq->nExtent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 for (i = 0; i < creq->nExtent; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 Energize_Extent_Data *ext = get_extent_data (ids [i], binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 if (ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 free_Energize_Extent_Data (ext, binfo, OFT_STANDALONE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 /* restore modified hooks and globals */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 save_to_energize_unwind (Lisp_Object closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 BITS32 buffer_id = (BITS32) cons_to_long (closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 /* If the buffer ID is not 0, then the call to save-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 didn't complete normally - so tell Energize the save was aborted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 if (buffer_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 Editor *editor = energize_connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 if (editor && editor->conn) /* Maybe the kernel has gone away. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 CWriteBufferSaveAbortedHeader (editor->conn, buffer_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 CWriteRequestBuffer (editor->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 #endif /* ENERGIZE_V2_HEADERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 /* handles a request to save a buffer from the kernel */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 handle_save_buffer_request (Editor *editor, CSaveBufferRequest *creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 Lisp_Object closure = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 if (!(binfo = get_buffer_info_for_id (creq->bufferId, editor)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 message ("Server attempt to save a non registered buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 if (!EQ (binfo->emacs_buffer, Fcurrent_buffer ()))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 Fset_buffer (binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 GCPRO1 (closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 if (creq->head.data == CSExecuteSave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 Lisp_Object closure = make_opaque_ptr ((void *) creq->bufferId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 record_unwind_protect (save_to_energize_unwind, closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 #endif /* ENERGIZE_V2_HEADERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 call0 (intern ("save-buffer"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 /* clear out the id to tell the unwind-protect form that the save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 completed normally. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 set_opaque_ptr (closure, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 #endif /* ENERGIZE_V2_HEADERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 write_energize_buffer_data (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 handle_set_modified_flag_request (Editor* editor,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 CSetModifiedFlagRequest* creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 if (!(binfo = get_buffer_info_for_id (creq->bufferId, editor)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 message ("Server attempt to set modified flag of a non registered buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 specbind (Qenergize_buffer_modified_hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 /* Only set buffer modified time in older protocols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 as we handle the file timestamps ourselves now for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 CBFileYourself buffers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 if ((energize_connection->minor < 10) && !(binfo->flags & CBFileYourself))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 Fset_buffer_modtime (binfo->emacs_buffer, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 Fset_buffer_modified_p (creq->state ? Qt : Qnil, binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 binfo->modified_state = creq->state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 /* Mark the buffer so that we ask permission to Energize when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 * user tries to modify it again */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 binfo->editable = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 if (!creq->state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 mark_all_extents_as_unmodified (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 /* handles requests regarding p_sheet associated to buffers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 add_in_list_of_ids (int** ids, int* n_ids, int id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 if (*n_ids == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 *n_ids = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 *ids = (int*)xmalloc (sizeof (int));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 *n_ids += 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 *ids = (int*)xrealloc (*ids, sizeof (int) * (*n_ids));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 (*ids) [(*n_ids) - 1] = id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 remove_from_list_of_ids (int** ids, int* n_ids, int id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 if (*n_ids)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 /* look for id in *ids */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 for (i = 0; i < (*n_ids) && (*ids) [i] != id; i++);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 /* shift the remaining ones */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 for (; i < (*n_ids) - 1; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 (*ids) [i] = (*ids) [i + 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 /* decrease the count */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 *n_ids -= 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 /* free array if empty */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 if (!*n_ids)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 xfree (*ids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 *ids = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 extern void make_psheets_desired (struct frame *, Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 handle_buffer_sheet_request (Editor *editor, CSheetRequest *sreq,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 EId buffer_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 char *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 Connection *conn = editor->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 if (!(binfo = get_buffer_info_for_id (buffer_id, editor)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 message ("Server attempt to use p_sheet in a non registered buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 CSkipRequest (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 name = CGetVstring (conn, (ReqLen *) 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 switch ((CSheetRSubtype) sreq->head.data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 case CSCreate:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 lw_register_widget (name, name, sreq->sheetId, NULL, NULL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 handle_sheet_control_change, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 add_in_list_of_ids (&binfo->p_sheet_ids, &binfo->n_p_sheets,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 sreq->sheetId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 if (!strcmp (name, DEBUGGER_PSHEET_NAME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 debuggerpanel_sheet = sreq->sheetId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 case CSDelete:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 remove_from_list_of_ids (&binfo->p_sheet_ids, &binfo->n_p_sheets,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 sreq->sheetId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 cleanly_destroy_all_widgets (1, &sreq->sheetId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 if (sreq->sheetId == debuggerpanel_sheet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 desired_debuggerpanel_exposed_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 debuggerpanel_sheet = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 case CSHide:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 if (sreq->sheetId == debuggerpanel_sheet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 desired_debuggerpanel_exposed_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 struct frame *frame = XFRAME (Fcar (frmcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 if (FRAME_X_P (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 make_psheets_desired (frame, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 case CSShow:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 if (sreq->sheetId == debuggerpanel_sheet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 desired_debuggerpanel_exposed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 struct frame *frame = XFRAME (Fcar (frmcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 if (FRAME_X_P (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 struct window *window =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 XWINDOW (FRAME_SELECTED_WINDOW (frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 if (EQ (window->buffer, binfo->emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 make_psheets_desired (frame, binfo->emacs_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 /* show busy */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 show_all_menubars_busy (int busy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 struct frame *f = XFRAME (XCAR (frmcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 if (FRAME_X_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 if (FRAME_X_MENUBAR_WIDGET (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 lw_show_busy (FRAME_X_MENUBAR_WIDGET (f), busy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 handle_show_busy_request (Editor *editor, CGenericRequest *preq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 /* call the show busy routine of the library for the menubar of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 * all frames */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 ReqLen len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 char* why = CGetVstring (editor->conn, &len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 show_all_menubars_busy (preq->head.data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 Venergize_kernel_busy = preq->head.data ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 va_run_hook_with_args (Qenergize_kernel_busy_hook, 1, build_string (why));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 /* This request creates, destroys, raises, or lowers a psheet or dialog box.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 handle_sheet_request (Connection* conn, CSheetRequest* sreq, Widget parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 char* name = CGetVstring (conn, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 switch ((CSheetRSubtype)sreq->head.data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 case CSCreate:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 lw_create_widget (name, name, sreq->sheetId, 0, parent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 !sreq->bufferId, 0, handle_sheet_control_change, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 case CSDelete:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 cleanly_destroy_all_widgets (1, &sreq->sheetId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 case CSShow:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 lw_pop_up_all_widgets (sreq->sheetId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 case CSHide:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 lw_pop_down_all_widgets (sreq->sheetId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 /* This request changes slot values in the psheets/dialog boxes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 handle_set_control_request (Connection* conn, CGenericRequest* creq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 CSetControlRequest* sreq = &creq->setcontrol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 widget_value val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3264 widget_value* contents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 unsigned long i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 unsigned long n = sreq->nChoices;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 if (n > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 contents = (widget_value *) xmalloc (n * sizeof (widget_value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 memset (contents, 0, (n * sizeof (widget_value)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 contents = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 memset (&val, 0, sizeof (val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 val.name = CGetVstring (conn, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 val.enabled = !(sreq->flags & CKInactive);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 val.selected = !!(sreq->flags & CKSelected);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280 val.change = VISIBLE_CHANGE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 val.contents = contents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 for (i = 0; i < n; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 widget_value* cur = &contents [i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 CChoice* choice = CGet (conn, CChoice);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287 cur->name = CGetVstring (conn, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 cur->value = cur->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 cur->key = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 cur->enabled = !(choice->flags & CKInactive);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 cur->selected = !!(choice->flags & CKSelected);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 cur->change = VISIBLE_CHANGE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 cur->contents = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 cur->call_data = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295 cur->next = i == n - 1 ? NULL : &contents [i + 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 cur->toolkit_data = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 if ((i == 0 && n == 1) || cur->selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 val.value = cur->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 if (!*val.value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 val.value = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 lw_modify_all_widgets (sreq->sheetId, &val, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 if (contents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 xfree (contents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 handle_sheet_control_change (Widget widget, EId sheet_id, void* arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 Connection* conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 widget_value* val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 widget_value* cur;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 widget_value* this_val = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 widget_value* cancel = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 char* this_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 int delete_window_p = (((int) arg) == -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 if (!energize_connection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 conn = energize_connection->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 if (!conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 this_name = XtName (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 val = lw_get_all_values (sheet_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 if (delete_window_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 /* Complete and utter kludge. If this dbox was dismissed with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 WM close box (WM_DELETE_WINDOW, meaning the widget was destroyed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 then we look for a likely "cancel" button and pretend the user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 clicked on that. Really the protocol should be extended for this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 for (cur = val; cur; cur = cur->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 char *v = cur->value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 if (v &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 ((strlen (v) >= 6 && !strncmp (v, "cancel", 6)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 (strlen (v) >= 5 && !strncmp (v, "abort", 5))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 cancel = cur;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 /* first send all the edited widgets */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 for (cur = val; cur; cur = cur->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 /* do not send the widget that ran the callback */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 if (!strcmp (cur->name, this_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 this_val = cur;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 else if (cur == cancel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 /* send the edited widgets */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 else if (cur->edited)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 char* value = cur->value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 unsigned int flags = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 if (!cur->enabled)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 flags |= CKInactive;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 if (cur->selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 flags |= CKSelected;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 /* the kernel is brain dead and expect "1" and "0" as values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 for the checkbox objects. So if value is NULL, make it be "0"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 or "1" depending on the selected state. This is until we fix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 the kernel. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 if (!value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 value = cur->selected ? "1" : "0";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 CWriteSetControlRequest (conn, sheet_id, 0, cur->name, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 CWriteChoice (conn, 0, flags, value, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 CWriteLength (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 if (delete_window_p && !this_val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 this_val = cancel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 /* if (! this_val) abort (); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 /* Then send the widget that ran the callback */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 if (this_val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 CWriteSetControlRequest (conn, sheet_id, 0, this_val->name, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 CWriteChoice (conn, 0, 0, this_val->value, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 CWriteLength (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 CWriteRequestBuffer (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 /******************** Low level connection stuff ************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 add_in_connection_input_buffer (Connection *conn, char *s, int l)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 /* Should be in connection.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 if (conn->inread >= conn->infill)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 conn->inread = conn->infill = conn->inbuffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 CNeedInputSize (conn, l);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404 memcpy (conn->infill, s, l);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 conn->infill += l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 process_one_energize_request (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 Editor *editor = energize_connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 CEditorRequest *req;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 int res = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 if (!editor) return make_int (res);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417 if (!editor->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 close_energize_connection ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 return make_int (res);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 req = CReadEditorRequest (editor->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 if (!req)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 switch (errno)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 case EWOULDBLOCK:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 /* message ("ProcessEnergizeRequest: internal error EWOULDBLOCK"); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 res = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433 case 0:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 case ECONNRESET:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 message ("Connection to " IDENTITY_CRISIS " was closed.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 close_energize_connection ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 ("System error on connection to " IDENTITY_CRISIS ", closing.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 close_energize_connection ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448 res = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449 switch (req->head.reqType)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 case RefuseConnectionRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 message (IDENTITY_CRISIS " connection refused");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 close_energize_connection ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456 case AcceptConnectionRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3458 CProtocol* proto = CGet (editor->conn, CProtocol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 editor->major = proto->major;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 editor->minor = proto->minor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461 message (IDENTITY_CRISIS " connection accepted");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462 CSkipRequest (editor->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 case NewBufferRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 handle_new_buffer_request (editor, &req->newbuffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 case QueryBufferRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 EId buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473 struct reply_wait* rw = find_wait_reply (req->head.serial);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3474 CGetVstring (editor->conn, 0); /* skip directory */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3475 CGetVstring (editor->conn, 0); /* skip file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476 buffer_id = *CGet (editor->conn, EId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477 if (rw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3478 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479 rw->answered_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 rw->status = req->head.data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 rw->objectId = buffer_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3486 case EnsureVisibleRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 handle_ensure_visible_request (editor, &req->ensurevisible);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490 case EnsureManyVisibleRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491 handle_ensure_many_visible_request (editor, &req->ensuremanyvisible);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 case ModifyBufferRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 handle_modify_buffer_request (editor, &req->modifybuffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 case ProposeChoicesRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 handle_propose_choices_request (editor,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 &req->generic.proposechoices);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 case ChoiceExecutedRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 struct reply_wait* rw = find_wait_reply (req->head.serial);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 CChoiceExecutedRequest* ce = &req->generic.choiceexecuted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 if (rw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 rw->answered_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 rw->status = ce->head.data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 rw->message = CMakeVstring (editor->conn, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 case KillBufferRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 handle_kill_buffer_request (editor, &req->killbuffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520 case ModifiedBufferRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 struct reply_wait* rw = find_wait_reply (req->head.serial);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 if (rw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 rw->answered_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526 if (rw->objectId == req->modifiedbuffer.bufferId)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 rw->status = req->modifiedbuffer.state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 rw->status = CMBufferLocked;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 case SetModifiedFlagRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535 handle_set_modified_flag_request (editor, &req->setmodifiedflag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 case RemoveExtentsRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 handle_remove_extents_request (editor, &req->removeextents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 case RenumberExtentsRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 /* HandleDuplicateExtentRequest (editor, req); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 case DialogRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 /* HandleDialogRequest (editor, req, CurrentBuffer (editor)); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 case SaveBufferRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553 handle_save_buffer_request (editor, &req->savebuffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556 case SheetRType:{
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 EId buffer_id = req->generic.sheet.bufferId;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558 if (!buffer_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 buffer_id = buffer_id_of_sheet (req->generic.sheet.sheetId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 if (buffer_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 handle_buffer_sheet_request (editor, &req->generic.sheet,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562 buffer_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 CSheetRSubtype type = (CSheetRSubtype)req->head.data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 if (type == CSDelete || type ==CSHide)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567 /* #### ??? this does nothing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 Fselect_frame (Fselected_frame (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 handle_sheet_request (editor->conn, &req->generic.sheet,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570 FRAME_X_SHELL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571 (XFRAME (Fselected_frame (Qnil))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576 case SetControlRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 handle_set_control_request (editor->conn, (CGenericRequest*) req);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 case OpenPostitRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 case KillPostitRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 message ("Don't know what to do with postit requests.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 case ShowBusyRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 handle_show_busy_request (editor, (CGenericRequest*)req);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 case LoggingRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 handle_logging_request (editor, (CLoggingRequest*)req);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 case KernelEventRType:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 CSkipRequest (editor->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 message("ProcessEnergizeRequest: can't handle request of type %d",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 req->head.reqType);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 return make_int (res);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 static int inside_process_energize_request_1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 /* this must be called ONLY by unwind_protect in process_energize_request_1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 post_handle_request (Lisp_Object ignored)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 if (inside_process_energize_request_1 <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 inside_process_energize_request_1--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 if (energize_connection && energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 CSkipRequest (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 pop_conn (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626 Connection *old_conn = (Connection *) get_opaque_ptr (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 if (! old_conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 if (! energize_connection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 if (energize_connection->conn == old_conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 if (CRequestDelayedP (energize_connection->conn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 /* We don't call the CWait* functions any more so this shouldn't happen.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 But if it does someday, then we need to either copy the remaining
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 bits from new_conn to old_conn, or loop processing requests until
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 new_conn is drained.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 DeleteConnection (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 energize_connection->conn = old_conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 process_energize_request_1 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654 if (inside_process_energize_request_1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 /* When the energize process filter is called recursively, push a new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 connection object. The read-pointer of the connection buffer could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658 be in the middle of a request. However, we know that the fd itself
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 is always pointing between requests. So making a new connection is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 a way of skipping past the one request we were in the process of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661 reading when we allowed process output to be handled recursively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663 Connection *old_conn = energize_connection->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664 Connection *new_conn =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 make_energize_connection ((void *) energize_connection,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666 old_conn->fdin, old_conn->fdout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667 energize_connection->conn = new_conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 record_unwind_protect (pop_conn, make_opaque_ptr (old_conn));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671 /* this must come after pop_conn() to get the right connection object */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 record_unwind_protect (post_handle_request, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 inside_process_energize_request_1++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 result = process_one_energize_request ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 notify_delayed_requests ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 /* decrements inside_process_energize_request_1 and possibly replaces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 energize_connection->conn with old_conn.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 /******** Initialize Energize-related state and set up connection ********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691 setup_connection (Editor *ed, unsigned int id1, unsigned int id2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 CEditorRequest *req = CWriteEditorRequest (ed->conn, QueryConnectionRType);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695 /* these 2 slots are ignored */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696 req->generic.queryconnection.major = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 req->generic.queryconnection.minor = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 req->generic.queryconnection.cadillacId1 = id1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 req->generic.queryconnection.cadillacId2 = id2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 req->generic.queryconnection.nProtocols = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 /* first numerical arg is major protocol number, second is minor */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 CWriteProtocol (ed->conn, 0, 10, "editor");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 CWriteLength (ed->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 CWriteRequestBuffer (ed->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 /* this is used as the readMethod of the energize connection, so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 the connection library won't do some buffering that messes us up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 It does this buffering only if conn->readMethod == read, so using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 another function turns it off.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 my_read (int fd, char *buf, int nb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 return read (fd, buf, nb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 static Connection *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 make_energize_connection (Editor *editor, int fdin, int fdout)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 Connection *conn = NewConnection ((void *)editor, fdin, fdout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723 if (conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 conn->readMethod = my_read;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 return conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3728 DEFUN ("handle-energize-request", Fhandle_energize_request, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 Filter called when a request is available from Energize.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3730 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3731 (proc, string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 if (!NILP (string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 CHECK_STRING (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 if (!energize_connection || !energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 /* no need for a message here, Energize is dead */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 return make_int (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 if (!energize_connection || (!EQ (energize_connection->proc, proc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 message ("Got " IDENTITY_CRISIS " request but not from current connection ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3744 return make_int (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3747 if (!NILP (string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3748 add_in_connection_input_buffer (energize_connection->conn,
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
3749 (char *) XSTRING_DATA (string),
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
3750 XSTRING_LENGTH (string));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 return process_energize_request_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756 Lisp_Object Venergize_process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 /* Opens a network connection to Energize.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 * server is a string. It can end up with :<uid> or :<username>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 * in which case the uid is added to the TCP port to get the connection */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 connect_to_energize (char *server_str, char *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 struct Lisp_Process *proc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 Lisp_Object lp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 Lisp_Object fil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 char *host;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 unsigned int port;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 long flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 int id1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 int id2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 if (CGetPortNumber (server_str, &host, &port))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 lp = Fopen_network_stream_internal (build_string ("energize"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 build_string (host),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779 make_int (port));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 if (!NILP (lp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 int infd, outfd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 /* Don't ask the user for confirmation when exiting Emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 Fprocess_kill_without_query (lp, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 proc = XPROCESS (lp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 energize_connection = xnew (Editor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 get_process_file_descriptors (proc, &infd, &outfd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 energize_connection->conn =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 make_energize_connection (energize_connection, infd, outfd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 energize_connection->proc = lp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 energize_connection->binfo_hash = make_hashtable (10);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 energize_connection->image_table = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 energize_connection->gc_save = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 energize_connection->major = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 energize_connection->minor = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 peo = allocate_edit_options (10);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797 request_serial_number = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 global_reply_wait = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 if ((flags = fcntl (energize_connection->conn->fdin, F_GETFL, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 #ifdef O_NONBLOCK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 if (fcntl (energize_connection->conn->fdin, F_SETFL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806 flags & ~O_NONBLOCK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 if (fcntl (energize_connection->conn->fdin, F_SETFL,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 flags & ~O_NDELAY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3815 XSETSUBR (fil, &SFhandle_energize_request);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 set_process_filter (lp, fil, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 Venergize_kernel_busy = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 id1 = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 id2 = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 if (arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 sscanf (arg, "%x,%x", &id1, &id2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825 Venergize_buffers_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 setup_connection (energize_connection, id1, id2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829 Venergize_process = lp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 error ("couldn't connect to " IDENTITY_CRISIS " server");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 error ("couldn't determine " IDENTITY_CRISIS " server port number");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 #ifdef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 if (energize_connection->minor > 9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 close_energize_connection ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 error ("This Emacs doesn't understand " IDENTITY_CRISIS " version 3.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 #endif /* ENERGIZE_V2_HEADERS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 /* Close the connection to energize.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 * Kills all the energize related buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 close_energize_connection ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 Editor *ed = energize_connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 if (ed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 /* make this function as paranoid as we can */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 /* cleanup the busy state */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 show_all_menubars_busy (False);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 Venergize_kernel_busy = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 /* destroy all pop_up boxes */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 lw_destroy_all_pop_ups ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 if (ed->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 DeleteConnection (ed->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 ed->conn = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 if (ed->binfo_hash)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 /* we are flushing everything, so we just ignore any change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 hooks and don't make an effort to delete extents since they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 are all going away */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 specbind (Qenergize_buffer_modified_hook, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 call0 (intern ("de-energize-all-buffers"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 free_hashtable (ed->binfo_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 ed->binfo_hash = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 /* Do this after de-energize-all-buffers or frame sizes thrash. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 debuggerpanel_sheet = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 desired_debuggerpanel_exposed_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 free_edit_options (peo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 if (ZEROP (ed->proc)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 if (!NILP (ed->proc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 Fdelete_process (ed->proc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 ed->proc = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 Venergize_buffers_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 /* now kill buffers created to satisfy requests on old connection */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 xfree (ed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 /* mark as closed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 energize_connection = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906 Venergize_process = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3910 DEFUN ("connect-to-energize-internal", Fconnect_to_energize_internal, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911 Usage: (connect-to-energize-internal <server-name> <energizearg>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912 Energizearg representing two 32 bit Energize ids that will be passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 to the Energize server when opening the Energize connection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 Only one connection can be open at a time.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3915 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3916 (server_name, energize_arg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 unsigned char *server;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 unsigned char *arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 if (!NILP (energize_arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 CHECK_STRING (energize_arg);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
3924 arg = XSTRING_DATA (energize_arg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 arg = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 if (!NILP (server_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 CHECK_STRING (server_name);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
3932 server = XSTRING_DATA (server_name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 server = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 /* since we are going ahead with this, make sure that we are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 really and truly disconnected first */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 Fclose_connection_to_energize ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 connect_to_energize ((char *)server, (char *)arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3945 DEFUN ("close-connection-to-energize", Fclose_connection_to_energize, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 Close the open Energize connection, if any.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3947 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
3948 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 if (!energize_connection) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 close_energize_connection ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 /* Extents stuff; this used to be in extents.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 set_extent_flags (EXTENT extent, Energize_Extent_Data *ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 /* clear every flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 if (!EXTENT_LIVE_P (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 extent_start_open_p (extent) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 extent_end_open_p (extent) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 extent_read_only_p (extent) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968 set_extent_mouse_face (extent, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 extent_unique_p (extent) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 extent_duplicable_p (extent) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 extent_invisible_p (extent) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 set_extent_glyph (extent, 0, 0, GL_TEXT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 set_extent_glyph (extent, 0, 1, GL_TEXT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 if (ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 ext->warn_modify = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 switch (ext->extentType)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 case CEAttribute:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 case CEAbbreviation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 case CEWriteProtect:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 extent_read_only_p (extent) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 case CEGeneric:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 GLYPH begin_glyph = 0; /* always the class glyph */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 GLYPH end_glyph = 0; /* always the instance glyph */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 /* if (ext->u.generic.gData->id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 SET_EXTENT_FLAG (extent, EF_MENU);*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 if (ext->u.generic.gData->glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 end_glyph = ext->u.generic.gData->glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 if (ext->u.generic.gData->cl && ext->u.generic.gData->cl->glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 begin_glyph = ext->u.generic.gData->cl->glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 if (begin_glyph && end_glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 begin_glyph = end_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 end_glyph = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 if (begin_glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 set_extent_glyph (extent, begin_glyph, 0, GL_TEXT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 if (end_glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 set_extent_glyph (extent, end_glyph, 1, GL_TEXT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 if (ext->u.generic.gData->cl &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 (ext->u.generic.gData->cl->flags & CCElectric))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 set_extent_mouse_face (extent, Qhighlight);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 if (ext->u.generic.gData->cl &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022 (ext->u.generic.gData->cl->flags & CCWarnModified))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 ext->warn_modify = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 #if 0 /* #### some day (soon?)... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 if (ext->u.generic.gData->cl &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 (ext->u.generic.gData->cl->flags & CCColumn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 SET_EXTENT_FLAG (extent, EF_COLUMN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 extent_duplicable_p (extent) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 extent_unique_p (extent) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 extern Lisp_Object Fset_extent_face (Lisp_Object extent, Lisp_Object name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 set_extent_attributes_index (EXTENT extent, Energize_Extent_Data *ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 int graphic_attributes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 if (!ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048 extent_face_id (extent) = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051 switch (ext->extentType)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 case CEAttribute:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 graphic_attributes = ext->u.attr.attrValue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 case CEGeneric:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 graphic_attributes = ext->u.generic.gData->attribute;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061 case CEWriteProtect:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062 /* this type has NO display attributes */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 extent_face_id (extent) = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 graphic_attributes = GA_NO_CHANGE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 if (graphic_attributes >= GA_MAX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 graphic_attributes = GA_NO_CHANGE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 /* The Venergize_attributes_mapping global is an alist of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 ( (<kernel-attribute-number> . <emacs-face-name> ) ... )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 Lisp_Object face = Fcdr (Fassq (make_int (graphic_attributes),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 Venergize_attributes_mapping));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 Lisp_Object e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 XSETEXTENT (e, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 if (NILP (face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 message ("Unknown Energize attribute %d", graphic_attributes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 else if (EQ (face, Qdefault))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 Fset_extent_face (e, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 Fset_extent_face (e, face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 restore_energize_extent_state (EXTENT extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 Energize_Extent_Data *ext = energize_extent_data (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 if (!ext) return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 set_extent_flags (extent, ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 set_extent_attributes_index (extent, ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4100 DEFUN ("extent-to-generic-id", Fextent_to_generic_id, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 Return Energize ID of buffer of EXTENT.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4102 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4103 (extent_obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 CHECK_EXTENT (extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 return word_to_lisp (energize_extent_data_id
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 (energize_extent_data (XEXTENT (extent_obj))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 /* buffer modified routines */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 send_buffer_modification_state (Editor *editor, BufferInfo *binfo, int flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116 Connection *conn = editor->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 EId bufferId = binfo->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 if (conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 int state = (flag)?(CMBufferSetModified):(CMBufferSetUnmodified);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 CWriteModifiedBufferHeader (conn, bufferId, state);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 CWriteRequestBuffer (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 /* returns 1 if buffer is locked (non-editable),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 0 if it isn't (editable), and -1 if it can't tell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131 check_buffer_lock (Editor *editor, BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4133 Connection *conn = editor->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4134 struct reply_wait rw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 /* If permision already granted by kernel dont' ask again */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 if (binfo->editable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 /* If can't ask say we do not know */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141 if (!conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 /* Ask the kernel */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145 CWriteModifiedBufferHeader (conn, binfo->id, CMBufferQueryLock);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 conn->header->serial = ++request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147 CWriteRequestBuffer (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 rw.serial = request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 rw.objectId = binfo->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 rw.status = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 if (!wait_for_reply (&rw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 if (rw.status == CMBufferLocked)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 /* Buffer is locked by kernel so we cannot edit it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 else if (rw.status == CMBufferUnlocked)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 /* Buffer is unlocked by kernel: edit permission granted! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164 binfo->editable = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4166 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4169 /* This should never happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175 /* Ask the kernel if BUFFER is currently locked -- waits for answer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177 buffer_locked_p (Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 if (!energize_connection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 if (NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 XSETBUFFER (buffer, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191 if (!binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 /* Not an Energize buffer, return Qnil: can edit buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 /* Energize buffer, check if editable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 return check_buffer_lock (energize_connection, binfo) == 0 ? Qnil : Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 /* Called by map_extents function called by Fenergize_send_buffer_modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 notify_extent_modified (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 /* arg is a binfo_and_state */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 binfo_and_state *bans = (binfo_and_state*)arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 Energize_Extent_Data *ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 BufferInfo *binfo = bans->binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 Connection *conn = binfo->editor->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 EId *extent_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 Lisp_Object extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218 XSETEXTENT (extent_obj, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219 if ((ext = extent_to_data (extent_obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 && ext->warn_modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4221 && ext->extentType == CEGeneric
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222 && ext->u.generic.gData
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 && ext->u.generic.gData->cl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 && (ext->u.generic.gData->cl->flags & CCWarnModified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 && ext->u.generic.gData->modified_state != bans->state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 if (bans->tell_energize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 CWriteModifiedExtentsHeader (conn, binfo->id, bans->state, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230 extent_id = CPut (conn, EId);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231 *extent_id = ext->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4232 CWriteLength (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4233 CWriteRequestBuffer (conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 ext->u.generic.gData->modified_state = bans->state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4240 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 ceiwme_lower_mf (EXTENT e, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 Energize_Extent_Data *ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246 ext = extent_to_data (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247 if (ext && ext->warn_modify)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 *((EXTENT *) arg) = e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253 ceiwme_upper_mf (EXTENT e, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 Energize_Extent_Data *ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 ext = extent_to_data (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 if (ext && ext->warn_modify)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 *((EXTENT *) arg) = e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269 coerce_endpoints_to_be_inside_warn_on_modify_extents (Bufpos *from_ptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 Bufpos *to_ptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271 struct buffer *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 EXTENT lower_extent = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 EXTENT upper_extent = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 Bufpos lower_bound = *from_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 Bufpos upper_bound = *to_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277 Lisp_Object tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 /* make sure that from <= to */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 Bufpos tmp_int = max (lower_bound, upper_bound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282 *from_ptr = lower_bound = min (lower_bound, upper_bound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 *to_ptr = upper_bound = tmp_int;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 if (!BUFFER_NOTIFY_BACKGROUND_BIT_SET_P (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 map_extents (BUF_BEG (b), lower_bound, ceiwme_lower_mf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 (void *) &lower_extent, make_buffer (b), 0, ME_END_CLOSED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 if (!lower_extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 lower_bound = BUF_BEG (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 map_extents (upper_bound, BUF_Z (b), ceiwme_upper_mf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 (void *) &upper_extent, make_buffer (b), 0, ME_END_CLOSED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 if (!upper_extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297 upper_bound = BUF_Z (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 Bufpos xstart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 XSETEXTENT (tmp, upper_extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302 xstart = XINT (Fextent_start_position (tmp));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 upper_bound = max (upper_bound, xstart);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 /* I forget why, but if we found an lower bound, we don't need to find
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 an upper bound */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 Bufpos xstart;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 XSETEXTENT (tmp, lower_extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312 xstart = XINT (Fextent_start_position (tmp));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 lower_bound = min (lower_bound, xstart);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316 *from_ptr = lower_bound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 *to_ptr = upper_bound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 mark_all_extents_as_unmodified (BufferInfo *binfo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324 binfo_and_state bans;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 bans.binfo = binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 bans.state = FALSE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 bans.tell_energize = FALSE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329 map_extents (BUF_BEG (XBUFFER (binfo->emacs_buffer)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 BUF_Z (XBUFFER (binfo->emacs_buffer)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 notify_extent_modified, &bans,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 binfo->emacs_buffer, 0, ME_END_CLOSED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 /* Send the BufferModified events for the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 * Handles both global buffer modified and extents modified. */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4337 DEFUN ("energize-send-buffer-modified", Fenergize_send_buffer_modified, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 Send a BufferModified request for the current buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4339 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4340 (state, from, to))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 int modifiedp = NILP (state)? 0 : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345 Bufpos from_int = XINT (from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 Bufpos to_int = XINT (to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 if (!energize_connection || !energize_connection->conn) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350 XSETBUFFER (buffer, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 Fenergize_barf_if_buffer_locked ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 if (binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 /* now make sure that from and to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 are inside some warn_on_modify extents somewhere */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 coerce_endpoints_to_be_inside_warn_on_modify_extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 (&from_int, &to_int, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 XSETINT (from, from_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 XSETINT (to, to_int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 if (binfo->modified_state != modifiedp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 send_buffer_modification_state (energize_connection, binfo,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 modifiedp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367 binfo->modified_state = modifiedp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369 #ifndef ENERGIZE_V2_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 if (!(binfo->flags & CBFileYourself))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373 if (modifiedp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 binfo_and_state bans;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376 bans.binfo = binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 bans.state = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378 bans.tell_energize = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379 map_extents (XINT (from), XINT (to),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 notify_extent_modified, &bans,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 binfo->emacs_buffer, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382 ME_END_CLOSED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 mark_all_extents_as_unmodified (binfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4391 DEFUN ("energize-barf-if-buffer-locked",
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4392 Fenergize_barf_if_buffer_locked, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393 Error if the buffer is locked.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4394 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4395 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4396 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 XSETBUFFER (buffer, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 if (!energize_connection || !energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403 while (!NILP (buffer_locked_p (buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4405 notify_delayed_requests ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4406 Fsignal (Qbuffer_locked_by_energize, (Fcons (buffer, Qnil)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4407 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4412 DEFUN ("energize-send-region", Fenergize_send_region, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 Send region as user input
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4414 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4415 (start, end))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4416 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4417 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4418 Lisp_Object b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4419 CEditorRequest *req;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421 if (!energize_connection || !energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4422 error ("Not connected to " IDENTITY_CRISIS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424 XSETBUFFER (b, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 if (binfo = get_buffer_info_for_emacs_buffer (b, energize_connection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 Bufpos st, en;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428 Bufpos ceil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430 get_buffer_range_char (current_buffer, start, end, &st, &en);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434 ceil = BUF_CEILING_OF (current_buffer, st);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 req = CWriteEditorRequest (energize_connection->conn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 UserTypedSomethingRType);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438 req->usertypedsomething.bufferId = binfo->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 CWriteVstringLen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 (energize_connection->conn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441 (char *) BUF_BYTE_ADDRESS (current_buffer, st), ceil - st);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4442 CWriteLength (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4443 CWriteRequestBuffer (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444 st = ceil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 } while (st < en);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4450
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4451 DEFUN ("connected-to-energize-p", Fconnected_to_energize_p, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452 Return nil if no connection to Energize.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4453 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4454 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 if (!energize_connection ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 !energize_connection->conn ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 !energize_connection->binfo_hash ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 !PROCESSP (energize_connection->proc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4465 DEFUN ("energize-user-input-buffer-mark",
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4466 Fenergize_user_input_buffer_mark, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4467 Return the mark associated to the given Energize buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4468 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4469 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4471 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 XSETBUFFER (buffer, decode_buffer (buffer, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 if (!energize_connection) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 if ((binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 return binfo->output_mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 energize_get_buffer_process (Lisp_Object buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 if (!BUFFERP (buf)) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487 if (!energize_connection) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4488 binfo = get_buffer_info_for_emacs_buffer (buf, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489 if (!binfo) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490 if (! binfo->buffer_type) return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491 if (!strcmp (binfo->buffer_type, "energize-debugger-buffer") ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492 !strcmp (binfo->buffer_type, "energize-log-file-buffer"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493 return Venergize_process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4498 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4499 get_energize_connection_and_buffer_id (Lisp_Object buffer, void **conn_ptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4500 long *buffer_id_ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4502 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504 if (!energize_connection || !energize_connection->conn) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 *conn_ptr = (void *) energize_connection->conn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 *buffer_id_ptr = (long) binfo ? binfo->id : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4513 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 get_energize_connection_and_current_buffer_id (void **conn_ptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515 long *buffer_id_ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4517 Lisp_Object lisp_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 XSETBUFFER (lisp_buffer, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4520 return get_energize_connection_and_buffer_id (lisp_buffer, conn_ptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4521 buffer_id_ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4522 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524 int *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525 get_psheets_for_buffer (Lisp_Object buffer, int *count_ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4526 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 BufferInfo *binfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 if (!energize_connection || !energize_connection->conn) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 binfo = get_buffer_info_for_emacs_buffer (buffer, energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532 if (!binfo) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 if (count_ptr) *count_ptr = binfo->n_p_sheets;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 return binfo->p_sheet_ids;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539 notify_energize_sheet_hidden (EId id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541 EId buffer_id = buffer_id_of_sheet (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542 if (!buffer_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4543 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545 if (buffer_id && energize_connection && energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547 CWriteSheetRequest (energize_connection->conn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 CSHide, id, buffer_id, "");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 CWriteRequestBuffer (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4550 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4553 DEFUN ("energize-query-buffer", Fenergize_query_buffer, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554 Ask Energize to create a buffer containing the file filename.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555 Returns the buffer or NIL if Energize cannot create the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 If second argument just-ask is T, just ask if Energize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557 already knows about the file and returns T if yes, NIL otherwise.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4558 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4559 (filename, just_ask))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561 struct Lisp_String *filename_str;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 CEditorRequest *creq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 char *dir_sep;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564 struct reply_wait rw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566 if (!energize_connection || !energize_connection->conn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 filename = Fexpand_file_name (filename, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 filename_str = XSTRING (filename);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 dir_sep = (char *) strrchr ((char *) string_data (filename_str), '/');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574 creq = CWriteEditorRequest (energize_connection->conn, QueryBufferRType);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 creq->head.data = !NILP (just_ask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576 creq->head.serial = ++request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4577 CWriteVstringLen (energize_connection->conn, (char *) string_data (filename_str),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 (dir_sep)? (dir_sep - (char *) string_data (filename_str)): 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 CWriteVstringLen (energize_connection->conn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 (char *) string_data (filename_str), string_length (filename_str));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 CWriteLength (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582 CWriteRequestBuffer (energize_connection->conn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 rw.serial = request_serial_number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 rw.objectId = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 if (!wait_for_reply (&rw))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4588 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4590 if (rw.status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4591 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592 if (rw.objectId)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 BufferInfo* binfo = get_buffer_info_for_id (rw.objectId,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 energize_connection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596 return binfo ? binfo->emacs_buffer : Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4606 DEFUN ("energize-protocol-level", Fenergize_protocol_level, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 Return the Energize protocol level.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4608 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4609 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4611 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4612 energize_connection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4613 ? Fcons (make_int (energize_connection->major),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4614 make_int (energize_connection->minor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4615 : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4616 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4618
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4619 DEFUN ("energize-psheets-visible-p", Fenergize_psheets_visible_p, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4620 Whether the (optional) frame currently has open psheets.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4621 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4622 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4623 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 if (NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4625 XSETFRAME (frame, XFRAME(Fselected_frame(Qnil)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4626 CHECK_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4627 if (FRAME_X_CURRENT_PSHEETS (XFRAME (frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4628 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4629 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4631
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4632 DEFUN ("energize-buffer-has-psheets-p", Fenergize_buffer_has_psheets_p, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4633 Whether the buffer has psheets associated with it.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4634 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4635 (buf))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4636 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4637 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4638 if (NILP (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4639 buf = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4640 CHECK_BUFFER (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4641 if (get_psheets_for_buffer (buf, &count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4642 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4643 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4647 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4648 make_psheets_desired (struct frame *f, Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4650 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4651 int *psheets;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4653 if (NILP (buffer) || !(psheets = get_psheets_for_buffer (buffer, &count)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4654 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4655 FRAME_X_DESIRED_PSHEETS (f) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4656 FRAME_X_DESIRED_PSHEET_COUNT (f) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4657 FRAME_X_DESIRED_PSHEET_BUFFER (f) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4659 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4660 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4661 /* Do not show the debugger panel in this function. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4662 * debugger panel should never be listed in the visible psheets. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4663 extern int debuggerpanel_sheet;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4664
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4665 if (count == 1 && psheets [0] == debuggerpanel_sheet)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4666 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4668 FRAME_X_DESIRED_PSHEETS (f) = psheets;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4669 FRAME_X_DESIRED_PSHEET_COUNT (f) = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4670 FRAME_X_DESIRED_PSHEET_BUFFER (f) = buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4671 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4673 /* Garbage the frame so that the sheets get recomputed right away and not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4674 the next time some display change happens. Possibly redisplay should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4675 notice this on its own without the garbaged flag. But once redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4676 gets smarter about such things, all garbagers should be revisited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4677 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4678 MARK_FRAME_CHANGED (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4679 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4681 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4682 desired_psheet_buffer (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4683 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4684 if (FRAME_X_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4685 return FRAME_X_DESIRED_PSHEET_BUFFER (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4686 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4687 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4688 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4690 /* This function is invoked when the user clicks on the "sheet" button.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4691 */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4692 DEFUN ("energize-toggle-psheet", Fenergize_toggle_psheet, 0, 0, "", /*
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4693
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4694 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4695 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4696 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4697 struct frame *frame = XFRAME(Fselected_frame(Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4698 Lisp_Object buffer = Fwindow_buffer (Fselected_window (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4699 if (EQ (buffer, desired_psheet_buffer (frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4700 make_psheets_desired (frame, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4701 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4702 make_psheets_desired (frame, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4703 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4704 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4707 static void energize_show_menubar_of_buffer (Lisp_Object frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4708 Lisp_Object buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4709 Lisp_Object psheets_too);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4711 /* This is called when a buffer becomes visible in some window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4713 Show the menubar associated with this buffer, and show the psheets as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4714 well if this buffer is the last buffer whose psheets were visible in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4715 this frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4716 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4717 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4718 energize_buffer_shown_hook (struct window *window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4719 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720 struct frame* frame = XFRAME (window->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 Lisp_Object buffer = window->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722 Lisp_Object pbuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724 if (! FRAME_X_P (frame)) return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 pbuf = desired_psheet_buffer (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4727 if (!MINI_WINDOW_P (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728 energize_show_menubar_of_buffer (window->frame, buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729 (EQ (buffer, pbuf) ? Qt : Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4734 find_buffer_in_different_window (window, buffer, not_in)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4735 struct window* window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4736 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4737 struct window* not_in;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4738 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4739 Lisp_Object child;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4740 if (!NILP (window->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4742 /* a leaf window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4743 return (EQ (window->buffer, buffer) && (window != not_in));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4744 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4745 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4747 /* a non leaf window, visit either the hchild or the vchild */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4748 for (child = !NILP (window->vchild) ? window->vchild : window->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4749 !NILP (child);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4750 child = XWINDOW (child)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4751 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752 if (find_buffer_in_different_window (XWINDOW (child), buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753 not_in))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4756 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4757 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4758 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4760 /* returns 1 if the buffer is only visible in window on frame f */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4761 static int
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4762 buffer_only_visible_in_this_window_p (Lisp_Object buffer,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4763 struct frame* f,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4764 struct window* window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4765 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4766 return !find_buffer_in_different_window (XWINDOW (f->root_window), buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4767 window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4770 /* This is called just before a buffer which is visible becomes invisible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4771 either because some other buffer is about to be made visible in its window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4772 or because that window is being deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4774 If this buffer's psheets are visible, hide them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4775 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4777 energize_buffer_hidden_hook (struct window *window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779 struct frame *f = XFRAME (window->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781 if (! FRAME_X_P (f)) return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783 /* hides the p_sheet if we are changing the buffer of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784 * selected window of the frame and the p_sheet where displayed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 if (EQ (window->buffer, desired_psheet_buffer (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786 && buffer_only_visible_in_this_window_p (window->buffer, f, window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787 make_psheets_desired (f, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791 /* This is called just before the selected window is no longer the selected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792 window because some other window is being selected. The given window is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4793 not being deleted, it is merely no longer the selected one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4795 This doesn't do anything right now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4796 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 energize_window_deselected_hook (struct window *window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803 /* This is called just after a window has been selected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4805 Show the menubar associated with this buffer; leave the psheets as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4806 they are.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4807 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4808 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4809 energize_window_selected_hook (struct window *window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4810 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4811 struct frame* frame = XFRAME (window->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4812 Lisp_Object buffer = window->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4814 if (FRAME_X_P (frame) && !MINI_WINDOW_P (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 energize_show_menubar_of_buffer (window->frame, buffer, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 int current_debuggerpanel_exposed_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 int desired_debuggerpanel_exposed_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822 int debuggerpanel_sheet;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4824 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4825 energize_show_menubar_of_buffer (Lisp_Object frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4826 Lisp_Object buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4827 Lisp_Object psheets_too)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4828 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4829 struct frame *f = decode_x_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4831 if (! NILP (psheets_too))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4832 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4833 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4834 XSETBUFFER (buffer, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4835 make_psheets_desired (f, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4836 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4840 /* edit-mode dialog box
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4841 This stuff really sucks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4842 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4844 static struct editmode {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4845 int ok, external, view, edit, window, split;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4846 char *other;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4847 } editmode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4849 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4850 edit_mode_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4851 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4852 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4853 char *name = (char *) client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4855 if ((int) client_data == -1) name = "cancel"; /* WM_DELETE_WINDOW */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4857 if (!strcmp (XtName (widget), "otherText")) /* screw it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4858 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4859 else if (!strcmp (name, "externalBox"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4861 /* make the text slot be active only if "other" is selected */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4862 data = malloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4863 data->name = "externalOther";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4864 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4865 data->enabled = data->selected;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4866 data->name = "otherText";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4867 lw_modify_all_widgets (id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4868 free_widget_value (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4869 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4870 else if (!strcmp (name, "cancel"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4872 editmode.ok = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4873 lw_destroy_all_widgets (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4874 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4875 else if (!strcmp (name, "help"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4876 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4877 Lisp_Object v = Fmake_vector (make_int (3), Qt);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
4878 XVECTOR_DATA (v) [0] = build_string ("ok");
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
4879 XVECTOR_DATA (v) [1] = list1 (Qignore);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4880 Fpopup_dialog_box (list2 (build_string ("dbx_editmode_help"), v));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4881 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4882 else if (!strcmp (name, "ok"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4884 editmode.ok = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4885 data = malloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4886 data->name = "externalEmacs";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888 if (data->selected) editmode.external = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 data->name = "externalViXterm";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4890 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4891 if (data->selected) editmode.external = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4892 data->name = "externalViCmdtool";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4893 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4894 if (data->selected) editmode.external = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4895 data->name = "externalOther";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4896 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4897 if (data->selected) editmode.external = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4898 data->name = "otherText";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4899 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4900 editmode.other = data->value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902 data->name = "emacsView";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4904 if (data->selected) editmode.view = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4905 data->name = "viView";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4906 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4907 if (data->selected) editmode.view = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4908 data->name = "lessView";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4909 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4910 if (data->selected) editmode.view = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4912 data->name = "editEmacs";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4913 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4914 if (data->selected) editmode.edit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4915 data->name = "editVi";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4916 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4917 if (data->selected) editmode.edit = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4919 data->name = "windowOne";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4920 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4921 if (data->selected) editmode.window = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4922 data->name = "windowSeveral";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4923 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4924 if (data->selected) editmode.window = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4925 data->name = "windowMany";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4927 if (data->selected) editmode.window = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4929 data->name = "splitScreens";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4930 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4931 editmode.split = !!data->selected;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4933 free_widget_value (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4934 lw_destroy_all_widgets (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4935 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4936 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4937 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4938 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4939 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4940 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4942 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4943 editmode_done (void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4944 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4945 return (editmode.ok != 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4946 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4948 extern LWLIB_ID new_lwlib_id (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4949
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4950 DEFUN ("energize-edit-mode-prompt", Fenergize_edit_mode_prompt, 6, 6, 0, /*
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4951
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4952 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
4953 (external, edit_mode, view_mode, other_text, window, split))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4954 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4955 int dbox_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4956 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4957 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4958 Widget parent, dbox;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4959 Lisp_Object frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4961 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4962 CHECK_X_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4963 parent = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4965 CHECK_INT (external);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4966 CHECK_INT (edit_mode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4967 CHECK_INT (view_mode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4968 CHECK_INT (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4969 CHECK_INT (split);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4970 CHECK_STRING (other_text);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4972 editmode.ok = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4973 editmode.external = XINT (external);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4974 editmode.view = XINT (view_mode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4975 editmode.edit = XINT (edit_mode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4976 editmode.window = XINT (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4977 editmode.split = XINT (split);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4978 editmode.other = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4980 data = malloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4981 data->name = "editmode";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4982 data->value = "editmode";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4983 data->enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4985 dbox_id = new_lwlib_id ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4986 dbox = lw_create_widget ("editmode", "editmode", dbox_id, data, parent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4987 1, 0, edit_mode_callback, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4988 data->value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 data->name = "button1"; data->call_data = data->value = "ok";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4991 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992 data->name = "button2"; data->call_data = data->value = "cancel";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4993 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4994 data->name = "button3"; data->call_data = data->value = "help";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4995 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4996 data->name = data->call_data = "externalBox";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4997 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4998 data->name = "otherText"; data->call_data = "otherText";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4999 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5000 data->name = "message"; data->value = "editmode";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5001 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 data->selected = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004 switch (editmode.external)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5005 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 case 0: data->name = "externalEmacs"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007 case 1: data->name = "externalViXterm"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008 case 2: data->name = "externalViCmdtool"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5009 case 3: data->name = "externalOther"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5010 default: abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5012 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5013 switch (editmode.view)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5015 case 0: data->name = "emacsView"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016 case 1: data->name = "viView"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 case 2: data->name = "lessView"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018 default: abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5021 switch (editmode.edit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5022 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5023 case 0: data->name = "editEmacs"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5024 case 1: data->name = "editVi"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5025 default: abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028 switch (editmode.window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5030 case 0: data->name = "windowOne"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5031 case 1: data->name = "windowSeveral"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 case 2: data->name = "windowMany"; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5033 default: abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5034 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5035 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5037 data->name = "otherText";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5038 data->selected = 0;
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
5039 data->value = (char *) XSTRING_DATA (other_text);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5040 data->enabled = (editmode.external == 3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5041 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5043 data->name = "splitScreens";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5044 data->enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5045 data->selected = editmode.split;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5046 data->value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5047 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5049 free_widget_value (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5051 lw_pop_up_all_widgets (dbox_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5053 wait_delaying_user_input (editmode_done, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5055 if (editmode.ok == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5056 return Fcons (external,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5057 list5 (edit_mode, view_mode, other_text, window, split));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5058 else if (editmode.ok == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5059 return Fcons (make_int (editmode.external),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5060 list5 (make_int (editmode.view),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5061 make_int (editmode.edit),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5062 build_string (editmode.other ? editmode.other : ""),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5063 make_int (editmode.window),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5064 make_int (editmode.split)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5065 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5066 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5067 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5069 static LWLIB_ID search_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5070 static int last_search_up_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5072 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5073 hide_search_dialog (Widget w, LWLIB_ID id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5075 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5076 /* I'd like to do this, but the widget occasionally gets FUCKED */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5077 XUnmapWindow (XtDisplay (w), XtWindow (w));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5078 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5079 lw_destroy_all_widgets (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5080 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5081 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5084 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5085 search_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5086 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5087 Widget parent = widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5088 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5089 char *name = (char *) client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5090 Lisp_Object search, replace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5091 Lisp_Object case_sensitive_p, regexp_p, direction, match_word_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5092 Lisp_Object device = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5094 if ((int) client_data == -1) name = "done"; /* WM_DELETE_WINDOW */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5096 while (parent && XtClass (parent) != xmDialogShellWidgetClass)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5097 parent = XtParent (parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5098 if (! parent) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5100 if (!strcmp (name, "done"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5101 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5102 hide_search_dialog (parent, id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5103 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5105 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5106 else if (!strcmp (name, "help"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5107 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5108 Lisp_Object v = Fmake_vector (3, Qt);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
5109 XVECTOR_DATA (v) [0] = build_string ("ok");
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 157
diff changeset
5110 XVECTOR_DATA (v) [1] = list1 (Qignore);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5111 Fpopup_dialog_box (list2 (build_string ("dbx_search_help"), v));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5112 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5113 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5114 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5116 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5117 struct device *d = get_device_from_display (XtDisplay (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5118 XSETDEVICE (device, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5119 DEVICE_X_MOUSE_TIMESTAMP (d) = DEVICE_X_GLOBAL_MOUSE_TIMESTAMP (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5122 if (!strcmp (name, "gotoStart"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5124 signal_special_Xt_user_event (device, Qcall_interactively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5125 Qbeginning_of_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127 else if (!strcmp (name, "gotoEnd"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129 signal_special_Xt_user_event (device, Qcall_interactively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130 Qend_of_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5131 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5132 else if (!strcmp (name, "scrollForward"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5133 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5134 signal_special_Xt_user_event (device, Qcall_interactively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135 Qscroll_up);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5136 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5137 else if (!strcmp (name, "scrollBack"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5138 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5139 signal_special_Xt_user_event (device, Qcall_interactively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5140 Qdown_up);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5142 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5143 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5144 data = malloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5145 data->name = "searchText";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5146 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5147 search = build_string (data->value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5148 data->name = "replaceText";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5149 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5150 replace = build_string (data->value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5151 data->name = "regexpSearch";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5152 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5153 regexp_p = (data->selected ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5154 data->name = "caseSearch";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5155 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5156 case_sensitive_p = (data->selected ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5157 data->name = "matchWord";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5158 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5159 match_word_p = (data->selected ? Qt : Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5160
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5161 data->name = "directionForward";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5162 if (! lw_get_some_values (id, data)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5163 direction = data->selected ? Qt : Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5164
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5165 if (!strcmp (name, "search"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5166 replace = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5167 else if (!strcmp (name, "replace"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5168 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5169 else if (!strcmp (name, "replace_all"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5171 replace = list1 (replace);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5172 /* hide_search_dialog (parent, id); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5173 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5174 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5175 abort ();
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5176
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5177 free_widget_value (data);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5178
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5179 signal_special_Xt_user_event (device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5180 intern ("energize-search-internal"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5181 (NILP (replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5182 ? list5 (case_sensitive_p, match_word_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5183 regexp_p, direction, search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5184 : list6 (case_sensitive_p, match_word_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5185 regexp_p, direction, search,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5186 replace)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5187 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5188 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5190
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5191 DEFUN ("energize-search", Fenergize_search, 0, 0, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5192 Pop up the search-and-replace dialog box.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5193 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5194 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5195 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 int dbox_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5197 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5199 Widget parent, dbox;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5200 Lisp_Object frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5202 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5203 CHECK_X_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5204 parent = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5206 data = malloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5208 dbox_id = (search_id ? search_id : new_lwlib_id());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5209 dbox = lw_create_widget ("search", "search", dbox_id, NULL, parent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5210 1, 0, search_callback, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5211 data->enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5212 data->value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5214 data->name = "button1"; data->value = data->call_data = "search";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5215 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5216 data->name = "button2"; data->value = data->call_data = "replace";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5217 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5218 data->name = "button3"; data->value = data->call_data = "replace_all";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5219 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5220 data->name = "button4"; data->value = data->call_data = "done";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5221 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5223 data->value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5224 data->name = data->call_data = "gotoStart";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5225 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5226 data->name = data->call_data = "gotoEnd";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5227 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5228 data->name = data->call_data = "scrollBack";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5229 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5230 data->name = data->call_data = "scrollForward";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5231 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5233 data->value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5234 data->name = data->call_data = "caseSearch";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5235 data->selected = NILP (current_buffer->case_fold_search);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5236 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5238 data->name = data->call_data = "directionForward";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5239 data->selected = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5240 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5241 data->name = data->call_data = "directionBackward";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5242 data->selected = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5243 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5245 free_widget_value (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5247 lw_pop_up_all_widgets (dbox_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5248 last_search_up_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5249 if (search_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5251 Widget w = lw_get_widget (dbox_id, parent, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5252 if (! w) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5253 XMapRaised (XtDisplay (w), XtWindow (w));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5255 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5256 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5257 search_id = dbox_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5260 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5265 /*************** Definition of Emacs Lisp-callable functions ***************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5267 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5268 syms_of_energize (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5269 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5270 DEFSUBR (Fenergize_send_buffer_modified);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5271 DEFSUBR (Fenergize_list_menu);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5272 DEFSUBR (Fenergize_execute_menu_item);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5273 DEFSUBR (Fenergize_execute_command_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5274 DEFSUBR (Fconnect_to_energize_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5275 DEFSUBR (Fconnected_to_energize_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5276 DEFSUBR (Fclose_connection_to_energize);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5277 DEFSUBR (Fhandle_energize_request);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5278 DEFSUBR (Fenergize_buffer_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5279 DEFSUBR (Fenergize_buffer_type);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5280 DEFSUBR (Fset_energize_buffer_type_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5281 DEFSUBR (Fenergize_buffer_id);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5282 DEFSUBR (Fenergize_request_kill_buffer);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5283 DEFSUBR (Fenergize_send_region);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5284 DEFSUBR (Fenergize_user_input_buffer_mark);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5285 DEFSUBR (Fenergize_update_menubar);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5286 DEFSUBR (Fenergize_extent_menu_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5287 DEFSUBR (Fenergize_query_buffer);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5288 DEFSUBR (Fenergize_barf_if_buffer_locked);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5289 DEFSUBR (Fenergize_psheets_visible_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5290 DEFSUBR (Fenergize_buffer_has_psheets_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5291 DEFSUBR (Fenergize_toggle_psheet);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5292 DEFSUBR (Fenergize_protocol_level);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5293 DEFSUBR (Fenergize_edit_mode_prompt);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5294 DEFSUBR (Fenergize_search);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
5295 DEFSUBR (Fextent_to_generic_id);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5297 defsymbol (&Qenergize_create_buffer_hook, "energize-create-buffer-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5298 defsymbol (&Qenergize_buffer_modified_hook, "energize-buffer-modified-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5300 defsymbol (&Qenergize_kernel_busy, "energize-kernel-busy");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5302 defsymbol (&Qenergize_kernel_busy_hook, "energize-kernel-busy-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5303 defsymbol (&Qenergize_menu_update_hook, "energize-menu-update-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5304 defsymbol (&Qbuffer_locked_by_energize, "buffer-locked-by-energize");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5305 defsymbol (&Qenergize_user_input_buffer_mark,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5306 "energize-user-input-buffer-mark");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5307 defsymbol (&Qenergize_make_many_buffers_visible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5308 "energize-make-many-buffers-visible");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5309 defsymbol (&Qenergize, "energize");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5310 defsymbol (&Qenergize_auto_revert_buffer, "energize-auto-revert-buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5311 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5313 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5314 vars_of_energize (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5315 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5316 energize_connection = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5317 inside_process_energize_request_1 = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5319 staticpro (&Venergize_buffers_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5320 Venergize_buffers_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5322 staticpro (&Vall_energize_pixmaps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5323 Vall_energize_pixmaps = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5325 Fprovide (intern ("energize"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5327 search_id = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5329 DEFVAR_LISP ("energize-process", &Venergize_process /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5330 The Lisp object representing the Energize connection, or nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5331 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5332 Venergize_process = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5334 DEFVAR_LISP ("energize-create-buffer-hook", &Venergize_create_buffer_hook /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5335 Hook called when buffer is created by energize; takes
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5336 BUFFER as its only argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5337 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5338 Venergize_create_buffer_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5341 DEFVAR_LISP ("energize-kernel-modification-hook",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5342 &Venergize_kernel_modification_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5343 Hook called when a buffer is being modified by energize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5344 takes no arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5345 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5346 Venergize_kernel_modification_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5348 DEFVAR_BOOL ("ignore-kernel",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5349 &ignore_kernel /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5350 Set when the kernel should be ignored -- for debugging.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5351 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5352 ignore_kernel = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5354 DEFVAR_LISP ("energize-kernel-busy", &Venergize_kernel_busy /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5355 True if the Energize kernel is busy.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5356 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5357 Venergize_kernel_busy = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5358 DEFVAR_LISP ("energize-kernel-busy-hook", &Venergize_kernel_busy_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5359 Hook called when the Energize kernel becomes busy or non busy.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5360 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5361 Venergize_kernel_busy_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5363 DEFVAR_LISP ("energize-menu-update-hook", &Venergize_menu_update_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5364 Hook called when the Energize kernel updates the menubar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5365 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5366 Venergize_menu_update_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5368 DEFVAR_LISP ("energize-attributes-mapping", &Venergize_attributes_mapping /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5369 A-list to map kernel attributes indexes to Emacs attributes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5370 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5371 Venergize_attributes_mapping = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5373 DEFVAR_INT ("energize-extent-gc-threshold", &energize_extent_gc_threshold /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5374 Number of extents in a ModifyBuffer request above which to do a GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5375 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5376 energize_extent_gc_threshold = 20;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5377
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5378 pure_put (Qbuffer_locked_by_energize, Qerror_conditions,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5379 list2 (Qbuffer_locked_by_energize, Qerror));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5380 pure_put (Qbuffer_locked_by_energize, Qerror_message,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5381 build_string ("Buffer is currently locked by kernel"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5384 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5385 complex_vars_of_energize (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5386 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5387 image_cache = make_strings_hashtable (50);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5388 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5390 #endif /* ENERGIZE */