When do we use each of this function calls in a threaded application. given two functions fun1() and fun2() defined in the same class dealing with read/write of data into buffers(queue operation). to achieve multi-threading to these. we would have to run the two functions in a separate thread. now lets say the first function read is called at the start of its thread.

is it better to use moveTothread ( second thread)for function write at the start of the first functions thread

Or

define the second function in a new thread class and call that thread at the start of the first thread.

link|improve this question

76% accept rate
related: QThread blocking main application – Piotr Dobrogost Mar 1 '11 at 9:42
feedback

4 Answers

You'll find the answer in You’re doing it wrong… blog post.

link|improve this answer
What a great title for a blog post. Makes for a clever answer, too. – Cody Gray Mar 1 '11 at 9:40
Nice blog post! It would be good if you could make a summary of it and put into this answer. That way we can avoid link-rot on stackoverflow. It's frustrating to find an answer via google, only to realize that the answer is nothing more than a broken link. – Magnus Hoff Mar 1 '11 at 10:36
this blog post has been confusing and in my case it had not really helped me understand what i was doing wrong. – Aditya P Mar 8 '11 at 5:11
feedback

Like Piotr answered you should really have a look at the link he suggested.
As I understand your problem, that should solve your problem.
This is the simplified code from that blog:

class Producer  
{  
public:
    Producer();  

public slots:
    void produce()
    { //do whatever to retrieve the data
      //and then emit a produced signal with the data
      emit produced(data);
      //if no more data, emit a finished signal
      emit finished();
    }

signals:
    void produced(QByteArray *data);
    void finished();
};

class Consumer
{
public:
    Consumer();

public slots:
    void consume(QByteArray *data)
    {
       //process that data
       //when finished processing emit a consumed signal
       emit consumed();
       //if no data left in queue emit finished
       emit finished();
    }
};

int main(...)
{
    QCoreApplication app(...);

    Producer producer;
    Consumer consumer;

    producer.connect(&consumer, SIGNAL(consumed()), SLOT(produce()));
    consumer.connect(&producer, SIGNAL(produced(QByteArray *)), SLOT(consume(QByteArray *));

    QThread producerThread;
    QThread consumerThread;
    producer.moveToThread(&producerThread);
    consumer.moveToThread(&consumerThread);

    //when producer thread is started, start to produce
    producer.connect(&producerThread, SIGNAL(started()), SLOT(produce()));

    //when consumer and producer are finished, stop the threads
    consumerThread.connect(&consumer, SIGNAL(finished()), SLOT(quit()));
    producerThread.connect(&producer, SIGNAL(finished()), SLOT(quit()));

    producerThread.start();
    consumerThread.start();

    return app.exec();
}
link|improve this answer
feedback

It's a long time since the question was asked, but since no provided answer is 100% correct I will describe the best way to do what it is asked for future reference.

Using moveToThread we can change the thread affinity of an object. What the OP asks is how we can run two functions of the same class in different threads.

Let class A and two functions f1 and f2

class A:
{
public:
    void f1();
    void f2(int i); 
    void run(); // shows how we can trigger f1 and f2 in different threads
}

Qt already provided a class for running functions in different threads and it is called QtConcurrentRun

The QtConcurrent::run() function runs a function in a separate thread. The return value of the function is made available through the QFuture API.

The function that is triggered can be either an external function or a member function. So in our case if we wanted from the object itself to start f1 and f2 in different threads we could do the following in run()

void run()
{
   // QFuture<void> because f1 is void 
   QFuture<void> future1 = QtConcurrent::run(this, &A::f1);
   int k = 5; // Concurrent run with arguments
   QFuture<void> future2 = QtConcurrent::run(this, &A::f2, k);

} 

similarly you could execute any public function of any class concurrently, eg

QImage image = ...;
QFuture<void> future = QtConcurrent::run(image, &QImage::invertPixels, QImage::InvertRgba);

A a;
QFuture<void> future1 = QtConcurrent::run(A, &A::f1);

Notice the difference between the two calls:

QtConcurrent::run() also accepts pointers to member functions. The first argument must be either a const reference or a pointer to an instance of the class. Passing by const reference is useful when calling const member functions; passing by pointer is useful for calling non-const member functions that modify the instance.

In order to check when a concurrently executed function has finished you should use a QFutureWatcher.

link|improve this answer
feedback
up vote 0 down vote accepted

The blog post "you are doing it wrong". deals extensively on he issue of using movetothread(this) in the constructor when the signals and slots are defined. the use of movetothread(this) is debated based on the versions of qt libraries.

in my problem the two functions are part of a single threaded class. wishing to run one of the functions in a separate thread . i had assumed that movetothread() can be used for functions to move them to a separate thread too as it was used as in a constructor. Its use in the constructor as i understand is to ensure that the created object of the class runs the thread in the class thus defined and not the main thread.

So to run the function in a separate thread it would have to be defined or called in a new thread class (its run reimplemented)and its object instantiated in the constructor of the first class . There is no method to make a function of one thread run on a separate thread.

This is the answer i had arrived at and the one i am accepting as the correct answer until some one takes the trouble to proves it wrong

link|improve this answer
"There is no method to make a function of one thread run on a separate thread." This is wrong, check my answer – webclectic Nov 21 '11 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.