1 /* Record indices of function doc strings stored in a file.
2 Copyright (C) 1985, 86,93,94,95,97,98,99, 2000 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
24 #include <sys/types.h>
25 #include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/
44 Lisp_Object Vdoc_file_name
, Vhelp_manyarg_func_alist
;
46 Lisp_Object Qfunction_documentation
;
48 extern char *index ();
50 extern Lisp_Object Voverriding_local_map
;
52 /* For VMS versions with limited file name syntax,
53 convert the name to something VMS will allow. */
55 munge_doc_file_name (name
)
60 /* For VMS versions with limited file name syntax,
61 convert the name to something VMS will allow. */
69 #endif /* not VMS4_4 */
71 strcpy (name
, sys_translate_unix (name
));
76 /* Buffer used for reading from documentation file. */
77 static char *get_doc_string_buffer
;
78 static int get_doc_string_buffer_size
;
80 static unsigned char *read_bytecode_pointer
;
82 /* readchar in lread.c calls back here to fetch the next byte.
83 If UNREADFLAG is 1, we unread a byte. */
86 read_bytecode_char (unreadflag
)
91 read_bytecode_pointer
--;
94 return *read_bytecode_pointer
++;
97 /* Extract a doc string from a file. FILEPOS says where to get it.
98 If it is an integer, use that position in the standard DOC-... file.
99 If it is (FILE . INTEGER), use FILE as the file name
100 and INTEGER as the position in that file.
101 But if INTEGER is negative, make it positive.
102 (A negative integer is used for user variables, so we can distinguish
103 them without actually fetching the doc string.)
105 If UNIBYTE is nonzero, always make a unibyte string.
107 If DEFINITION is nonzero, assume this is for reading
108 a dynamic function definition; convert the bytestring
109 and the constants vector with appropriate byte handling,
110 and return a cons cell. */
113 get_doc_string (filepos
, unibyte
, definition
)
115 int unibyte
, definition
;
120 register char *p
, *p1
;
122 int offset
, position
;
123 Lisp_Object file
, tem
;
125 if (INTEGERP (filepos
))
127 file
= Vdoc_file_name
;
128 position
= XINT (filepos
);
130 else if (CONSP (filepos
))
132 file
= XCAR (filepos
);
133 position
= XINT (XCDR (filepos
));
135 position
= - position
;
140 if (!STRINGP (Vdoc_directory
))
146 /* Put the file name in NAME as a C string.
147 If it is relative, combine it with Vdoc_directory. */
149 tem
= Ffile_name_absolute_p (file
);
152 minsize
= XSTRING (Vdoc_directory
)->size
;
153 /* sizeof ("../etc/") == 8 */
156 name
= (char *) alloca (minsize
+ XSTRING (file
)->size
+ 8);
157 strcpy (name
, XSTRING (Vdoc_directory
)->data
);
158 strcat (name
, XSTRING (file
)->data
);
159 munge_doc_file_name (name
);
163 name
= (char *) XSTRING (file
)->data
;
166 fd
= emacs_open (name
, O_RDONLY
, 0);
170 if (!NILP (Vpurify_flag
))
172 /* Preparing to dump; DOC file is probably not installed.
173 So check in ../etc. */
174 strcpy (name
, "../etc/");
175 strcat (name
, XSTRING (file
)->data
);
176 munge_doc_file_name (name
);
178 fd
= emacs_open (name
, O_RDONLY
, 0);
182 error ("Cannot open doc string file \"%s\"", name
);
185 /* Seek only to beginning of disk block. */
186 offset
= position
% (8 * 1024);
187 if (0 > lseek (fd
, position
- offset
, 0))
190 error ("Position %ld out of range in doc string file \"%s\"",
194 /* Read the doc string into get_doc_string_buffer.
195 P points beyond the data just read. */
197 p
= get_doc_string_buffer
;
200 int space_left
= (get_doc_string_buffer_size
201 - (p
- get_doc_string_buffer
));
204 /* Allocate or grow the buffer if we need to. */
207 int in_buffer
= p
- get_doc_string_buffer
;
208 get_doc_string_buffer_size
+= 16 * 1024;
209 get_doc_string_buffer
210 = (char *) xrealloc (get_doc_string_buffer
,
211 get_doc_string_buffer_size
+ 1);
212 p
= get_doc_string_buffer
+ in_buffer
;
213 space_left
= (get_doc_string_buffer_size
214 - (p
- get_doc_string_buffer
));
217 /* Read a disk block at a time.
218 If we read the same block last time, maybe skip this? */
219 if (space_left
> 1024 * 8)
220 space_left
= 1024 * 8;
221 nread
= emacs_read (fd
, p
, space_left
);
225 error ("Read error on documentation file");
230 if (p
== get_doc_string_buffer
)
231 p1
= index (p
+ offset
, '\037');
233 p1
= index (p
, '\037');
244 /* Scan the text and perform quoting with ^A (char code 1).
245 ^A^A becomes ^A, ^A0 becomes a null char, and ^A_ becomes a ^_. */
246 from
= get_doc_string_buffer
+ offset
;
247 to
= get_doc_string_buffer
+ offset
;
263 error ("Invalid data in documentation file -- ^A followed by code 0%o", c
);
269 /* If DEFINITION, read from this buffer
270 the same way we would read bytes from a file. */
273 read_bytecode_pointer
= get_doc_string_buffer
+ offset
;
274 return Fread (Qlambda
);
278 return make_unibyte_string (get_doc_string_buffer
+ offset
,
279 to
- (get_doc_string_buffer
+ offset
));
282 /* Let the data determine whether the string is multibyte,
283 even if Emacs is running in --unibyte mode. */
284 int nchars
= multibyte_chars_in_text (get_doc_string_buffer
+ offset
,
285 to
- (get_doc_string_buffer
+ offset
));
286 return make_string_from_bytes (get_doc_string_buffer
+ offset
,
288 to
- (get_doc_string_buffer
+ offset
));
292 /* Get a string from position FILEPOS and pass it through the Lisp reader.
293 We use this for fetching the bytecode string and constants vector
294 of a compiled function from the .elc file. */
297 read_doc_string (filepos
)
300 return get_doc_string (filepos
, 0, 1);
303 DEFUN ("documentation", Fdocumentation
, Sdocumentation
, 1, 2, 0,
304 "Return the documentation string of FUNCTION.\n\
305 Unless a non-nil second argument RAW is given, the\n\
306 string is passed through `substitute-command-keys'.")
308 Lisp_Object function
, raw
;
312 Lisp_Object tem
, doc
;
314 if (SYMBOLP (function
)
315 && (tem
= Fget (function
, Qfunction_documentation
),
317 return Fdocumentation_property (function
, Qfunction_documentation
, raw
);
319 fun
= Findirect_function (function
);
322 if (XSUBR (fun
)->doc
== 0)
324 else if ((EMACS_INT
) XSUBR (fun
)->doc
>= 0)
325 doc
= build_string (XSUBR (fun
)->doc
);
327 doc
= get_doc_string (make_number (- (EMACS_INT
) XSUBR (fun
)->doc
),
329 if (! NILP (tem
= Fassq (function
, Vhelp_manyarg_func_alist
)))
330 doc
= concat3 (doc
, build_string ("\n"), Fcdr (tem
));
332 else if (COMPILEDP (fun
))
334 if ((XVECTOR (fun
)->size
& PSEUDOVECTOR_SIZE_MASK
) <= COMPILED_DOC_STRING
)
336 tem
= XVECTOR (fun
)->contents
[COMPILED_DOC_STRING
];
339 else if (NATNUMP (tem
) || CONSP (tem
))
340 doc
= get_doc_string (tem
, 0, 0);
344 else if (STRINGP (fun
) || VECTORP (fun
))
346 return build_string ("Keyboard macro.");
348 else if (CONSP (fun
))
351 if (!SYMBOLP (funcar
))
352 return Fsignal (Qinvalid_function
, Fcons (fun
, Qnil
));
353 else if (EQ (funcar
, Qkeymap
))
354 return build_string ("Prefix command (definition is a keymap associating keystrokes with commands).");
355 else if (EQ (funcar
, Qlambda
)
356 || EQ (funcar
, Qautoload
))
359 tem1
= Fcdr (Fcdr (fun
));
363 /* Handle a doc reference--but these never come last
364 in the function body, so reject them if they are last. */
365 else if ((NATNUMP (tem
) || CONSP (tem
))
366 && ! NILP (XCDR (tem1
)))
367 doc
= get_doc_string (tem
, 0, 0);
371 else if (EQ (funcar
, Qmocklisp
))
373 else if (EQ (funcar
, Qmacro
))
374 return Fdocumentation (Fcdr (fun
), raw
);
381 Fsignal (Qinvalid_function
, Fcons (fun
, Qnil
));
385 doc
= Fsubstitute_command_keys (doc
);
389 DEFUN ("documentation-property", Fdocumentation_property
,
390 Sdocumentation_property
, 2, 3, 0,
391 "Return the documentation string that is SYMBOL's PROP property.\n\
392 Third argument RAW omitted or nil means pass the result through\n\
393 `substitute-command-keys' if it is a string.\n\
395 This is differs from `get' in that it can refer to strings stored in the\n\
396 `etc/DOC' file; and that it evaluates documentation properties that\n\
399 Lisp_Object symbol
, prop
, raw
;
403 tem
= Fget (symbol
, prop
);
405 tem
= get_doc_string (XINT (tem
) > 0 ? tem
: make_number (- XINT (tem
)), 0, 0);
406 else if (CONSP (tem
) && INTEGERP (XCDR (tem
)))
407 tem
= get_doc_string (tem
, 0, 0);
408 else if (!STRINGP (tem
))
409 /* Feval protects its argument. */
412 if (NILP (raw
) && STRINGP (tem
))
413 tem
= Fsubstitute_command_keys (tem
);
417 /* Scanning the DOC files and placing docstring offsets into functions. */
420 store_function_docstring (fun
, offset
)
422 /* Use EMACS_INT because we get this from pointer subtraction. */
425 fun
= indirect_function (fun
);
427 /* The type determines where the docstring is stored. */
429 /* Lisp_Subrs have a slot for it. */
431 XSUBR (fun
)->doc
= (char *) - offset
;
433 /* If it's a lisp form, stick it in the form. */
434 else if (CONSP (fun
))
439 if (EQ (tem
, Qlambda
) || EQ (tem
, Qautoload
))
441 tem
= Fcdr (Fcdr (fun
));
442 if (CONSP (tem
) && INTEGERP (XCAR (tem
)))
443 XSETFASTINT (XCAR (tem
), offset
);
445 else if (EQ (tem
, Qmacro
))
446 store_function_docstring (XCDR (fun
), offset
);
449 /* Bytecode objects sometimes have slots for it. */
450 else if (COMPILEDP (fun
))
452 /* This bytecode object must have a slot for the
453 docstring, since we've found a docstring for it. */
454 if ((XVECTOR (fun
)->size
& PSEUDOVECTOR_SIZE_MASK
) > COMPILED_DOC_STRING
)
455 XSETFASTINT (XVECTOR (fun
)->contents
[COMPILED_DOC_STRING
], offset
);
460 DEFUN ("Snarf-documentation", Fsnarf_documentation
, Ssnarf_documentation
,
462 "Used during Emacs initialization, before dumping runnable Emacs,\n\
463 to find pointers to doc strings stored in `etc/DOC...' and\n\
464 record them in function definitions.\n\
465 One arg, FILENAME, a string which does not include a directory.\n\
466 The file is found in `../etc' now; found in the `data-directory'\n\
467 when doc strings are referred to later in the dumped Emacs.")
469 Lisp_Object filename
;
475 register char *p
, *end
;
476 Lisp_Object sym
, fun
, tem
;
478 extern char *index ();
481 if (NILP (Vpurify_flag
))
482 error ("Snarf-documentation can only be called in an undumped Emacs");
485 CHECK_STRING (filename
, 0);
488 name
= (char *) alloca (XSTRING (filename
)->size
+ 14);
489 strcpy (name
, "../etc/");
490 #else /* CANNOT_DUMP */
491 CHECK_STRING (Vdoc_directory
, 0);
492 name
= (char *) alloca (XSTRING (filename
)->size
+
493 XSTRING (Vdoc_directory
)->size
+ 1);
494 strcpy (name
, XSTRING (Vdoc_directory
)->data
);
495 #endif /* CANNOT_DUMP */
496 strcat (name
, XSTRING (filename
)->data
); /*** Add this line ***/
499 /* For VMS versions with limited file name syntax,
500 convert the name to something VMS will allow. */
508 #endif /* not VMS4_4 */
510 strcpy (name
, sys_translate_unix (name
));
514 fd
= emacs_open (name
, O_RDONLY
, 0);
516 report_file_error ("Opening doc string file",
517 Fcons (build_string (name
), Qnil
));
518 Vdoc_file_name
= filename
;
524 filled
+= emacs_read (fd
, &buf
[filled
], sizeof buf
- 1 - filled
);
530 end
= buf
+ (filled
< 512 ? filled
: filled
- 128);
531 while (p
!= end
&& *p
!= '\037') p
++;
532 /* p points to ^_Ffunctionname\n or ^_Vvarname\n. */
535 end
= index (p
, '\n');
536 sym
= oblookup (Vobarray
, p
+ 2,
537 multibyte_chars_in_text (p
+ 2, end
- p
- 2),
541 /* Attach a docstring to a variable? */
544 /* Install file-position as variable-documentation property
545 and make it negative for a user-variable
546 (doc starts with a `*'). */
547 Fput (sym
, Qvariable_documentation
,
548 make_number ((pos
+ end
+ 1 - buf
)
549 * (end
[1] == '*' ? -1 : 1)));
552 /* Attach a docstring to a function? */
553 else if (p
[1] == 'F')
554 store_function_docstring (sym
, pos
+ end
+ 1 - buf
);
557 error ("DOC file invalid at position %d", pos
);
562 bcopy (end
, buf
, filled
);
568 DEFUN ("substitute-command-keys", Fsubstitute_command_keys
,
569 Ssubstitute_command_keys
, 1, 1, 0,
570 "Substitute key descriptions for command names in STRING.\n\
571 Return a new string which is STRING with substrings of the form \\=\\[COMMAND]\n\
572 replaced by either: a keystroke sequence that will invoke COMMAND,\n\
573 or \"M-x COMMAND\" if COMMAND is not on any keys.\n\
574 Substrings of the form \\=\\{MAPVAR} are replaced by summaries\n\
575 \(made by describe-bindings) of the value of MAPVAR, taken as a keymap.\n\
576 Substrings of the form \\=\\<MAPVAR> specify to use the value of MAPVAR\n\
577 as the keymap for future \\=\\[COMMAND] substrings.\n\
578 \\=\\= quotes the following character and is discarded;\n\
579 thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ into the output.")
585 register unsigned char *strp
;
586 register unsigned char *bufp
;
592 unsigned char *start
;
593 int length
, length_byte
;
595 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
602 CHECK_STRING (string
, 0);
606 GCPRO4 (string
, tem
, keymap
, name
);
608 multibyte
= STRING_MULTIBYTE (string
);
611 /* KEYMAP is either nil (which means search all the active keymaps)
612 or a specified local map (which means search just that and the
613 global map). If non-nil, it might come from Voverriding_local_map,
614 or from a \\<mapname> construct in STRING itself.. */
615 keymap
= current_kboard
->Voverriding_terminal_local_map
;
617 keymap
= Voverriding_local_map
;
619 bsize
= STRING_BYTES (XSTRING (string
));
620 bufp
= buf
= (unsigned char *) xmalloc (bsize
);
622 strp
= (unsigned char *) XSTRING (string
)->data
;
623 while (strp
< XSTRING (string
)->data
+ STRING_BYTES (XSTRING (string
)))
625 if (strp
[0] == '\\' && strp
[1] == '=')
627 /* \= quotes the next character;
628 thus, to put in \[ without its special meaning, use \=\[. */
634 int maxlen
= XSTRING (string
)->data
+ STRING_BYTES (XSTRING (string
)) - strp
;
636 STRING_CHAR_AND_LENGTH (strp
, maxlen
, len
);
640 bcopy (strp
, bufp
, len
);
646 *bufp
++ = *strp
++, nchars
++;
648 else if (strp
[0] == '\\' && strp
[1] == '[')
650 Lisp_Object firstkey
;
653 strp
+= 2; /* skip \[ */
656 while ((strp
- (unsigned char *) XSTRING (string
)->data
657 < STRING_BYTES (XSTRING (string
)))
660 length_byte
= strp
- start
;
664 /* Save STRP in IDX. */
665 idx
= strp
- (unsigned char *) XSTRING (string
)->data
;
666 tem
= Fintern (make_string (start
, length_byte
), Qnil
);
667 tem
= Fwhere_is_internal (tem
, keymap
, Qt
, Qnil
);
669 /* Disregard menu bar bindings; it is positively annoying to
670 mention them when there's no menu bar, and it isn't terribly
671 useful even when there is a menu bar. */
674 firstkey
= Faref (tem
, make_number (0));
675 if (EQ (firstkey
, Qmenu_bar
))
679 if (NILP (tem
)) /* but not on any keys */
681 new = (unsigned char *) xrealloc (buf
, bsize
+= 4);
684 bcopy ("M-x ", bufp
, 4);
688 length
= multibyte_chars_in_text (start
, length_byte
);
690 length
= length_byte
;
694 { /* function is on a key */
695 tem
= Fkey_description (tem
);
699 /* \{foo} is replaced with a summary of the keymap (symbol-value foo).
700 \<foo> just sets the keymap used for \[cmd]. */
701 else if (strp
[0] == '\\' && (strp
[1] == '{' || strp
[1] == '<'))
703 struct buffer
*oldbuf
;
706 strp
+= 2; /* skip \{ or \< */
709 while ((strp
- (unsigned char *) XSTRING (string
)->data
710 < XSTRING (string
)->size
)
711 && *strp
!= '}' && *strp
!= '>')
714 length_byte
= strp
- start
;
715 strp
++; /* skip } or > */
717 /* Save STRP in IDX. */
718 idx
= strp
- (unsigned char *) XSTRING (string
)->data
;
720 /* Get the value of the keymap in TEM, or nil if undefined.
721 Do this while still in the user's current buffer
722 in case it is a local variable. */
723 name
= Fintern (make_string (start
, length_byte
), Qnil
);
724 tem
= Fboundp (name
);
727 tem
= Fsymbol_value (name
);
729 tem
= get_keymap_1 (tem
, 0, 1);
732 /* Now switch to a temp buffer. */
733 oldbuf
= current_buffer
;
734 set_buffer_internal (XBUFFER (Vprin1_to_string_buffer
));
738 name
= Fsymbol_name (name
);
739 insert_string ("\nUses keymap \"");
740 insert_from_string (name
, 0, 0,
741 XSTRING (name
)->size
,
742 STRING_BYTES (XSTRING (name
)), 1);
743 insert_string ("\", which is not currently defined.\n");
744 if (start
[-1] == '<') keymap
= Qnil
;
746 else if (start
[-1] == '<')
749 describe_map_tree (tem
, 1, Qnil
, Qnil
, (char *)0, 1, 0, 0);
750 tem
= Fbuffer_string ();
752 set_buffer_internal (oldbuf
);
755 start
= XSTRING (tem
)->data
;
756 length
= XSTRING (tem
)->size
;
757 length_byte
= STRING_BYTES (XSTRING (tem
));
759 new = (unsigned char *) xrealloc (buf
, bsize
+= length_byte
);
762 bcopy (start
, bufp
, length_byte
);
765 /* Check STRING again in case gc relocated it. */
766 strp
= (unsigned char *) XSTRING (string
)->data
+ idx
;
768 else if (! multibyte
) /* just copy other chars */
769 *bufp
++ = *strp
++, nchars
++;
773 int maxlen
= XSTRING (string
)->data
+ STRING_BYTES (XSTRING (string
)) - strp
;
775 STRING_CHAR_AND_LENGTH (strp
, maxlen
, len
);
779 bcopy (strp
, bufp
, len
);
786 if (changed
) /* don't bother if nothing substituted */
787 tem
= make_string_from_bytes (buf
, nchars
, bufp
- buf
);
791 RETURN_UNGCPRO (tem
);
797 Qfunction_documentation
= intern ("function-documentation");
798 staticpro (&Qfunction_documentation
);
800 DEFVAR_LISP ("internal-doc-file-name", &Vdoc_file_name
,
801 "Name of file containing documentation strings of built-in symbols.");
802 Vdoc_file_name
= Qnil
;
803 DEFVAR_LISP ("help-manyarg-func-alist", &Vhelp_manyarg_func_alist
,
804 "Alist of primitive functions and descriptions of their arg lists.\n\
805 All special forms and primitives which effectively have &rest args\n\
806 should have an entry here so that `documentation' can provide their\n\
808 Vhelp_manyarg_func_alist
= Qnil
;
810 defsubr (&Sdocumentation
);
811 defsubr (&Sdocumentation_property
);
812 defsubr (&Ssnarf_documentation
);
813 defsubr (&Ssubstitute_command_keys
);