File: SshFileWriteSocket.cpp

package info (click to toggle)
qtop 2.3.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,976 kB
  • sloc: cpp: 40,477; makefile: 7
file content (314 lines) | stat: -rw-r--r-- 9,093 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This 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 software 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, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/

#include "SshFileWriteSocket.h"
#include "Debug.h"

#include <QElapsedTimer>

#if HAVE_SSH
#include <libssh2.h>
#endif

namespace Ssh
{

    //_______________________________________________________________________
    FileWriteSocket::FileWriteSocket( QObject* parent ):
        BaseSocket( parent )
        {}

    //_______________________________________________________________________
    void FileWriteSocket::connectToFile( void* session, const QString& path, quint64 size, int mode )
    {

        Debug::Throw() << "Ssh::FileWriteSocket::connectToFile - " << path << " size: " << size << endl;

        // store session, host and port
        session_ = session;
        path_ = path;
        size_ = size;
        mode_ = mode;

        // make sure timer is running
        if( timer_.isActive() ) timer_.stop();
        _addCommand( Connect );

    }

    //_______________________________________________________________________
    void FileWriteSocket::sendEof()
    {
        _addCommand( SendEof );
        _addCommand( WaitForEof );
        _addCommand( WaitForClosed );
    }

    //_______________________________________________________________________
    bool FileWriteSocket::waitForConnected( int msecs )
    {

        // do nothing if already connected
        if( isConnected() ) return true;

        QElapsedTimer timer;
        timer.start();

        while( msecs < 0 || timer.elapsed() < msecs )
        { if( !_processCommands() ) return true; }

        return false;

    }

    //_______________________________________________________________________
    bool FileWriteSocket::waitForCompleted( int msecs )
    {

        QElapsedTimer timer;
        timer.start();

        while( msecs < 0 || timer.elapsed() < msecs )
        { if( !_processCommands() ) return true; }

        return false;

    }

    //_______________________________________________________________________
    void FileWriteSocket::timerEvent( QTimerEvent* event )
    {

        // check timer id
        if( event->timerId() == timer_.timerId() )
        {

            if( !_processCommands() && timer_.isActive() ) timer_.stop();

        } else return BaseSocket::timerEvent( event );

    }

    //_______________________________________________
    void FileWriteSocket::_addCommand( Command command )
    {
        Debug::Throw() << "Ssh::FileWriteSocket::_AddCommand: " << command << endl;
        commands_.append( command );
        if( !timer_.isActive() ) timer_.start( _latency(), this );
    }


    //_______________________________________________
    bool FileWriteSocket::_processCommands()
    {

        // check empty commands list
        if( commands_.empty() ) return false;

        switch( commands_.front() )
        {

            case Connect:
            {
                if( _tryConnect() && !commands_.empty() ) commands_.removeFirst();
                return true;
            }

            case SendEof:
            {
                if( _trySendEof() && !commands_.empty() ) commands_.removeFirst();
                return true;
            }


            case WaitForEof:
            {
                if( _tryWaitEof() && !commands_.empty() ) commands_.removeFirst();
                return true;
            }

            case WaitForClosed:
            {
                if( _tryClose() && !commands_.empty() ) commands_.removeFirst();
                return true;
            }

            default:
            if( !commands_.empty() )
            { commands_.removeFirst(); }
            return true;

        }

        return false;

    }

    //_______________________________________________________________________
    bool FileWriteSocket::_tryConnect()
    {

        if( isConnected() ) return true;

        Debug::Throw( "FileWriteSocket::_tryConnect.\n" );

        #if HAVE_SSH
        const auto session( static_cast<LIBSSH2_SESSION*>(session_) );
        if( !session )
        {
            setErrorString( tr( "invalid session" ) );
            emit error( QAbstractSocket::ConnectionRefusedError );
            return true;
        }

        const auto channel = libssh2_scp_send64( session, qPrintable( path_ ), mode_&0777, (libssh2_uint64_t) size_, 0, 0 );
        if( channel )
        {

            _setChannel( channel, QIODevice::WriteOnly );
            return true;

        } else if( libssh2_session_last_errno( session ) != LIBSSH2_ERROR_EAGAIN ) {

            char *errMsg(nullptr);
            libssh2_session_last_error(session, &errMsg, NULL, 0);
            setErrorString( tr( "error connecting to remote file %1: %2" ).arg( path_ ).arg( errMsg ) );
            emit error( QAbstractSocket::ConnectionRefusedError );
            return true;

        }

        return false;

        #else
        return true;
        #endif

    }

    //_______________________________________________________________________
    bool FileWriteSocket::_trySendEof()
    {

        Debug::Throw( "FileWriteSocket::_trySendEof.\n" );

        #if HAVE_SSH
        const auto session( static_cast<LIBSSH2_SESSION*>(session_) );
        if( !session )
        {
            setErrorString( tr( "invalid session" ) );
            emit error( QAbstractSocket::ConnectionRefusedError );
            return true;
        }

        const auto channel( static_cast<LIBSSH2_CHANNEL*>(_channel() ) );
        int result = libssh2_channel_send_eof( channel );

        if( result == 0 ) return true;
        else if( result == LIBSSH2_ERROR_EAGAIN ) return false;
        else {

            char *errMsg(nullptr);
            libssh2_session_last_error(session, &errMsg, NULL, 0);
            setErrorString( tr( "error sending eof to remote file %1: %2" ).arg( path_ ).arg( errMsg ) );
            emit error( QAbstractSocket::UnknownSocketError );
            return true;

        }

        #else
        setErrorString( tr( "no ssh" ) );
        return true;
        #endif

    }

    //_______________________________________________________________________
    bool FileWriteSocket::_tryWaitEof()
    {

        Debug::Throw( "FileWriteSocket::_tryWaitEof.\n" );

        #if HAVE_SSH
        const auto session( static_cast<LIBSSH2_SESSION*>(session_) );
        if( !session )
        {
            setErrorString( tr( "invalid session" ) );
            emit error( QAbstractSocket::ConnectionRefusedError );
            return true;
        }

        const auto channel( static_cast<LIBSSH2_CHANNEL*>(_channel() ) );
        int result = libssh2_channel_wait_eof( channel );
        if( result == 0 ) return true;
        else if( result == LIBSSH2_ERROR_EAGAIN ) return false;
        else {

            char *errMsg(nullptr);
            libssh2_session_last_error(session, &errMsg, NULL, 0);
            setErrorString( tr( "error waiting for eof from remote file %1: %2" ).arg( path_ ).arg( errMsg ) );
            emit error( QAbstractSocket::UnknownSocketError );
            return true;

        }

        #else
        setErrorString( tr( "no ssh" ) );
        return true;
        #endif

    }

    //_______________________________________________________________________
    bool FileWriteSocket::_tryClose()
    {

        Debug::Throw( "FileWriteSocket::_tryClose.\n" );

        #if HAVE_SSH
        const auto session( static_cast<LIBSSH2_SESSION*>(session_) );
        if( !session )
        {
            setErrorString( tr( "invalid session" ) );
            emit error( QAbstractSocket::ConnectionRefusedError );
            return true;
        }

        const auto channel( static_cast<LIBSSH2_CHANNEL*>(_channel() ) );
        int result = libssh2_channel_wait_closed( channel );
        if( result == 0 ) return true;
        else if( result == LIBSSH2_ERROR_EAGAIN ) return false;
        else {

            char *errMsg(nullptr);
            libssh2_session_last_error(session, &errMsg, NULL, 0);
            setErrorString( tr( "error waiting for closed from remote file %1: %2" ).arg( path_ ).arg( errMsg ) );
            emit error( QAbstractSocket::UnknownSocketError );
            return true;

        }

        #else
        setErrorString( tr( "no ssh" ) );
        return true;
        #endif

    }

}