mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-12-01 06:52:53 -05:00
59 lines
2.0 KiB
C++
59 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2025 Petr Mironychev
|
|
*
|
|
* This file is part of QodeAssist.
|
|
*
|
|
* QodeAssist 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* QodeAssist 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 QodeAssist. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <llmcore/BaseTool.hpp>
|
|
#include <QObject>
|
|
|
|
namespace QodeAssist::Tools {
|
|
|
|
class ExecuteTerminalCommandTool : public LLMCore::BaseTool
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ExecuteTerminalCommandTool(QObject *parent = nullptr);
|
|
|
|
QString name() const override;
|
|
QString stringName() const override;
|
|
QString description() const override;
|
|
QJsonObject getDefinition(LLMCore::ToolSchemaFormat format) const override;
|
|
LLMCore::ToolPermissions requiredPermissions() const override;
|
|
|
|
QFuture<QString> executeAsync(const QJsonObject &input = QJsonObject()) override;
|
|
|
|
private:
|
|
bool isCommandAllowed(const QString &command) const;
|
|
bool isCommandSafe(const QString &command) const;
|
|
bool areArgumentsSafe(const QString &args) const;
|
|
QStringList getAllowedCommands() const;
|
|
QString getCommandDescription() const;
|
|
QString sanitizeOutput(const QString &output, qint64 maxSize) const;
|
|
|
|
// Constants for production safety
|
|
static constexpr int COMMAND_TIMEOUT_MS = 30000; // 30 seconds
|
|
static constexpr qint64 MAX_OUTPUT_SIZE = 10 * 1024 * 1024; // 10 MB
|
|
static constexpr int MAX_COMMAND_LENGTH = 1024;
|
|
static constexpr int MAX_ARGS_LENGTH = 4096;
|
|
static constexpr int PROCESS_START_TIMEOUT_MS = 3000;
|
|
};
|
|
|
|
} // namespace QodeAssist::Tools
|
|
|