]> git.armaanb.net Git - gen-shell.git/blob - src/main.cpp
fixed multi-line cmd issue
[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     root_cmd += " ";
83   }
84
85   while (status == 0) {
86     // Compose the prompt.
87     auto prompt = promptCompose();
88
89     // Display prompt, get input.
90     auto command = getResponse(prompt);
91
92     int status = 0;
93     if (command != "")
94     {
95       // Dispatch command.
96       if (command == "<EOF>")                      status = 1;
97       else if (command != "")
98       {
99         if (argc == 0) {
100           string whole_command=command;
101           std::cout << "[" << command << "]\n";
102           system (command.c_str ());
103           }
104         else {
105           string whole_command = root_cmd + " " + command;
106           // std::cout << "[" << whole_command << "]\n";
107           system (whole_command.c_str ());
108         }
109       }
110     }
111     if (status == 1)
112       return 0;
113   }
114 }
115
116 ////////////////////////////////////////////////////////////////////////////////