aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/archive.h
blob: ccf62d3885ca255a71abc10b2a9e22d370e2badd (plain)
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
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "utils_global.h"

#include "commandline.h"

#include <QObject>

namespace Utils {

class FilePath;
class Process;

class QTCREATOR_UTILS_EXPORT Archive : public QObject
{
    Q_OBJECT
public:
    Archive(const FilePath &src, const FilePath &dest);
    ~Archive();

    bool isValid() const;
    void unarchive();

    static bool supportsFile(const FilePath &filePath, QString *reason = nullptr);

signals:
    void outputReceived(const QString &output);
    void finished(bool success);

private:
    CommandLine m_commandLine;
    FilePath m_workingDirectory;
    std::unique_ptr<Process> m_process;
};

} // namespace Utils