aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/archive.h
blob: cf57fc759af9d9b948485f426d7ff300f52f29c7 (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+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "utils_global.h"

#include "commandline.h"

#include <QObject>

namespace Utils {

class FilePath;
class QtcProcess;

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<QtcProcess> m_process;
};

} // namespace Utils