FileManager.h 10.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 
 This file is part of the QGROUNDCONTROL project
 
 QGROUNDCONTROL 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.
 
 QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
 
 ======================================================================*/

24 25
#ifndef FILEMANAGER_H
#define FILEMANAGER_H
26 27

#include <QObject>
28
#include <QDir>
29

30
#include "UASInterface.h"
31
#include "QGCLoggingCategory.h"
32

33 34 35
Q_DECLARE_LOGGING_CATEGORY(FileManagerLog)

class FileManager : public QObject
36 37
{
    Q_OBJECT
Don Gagne's avatar
Don Gagne committed
38
    
39
public:
40
    FileManager(QObject* parent, UASInterface* uas, uint8_t unitTestSystemIdQGC = 0);
41 42 43 44
    
    /// These methods are only used for testing purposes.
    bool _sendCmdTestAck(void) { return _sendOpcodeOnlyCmd(kCmdNone, kCOAck); };
    bool _sendCmdTestNoAck(void) { return _sendOpcodeOnlyCmd(kCmdTestNoAck, kCOAck); };
45
    bool _sendCmdReset(void) { return _sendOpcodeOnlyCmd(kCmdResetSessions, kCOAck); };
46
    
47
    /// Timeout in msecs to wait for an Ack time come back. This is public so we can write unit tests which wait long enough
48
    /// for the FileManager to timeout.
49
    static const int ackTimerTimeoutMsecs = 10000;
50

51 52 53 54 55 56 57 58 59 60 61 62 63 64
	/// Downloads the specified file.
	///     @param from File to download from UAS, fully qualified path
	///     @param downloadDir Local directory to download file to
	void downloadPath(const QString& from, const QDir& downloadDir);
	
	/// Stream downloads the specified file.
	///     @param from File to download from UAS, fully qualified path
	///     @param downloadDir Local directory to download file to
	void streamPath(const QString& from, const QDir& downloadDir);
	
	/// Lists the specified directory. Emits listEntry signal for each entry, followed by listComplete signal.
	///		@param dirPath Fully qualified path to list
	void listDirectory(const QString& dirPath);
	
65 66 67
    /// Upload the specified file to the specified location
    void uploadPath(const QString& toPath, const QFileInfo& uploadFile);
    
68
signals:
69 70
    // Signals associated with the listDirectory method
    
Don Gagne's avatar
Don Gagne committed
71
    /// Signalled to indicate a new directory entry was received.
72 73
    void listEntry(const QString& entry);
    
Don Gagne's avatar
Don Gagne committed
74
    // Signals associated with all commands
75
    
Don Gagne's avatar
Don Gagne committed
76 77
    /// Signalled after a command has completed
    void commandComplete(void);
78
    
Don Gagne's avatar
Don Gagne committed
79 80 81
    /// Signalled when an error occurs during a command. In this case a commandComplete signal will
    /// not be sent.
    void commandError(const QString& msg);
82
    
Don Gagne's avatar
Don Gagne committed
83 84 85
    /// Signalled during a lengthy command to show progress
    ///     @param value Amount of progress: 0.0 = none, 1.0 = complete
    void commandProgress(int value);
86

87
public slots:
Lorenz Meier's avatar
Lorenz Meier committed
88
    void receiveMessage(LinkInterface* link, mavlink_message_t message);
89 90 91
	
private slots:
	void _ackTimeout(void);
92

93
private:
Don Gagne's avatar
Don Gagne committed
94 95
    /// @brief This is the fixed length portion of the protocol data. Trying to pack structures across differing compilers is
    /// questionable, so we pad the structure ourselves to 32 bit alignment which should get us what we want.
Lorenz Meier's avatar
Lorenz Meier committed
96 97
    struct RequestHeader
        {
98 99 100 101 102 103 104 105
            uint16_t    seqNumber;      ///< sequence number for message
            uint8_t     session;        ///< Session id for read and write commands
            uint8_t     opcode;         ///< Command opcode
            uint8_t     size;           ///< Size of data
            uint8_t     req_opcode;     ///< Request opcode returned in kRspAck, kRspNak message
            uint8_t     burstComplete;  ///< Only used if req_opcode=kCmdBurstReadFile - 1: set of burst packets complete, 0: More burst packets coming.
            uint8_t     padding;        ///< 32 bit aligment padding
            uint32_t    offset;         ///< Offsets for List and Read commands
Lorenz Meier's avatar
Lorenz Meier committed
106 107
        };

108 109 110
    struct Request
    {
        struct RequestHeader hdr;
111

112
        // We use a union here instead of just casting (uint32_t)&payload[0] to not break strict aliasing rules
113
        union {
114
            // The entire Request must fit into the payload member of the mavlink_file_transfer_protocol_t structure. We use as many leftover bytes
115
            // after we use up space for the RequestHeader for the data portion of the Request.
116
            uint8_t data[sizeof(((mavlink_file_transfer_protocol_t*)0)->payload) - sizeof(RequestHeader)];
117
			
118 119
            // File length returned by Open command
            uint32_t openFileLength;
120 121 122

            // Length of file chunk written by write command
            uint32_t writeFileLength;
123
        };
124 125
    };

none's avatar
none committed
126
    enum Opcode
127
	{
128
		kCmdNone,				///< ignored, always acked
129
		kCmdTerminateSession,	///< Terminates open Read session
130 131 132 133 134 135 136
		kCmdResetSessions,		///< Terminates all open Read sessions
		kCmdListDirectory,		///< List files in <path> from <offset>
		kCmdOpenFileRO,			///< Opens file at <path> for reading, returns <session>
		kCmdReadFile,			///< Reads <size> bytes from <offset> in <session>
		kCmdCreateFile,			///< Creates file at <path> for writing, returns <session>
		kCmdWriteFile,			///< Writes <size> bytes to <offset> in <session>
		kCmdRemoveFile,			///< Remove file at <path>
137 138
		kCmdCreateDirectory,	///< Creates directory at <path>
		kCmdRemoveDirectory,	///< Removes Directory at <path>, must be empty
139 140 141 142 143
		kCmdOpenFileWO,			///< Opens file at <path> for writing, returns <session>
		kCmdTruncateFile,		///< Truncate file at <path> to <offset> length
		kCmdRename,				///< Rename <path1> to <path2>
		kCmdCalcFileCRC32,		///< Calculate CRC32 for file at <path>
		kCmdBurstReadFile,      ///< Burst download session file
144
		
145
		kRspAck = 128,          ///< Ack response
146
		kRspNak,                ///< Nak response
none's avatar
none committed
147

148 149 150 151 152 153 154 155 156 157 158 159 160 161
        // Used for testing only, not part of protocol
        kCmdTestNoAck,          ///< ignored, ack not sent back, should timeout waiting for ack
	};
	
	/// @brief Error codes returned in Nak response PayloadHeader.data[0].
	enum ErrorCode
    {
		kErrNone,
		kErrFail,                   ///< Unknown failure
		kErrFailErrno,              ///< errno sent back in PayloadHeader.data[1]
		kErrInvalidDataSize,		///< PayloadHeader.size is invalid
		kErrInvalidSession,         ///< Session is not currently open
		kErrNoSessionsAvailable,	///< All available Sessions in use
		kErrEOF,                    ///< Offset past end of file for List and Read commands
162 163 164
        kErrUnknownCommand,          ///< Unknown command opcode
        kErrFailFileExists,         ///< File exists already
        kErrFailFileProtected       ///< File is write protected
165
    };
none's avatar
none committed
166 167 168

    enum OperationState
        {
169 170 171 172
            kCOIdle,		// not doing anything
            kCOAck,			// waiting for an Ack
            kCOList,		// waiting for List response
            kCOOpenRead,    // waiting for Open response followed by Read download
Don Gagne's avatar
Don Gagne committed
173
			kCOOpenBurst,   // waiting for Open response, followed by Burst download
174 175 176
            kCORead,		// waiting for Read response
			kCOBurst,		// waiting for Burst response
            kCOWrite,       // waiting for Write response
177
            kCOCreate,      // waiting for Create response
none's avatar
none committed
178
        };
179 180 181 182 183
    
    bool _sendOpcodeOnlyCmd(uint8_t opcode, OperationState newOpState);
    void _setupAckTimeout(void);
    void _clearAckTimeout(void);
    void _emitErrorMessage(const QString& msg);
184
    void _emitListEntry(const QString& entry);
185
    void _sendRequest(Request* request);
186
    void _fillRequestWithString(Request* request, const QString& str);
187
    void _openAckResponse(Request* openAck);
188
    void _downloadAckResponse(Request* readAck, bool readFile);
189
    void _listAckResponse(Request* listAck);
190 191 192
    void _createAckResponse(Request* createAck);
    void _writeAckResponse(Request* writeAck);
    void _writeFileDatablock(void);
193
    void _sendListCommand(void);
Don Gagne's avatar
Don Gagne committed
194
    void _sendResetCommand(void);
195
    void _closeDownloadSession(bool success);
Don Gagne's avatar
Don Gagne committed
196
    void _closeUploadSession(bool success);
197
	void _downloadWorker(const QString& from, const QDir& downloadDir, bool readFile);
198
    
none's avatar
none committed
199
    static QString errorString(uint8_t errorCode);
200

201 202
    OperationState  _currentOperation;              ///< Current operation of state machine
    QTimer          _ackTimer;                      ///< Used to signal a timeout waiting for an ack
203 204
    
    UASInterface* _mav;
205 206
    
    uint16_t _lastOutgoingSeqNumber; ///< Sequence number sent in last outgoing packet
207

208 209 210 211
    unsigned    _listOffset;    ///< offset for the current List operation
    QString     _listPath;      ///< path for the current List operation
    
    uint8_t     _activeSession;             ///< currently active session, 0 for none
Don Gagne's avatar
Don Gagne committed
212
    
213
    uint32_t    _readOffset;                ///< current read offset
Don Gagne's avatar
Don Gagne committed
214
    
215 216
    uint32_t    _writeOffset;               ///< current write offset
    uint32_t    _writeSize;                 ///< current write data size
Don Gagne's avatar
Don Gagne committed
217 218 219
    uint32_t    _writeFileSize;             ///< Size of file being uploaded
    QByteArray  _writeFileAccumulator;      ///< Holds file being uploaded
    
220
    uint32_t    _downloadOffset;            ///< current download offset
221 222 223
    QByteArray  _readFileAccumulator;       ///< Holds file being downloaded
    QDir        _readFileDownloadDir;       ///< Directory to download file to
    QString     _readFileDownloadFilename;  ///< Filename (no path) for download file
Don Gagne's avatar
Don Gagne committed
224
    uint32_t    _downloadFileSize;          ///< Size of file being downloaded
225

226 227
    uint8_t     _systemIdQGC;               ///< System ID for QGC
    uint8_t     _systemIdServer;            ///< System ID for server
228 229 230 231
    
    // We give MockMavlinkFileServer friend access so that it can use the data structures and opcodes
    // to build a mock mavlink file server for testing.
    friend class MockMavlinkFileServer;
232 233
};

234
#endif // FileManager_H