Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement System Input Handling for CLI Execution #384

Merged
merged 3 commits into from
Jan 6, 2025

Conversation

federicovilla55
Copy link
Contributor

This commit implements a solution to handle system input within the Command-Line Interface (CLI), as in Issue #353.

Implemented changes:

  • A new method, SystemIO::setCLIInput(), was added in the systemio.h file that sets the input stream to STDIN. This method is used only by the CLI, which doesn't support multi-thread execution and thus cannot rely on the same input handling methods as the GUI. The GUI has a dedicated thread for reading console input, while other threads manage the rest of the program.
  • The readFromFile() method was updated to handle STDIN input differently. When fd == STDIN, it now reads one byte at a time using InputStream.read(1). This continues until the specified number of bytes (lengthRequested) is reached or a newline ('\n') character is encountered.

This change ensures that both the GUI and CLI can correctly handle STDIN input. Without reading one byte at a time, the CLI could not properly process inputs of a size different from the requested length, since there isn't a function like putStdInData(const QByteArray &data) in the CLI that pushes data into the stdin buffer object.

void putStdInData(const QByteArray &data) {
FileIOData::s_stdioMutex.lock();
FileIOData::s_stdinBuffer.append(data);
FileIOData::s_stdinBufferEmpty.wakeAll();
FileIOData::s_stdioMutex.unlock();
}

For the GUI, STDIN is handled through the QTextStream object, which is linked in the ConsoleWidget:
// Send input data from the console to the SystemIO stdin stream.
connect(m_ui->console, &Console::sendData, &SystemIO::get(),
&SystemIO::putStdInData);

To integrate the new input handling in the CLI, a call to SystemIO::setCLIInput() is added in the CLIRunner constructor to set the input stream to STDIN:

CLIRunner::CLIRunner(const CLIModeOptions &options)
    : QObject(), m_options(options) {
  // to handle system input
  SystemIO::setCLIInput();
}

With these changes the STDIN input can be handled in both Ripes mode (GUI and CLI).

@mortbopet
Copy link
Owner

#385 should fix the failing CI test

@mortbopet mortbopet merged commit b30b76d into mortbopet:master Jan 6, 2025
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants