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)

Build a Full-Stack Image Upload App with Node.js, Express, React, and Vite (Beginner Tutorial)

 If you’re new to full-stack web development and want a hands-on project to practice React frontend integration with a Node.js + Express backend , this tutorial is for you. In this guide, we’ll walk through a simple but powerful app that lets users upload images, store them on the server, and display them back in the browser. This project is based on my GitHub repo: node-express-react-simple-fileupload . It’s designed to be beginner-friendly, SEO-optimized, and a great starting point for anyone learning JavaScript full-stack development . 🛠️ Technologies Used Here’s the tech stack powering this project: Node.js – JavaScript runtime for the backend. Express.js – Lightweight web framework for building REST APIs. Multer – Middleware for handling file uploads. CORS – Enables cross-origin requests between frontend and backend. React.js – Frontend library for building user interfaces. Vite – Fast development server and build tool for React. Fetch API – For making HTTP requests ...

Html5 based widget for an iOS app: Today extension powered by the Ionic framework

At some point the thought of adding a Widget to my iOS app came to mind which was followed by starting work on adding a widget for my app, My Day Todos . Obviously the first step was to learn how to add a Widget to an iOS app and in that learning process I discovered many things about widgets in iOS first of which was a widget in iOS is a an app extension i.e a  Today Extension . While I am still haven't finished working on the widget for my iOS app, I thought I would take some time out and share what I have learned. In this post, I will share a few important tips and provide an example of how to add a Widget to an iOS app and have the widget UI powered by Html5 via  Ionic framework . I added some code to my Github repo, Html5StarterAppWithSwift in order to show how this can be achieved. There are already too many tutorials out on the Web on how to add a Today extension to an iOS app so I won't be including that here. Instead I will focus on sharing some of the useful tip...