3 /* nodemenu.c -- produce a menu of all visited nodes.
4 Id: nodemenu.c,v 1.5 2004/04/11 17:56:46 karl Exp
6 Copyright (C) 1993, 1997, 1998, 2002, 2003, 2004 Free Software
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 Written by Brian Fox (bfox@ai.mit.edu). */
27 NODE
* get_visited_nodes (Function
*filter_func
);
29 /* Return a line describing the format of a node information line. */
31 nodemenu_format_info (void)
35 (File)Node Lines Size Containing File\n\
36 ---------- ----- ---- ---------------"));
39 /* Produce a formatted line of information about NODE. Here is what we want
40 the output listing to look like:
43 (File)Node Lines Size Containing File
44 ---------- ----- ---- ---------------
45 * (emacs)Buffers:: 48 2230 /usr/gnu/info/emacs/emacs-1
46 * (autoconf)Writing configure.in:: 123 58789 /usr/gnu/info/autoconf/autoconf-1
47 * (dir)Top:: 40 589 /usr/gnu/info/dir
50 format_node_info (NODE
*node
)
53 char *parent
, *containing_file
;
54 static char *line_buffer
= (char *)NULL
;
57 line_buffer
= (char *)xmalloc (1000);
61 parent
= filename_non_directory (node
->parent
);
63 parent
= node
->parent
;
66 parent
= (char *)NULL
;
68 containing_file
= node
->filename
;
70 if (!parent
&& !*containing_file
)
71 sprintf (line_buffer
, "* %s::", node
->nodename
);
74 char *file
= (char *)NULL
;
79 file
= filename_non_directory (containing_file
);
82 file
= containing_file
;
87 sprintf (line_buffer
, "* (%s)%s::", file
, node
->nodename
);
90 len
= pad_to (36, line_buffer
);
95 for (i
= 0; i
< node
->nodelen
; i
++)
96 if (node
->contents
[i
] == '\n')
99 sprintf (line_buffer
+ len
, "%d", lines
);
102 len
= pad_to (44, line_buffer
);
103 sprintf (line_buffer
+ len
, "%ld", node
->nodelen
);
105 if (node
->filename
&& *(node
->filename
))
107 len
= pad_to (51, line_buffer
);
108 strcpy (line_buffer
+ len
, node
->filename
);
111 return xstrdup (line_buffer
);
114 /* Little string comparison routine for qsort (). */
116 compare_strings (const void *entry1
, const void *entry2
)
118 char **e1
= (char **) entry1
;
119 char **e2
= (char **) entry2
;
121 return (strcasecmp (*e1
, *e2
));
124 /* The name of the nodemenu node. */
125 static char *nodemenu_nodename
= "*Node Menu*";
127 /* Produce an informative listing of all the visited nodes, and return it
128 in a node. If FILTER_FUNC is non-null, it is a function which filters
129 which nodes will appear in the listing. FILTER_FUNC takes an argument
130 of NODE, and returns non-zero if the node should appear in the listing. */
132 get_visited_nodes (Function
*filter_func
)
134 register int i
, iw_index
;
135 INFO_WINDOW
*info_win
;
137 char **lines
= (char **)NULL
;
138 int lines_index
= 0, lines_slots
= 0;
141 return ((NODE
*)NULL
);
143 for (iw_index
= 0; (info_win
= info_windows
[iw_index
]); iw_index
++)
145 for (i
= 0; i
< info_win
->nodes_index
; i
++)
147 node
= info_win
->nodes
[i
];
149 /* We skip mentioning "*Node Menu*" nodes. */
150 if (internal_info_node_p (node
) &&
151 (strcmp (node
->nodename
, nodemenu_nodename
) == 0))
154 if (node
&& (!filter_func
|| (*filter_func
) (node
)))
158 line
= format_node_info (node
);
160 (line
, lines_index
, lines
, lines_slots
, 20, char *);
165 /* Sort the array of information lines, if there are any. */
168 register int j
, newlen
;
171 qsort (lines
, lines_index
, sizeof (char *), compare_strings
);
173 /* Delete duplicates. */
174 for (i
= 0, newlen
= 1; i
< lines_index
- 1; i
++)
176 /* Use FILENAME_CMP here, since the most important piece
177 of info in each line is the file name of the node. */
178 if (FILENAME_CMP (lines
[i
], lines
[i
+ 1]) == 0)
181 lines
[i
] = (char *)NULL
;
187 /* We have free ()'d and marked all of the duplicate slots.
188 Copy the live slots rather than pruning the dead slots. */
189 temp
= (char **)xmalloc ((1 + newlen
) * sizeof (char *));
190 for (i
= 0, j
= 0; i
< lines_index
; i
++)
192 temp
[j
++] = lines
[i
];
194 temp
[j
] = (char *)NULL
;
197 lines_index
= newlen
;
200 initialize_message_buffer ();
202 printf_to_message_buffer
203 ("%s", replace_in_documentation
204 ((char *) _("Here is the menu of nodes you have recently visited.\n\
205 Select one from this menu, or use `\\[history-node]' in another window.\n"), 0),
208 printf_to_message_buffer ("%s\n", (char *) nodemenu_format_info (),
211 for (i
= 0; (lines
!= (char **)NULL
) && (i
< lines_index
); i
++)
213 printf_to_message_buffer ("%s\n", lines
[i
], NULL
, NULL
);
220 node
= message_buffer_to_node ();
221 add_gcable_pointer (node
->contents
);
225 DECLARE_INFO_COMMAND (list_visited_nodes
,
226 _("Make a window containing a menu of all of the currently visited nodes"))
231 set_remembered_pagetop_and_point (window
);
233 /* If a window is visible and showing the buffer list already, re-use it. */
234 for (new = windows
; new; new = new->next
)
238 if (internal_info_node_p (node
) &&
239 (strcmp (node
->nodename
, nodemenu_nodename
) == 0))
243 /* If we couldn't find an existing window, try to use the next window
249 /* If there is more than one window, wrap around. */
250 else if (window
!= windows
)
254 /* If we still don't have a window, make a new one to contain the list. */
259 old_active
= active_window
;
260 active_window
= window
;
261 new = window_make_window ((NODE
*)NULL
);
262 active_window
= old_active
;
265 /* If we couldn't make a new window, use this one. */
269 /* Lines do not wrap in this window. */
270 new->flags
|= W_NoWrap
;
271 node
= get_visited_nodes ((Function
*)NULL
);
272 name_internal_node (node
, nodemenu_nodename
);
275 /* Even if this is an internal node, we don't want the window
276 system to treat it specially. So we turn off the internalness
278 /* Why? We depend on internal_info_node_p returning true, so we must
279 not remove the flag. Otherwise, the *Node Menu* nodes themselves
280 appear in the node menu. --Andreas Schwab
281 <schwab@issan.informatik.uni-dortmund.de>. */
282 node
->flags
&= ~N_IsInternal
;
285 /* If this window is already showing a node menu, reuse the existing node
291 if (internal_info_node_p (new->node
) &&
292 (strcmp (new->node
->nodename
, nodemenu_nodename
) == 0))
296 window_set_node_of_window (new, node
);
299 remember_window_and_node (new, node
);
305 DECLARE_INFO_COMMAND (select_visited_node
,
306 _("Select a node which has been previously visited in a visible window"))
312 node
= get_visited_nodes ((Function
*)NULL
);
314 menu
= info_menu_of_node (node
);
318 info_read_completing_in_echo_area (window
,
319 (char *) _("Select visited node: "), menu
);
321 window
= active_window
;
323 /* User aborts, just quit. */
326 info_abort_key (window
, 0, 0);
327 info_free_references (menu
);
335 /* Find the selected label in the references. */
336 entry
= info_get_labeled_reference (line
, menu
);
339 info_error ((char *) _("The reference disappeared! (%s)."), line
, NULL
);
341 info_select_reference (window
, entry
);
345 info_free_references (menu
);
347 if (!info_error_was_printed
)
348 window_clear_echo_area ();