use strings and forkpty

This commit is contained in:
2025-04-12 17:16:40 -05:00
parent e1b93ea51b
commit a3b3a9b6e8
3 changed files with 40 additions and 127 deletions

View File

@@ -1,14 +1,8 @@
#define _XOPEN_SOURCE 600
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
//#include <stdio.h>
#define __USE_BSD
#include <termios.h>
#include <sys/select.h>
#include <sys/ioctl.h>
#include <string.h>
#include <pty.h>
#include <fcntl.h>
#include "Terminal.h"
#include "modules/ImguiModule/src/ImguiModule.h"
@@ -37,140 +31,57 @@ void Terminal::onLoad() {
ImGui::SetCurrentContext(im->getContext());
master = posix_openpt(O_RDWR);
if (master < 0) {
std::cerr << "Error " << errno << " on posix_openpt()\n";
std::abort();
}
child_pid = forkpty(&master, nullptr, nullptr, nullptr);
int returnCode = grantpt(master);
if (returnCode != 0) {
std::cerr << "Error " << errno << " on grantpt()\n";
std::abort();
}
returnCode = unlockpt(master);
if (returnCode != 0) {
std::cerr << "Error " << errno << " on unlockpt()\n";
std::abort();
}
int slave = open(ptsname(master), O_RDWR);
/////////////////////////////////////////////////////
// Create the child process
if (fork())
{
// FATHER
// Close the slave side of the PTY
close(slave);
return;
} else
{
struct termios slave_orig_term_settings; // Saved terminal settings
struct termios new_term_settings; // Current terminal settings
// CHILD
// Close the master side of the PTY
close(master);
// Save the defaults parameters of the slave side of the PTY
returnCode = tcgetattr(slave, &slave_orig_term_settings);
// Set RAW mode on slave side of PTY
new_term_settings = slave_orig_term_settings;
cfmakeraw (&new_term_settings);
tcsetattr (slave, TCSANOW, &new_term_settings);
// The slave side of the PTY becomes the standard input and outputs of the child process
close(0); // Close standard input (current terminal)
close(1); // Close standard output (current terminal)
close(2); // Close standard error (current terminal)
dup(slave); // PTY becomes standard input (0)
dup(slave); // PTY becomes standard output (1)
dup(slave); // PTY becomes standard error (2)
// Now the original file descriptor is useless
close(slave);
// Make the current process a new session leader
setsid();
// As the child is a session leader, set the controlling terminal to be the slave side of the PTY
// (Mandatory for programs like the shell to make them manage correctly their outputs)
ioctl(0, TIOCSCTTY, 1);
// Execution of the program
{
if(!child_pid) {
char* const* args = nullptr;
returnCode = execvp("bash", args);
execvp("bash", args);
}
// if Error...
std::abort();
}
/////////////////////////////////////////////////////
//fcntl(master, F_SETFL, fcntl(master, F_GETFL, 0) | O_NONBLOCK);
/*
if (master >= 0)
(void)write(master, "ls\n", 3);
*/
}
void Terminal::run() {
static char input[150] = "";
static std::vector<char> output(150);
static std::string op = "";
static int returnCode;
static std::future<int> rc;
static fd_set fd_in;
static fd_set fds;
static int rc;
static char opArr[150];
static std::string input, output;
static timeval to; to = { 0, 0 };
// Wait for data from standard input and master side of PTY
FD_ZERO(&fd_in);
FD_SET(master, &fd_in);
FD_ZERO(&fds);
FD_SET(master, &fds);
//returnCode = select(master + 1, &fd_in, NULL, NULL, NULL);
rc = std::async(std::launch::async, [this](fd_set* f) -> int {
return select(master + 1, f, NULL, NULL, NULL);
}, &fd_in);
if(rc.wait_for(std::chrono::seconds(0)) == std::future_status::ready) {
switch(rc.get()) {
case -1: fprintf(stderr, "Error %d on select()\n", errno);
exit(1);
rc = select(master + 1, &fds, NULL, NULL, &to);
default: {
// If data on master side of PTY
if(FD_ISSET(master, &fd_in)) {
returnCode = read(master, output.data(), 150);
if (returnCode > 0) {
write(1, output.data(), returnCode);
op += "\n";
op += output.data();
op += "\n";
output.clear();
} else {
if (returnCode < 0) {
fprintf(stderr, "Error %d on read master PTY\n", errno);
exit(1);
}
}
}
}
} // End switch
switch(rc) {
case -1:
std::cerr << "Error " << errno << " on select()\n";
exit(1);
default:
if(FD_ISSET(master, &fds)) {
rc = read(master, opArr, 150);
if(rc < 0) {
//error on read
app->stopModule(getName());
} else {
if(input == "clear") output = "";
output += opArr;
}
}
}
ImGui::Begin("Terminal Module");
ImGui::TextWrapped("%s", op.c_str());
ImGui::InputText("input", input, 150);
ImGui::TextWrapped("%s", output.c_str());
ImGui::InputText("input", &input);
if(ImGui::Button("send")) {
static std::string s; s = input; s += "\n";
write(master, s.c_str(), s.length());
(void)write(master, (input + "\n").c_str(), input.length() + 1);
}