]> git.armaanb.net Git - gen-shell.git/blob - src/main.cpp.bak
nice multi-stage dockerfile
[gen-shell.git] / src / main.cpp.bak
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 using namespace std;
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 int commandLoop ()
79 {
80   // Compose the prompt.
81   auto prompt = promptCompose ();
82
83   // Display prompt, get input.
84   auto command = getResponse (prompt);
85
86   int status = 0;
87   if (! isatty (fileno (stdin)) && command == "")
88   {
89     status = -1;
90   }
91   else if (command != "")
92   {
93     // Dispatch command.
94     if (command == "<EOF>")                      status = -1;
95     else if (command != "")
96     {
97       command = command;
98       std::cout << "[" << command << "]\n";
99       system (command.c_str ());
100     }
101   }
102
103   return status;
104 }
105
106 int main ()
107 // int main (int argc, const char** argv)
108 {
109   int status = 0;
110
111   while (status == 0)
112     commandLoop();
113
114   return status == -1 ? 0 : status;
115 }
116
117 ////////////////////////////////////////////////////////////////////////////////