123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721 |
- /* defun.c -- @defun and friends.
- $Id: defun.c,v 1.18 2007-09-15 23:48:45 karl Exp $
- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007
- Free Software Foundation, Inc.
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
- #include "system.h"
- #include "defun.h"
- #include "xml.h"
- #include "insertion.h"
- #include "makeinfo.h"
- #include "cmds.h"
- #include "html.h"
- #define DEFUN_SELF_DELIMITING(c) \
- ((c) == '(' || (c) == ')' || (c) == '[' || (c) == ']')
- struct token_accumulator
- {
- unsigned int length;
- unsigned int index;
- char **tokens;
- };
- static void
- initialize_token_accumulator (struct token_accumulator *accumulator)
- {
- accumulator->length = 0;
- accumulator->index = 0;
- accumulator->tokens = NULL;
- }
- static void
- accumulate_token (struct token_accumulator *accumulator, char *token)
- {
- if (accumulator->index >= accumulator->length)
- {
- accumulator->length += 10;
- accumulator->tokens = xrealloc (accumulator->tokens,
- (accumulator->length * sizeof (char *)));
- }
- accumulator->tokens[accumulator->index] = token;
- accumulator->index += 1;
- }
- /* Given STRING_POINTER pointing at an open brace, skip forward and return a
- pointer to just past the matching close brace. */
- static int
- scan_group_in_string (char **string_pointer)
- {
- char *scan_string = (*string_pointer) + 1;
- unsigned int level = 1;
- int started_command = 0;
- for (;;)
- {
- int c;
- if (level == 0)
- {
- *string_pointer = scan_string;
- return 1;
- }
- c = *scan_string++;
- if (c == 0)
- {
- /* Tweak line_number to compensate for fact that
- we gobbled the whole line before coming here. */
- line_number--;
- line_error (_("Missing `}' in @def arg"));
- line_number++;
- *string_pointer = scan_string - 1;
- return 0;
- }
- if (c == '{' && !started_command)
- level++;
- if (c == '}' && !started_command)
- level--;
- /* remember if at @. */
- started_command = (c == '@' && !started_command);
- }
- }
- /* Return a list of tokens from the contents of STRING.
- Commands and brace-delimited groups count as single tokens.
- Contiguous whitespace characters are converted to a token
- consisting of a single space. */
- static char **
- args_from_string (char *string)
- {
- struct token_accumulator accumulator;
- char *token_start, *token_end;
- char *scan_string = string;
- initialize_token_accumulator (&accumulator);
- while (*scan_string)
- { /* Replace arbitrary whitespace by a single space. */
- if (whitespace (*scan_string))
- {
- scan_string += 1;
- while (whitespace (*scan_string))
- scan_string += 1;
- accumulate_token ((&accumulator), (xstrdup (" ")));
- continue;
- }
- /* Commands count as single tokens. */
- if (*scan_string == COMMAND_PREFIX)
- {
- token_start = scan_string;
- scan_string += 1;
- if (self_delimiting (*scan_string))
- scan_string += 1;
- else
- {
- int c;
- while (1)
- {
- c = *scan_string++;
- if ((c == 0) || (c == '{') || (whitespace (c)))
- {
- scan_string -= 1;
- break;
- }
- }
- if (*scan_string == '{')
- {
- char *s = scan_string;
- (void) scan_group_in_string (&s);
- scan_string = s;
- }
- }
- token_end = scan_string;
- }
- /* Parentheses and brackets are self-delimiting. */
- else if (DEFUN_SELF_DELIMITING (*scan_string))
- {
- token_start = scan_string;
- scan_string += 1;
- token_end = scan_string;
- }
- /* Open brace introduces a group that is a single token. */
- else if (*scan_string == '{')
- {
- char *s = scan_string;
- int balanced = scan_group_in_string (&s);
- token_start = scan_string + 1;
- scan_string = s;
- token_end = balanced ? (scan_string - 1) : scan_string;
- }
- /* Make commas separate tokens so to differentiate them from
- parameter types in XML output. */
- else if (*scan_string == ',')
- {
- token_start = scan_string;
- scan_string += 1;
- token_end = scan_string;
- }
- /* Otherwise a token is delimited by whitespace, parentheses,
- brackets, or braces. A token is also ended by a command. */
- else
- {
- token_start = scan_string;
- for (;;)
- {
- int c;
- c = *scan_string++;
- /* Do not back up if we're looking at a }; since the only
- valid }'s are those matched with {'s, we want to give
- an error. If we back up, we go into an infinite loop. */
- if (!c || whitespace (c) || DEFUN_SELF_DELIMITING (c)
- || c == '{')
- {
- scan_string--;
- break;
- }
- /* End token if we are looking at a comma, as commas are
- delimiters too. */
- if (c == ',')
- {
- scan_string--;
- break;
- }
- /* If we encounter a command embedded within a token,
- then end the token. */
- if (c == COMMAND_PREFIX)
- {
- scan_string--;
- break;
- }
- }
- token_end = scan_string;
- }
- accumulate_token (&accumulator, substring (token_start, token_end));
- }
- accumulate_token (&accumulator, NULL);
- return accumulator.tokens;
- }
- static void
- process_defun_args (char **defun_args, int auto_var_p)
- {
- int pending_space = 0;
- if (xml)
- {
- xml_process_defun_args (defun_args, auto_var_p);
- return;
- }
- for (;;)
- {
- char *defun_arg = *defun_args++;
- if (defun_arg == NULL)
- break;
- if (defun_arg[0] == ' ')
- {
- pending_space = 1;
- continue;
- }
- if (pending_space)
- {
- add_char (' ');
- pending_space = 0;
- }
- if (DEFUN_SELF_DELIMITING (defun_arg[0]))
- {
- /* Within @deffn and friends, texinfo.tex makes parentheses
- sans serif and brackets bold. We use roman instead. */
- if (html)
- insert_html_tag (START, "");
-
- add_char (defun_arg[0]);
-
- if (html)
- insert_html_tag (END, "");
- }
- /* else if (defun_arg[0] == '&' || defun_arg[0] == COMMAND_PREFIX) */
- /* execute_string ("%s", defun_arg); */
- /* else if (auto_var_p) */
- /* execute_string ("%s", defun_arg); */
- else
- execute_string ("%s", defun_arg);
- }
- }
- static char *
- next_nonwhite_defun_arg (char ***arg_pointer)
- {
- char **scan = (*arg_pointer);
- char *arg = (*scan++);
- if ((arg != 0) && (*arg == ' '))
- arg = *scan++;
- if (arg == 0)
- scan -= 1;
- *arg_pointer = scan;
- return (arg == 0) ? "" : arg;
- }
- /* This is needed also in insertion.c. */
- enum insertion_type
- get_base_type (enum insertion_type type)
- {
- enum insertion_type base_type;
- switch (type)
- {
- case defivar: base_type = defcv; break;
- case defmac: base_type = deffn; break;
- case defmethod: base_type = defop; break;
- case defopt: base_type = defvr; break;
- case defspec: base_type = deffn; break;
- case deftypecv: base_type = deftypecv; break;
- case deftypefun: base_type = deftypefn; break;
- case deftypeivar: base_type = deftypeivar; break;
- case deftypemethod: base_type = deftypemethod; break;
- case deftypeop: base_type = deftypeop; break;
- case deftypevar: base_type = deftypevr; break;
- case defun: base_type = deffn; break;
- case defvar: base_type = defvr; break;
- default:
- base_type = type;
- break;
- }
- return base_type;
- }
- /* Make the defun type insertion.
- TYPE says which insertion this is.
- X_P, if nonzero, says not to start a new insertion. */
- static void
- defun_internal (enum insertion_type type, int x_p)
- {
- enum insertion_type base_type;
- char **defun_args, **scan_args;
- const char *category;
- char *defined_name;
- char *type_name = NULL;
- char *type_name2 = NULL;
- {
- char *line;
- /* The @def.. line is the only place in Texinfo where you are
- allowed to use unquoted braces that don't delimit arguments of
- a command or a macro; in any other place it will trigger an
- error message from the reader loop. The special handling of
- this case inside `args_from_string' is an extra special hack
- which allows this. The side effect is that if we try to expand
- the rest of the line below, the recursive reader loop will
- signal an error if there are brace-delimited arguments on that line.
- The best solution to this would be to change the syntax of
- @def.. commands so that it doesn't violate Texinfo's own rules.
- But it's probably too late for this now, as it will break a lot
- of existing manuals.
- Unfortunately, this means that you can't call macros, use @value, etc.
- inside @def.. commands, sigh. */
- get_rest_of_line (0, &line);
- /* Basic line continuation. If a line ends with \s*@\s* concatanate
- the next line. */
- {
- char *next_line, *new_line;
- int i;
- line_continuation:
- i = strlen (line) - 1;
- if (i > 0 && line[i] == '@' && line[i-1] != '@')
- {
- get_rest_of_line (0, &next_line);
- new_line = (char *) xmalloc (i + strlen (next_line) + 2);
- strncpy (new_line, line, i);
- new_line[i] = '\0';
- free (line);
- strcat (new_line, " ");
- strcat (new_line, next_line);
- line = xstrdup (new_line);
- free (next_line);
- free (new_line);
- goto line_continuation;
- }
- }
- defun_args = (args_from_string (line));
- free (line);
- }
- scan_args = defun_args;
- /* Get base type and category string. */
- base_type = get_base_type (type);
- /* xx all these const strings should be determined upon
- documentlanguage argument and NOT via gettext (kama). */
- switch (type)
- {
- case defun:
- case deftypefun:
- category = gdt("Function");
- break;
- case defmac:
- category = gdt("Macro");
- break;
- case defspec:
- category = gdt("Special Form");
- break;
- case defvar:
- case deftypevar:
- category = gdt("Variable");
- break;
- case defopt:
- category = gdt("User Option");
- break;
- case defivar:
- case deftypeivar:
- category = gdt("Instance Variable");
- break;
- case defmethod:
- case deftypemethod:
- category = gdt("Method");
- break;
- default:
- category = next_nonwhite_defun_arg (&scan_args);
- break;
- }
- /* The class name. */
- if ((base_type == deftypecv)
- || (base_type == deftypefn)
- || (base_type == deftypevr)
- || (base_type == defcv)
- || (base_type == defop)
- || (base_type == deftypeivar)
- || (base_type == deftypemethod)
- || (base_type == deftypeop)
- )
- type_name = next_nonwhite_defun_arg (&scan_args);
- /* The type name for typed languages. */
- if ((base_type == deftypecv)
- || (base_type == deftypeivar)
- || (base_type == deftypemethod)
- || (base_type == deftypeop)
- )
- type_name2 = next_nonwhite_defun_arg (&scan_args);
- /* The function or whatever that's actually being defined. */
- defined_name = next_nonwhite_defun_arg (&scan_args);
- /* This hack exists solely for the purposes of formatting the Texinfo
- manual. I couldn't think of a better way. The token might be a
- simple @@ followed immediately by more text. If this is the case,
- then the next defun arg is part of this one, and we should
- concatenate them. */
- if (*scan_args && **scan_args && !whitespace (**scan_args)
- && STREQ (defined_name, "@@"))
- {
- char *tem = xmalloc (3 + strlen (scan_args[0]));
- sprintf (tem, "@@%s", scan_args[0]);
- free (scan_args[0]);
- scan_args[0] = tem;
- scan_args++;
- defined_name = tem;
- }
- /* It's easy to write @defun foo(arg1 arg2), but a following ( is
- misparsed by texinfo.tex and this is next to impossible to fix.
- Warn about it. */
- if (*scan_args && **scan_args && **scan_args == '(')
- warning ("`%c' follows defined name `%s' instead of whitespace",
- **scan_args, defined_name);
- if (!x_p)
- begin_insertion (type);
- /* Write the definition header line.
- This should start at the normal indentation. */
- current_indent -= default_indentation_increment;
- start_paragraph ();
- if (!html && !xml)
- switch (base_type)
- {
- case deffn:
- case defvr:
- case deftp:
- execute_string (" --- %s: %s", category, defined_name);
- break;
- case deftypefn:
- case deftypevr:
- execute_string (" --- %s: %s %s", category, type_name, defined_name);
- break;
- case defcv:
- execute_string (" --- %s %s %s: %s", category, gdt("of"), type_name,
- defined_name);
- break;
- case deftypecv:
- case deftypeivar:
- execute_string (" --- %s %s %s: %s %s", category, gdt("of"), type_name,
- type_name2, defined_name);
- break;
- case defop:
- execute_string (" --- %s %s %s: %s", category, gdt("on"), type_name,
- defined_name);
- break;
- case deftypeop:
- execute_string (" --- %s %s %s: %s %s", category, gdt("on"), type_name,
- type_name2, defined_name);
- break;
- case deftypemethod:
- execute_string (" --- %s %s %s: %s %s", category, gdt("on"), type_name,
- type_name2, defined_name);
- break;
- }
- else if (html)
- {
- /* If this is not a @def...x version, it could only
- be a normal version @def.... So start the table here. */
- if (!x_p)
- insert_string ("<div class=\"defun\">\n");
- else
- rollback_empty_tag ("blockquote");
- /* xx The single words (on, off) used here, should depend on
- documentlanguage and NOT on gettext --kama. */
- switch (base_type)
- {
- case deffn:
- case defvr:
- case deftp:
- case deftypefn:
- case deftypevr:
- execute_string ("--- %s: ", category);
- break;
- case defcv:
- case deftypecv:
- case deftypeivar:
- execute_string ("--- %s %s %s: ", category, gdt("of"), type_name);
- break;
- case defop:
- case deftypemethod:
- case deftypeop:
- execute_string ("--- %s %s %s: ", category, gdt("on"), type_name);
- break;
- } /* switch (base_type)... */
- switch (base_type)
- {
- case deffn:
- case defvr:
- case deftp:
- /* <var> is for the following function arguments. */
- insert_html_tag (START, "b");
- execute_string ("%s", defined_name);
- insert_html_tag (END, "b");
- insert_html_tag (START, "var");
- break;
- case deftypefn:
- case deftypevr:
- execute_string ("%s ", type_name);
- insert_html_tag (START, "b");
- execute_string ("%s", defined_name);
- insert_html_tag (END, "b");
- insert_html_tag (START, "var");
- break;
- case defcv:
- case defop:
- insert_html_tag (START, "b");
- execute_string ("%s", defined_name);
- insert_html_tag (END, "b");
- insert_html_tag (START, "var");
- break;
- case deftypecv:
- case deftypeivar:
- case deftypemethod:
- case deftypeop:
- execute_string ("%s ", type_name2);
- insert_html_tag (START, "b");
- execute_string ("%s", defined_name);
- insert_html_tag (END, "b");
- insert_html_tag (START, "var");
- break;
- }
- }
- else if (xml)
- xml_begin_def_term (base_type, category, defined_name, type_name,
- type_name2);
- current_indent += default_indentation_increment;
- /* Now process the function arguments, if any. If these carry onto
- the next line, they should be indented by two increments to
- distinguish them from the body of the definition, which is indented
- by one increment. */
- current_indent += default_indentation_increment;
- switch (base_type)
- {
- case deffn:
- case defop:
- process_defun_args (scan_args, 1);
- break;
- /* Through Makeinfo 1.67 we processed remaining args only for deftp,
- deftypefn, and deftypemethod. But the libc manual, for example,
- needs to say:
- @deftypevar {char *} tzname[2]
- And simply allowing the extra text seems far simpler than trying
- to invent yet more defn commands. In any case, we should either
- output it or give an error, not silently ignore it. */
- default:
- process_defun_args (scan_args, 0);
- break;
- }
- current_indent -= default_indentation_increment;
- if (!html)
- close_single_paragraph ();
- /* Make an entry in the appropriate index. (XML and
- Docbook already got their entries, so skip them.) */
- if (!xml)
- switch (base_type)
- {
- case deffn:
- case deftypefn:
- execute_string ("@findex %s\n", defined_name);
- break;
- case defcv:
- case deftypecv:
- case deftypevr:
- case defvr:
- execute_string ("@vindex %s\n", defined_name);
- break;
- case deftypeivar:
- execute_string ("@vindex %s %s %s\n", defined_name, gdt("of"),
- type_name);
- break;
- case defop:
- case deftypeop:
- case deftypemethod:
- execute_string ("@findex %s %s %s\n", defined_name, gdt("on"),
- type_name);
- break;
- case deftp:
- execute_string ("@tindex %s\n", defined_name);
- break;
- }
- if (xml)
- xml_end_def_term ();
- else if (html)
- {
- inhibit_paragraph_indentation = 1;
- no_indent = 1;
- insert_html_tag (END, "var");
- insert_string ("<br>\n");
- /* Indent the definition a bit. */
- add_html_block_elt ("<blockquote>");
- no_indent = 0;
- inhibit_paragraph_indentation = 0;
- paragraph_is_open = 0;
- }
- /* Deallocate the token list. */
- scan_args = defun_args;
- while (1)
- {
- char * arg = (*scan_args++);
- if (arg == NULL)
- break;
- free (arg);
- }
- free (defun_args);
- }
- /* Add an entry for a function, macro, special form, variable, or option.
- If the name of the calling command ends in `x', then this is an extra
- entry included in the body of an insertion of the same type. */
- void
- cm_defun (void)
- {
- enum insertion_type type;
- char *base_command = xstrdup (command); /* command with any `x' removed */
- /* FIXME: is strlen(command) allways > 0? */
- int x_p = (command[strlen (command) - 1] == 'x');
- if (x_p)
- base_command[strlen (base_command) - 1] = 0;
- type = find_type_from_name (base_command);
- /* If we are adding to an already existing insertion, then make sure
- that we are already in an insertion of type TYPE. */
- if (x_p)
- {
- INSERTION_ELT *i = insertion_stack;
- /* Skip over ifclear and ifset conditionals. */
- while (i && (i->insertion == ifset || i->insertion == ifclear))
- i = i->next;
-
- if (!i || i->insertion != type)
- {
- line_error (_("Must be in `@%s' environment to use `@%s'"),
- base_command, command);
- discard_until ("\n");
- return;
- }
- }
- defun_internal (type, x_p);
- free (base_command);
- }
|