-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommand.hpp
145 lines (113 loc) · 3.62 KB
/
command.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Copyright 2016 Hunter L. Allen
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef COMMAND_HPP_
#define COMMAND_HPP_
#include <memory>
#include <string>
#include <vector>
#include <map>
/* File Includes */
#include "simple_command.hpp"
#include "job.hpp"
/* external structs */
struct SimpleCommand;
struct job;
/* job status enum */
enum job_status;
class Command
{
public:
Command();
void prompt();
void print();
void execute();
void clear();
void pushDir(const std::shared_ptr<char> new_dir);
void popDir();
void insertSimpleCommand(std::shared_ptr<SimpleCommand> simpleCommand);
void set_in_file(const std::shared_ptr<char> _fd);
void set_out_file(const std::shared_ptr<char> _fd);
void set_err_file(const std::shared_ptr<char> _fd);
void send_to_foreground(
ssize_t process_num,
bool & fg,
termios & _oldtermios);
void setAlias(const std::shared_ptr<char> _from, const std::shared_ptr<char> _to);
const bool & inIsSet() {return inSet;}
const bool & outIsSet() {return outSet;}
const bool & errIsSet() {return errSet;}
const bool & is_interactive() {return m_interactive;}
const bool & get_expand() {return m_expand;}
void setAppend(const bool & ap) {append = ap;}
void setBackground(const bool & bg) {background = bg;}
static Command currentCommand;
static std::shared_ptr<SimpleCommand> currentSimpleCommand;
const int & get_stdin() {return m_stdin;}
const int & get_stdout() {return m_stdout;}
const int & get_stderr() {return m_stderr;}
void set_interactive(const bool & _interactive)
{
m_interactive = _interactive;
}
void set_time(const bool & _time)
{
m_time = _time;
}
void set_expand(const bool & _expand)
{
m_expand = _expand;
}
void print_jobs();
pid_t m_shell_pgid = 0;
pid_t m_pgid = 0;
pid_t m_pid = 0;
std::map<std::string, std::vector<std::string>> m_aliases;
std::map<pid_t, size_t> m_job_map;
std::shared_ptr<std::vector<job>> m_p_jobs;
std::vector<std::string> wc_collector; // Wild card collection tool
bool printPrompt = true;
/**
* Returns a string for the command the user ran
*/
friend std::string get_command_text(Command & cmd);
private:
std::vector<std::string> string_split(std::string s, char delim)
{
std::vector<std::string> elems; std::stringstream ss(s);
for (std::string item; std::getline(ss, item, delim); elems.push_back(item)) {}
return elems;
}
int get_output_flags();
std::unique_ptr<std::string> outFile = nullptr;
std::unique_ptr<std::string> inFile = nullptr;
std::unique_ptr<std::string> errFile = nullptr;
bool append = false;
bool background = false;
bool m_time = false;
bool m_interactive = false;
bool m_expand = true;
bool stopped = false;
bool completed = false;
int numOfSimpleCommands = 0;
bool inSet = false; int m_stdin = 0;
bool outSet = false; int m_stdout = 1;
bool errSet = false; int m_stderr = 2;
std::vector<std::string> m_dir_stack;
std::vector<std::shared_ptr<SimpleCommand>> simpleCommands;
};
/**
* Returns a string for the command the user ran
*/
std::string get_command_text(Command & cmd);
#endif // COMMAND_HPP_