aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp
blob: 7f4bd7a69237e4ec45bcd2561d5aecddcc882e4b (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82

def wrapInFunction():

//! [0]
builder = QProcess()
builder.setProcessChannelMode(QProcess.MergedChannels)
builder.start("make", QStringList() << "-j2")

if !builder.waitForFinished():
    qDebug() << "Make failed:" << builder.errorString()
else
    qDebug() << "Make output:" << builder.readAll()
//! [0]


//! [1]
more = QProcess()
more.start("more")
more.write("Text to display")
more.closeWriteChannel()
#QProcess will emit readyRead() once "more" starts printing
//! [1]


//! [2]
command1 | command2
//! [2]


//! [3]
process1 = QProcess()
process2 = QProcess()

process1.setStandardOutputProcess(process2)

process1.start("command1")
process2.start("command2")
//! [3]


//! [4]
class SandboxProcess(QProcess):
    def setupChildProcess(self)
        # Drop all privileges in the child process, and enter
        # a chroot jail.
        os.setgroups(0, 0)
        os.chroot("/etc/safe")
        os.chdir("/")
        os.setgid(safeGid)
        os.setuid(safeUid)
        os.umask(0)

//! [4]


//! [5]
process = QProcess()
process.start("del /s *.txt")
# same as process.start("del", QStringList() << "/s" << "*.txt")
...
//! [5]


//! [6]
process = QProcess()
process.start("dir \"My Documents\"")
//! [6]


//! [7]
process = QProcess()
process.start("dir \"\"\"My Documents\"\"\"")
//! [7]


//! [8]
environment = QProcess.systemEnvironment()
# environment = {"PATH=/usr/bin:/usr/local/bin",
#                "USER=greg", "HOME=/home/greg"}
//! [8]