/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #pragma once #include #include #include namespace QSsh { class SftpChannel; class SshDirectTcpIpTunnel; class SshRemoteProcess; class SshTcpIpForwardServer; namespace Internal { class AbstractSshChannel; class SshIncomingPacket; class SshSendFacility; class SshChannelManager : public QObject { Q_OBJECT public: SshChannelManager(SshSendFacility &sendFacility, QObject *parent); QSharedPointer createRemoteProcess(const QByteArray &command); QSharedPointer createRemoteShell(); QSharedPointer createSftpChannel(); QSharedPointer createDirectTunnel(const QString &originatingHost, quint16 originatingPort, const QString &remoteHost, quint16 remotePort); QSharedPointer createForwardServer(const QString &remoteHost, quint16 remotePort); int channelCount() const; enum CloseAllMode { CloseAllRegular, CloseAllAndReset }; int closeAllChannels(CloseAllMode mode); void handleChannelRequest(const SshIncomingPacket &packet); void handleChannelOpen(const SshIncomingPacket &packet); void handleChannelOpenFailure(const SshIncomingPacket &packet); void handleChannelOpenConfirmation(const SshIncomingPacket &packet); void handleChannelSuccess(const SshIncomingPacket &packet); void handleChannelFailure(const SshIncomingPacket &packet); void handleChannelWindowAdjust(const SshIncomingPacket &packet); void handleChannelData(const SshIncomingPacket &packet); void handleChannelExtendedData(const SshIncomingPacket &packet); void handleChannelEof(const SshIncomingPacket &packet); void handleChannelClose(const SshIncomingPacket &packet); void handleRequestSuccess(const SshIncomingPacket &packet); void handleRequestFailure(const SshIncomingPacket &packet); signals: void timeout(); private: typedef QHash::Iterator ChannelIterator; ChannelIterator lookupChannelAsIterator(quint32 channelId, bool allowNotFound = false); AbstractSshChannel *lookupChannel(quint32 channelId, bool allowNotFound = false); void removeChannel(ChannelIterator it); void insertChannel(AbstractSshChannel *priv, const QSharedPointer &pub); SshSendFacility &m_sendFacility; QHash m_channels; QHash > m_sessions; quint32 m_nextLocalChannelId; QList> m_waitingForwardServers; QList> m_listeningForwardServers; }; } // namespace Internal } // namespace QSsh