aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/dotview.cpp
blob: 0bd192257ece89e4eeea304e25a5461a1af8f39f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "dotview.h"

#include <QtCore/QDebug>
#include <QtCore/QDir>
#include <QtCore/QFile>
#include <QtCore/QProcess>
#include <QtCore/QTemporaryFile>

using namespace Qt::StringLiterals;

bool showDotGraph(const QString &name, const QString &graph)
{
    constexpr auto imageType = "jpg"_L1;

    // Write out the graph to a temporary file
    QTemporaryFile dotFile(QDir::tempPath() + u'/' + name + u"_XXXXXX.dot"_s);
    if (!dotFile.open()) {
        qWarning("Cannot open temporary file: %s", qPrintable(dotFile.errorString()));
        return false;
    }
    const QString tempDotFile = dotFile.fileName();
    dotFile.write(graph.toUtf8());
    dotFile.close();

    // Convert to image using "dot"
    const QString imageFile = tempDotFile.left(tempDotFile.size() - 3) + imageType;
    QProcess process;
    process.start(u"dot"_s, {u"-T"_s + imageType, u"-o"_s + imageFile, tempDotFile});
    if (!process.waitForStarted() || !process.waitForFinished()) {
        qWarning("Image conversion failed: %s", qPrintable(process.errorString()));
        return false;
    }
    if (process.exitStatus() != QProcess::NormalExit || process.exitCode() != 0) {
        qWarning("Image conversion failed (%d): %s",
                 process.exitCode(),
                 process.readAllStandardError().constData());
        return false;
    }

    // Launch image. Should use QDesktopServices::openUrl(),
    // but we don't link against QtGui
#ifdef Q_OS_UNIX
    constexpr auto imageViewer = "gwenview"_L1;
#else
    constexpr auto imageViewer = "mspaint"_L1;
#endif
    if (!QProcess::startDetached(imageViewer, {imageFile})) {
        qWarning("Failed to launch viewer: %s", qPrintable(imageViewer));
        return false;
    }
    qInfo().noquote().nospace() << "Viewing: "
        << QDir::toNativeSeparators(tempDotFile)
        << ' ' << QDir::toNativeSeparators(imageFile);
    return true;
}