206 lines
6.5 KiB
C++
206 lines
6.5 KiB
C++
/*
|
|
* Copyright (C) 2020-2023 The DOSBox Staging Team
|
|
* Copyright (C) 2002-2021 The DOSBox Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef DOSBOX_SHELL_H
|
|
#define DOSBOX_SHELL_H
|
|
|
|
#include "dosbox.h"
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <stack>
|
|
#include <string>
|
|
|
|
#include "callback.h"
|
|
#include "programs.h"
|
|
|
|
class DOS_Shell;
|
|
|
|
constexpr auto CMD_MAXLINE = 4096;
|
|
|
|
extern callback_number_t call_shellstop;
|
|
|
|
/* first_shell is used to add and delete stuff from the shell env
|
|
* by "external" programs. (config) */
|
|
extern DOS_Shell* first_shell;
|
|
|
|
class ByteReader {
|
|
public:
|
|
virtual void Reset() = 0;
|
|
virtual std::optional<uint8_t> Read() = 0;
|
|
|
|
ByteReader() = default;
|
|
ByteReader(const ByteReader&) = delete;
|
|
ByteReader& operator=(const ByteReader&) = delete;
|
|
ByteReader(ByteReader&&) = delete;
|
|
ByteReader& operator=(ByteReader&&) = delete;
|
|
virtual ~ByteReader() = default;
|
|
};
|
|
|
|
class HostShell {
|
|
public:
|
|
virtual bool GetEnvStr(const char* entry, std::string& result) const = 0;
|
|
|
|
HostShell() = default;
|
|
HostShell(const HostShell&) = delete;
|
|
HostShell& operator=(const HostShell&) = delete;
|
|
HostShell(HostShell&&) = delete;
|
|
HostShell& operator=(HostShell&&) = delete;
|
|
virtual ~HostShell() = default;
|
|
};
|
|
|
|
class BatchFile {
|
|
public:
|
|
BatchFile(const HostShell& host, std::unique_ptr<ByteReader> input_reader,
|
|
std::string_view entered_name, std::string_view cmd_line,
|
|
bool echo_on);
|
|
BatchFile(const BatchFile&) = delete;
|
|
BatchFile& operator=(const BatchFile&) = delete;
|
|
BatchFile(BatchFile&&) = delete;
|
|
BatchFile& operator=(BatchFile&&) = delete;
|
|
virtual ~BatchFile() = default;
|
|
|
|
virtual bool ReadLine(char* line);
|
|
bool Goto(std::string_view label);
|
|
void Shift();
|
|
void SetEcho(bool echo_on);
|
|
[[nodiscard]] bool Echo() const;
|
|
|
|
private:
|
|
[[nodiscard]] std::string ExpandedBatchLine(std::string_view line) const;
|
|
[[nodiscard]] std::string GetLine();
|
|
|
|
const HostShell& shell;
|
|
CommandLine cmd;
|
|
std::unique_ptr<ByteReader> reader;
|
|
bool echo;
|
|
};
|
|
|
|
class AutoexecEditor;
|
|
class MoreOutputStrings;
|
|
|
|
struct SHELL_Cmd {
|
|
void (DOS_Shell::*handler)(char* args) = nullptr; // Handler for this
|
|
// command
|
|
const char* help = ""; // String with command help
|
|
HELP_Filter filter = HELP_Filter::Common;
|
|
HELP_Category category = HELP_Category::Misc;
|
|
};
|
|
|
|
class DOS_Shell : public Program, public HostShell {
|
|
private:
|
|
void PrintHelpForCommands(MoreOutputStrings& output, HELP_Filter req_filter);
|
|
void AddShellCmdsToHelpList();
|
|
bool WriteHelp(const std::string& command, char* args);
|
|
[[nodiscard]] std::string ReadCommand();
|
|
[[nodiscard]] std::string SubstituteEnvironmentVariables(std::string_view command);
|
|
[[nodiscard]] std::string Which(std::string_view name) const;
|
|
|
|
friend class AutoexecEditor;
|
|
std::vector<std::string> history{};
|
|
std::stack<BatchFile> batchfiles{};
|
|
|
|
bool exit_cmd_called = false;
|
|
static inline bool help_list_populated = false;
|
|
|
|
public:
|
|
DOS_Shell();
|
|
~DOS_Shell() override = default;
|
|
DOS_Shell(const DOS_Shell&) = delete; // prevent copy
|
|
DOS_Shell& operator=(const DOS_Shell&) = delete; // prevent assignment
|
|
void Run() override;
|
|
void RunBatchFile();
|
|
|
|
/* A load of subfunctions */
|
|
void ParseLine(char* line);
|
|
void GetRedirection(char* s, std::string& ifn, std::string& ofn,
|
|
std::string& pipe, bool* append);
|
|
void InputCommand(char* line);
|
|
void ShowPrompt();
|
|
void DoCommand(char* cmd);
|
|
|
|
// Execute external shell command / program / configuration change
|
|
// 'virtual' needed for unit tests
|
|
virtual bool ExecuteShellCommand(const char* const name, char* arguments);
|
|
bool ExecuteProgram(std::string_view name, std::string_view args);
|
|
bool ExecuteConfigChange(const char* const cmd_in, const char* const line);
|
|
|
|
void ReadShellHistory();
|
|
void WriteShellHistory();
|
|
|
|
bool GetEnvStr(const char* entry, std::string& result) const override;
|
|
bool GetEnvNum(Bitu num, std::string& result) const;
|
|
[[nodiscard]] Bitu GetEnvCount() const;
|
|
bool SetEnv(const char* entry, const char* new_string);
|
|
|
|
/* Commands */
|
|
void CMD_HELP(char* args);
|
|
void CMD_CLS(char* args);
|
|
void CMD_COPY(char* args);
|
|
void CMD_DATE(char* args);
|
|
void CMD_TIME(char* args);
|
|
void CMD_DIR(char* args);
|
|
void CMD_DELETE(char* args);
|
|
void CMD_ECHO(char* args);
|
|
void CMD_EXIT(char* args);
|
|
void CMD_FOR(char* args);
|
|
void CMD_MKDIR(char* args);
|
|
void CMD_CHDIR(char* args);
|
|
void CMD_RMDIR(char* args);
|
|
void CMD_SET(char* args);
|
|
void CMD_IF(char* args);
|
|
void CMD_GOTO(char* args);
|
|
void CMD_TYPE(char* args);
|
|
void CMD_REM(char* args);
|
|
void CMD_RENAME(char* args);
|
|
void CMD_CALL(char* args);
|
|
void SyntaxError();
|
|
void CMD_PAUSE(char* args);
|
|
void CMD_SUBST(char* args);
|
|
void CMD_LOADHIGH(char* args);
|
|
void CMD_CHOICE(char* args);
|
|
void CMD_ATTRIB(char* args);
|
|
void CMD_PATH(char* args);
|
|
void CMD_SHIFT(char* args);
|
|
void CMD_VER(char* args);
|
|
void CMD_LS(char* args);
|
|
void CMD_VOL(char* args);
|
|
void CMD_MOVE(char* args);
|
|
|
|
/* The shell's variables */
|
|
uint16_t input_handle = 0;
|
|
bool echo = false;
|
|
bool call = false;
|
|
};
|
|
|
|
std::tuple<std::string, std::string, std::string, bool> parse_drive_conf(
|
|
std::string drive_letter, const std_fs::path& conf_path);
|
|
|
|
std::string to_search_pattern(const char* arg);
|
|
|
|
// Localized output
|
|
|
|
char* format_date(const uint16_t year, const uint8_t month, const uint8_t day);
|
|
char* format_time(const uint8_t hour, const uint8_t min, const uint8_t sec,
|
|
const uint8_t msec, const bool full = false);
|
|
std::string format_number(const size_t num);
|
|
|
|
std::string shorten_path(const std::string& path, const size_t max_len);
|
|
|
|
#endif
|