Skip to content
QGCTemporaryFile.h 1.42 KiB
Newer Older
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

DonLakeFlyer's avatar
 
DonLakeFlyer committed
#pragma once
Don Gagne's avatar
Don Gagne committed

#include <QFile>

/// @file
///     @brief This class mimics QTemporaryFile. We have our own implementation due to the fact that
///				QTemporaryFile implemenation differs cross platform making it unusable for our use-case.
///				Look for bug reports on QTemporaryFile keeping the file locked for details.
///
///     @author Don Gagne <don@thegagnes.com>

class QGCTemporaryFile : public QFile {
    Q_OBJECT
    
public:
	/// @brief Creates a new temp file object. QGC temp files are always created in the
	//			QStandardPaths::TempLocation directory.
	//		@param template Template for file name following QTemporaryFile rules. Template should NOT include
	//							directory path, only file name.
murata's avatar
murata committed
    QGCTemporaryFile(const QString& fileTemplate, QObject* parent = nullptr);
DonLakeFlyer's avatar
 
DonLakeFlyer committed
    ~QGCTemporaryFile();

Don Gagne's avatar
Don Gagne committed
	bool open(OpenMode openMode = ReadWrite);
DonLakeFlyer's avatar
 
DonLakeFlyer committed

    void setAutoRemove(bool autoRemove) { _autoRemove = autoRemove; }
Don Gagne's avatar
Don Gagne committed
    
private:
DonLakeFlyer's avatar
 
DonLakeFlyer committed
    static QString _newTempFileFullyQualifiedName(const QString& fileTemplate);

Don Gagne's avatar
Don Gagne committed
    QString _template;
DonLakeFlyer's avatar
 
DonLakeFlyer committed
    bool    _autoRemove = false;