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