X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Ftitle.c;h=f33c8a99bf24f257da001ac520b04aa477a840f2;hb=8021cf8974a46fe82af7b8952e448c0ea6858a48;hp=d7943126601f80881d62085173e3affd3d26fcfc;hpb=3816248a008a4af75aac6319d0c9929cb7ff679e;p=pspp-builds.git diff --git a/src/language/utilities/title.c b/src/language/utilities/title.c index d7943126..f33c8a99 100644 --- a/src/language/utilities/title.c +++ b/src/language/utilities/title.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . + Copyright (C) 1997-9, 2000, 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 @@ -77,7 +76,7 @@ get_title (struct lexer *lexer, const char *cmd, char **title) if (*title) free (*title); - *title = xstrdup (lex_rest_of_line (lexer, NULL)); + *title = xstrdup (lex_rest_of_line (lexer)); lex_discard_line (lexer); for (cp = *title; *cp; cp++) *cp = toupper ((unsigned char) (*cp)); @@ -91,7 +90,7 @@ cmd_file_label (struct lexer *lexer, struct dataset *ds) { const char *label; - label = lex_rest_of_line (lexer, NULL); + label = lex_rest_of_line (lexer); lex_discard_line (lexer); while (isspace ((unsigned char) *label)) label++; @@ -101,27 +100,14 @@ cmd_file_label (struct lexer *lexer, struct dataset *ds) return CMD_SUCCESS; } -/* Add LINE as a line of document information to dictionary - indented by INDENT spaces. */ +/* Add entry date line to DICT's documents. */ static void -add_document_line (struct dictionary *dict, const char *line, int indent) +add_document_trailer (struct dictionary *dict) { - const char *old_documents; - size_t old_len; - char *new_documents; - - old_documents = dict_get_documents (dict); - old_len = old_documents != NULL ? strlen (old_documents) : 0; - new_documents = xmalloc (old_len + 81); - - memcpy (new_documents, old_documents, old_len); - memset (new_documents + old_len, ' ', indent); - buf_copy_str_rpad (new_documents + old_len + indent, 80 - indent, line); - new_documents[old_len + 80] = '\0'; - - dict_set_documents (dict, new_documents); - - free (new_documents); + char buf[64]; + + sprintf (buf, _(" (Entered %s)"), get_start_date ()); + dict_add_document_line (dict, buf); } /* Performs the DOCUMENT command. */ @@ -129,40 +115,23 @@ int cmd_document (struct lexer *lexer, struct dataset *ds) { struct dictionary *dict = dataset_dict (ds); - /* Add a few header lines for reference. */ - { - char buf[256]; - - if (dict && dict_get_documents (dict)) - add_document_line (dict, "", 0); - - sprintf (buf, _("Document entered %s by %s:"), get_start_date (), version); - add_document_line (dict, buf, 1); - } + struct string line = DS_EMPTY_INITIALIZER; + bool end_dot; - for (;;) + do { - int had_dot; - const char *orig_line; - char *copy_line; + end_dot = lex_end_dot (lexer); + ds_assign_string (&line, lex_entire_line_ds (lexer)); + if (end_dot) + ds_put_char (&line, '.'); + dict_add_document_line (dict, ds_cstr (&line)); - orig_line = lex_rest_of_line (lexer, &had_dot); lex_discard_line (lexer); - while (isspace ((unsigned char) *orig_line)) - orig_line++; - - copy_line = xmalloc (strlen (orig_line) + 2); - strcpy (copy_line, orig_line); - if (had_dot) - strcat (copy_line, "."); - - add_document_line (dict, copy_line, 3); - free (copy_line); - lex_get_line (lexer); - if (had_dot) - break; } + while (!end_dot); + + add_document_trailer (dict); return CMD_SUCCESS; } @@ -171,7 +140,28 @@ cmd_document (struct lexer *lexer, struct dataset *ds) int cmd_drop_documents (struct lexer *lexer, struct dataset *ds) { - dict_set_documents (dataset_dict (ds), NULL); + dict_clear_documents (dataset_dict (ds)); return lex_end_of_command (lexer); } + + +/* Performs the ADD DOCUMENTS command. */ +int +cmd_add_documents (struct lexer *lexer, struct dataset *ds) +{ + struct dictionary *dict = dataset_dict (ds); + + if ( ! lex_force_string (lexer) ) + return CMD_FAILURE; + + while ( lex_is_string (lexer)) + { + dict_add_document_line (dict, ds_cstr (lex_tokstr (lexer))); + lex_get (lexer); + } + + add_document_trailer (dict); + + return lex_end_of_command (lexer) ; +}