Remove various duplicated #include directives
[pspp-builds.git] / src / language / prompt.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2010 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include <stdio.h>
20 #include <errno.h>
21 #include <stdlib.h>
22
23 #include "prompt.h"
24
25 #include <data/file-name.h>
26 #include <data/settings.h>
27 #include <data/variable.h>
28 #include <language/command.h>
29 #include <language/lexer/lexer.h>
30 #include <libpspp/assertion.h>
31 #include <libpspp/message.h>
32 #include <libpspp/str.h>
33 #include <libpspp/version.h>
34 #include <output/tab.h>
35
36 #include "xalloc.h"
37
38 /* Current prompts in each style. */
39 static char *prompts[PROMPT_CNT];
40
41 /* Current prompting style. */
42 static enum prompt_style current_style;
43
44 /* Initializes prompts. */
45 void
46 prompt_init (void)
47 {
48   prompts[PROMPT_FIRST] = xstrdup ("PSPP> ");
49   prompts[PROMPT_LATER] = xstrdup ("    > ");
50   prompts[PROMPT_DATA] = xstrdup ("data> ");
51   current_style = PROMPT_FIRST;
52 }
53
54 /* Frees prompts. */
55 void
56 prompt_done (void)
57 {
58   int i;
59
60   for (i = 0; i < PROMPT_CNT; i++)
61     {
62       free (prompts[i]);
63       prompts[i] = NULL;
64     }
65 }
66
67 /* Gets the command prompt for the given STYLE. */
68 const char *
69 prompt_get (enum prompt_style style)
70 {
71   assert (style < PROMPT_CNT);
72   return prompts[style];
73 }
74
75 /* Sets the given STYLE's prompt to STRING. */
76 void
77 prompt_set (enum prompt_style style, const char *string)
78 {
79   assert (style < PROMPT_CNT);
80   free (prompts[style]);
81   prompts[style] = xstrdup (string);
82 }
83
84 /* Sets STYLE as the current prompt style. */
85 void
86 prompt_set_style (enum prompt_style style)
87 {
88   assert (style < PROMPT_CNT);
89   current_style = style;
90 }
91
92 /* Returns the current prompt. */
93 enum prompt_style
94 prompt_get_style (void)
95 {
96   return current_style;
97 }