Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a multithreaded app that has to read some data often, and occasionally that data is updated. Right now a mutex keeps access to that data safe, but it's expensive because I would like multiple threads to be able to read simultaneously, and only lock them out when an update is needed (the updating thread could wait for the other threads to finish).

I think this is what boost::shared_mutex is supposed to do, but I'm not clear on how to use it, and haven't found a clear example.

Does anyone have a simple example I could use to get started?

share|improve this question
1800 INFORMATION's example is correct. See also this article: What's new in Boost Threads. – Assaf Lavie Jun 13 '09 at 3:52
possible duplicate of Reader/Writer Locks in C++ – cHao Jun 23 '11 at 7:25

5 Answers

up vote 23 down vote accepted

It looks like you would do something like this:

boost::shared_mutex _access;
void reader()
{
  // get shared access
  boost::shared_lock<boost::shared_mutex> lock(_access);

  // now we have shared access
}

void writer()
{
  // get upgradable access
  boost::upgrade_lock<boost::shared_mutex> lock(_access);

  // get exclusive access
  boost::upgrade_to_unique_lock<boost::shared_mutex> uniqueLock(lock);
  // now we have exclusive access
}
share|improve this answer
5  
This is my first time using boost, and I'm a C++ newbie, so maybe there's something I'm missing -- but in my own code, I had to specify the type, like so: boost::shared_lock<shared_mutex> lock(_access); – Ken Smith Mar 16 '10 at 23:02
2  
I'm trying to use this myself but I'm getting an error. missing template arguments before 'lock'. Any ideas? – Matt Aug 18 '10 at 2:56
Hi, are those locks scoped or would I need to explicitly release them? TIA – shaz Oct 21 '10 at 15:39
1  
@shaz Those are scoped, but you can release them early with .unlock() if you need. – mmocny Jan 27 '11 at 18:23
1  
I've added the missing template arguments. – jons34yp Nov 7 '12 at 22:49

1800 INFORMATION is more or less correct, but there are a few issues I wanted to correct.

boost::shared_mutex _access;
void reader()
{
  boost::shared_lock< boost::shared_mutex > lock(_access);
  // do work here, without anyone having exclusive access
}

void conditional_writer()
{
  boost::upgrade_lock< boost::shared_mutex > lock(_access);
  // do work here, without anyone having exclusive access

  if (something) {
    boost::upgrade_to_unique_lock< boost::shared_mutex > uniqueLock(lock);
    // do work here, but now you have exclusive access
  }

  // do more work here, without anyone having exclusive access
}

void unconditional_writer()
{
  boost::unique_lock< boost::shared_mutex > lock(_access);
  // do work here, with exclusive access
}

Also Note, unlike a shared_lock, only a single thread can acquire an upgrade_lock at one time, even when it isn't upgraded (which I thought was awkward when I ran into it). So, if all your readers are conditional writers, you need to find another solution.

share|improve this answer
1  
Just to comment on "another solution". When all my readers where conditional writers, what I did was have them always acquire a shared_lock, and when I needed to upgrade to write privilages, I would .unlock() the reader lock and acquire a new unique_lock. This will complicate the logic of your application, and there is now a window of opportunity for other writers to change the state from when you first read. – mmocny Mar 4 '11 at 21:30
6  
Shouldn't the line boost::unique_lock< boost::shared_mutex > lock(lock); read boost::unique_lock< boost::shared_mutex > lock( _access ); ? – SteveWilkinson Apr 1 '11 at 17:01
1  
@Ken I was not very clear, but the benefit of upgrade_lock is it does not block if there are currently some shared_locks acquired (at least not until you upgrade to unique). However, the second thread to try and acquire an upgrade_lock will block, even if the first has not upgraded to unique, which I had not expected. – mmocny Sep 15 '11 at 16:57
1  
@mmocny - Yeah, it seems like the actual range of uses for an upgrade_lock is pretty small. And given the overhead of a shared_lock, I suspect that in 90% of scenarios, a unique_lock is probably the right choice. – Ken Smith Sep 15 '11 at 21:00
2  
This is a known boost issue. It seems to be resolved at boost 1.50 beta: svn.boost.org/trac/boost/ticket/5516 – Ofek Shilon Jun 26 '12 at 9:31
show 3 more comments

You can use boost to create a read-write lock:

#include <boost/thread/locks.hpp>

typedef boost::shared_mutex Lock;
typedef boost::unique_lock< Lock > WriteLock;
typedef boost::shared_lock< Lock > ReadLock;

Lock myLock;


void ReadFunction()
{
    ReadLock r_lock(myLock);
    //Do reader stuff
}

void WriteFunction()
{
     WriteLock w_lock(myLock);
     //Do writer stuff
}
share|improve this answer
3  
I'd also say typedef boost::unique_lock< Lock > WriteLock; typedef boost::shared_lock< Lock > ReadLock;. – vines Jan 17 '12 at 2:11
1  
the include should be: #include <boost/thread.hpp> – nerith Jan 8 at 12:23

Just to add some more empirical info, I have been investigating the whole issue of upgradable locks, and Example for boost shared_mutex (multiple reads/one write)? is a good answer adding the important info that only one thread can have an upgrade_lock even if it is not upgraded, that is important as it means you cannot upgrade from a shared lock to a unique lock without releasing the shared lock first. (This has been discussed elsewhere but the most interesting thread is here http://thread.gmane.org/gmane.comp.lib.boost.devel/214394)

However I did find an important (undocumented) difference between a thread waiting for an upgrade to a lock (ie needs to wait for all readers to release the shared lock) and a writer lock waiting for the same thing (ie a unique_lock).

  1. The thread that is waiting for a unique_lock on the shared_mutex blocks any new readers coming in, they have to wait for the writers request. This ensures readers do not starve writers (however I believe writers could starve readers).

  2. The thread that is waiting for an upgradeable_lock to upgrade allows other threads to get a shared lock, so this thread could be starved if readers are very frequent.

This is an important issue to consider, and probably should be documented.

share|improve this answer

Use a semaphore with a count that is equal to the number of readers. Let each reader take one count of the semaphore in order to read, that way they can all read at the same time. Then let the writer take ALL the semaphore counts prior to writing. This causes the writer to wait for all reads to finish and then block out reads while writing.

share|improve this answer
(1) How do you make a writer decrement the count by an arbitrary amount atomically? (2) If the writer does somehow decrement the count to zero, how does it wait for already-running readers to finish before writing? – Ofek Shilon Jun 25 '12 at 17:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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