]> git.armaanb.net Git - gen-shell.git/blob - src/main.cpp
further reduction
[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 <stdlib.h>
30
31 #ifdef HAVE_READLINE
32 #include <readline/readline.h>
33 #include <readline/history.h>
34 #endif
35
36 using namespace std;
37 std::string promptCompose();
38
39 const std::string getResponse(const std::string & prompt) {
40   std::string response {
41     ""
42   };
43
44   // Display prompt, get input.
45   #ifdef HAVE_READLINE
46   char * line_read = readline(prompt.c_str());
47   if (!line_read) {
48     std::cout << "\n";
49     response = "<EOF>";
50   } else {
51     // Save history.
52     if ( * line_read)
53       add_history(line_read);
54
55     response = std::string(line_read);
56     free(line_read);
57   }
58   #else
59   std::cout << prompt;
60   std::getline(std::cin, response);
61   if (std::cin.eof() == 1) {
62     std::cout << "\n";
63     response = "<EOF>";
64   }
65   #endif
66
67   return response;
68 }
69
70 int main(int argc, char** argv)
71 {
72   int status = 0;
73
74   string root_cmd;
75   for (int i = 1; i < argc; ++i) {
76     root_cmd +=argv[i];
77     root_cmd += " ";
78   }
79
80   while (status == 0) {
81     // Compose the prompt.
82     auto prompt = promptCompose();
83
84     // Display prompt, get input.
85     auto command = getResponse(prompt);
86
87     int status = 0;
88     if (command != "")
89     {
90       // Dispatch command.
91       if (command == "<EOF>")                      status = 1;
92       else if (command != "")
93       {
94         if (argc == 0) {
95           string whole_command=command;
96           std::cout << "[" << command << "]\n";
97           system (command.c_str ());
98           }
99         else {
100           string whole_command = root_cmd + " " + command;
101           // std::cout << "[" << whole_command << "]\n";
102           system (whole_command.c_str ());
103         }
104       }
105     }
106     if (status == 1)
107       return 0;
108   }
109 }
110
111 ////////////////////////////////////////////////////////////////////////////////