Skip to main content

Async (non-blocking) programming with C++11

 
Asynchronous programming is a wonderfull thing is it not? However that only applies if it is used in a controlled manner. Given the advantages that it offers it can potentially be very easy to get into the swing of it all and make an entire application async and ending up in debugging hell in the event of unexpected application behaviour.

So why am i talking about aync? ok so let me get one thing clear, when i say async i strictly mean non-blocking, because you can make an async call and have your program wait on the function to finish doing its task, however in that case you are no longer doing what you set out to do. Ok i guess  am just dragging this out, well i get the point , enough foreplay, now on to business!

Since my research work is mostly all C++, i reached a stage in my research where i had to adopt an asynchronous (non-blocking) approach at solving one of my research problems. Which had me to go on the hunt for the best possible means to accomplish this in C++. So given my self-made rules to minimize dependencies, i started looking into the Async model which is part of the new C++ standard.

Believe me i was very very tempted to go down the third-party library pathway i.e. Asio which provides you with both boost and non-boost options.
http://think-async.com/

However in the interest of confirming to my self-made rules i decided to give the new C++ libraries a spin and surprisingly it is very very simple. I cant believe i am saying this but it is almost as simple (if not simpler) to do async with C++ as it is with Java.

Problem

So this is what i wanted to accomplish,
  1. write 2 functions A and B
  2. Function A goes on for a long long time
  3. Function B performs a short simple task
  4. Start executing function A
  5. Invoke B from A
  6. A keeps on running while B doing its job 
  7. at some point when B finishes A acknowledges it and continues doing its processing
Sounds complicated? bear with me a little longer and i will make things clearer

Equipment used

  1. Ubuntu 10.04 to 12.04: i have tried it on most of the Ubuntu versions
  2. g++ 4.6: this is the only compiler that i have tried this on, 10.04 comes with g++4.4 by default in which case you need to install the new version using apt-get install g++-4.6.
  3. A text editor 
While this implementation was done under Linux i am sure it can be ported accross to any OS with a compiler that supports c++0x

Solution 

#include <future>
#include <iostream>

using namespace std;

bool finito = false;//this is the shared variable which will pass messages between the 2 functions
int value;
mutex m; // mutex is simply a way to enforce locking on a shared piece of data

bool countToTen()//think of this as the function B
{
     /*lets do something so we can demonstrate that the function takes
     time to finish*/
  for(int counter=0;counter<10;counter++)
  {
     / /cout<<"counter from(async):"<<(i+1)<<endl;
  }
   /*lets acquire a lock on the finito variable
   we do not need to worry about unlocking it
   as the lock_guard already takes care of that for us
   */
   lock_guard<std::mutex> lk(m);
   finito = true;
   return finito;
}
int main()//think of this as the function A
{
   /*the launch policies are launch::async and launch::sync
   which are both self-explanatory.
   */   
   future<bool> done = async(std::launch::async,countToTen);
   cout<<"Now we are going to start counting...."<<endl;
   for(int counter=0;counter<100000;counter++)
   {
      /*do something meaningfull....
        In my case i was looping through frames of a video
      */

     /*  Instead of accessing finito directly we can also access it via the future
         done.get(), the future is a neat little thing that holds the return value of your 
         function, so when the function is done you can access it via the get method
     */

      if(finito)
      {
          value+=counter;
          cout<<"ok so we have finished the function"<<endl;
          cout<<"this is where we got upto:"<<value<<" before countToTen finished";
          cout<<endl;
         break;//ok we are done so lets get out of here
      }
   }
}

Compiling the code above

So you need to keep a few steps in mind since the new threading functionality is still experimental and you need to specify that use of these new functions when compiling the code. It can be compiled using the following commands

g++ -std=c++0x -pthread -o yourasyncdemo yourasyncdemo.cpp

-std: c++0x, so you are using the extensions to the standard library which are part of c++0x
-pthread: so we are including the thread library

References used

In addition to a good tutorial on Aync, the link below also contains a range of other useful tutorials on threading in c++0x.

Comments

Popular posts from this blog

Upload to AWS S3 from Java API

In this post, you will see code samples for how to upload a file to AWS S3 bucket from a Java Spring Boot app. The code you will see here is from one of my open-source repositories on Github, called document-sharing. Problem Let’s say you are building a document sharing app where you allow your users to upload the file to a public cloud solution. Now, let’s say you are building the API for your app with Spring Boot and you are using AWS S3 as your public cloud solution. How would you do that? This blog post contains the code that can help you achieve that. Read more below,  Upload to AWS S3 bucket from Java Spring Boot app - My Day To-Do (mydaytodo.com)

App update, discovering Protractor(testing) and an Angularjs State machine

So for the last couple of weeks, I have not be able to update my blog or finish a couple of the posts that I started writing. Well, I have...been a bit busy, with some the following things,  Testing my app I have been using the app( iOS ) on my iPhone for the past couple of months now, which is both good and bad. The good thing is I can test it and the bad thing is, I can use it every day. Part of the reason, I started building this app is to have something that I can and like to use everyday and since I am already using it, the incentive to release it is not as high as if it were something that I could not use. Anyway I did make some good progress over the last couple of weeks, like  Delete the app from my iPhone and do a clean install: this did help me find a few simple bugs that would pop-up when the app is first installed GET AN APP ICON, FINALLY! this was a bit of a hurdle and I thanks to Fiverr  and fivercrazyguy , I finally have my app icon. The day job ...

Why can't I cancel a local notification in my iOS app?(in Swift)

Prelude I have mentioned the fact that I am working on my first iOS app in a number of my previous posts and as such I face a number of newbie/noob(?) problems. They are not really problems as much as they are simply things that I do not know, for e.g. the following, how do I get the day of the week? where is my string.replaceAll in Swift? knowing which local notification brought my app to foreground ? serving HTML content in an iOS app that works on iOS 7 and above Thankfully, I have managed to make at least one generic solution and contribute it to the community i.e. my open-source Xcode project template( HTML5StarterAppWithSwift ) which you can get from Github . So this post basically describes another very simple problem that I have found a solution to, but I do not fully understand why the problem was occurring in the first place. Introduction As I have mentioned in this post , my iOS app uses local notifications i.e. UILocalNotification   and i...