retro-imager/localfileextractthread.h

29 lines
761 B
C
Raw Normal View History

#ifndef LOCALFILEEXTRACTTHREAD_H
#define LOCALFILEEXTRACTTHREAD_H
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright (C) 2020 Raspberry Pi (Trading) Limited
*/
#include "downloadextractthread.h"
#include <QFile>
class LocalFileExtractThread : public DownloadExtractThread
{
Q_OBJECT
public:
explicit LocalFileExtractThread(const QByteArray &url, const QByteArray &dst = "", const QByteArray &expectedHash = "", QObject *parent = nullptr);
virtual ~LocalFileExtractThread();
protected:
virtual void _cancelExtract();
virtual void run();
virtual ssize_t _on_read(struct archive *a, const void **buff);
virtual int _on_close(struct archive *a);
QFile _inputfile;
char *_inputBuf;
};
#endif // LOCALFILEEXTRACTTHREAD_H