]> git.armaanb.net Git - gen-shell.git/blob - src/main.cpp
semi-usable!
[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 #include <shared.h>
36
37 #ifdef HAVE_READLINE
38 #include <readline/readline.h>
39 #include <readline/history.h>
40 #endif
41
42 std::string promptCompose ();
43
44 const std::string getResponse (const std::string& prompt)
45 {
46   std::string response {""};
47
48   // Display prompt, get input.
49 #ifdef HAVE_READLINE
50   char *line_read = readline (prompt.c_str ());
51   if (! line_read)
52   {
53     std::cout << "\n";
54     response = "<EOF>";
55   }
56   else
57   {
58     // Save history.
59     if (*line_read)
60       add_history (line_read);
61
62     response = std::string (line_read);
63     free (line_read);
64   }
65 #else
66   std::cout << prompt;
67   std::getline (std::cin, response);
68   if (std::cin.eof () == 1)
69   {
70     std::cout << "\n";
71     response = "<EOF>";
72   }
73 #endif
74
75   return response;
76 }
77
78 ////////////////////////////////////////////////////////////////////////////////
79 static int commandLoop (bool autoClear)
80 {
81   // Compose the prompt.
82   auto prompt = promptCompose ();
83
84   // Display prompt, get input.
85   auto command = getResponse (prompt);
86
87   // Obey Taskwarrior's rc.tasksh.autoclear.
88   if (autoClear)
89     std::cout << "\033[2J\033[0;0H";
90
91   int status = 0;
92   if (! isatty (fileno (stdin)) && command == "")
93   {
94     status = -1;
95   }
96   else if (command != "")
97   {
98     auto args = split (command, ' ');
99
100     // Dispatch command.
101          if (args[0] == "<EOF>")                      status = -1;
102     else if (closeEnough ("exit",        args[0], 3)) status = -1;
103     else if (closeEnough ("quit",        args[0], 3)) status = -1;
104     else if (command != "")
105     {
106       command = "echo " + command + " | lolcat ";
107       std::cout << "[" << command << "]\n";
108       system (command.c_str ());
109
110       // Deliberately ignoreŃ• taskwarrior exit status, otherwise empty filters
111       // cause the shell to terminate.
112     }
113   }
114
115   return status;
116 }
117
118 ////////////////////////////////////////////////////////////////////////////////
119 int main (int argc, const char** argv)
120 {
121   int status = 0;
122
123   // Lightweight version checking that doesn't require initialization or any I/O.
124   if (argc == 2 && !strcmp (argv[1], "--version"))
125   {
126     std::cout << VERSION << "\n";
127   }
128   else
129   {
130     try
131     {
132       // Get the Taskwarrior rc.tasksh.autoclear Boolean setting.
133       bool autoClear = false;
134       std::string input;
135       std::string output;
136       execute ("task", {"_get", "rc.tasksh.autoclear"}, input, output);
137       output = lowerCase (output);
138       autoClear = (output == "true\n" ||
139                    output == "1\n"    ||
140                    output == "y\n"    ||
141                    output == "yes\n"  ||
142                    output == "on\n");
143
144       while ((status = commandLoop (autoClear)) == 0)
145         ;
146     }
147
148     catch (const std::string& error)
149     {
150       std::cerr << error << "\n";
151       status = -1;
152     }
153
154     catch (...)
155     {
156       std::cerr << "Unknown error." << "\n";
157       status = -2;
158     }
159   }
160
161   // Returning -1 drops out of the command loop, but gets translated to 0 here,
162   // so that there is a clean way to exit.
163   return status == -1 ? 0 : status;
164 }
165
166 ////////////////////////////////////////////////////////////////////////////////