Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
351 views

Child process stdin doesn't get data, sent by parent process

Parent process write string "Message\n" to child process stdin. But child process don't receive it. Where is the problem in the code? Qt 4.7.3 Parent process code: // class TestParent : public ...
3
votes
2answers
2k views

How to get STDOUT from a QProcess?

I thought I was going to get the output from a QProcess using the following code: // Start the process process.start(tr("php-cgi www/test.php"),QIODevice::ReadWrite); // Wait for it to start ...
2
votes
2answers
735 views

Reading binary data with PySerial from serial port

PyQT 4.7 does not have inherited class from QIODevice that allows to talk with serial port directly (e.g. QSerialDevice). So I thought that it would be easier for me to use QProcess class and ...
2
votes
4answers
438 views

How to launch a QProcess with root rights?

I need to launch gphoto2 from a Qt program. I do this: QString gphotoProgram = "/usr/bin/gphoto2"; QStringList gphotoArguments; gphotoArguments << "--capture-image"; QProcess *gphotoProcess = ...
2
votes
2answers
2k views

get all running processes info using QProcess

few days ago i asked about how to get all running processes in the system using QProcess. i found a command line that can output all processes to a file: C:\WINDOWS\system32\wbem\wmic.exe" ...
2
votes
2answers
2k views

running ping with Qprocess, exit code always 2 if host reachable or not

i am using Qprocess to execute ping to check for a host to be online or not... The problem is that the exit code that i recieve from the Qprocess->finished signal is always 2 no matter if i ping a ...
1
vote
0answers
40 views

Auto Updater Examples

Well i've been looking how to do an auto updater on google, however no success. What i would plan is to create an updater (ANother exe called by QProcess though the principal exe) but here ihave ...
1
vote
1answer
141 views

Pyside QProcess Need Help

NOTE: class MyWindow(QWidget): In init self.proc = QtCore.QProcess(self) self.te = QTextEdit(self) self.btn = QPushButton("Execute", self) self.btn.clicked.connect(self.__event_btn) Now I have ...
1
vote
1answer
135 views

QProcess on the loose

I have created two programs A and B. B is designed to be as a 32-bits QProcess started within a 64-bits A. These programs communicate nicely via stdin, stdout and QSharedMemory. A:A() { QProcess *p ...
1
vote
1answer
154 views

QProcess:exitCode() does not appear to return %errorlevel%

I am trying to catch specific error codes from a windows command line application run as a QProcess. I had an error today where the application fails: When run on the command line: echo %errorleve% ...
1
vote
1answer
209 views

Qt4, QProcess, R: garbage in standard output with longer lines

I'm working on a yet another one GUI-frontend for R (mainly to study Qt4 on a more or less relevant material), and I've stumbled upon an unusual behavior of components involved. If I try to write a ...
1
vote
1answer
191 views

QProcess does not work

I have the following code: const char* argument = string1.c_str(); QString arg(argument); QProcess *proc = new QProcess(this); proc->start(arg); The value of string1 is: ps ...
1
vote
1answer
692 views

Launch and write to terminal in Qt

I am coding in linux using Qt. I understand that with popen or QProcess I can launch terminal from my program, but how do I write into to it? I google around people are suggesting fork() and pipe(). ...
1
vote
3answers
1k views

kill process without knowing the full path using QT

i'm trying to retrieve the active processes on my computer and to search for specific one, if it exists then i should kill it. is it possible to do it without knowing the specific path of the execute ...
1
vote
2answers
2k views

start a process using QProcess

i'm trying to start Microsoft word using QProcess as following: QString program = "WINWORD.EXE"; process->start(program); but nothing happens... winword.exe is on path (so when i type ...
1
vote
1answer
888 views

No readyReadStandardOutput signal from QProcess

Why do I never get the readyReadStandardOutput signal when I run the following? import os, sys, textwrap from PyQt4 import QtGui, QtCore out_file = open("sleep_loop.py", 'w') ...
1
vote
1answer
383 views

QProcess::setStandardOutputFile only creates 0kb File

I'm using a simple QProcess-Project on a WindowsXP-Machine: QString program = "U:\\ffmpeg.exe"; QStringList arguments; arguments << "-i" << "U:\\clock.avi" << ...
1
vote
1answer
1k views

QX11EmbedContainer and QProcess problem

I've been trying to put a QX11EmbedContainer in my app, and I need to start a terminal within it (because with konsolepart I can practically do nothing). QX11EmbedContainer* container = new ...
0
votes
1answer
22 views

How to start a Shell Script with QProcess?

How can I start a Shell Script using QProcess? The Shell Script has eight different commands in it, some with arguments others without. I tried to start the Shell Script with (using Ubuntu 11.10): ...
0
votes
0answers
63 views

QWebView doesn't work

index = 12; QProcess* p = new QProcess(this); p->start("cmd"); p->write((QString("netsh interface ip set address \"本地连接\" static 192.168.132.%1 255.255.255.0 ...
0
votes
1answer
35 views

QProcess: Start a MATLAB terminal session with input capabilities

I have created a Qt-application, where it should be possible to start a MATLAB session detached in a terminal. The terminal should be either gnome-terminal, xterm or something similar. I have no ...
0
votes
2answers
52 views

How to process text streams with \r correctly? I'd like some line buffered way, using Qt

I'm using Qt and QProcess to read some data from other tools and printing them on my app. Think of it being a "terminal", for example. I'm processing data using QProcess::canReadLine() and ...
0
votes
1answer
31 views

Will QProcess::startDetached() cause a memory leak?

If i start a program with QProcess::startDetached() , and it will continue to execute after the parent process quits , so will this cause a memory leak ? Thanks !
0
votes
1answer
62 views

How does QProcess work on windows

I'm trying to learn how QProcess works and have this kind of code: #include <iostream> using std::cout; using std::endl; #include <string> using std::string; #include ...
0
votes
0answers
55 views

QProcess and Segmantation Fault error

I am writing program-builder class. And I have an Segmentation Error. #ifndef BUILDER_H #define BUILDER_H #include <QObject> #include <QProcess> #include <QDir> #include ...
0
votes
0answers
58 views

QProcess Segmentation Fault on start()

I am writing program-builder class. And I have an Segmentation Error. #ifndef BUILDER_H #define BUILDER_H #include <QObject> #include <QProcess> #include <QDir> #include ...
0
votes
1answer
135 views

QT4 : How to run multiple shell commands with QProcess?

I'm just starting to play around with QT and want to create a simple GUI for some shell scripts I use. I'd like to do two simple actions : connect to a server with SSH run a command once ...
0
votes
1answer
22 views

Restoring MySQL database with QProcess , can't really work with simple redirect like '<'

So first retrieve file name by QFileDialog , into fName , and: QProcess *proc = new QProcess (); QStringList arguments; arguments << "-u" << "USER_NAME" << ...
0
votes
4answers
170 views

Qprocess messes my linux command up (i think). how to fix?

I need to force my c++ QT4 application to read results from a linux command. I am trying to use Qprocess but as soon as my command gets complicated it get messed somehow (just guessing) and does not ...
0
votes
2answers
177 views

QProcess becomes defunct and unable to start again

I'm using a List of QProcess objects to keep track of some processes that need to be start/stopped at user defined intervals. I'm able to start and stop the processes OK. But the issue arises when I ...
0
votes
1answer
79 views

qProcess writing after closing write channel

I'm starting a new QProcess and writing some data into it and closing it to get the effect. It works OK, but then I need to write some more data. This doesn't works, because WriteChannel is already ...
0
votes
0answers
99 views

Ping and QProcess (exitcode() question)

I have exactly this problem described here: running ping with Qprocess, exit code always 2 if host reachable or not but the solution provided didn't solve my problem. I am at a linux machine as the ...
0
votes
0answers
154 views

QProcess is not starting

Am a newbie in Qt and C++, I have to execute couple of processes and moitor their health in linux.Therefore am interested in 1. Starting a new process 2. get pid 3. Know the process state So far ...
0
votes
1answer
203 views

launch GUI app from QProcess

I want to launch GUI app using QProcess. process.start() return immediately without showing GUI app window. I also tried CONFIG += console .It didn't work. QProcess process; ...
0
votes
1answer
195 views

How to start a console process

I'm working on running a process from my windows application, the process is console exe file. I'm using the following code : void compilerWindow :: runClicked() { proc = new QProcess(this); ...
0
votes
2answers
242 views

Piping output of a QIODevice to a QTextEdit

How to I make the output of a QIODevice (QProcess, specifically) go into a QTextEdit in real time?
0
votes
1answer
283 views

PyQt: Parent process can't access shared memory

I'm currently experimenting with QSharedMemory and QProcess in PyQt. So I wrote a small application to launch a process, which creates a shared memory segment and writes data to it. The application ...
0
votes
2answers
757 views

QProcess read and write

I am trying to read and write from a qprocess right now. I made a little test program that takes input and redisplays it on the screen in a loop. Here is my code from Qt QString path = "./test"; ...
0
votes
2answers
217 views

How can I use a queue with QProcess?

I have a slot that is called passing some arguments used in a QProcess. I execute a external program with some of this arguments. The problem is that I want to have a queue for these processes, ...
0
votes
1answer
249 views

piping standard output into QLabel in Qt 4.7

I am trying to wrap a colleges c++ code in a Qt widget. However, his programs std output necessarily needs to be viewed. As of now I am assuming I will build a GUI and open a QProccess that will run ...
0
votes
1answer
304 views

QProcess::finished ( int exitCode, QProcess::ExitStatus exitStatus ) :possible values of exitcode?

I am using QProcess to execute shell commands. How can I determine that command is executed successfully ? ExitStatus tells that process exited normally or crashed. What are the possible values ...
0
votes
1answer
456 views

Set Environment Variables for startDetached() QProcess

In Qt4, there is QProcess::setProcessEnvironment() for setting Env variables for the newly spawn process. However, QProcess::startDetached() is a static member function, so setProcessEnvironment() ...
0
votes
2answers
892 views

Qt - QProcess is not working

I try to launch internet explorer, So I use the below code QProcess * process=new QProcess(this); QString temp="C:\\Program Files\\Internet\ Explorer\\iexplore.exe"; ...
0
votes
1answer
213 views

how to print the real QProcess arguments list as the QProcess excute them

How can i see in QProcess the real argument list it is processing? for debuging , i do print the QStringList before i pass its to myProcess->start(program, arguments); is there build in debugging ...
0
votes
1answer
982 views

QT Open default file explorer on *nix

I have the following: QProcess *process = new QProcess(this); QString path = QDir::toNativeSeparators(QApplication::applicationPath); #if defined(Q_OS_WIN) process->start("explorer.exe", ...
0
votes
1answer
409 views

Why is a QProgressDialog doesn't get updated after executing a QProcess?

I am using a QProgressDialog to show the status of a long running operation, which includes a step of running an external executable. I run the external executable using the QProcess::execute() ...
0
votes
1answer
246 views

printing unicode through a QProcess

I'm having some trouble handling unicode output from a QProcess. When I run the following example I get ?? instead of 中文. Can anyone tell me how to get the unicode output? from PyQt4.QtCore import ...
0
votes
2answers
465 views

Open an external program in Qt with an attached file extension

I am making a qt application which allows the user to select a file and then upon clicking ok, start the associated program with the file already loaded. The program I want to start is java based, and ...
0
votes
2answers
485 views

Why is QProcess converting the '=' in my arguments to spaces

I've run into a weird error with a Qt program running on Windows. The program uses QProcess to spawn a child process wit two arguments. The program and arguments passed to the QProcess::start() ...
0
votes
1answer
270 views

How can I know when QProcess wants to read input?

I'm implementing a compiler in my Compilers class, I'm using Qt & C++. After I have generated the machine code from the source code, I'm executing the virtual machine that will execute the code. ...

1 2