]> git.armaanb.net Git - gen-shell.git/blob - src/main.cpp
finally removed all hints of tasksh
[gen-shell.git] / src / main.cpp
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright 2006 - 2017, Paul Beckingham, Federico Hernandez, 2020 Armaan Bhojwani
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included
13 // in all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 // SOFTWARE.
22 //
23 // http://www.opensource.org/licenses/mit-license.php
24 //
25 ////////////////////////////////////////////////////////////////////////////////
26
27 #include <cmake.h>
28 #include <iostream>
29 #include <vector>
30 #include <string>
31 #include <cstring>
32 #include <cstdio>
33 #include <stdlib.h>
34 #include <unistd.h>
35
36 #ifdef HAVE_READLINE
37 #include <readline/readline.h>
38 #include <readline/history.h>
39 #endif
40
41 std::string promptCompose ();
42
43 const std::string getResponse (const std::string& prompt)
44 {
45   std::string response {""};
46
47   // Display prompt, get input.
48 #ifdef HAVE_READLINE
49   char *line_read = readline (prompt.c_str ());
50   if (! line_read)
51   {
52     std::cout << "\n";
53     response = "<EOF>";
54   }
55   else
56   {
57     // Save history.
58     if (*line_read)
59       add_history (line_read);
60
61     response = std::string (line_read);
62     free (line_read);
63   }
64 #else
65   std::cout << prompt;
66   std::getline (std::cin, response);
67   if (std::cin.eof () == 1)
68   {
69     std::cout << "\n";
70     response = "<EOF>";
71   }
72 #endif
73
74   return response;
75 }
76
77 ////////////////////////////////////////////////////////////////////////////////
78 static int commandLoop (bool autoClear)
79 {
80   // Compose the prompt.
81   auto prompt = promptCompose ();
82
83   // Display prompt, get input.
84   auto command = getResponse (prompt);
85
86   if (autoClear)
87     std::cout << "\033[2J\033[0;0H";
88
89   int status = 0;
90   if (! isatty (fileno (stdin)) && command == "")
91   {
92     status = -1;
93   }
94   else if (command != "")
95   {
96     // Dispatch command.
97     if (command == "<EOF>")                      status = -1;
98     else if (command != "")
99     {
100       command = command;
101       std::cout << "[" << command << "]\n";
102       system (command.c_str ());
103     }
104   }
105
106   return status;
107 }
108
109 ////////////////////////////////////////////////////////////////////////////////
110 int main (int argc, const char** argv)
111 {
112   int status = 0;
113
114   // Lightweight version checking that doesn't require initialization or any I/O.
115   if (argc == 2 && !strcmp (argv[1], "--version"))
116   {
117     std::cout << VERSION << "\n";
118   }
119   else
120   {
121     try
122     {
123       bool autoClear = false;
124       std::string input;
125       std::string output;
126       autoClear = (output == "true\n" ||
127                    output == "1\n"    ||
128                    output == "y\n"    ||
129                    output == "yes\n"  ||
130                    output == "on\n");
131
132       while ((status = commandLoop (autoClear)) == 0)
133         ;
134     }
135
136     catch (const std::string& error)
137     {
138       std::cerr << error << "\n";
139       status = -1;
140     }
141
142     catch (...)
143     {
144       std::cerr << "Unknown error." << "\n";
145       status = -2;
146     }
147   }
148
149   // Returning -1 drops out of the command loop, but gets translated to 0 here,
150   // so that there is a clean way to exit.
151   return status == -1 ? 0 : status;
152 }
153
154 ////////////////////////////////////////////////////////////////////////////////