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