How do I use an arbitrary string as a lock in C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:50:58Z http://stackoverflow.com/feeds/question/168249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168249/how-do-i-use-an-arbitrary-string-as-a-lock-in-c 5 How do I use an arbitrary string as a lock in C++? eschercycle 2008-10-03T18:34:25Z 2009-01-05T03:57:42Z <p>Let's say I have a multithreaded C++ program that handles requests in the form of a function call to <code>handleRequest(string key)</code>. Each call to <code>handleRequest</code> occurs in a separate thread, and there are an arbitrarily large number of possible values for <code>key</code>.</p> <p>I want the following behavior:</p> <ul> <li>Simultaneous calls to <code>handleRequest(key)</code> are serialized when they have the same value for <code>key</code>.</li> <li>Global serialization is minimized.</li> </ul> <p>The body of <code>handleRequest</code> might look like this:</p> <pre><code>void handleRequest(string key) { KeyLock lock(key); // Handle the request. } </code></pre> <p><b>Question:</b> How would I implement <code>KeyLock</code> to get the required behavior?</p> <p>A naive implementation might start off like this:</p> <pre><code>KeyLock::KeyLock(string key) { global_lock-&gt;Lock(); internal_lock_ = global_key_map[key]; if (internal_lock_ == NULL) { internal_lock_ = new Lock(); global_key_map[key] = internal_lock_; } global_lock-&gt;Unlock(); internal_lock_-&gt;Lock(); } KeyLock::~KeyLock() { internal_lock_-&gt;Unlock(); // Remove internal_lock_ from global_key_map iff no other threads are waiting for it. } </code></pre> <p>...but that requires a global lock at the beginning and end of each request, and the creation of a separate <code>Lock</code> object for each request. If contention is high between calls to <code>handleRequest</code>, that might not be a problem, but it could impose a lot of overhead if contention is low.</p> http://stackoverflow.com/questions/168249/how-do-i-use-an-arbitrary-string-as-a-lock-in-c/168271#168271 10 Answer by Michael Burr for How do I use an arbitrary string as a lock in C++? Michael Burr 2008-10-03T18:38:17Z 2008-10-03T18:48:50Z <p>You could do something similar to what you have in your question, but instead of a single global_key_map have several (probably in an array or vector) - which one is used is determined by some simple hash function on the string.</p> <p>That way instead of a single global lock, you spread that out over several independent ones.</p> <p>This is a pattern that is often used in memory allocators (I don't know if the pattern has a name - it should). When a request comes in, something determines which pool the allocation will come from (usually the size of the request, but other parameters can factor in as well), then only that pool needs to be locked. If an allocation request comes in from another thread that will use a different pool, there's no lock contention.</p> http://stackoverflow.com/questions/168249/how-do-i-use-an-arbitrary-string-as-a-lock-in-c/168276#168276 2 Answer by Roddy for How do I use an arbitrary string as a lock in C++? Roddy 2008-10-03T18:39:14Z 2008-10-03T18:39:14Z <p>It will depend on the platform, but the two techniques that I'd try would be:</p> <ul> <li>Use named mutex/synchronization objects, where object name = Key</li> <li>Use filesystem-based locking, where you try to create a non-shareable temporary file with the key name. If it exists already (=already locked) this will fail and you'll have to poll to retry</li> </ul> <p>Both techniques will depend on the detail of your OS. Experiment and see which works. . </p> http://stackoverflow.com/questions/168249/how-do-i-use-an-arbitrary-string-as-a-lock-in-c/168282#168282 2 Answer by coppro for How do I use an arbitrary string as a lock in C++? coppro 2008-10-03T18:39:45Z 2008-10-03T18:39:45Z <p>Perhaps an <code>std::map&lt;std::string, MutexType&gt;</code> would be what you want, where <code>MutexType</code> is the type of the mutex you want. You will probably have to wrap accesses to the map in another mutex in order to ensure that no other thread is inserting at the same time (and remember to perform the check again after the mutex is locked to ensure that another thread didn't add the key while waiting on the mutex!).</p> <p>The same principle could apply to any other synchronization method, such as a critical section.</p> http://stackoverflow.com/questions/168249/how-do-i-use-an-arbitrary-string-as-a-lock-in-c/169106#169106 1 Answer by Constantin for How do I use an arbitrary string as a lock in C++? Constantin 2008-10-03T22:18:07Z 2008-10-03T22:23:44Z <p><strong>Raise granularity and lock entire key-ranges</strong></p> <p>This is a variation on Mike B's answer, where instead of having several fluid lock maps you have a single fixed array of locks that apply to key-ranges instead of single keys.</p> <p>Simplified example: create array of 256 locks at startup, then use first byte of key to determine index of lock to be acquired (i.e. all keys starting with 'k' will be guarded by <code>locks[107]</code>).</p> <p>To sustain optimal throughput you should analyze distribution of keys and contention rate. The benefits of this approach are zero dynamic allocations and simple cleanup; you also avoid two-step locking. The downside is potential contention peaks if key distribution becomes skewed over time.</p> http://stackoverflow.com/questions/168249/how-do-i-use-an-arbitrary-string-as-a-lock-in-c/169192#169192 0 Answer by eschercycle for How do I use an arbitrary string as a lock in C++? eschercycle 2008-10-03T22:47:16Z 2008-10-03T22:47:16Z <p>After thinking about it, another approach might go something like this: </p> <ul> <li>In <code>handleRequest</code>, create a <code>Callback</code> that does the actual work.</li> <li>Create a <code>multimap&lt;string, Callback*&gt; global_key_map</code>, protected by a mutex.</li> <li>If a thread sees that <code>key</code> is already being processed, it adds its <code>Callback*</code> to the <code>global_key_map</code> and returns.</li> <li>Otherwise, it calls its callback immediately, and then calls the callbacks that have shown up in the meantime for the same key.</li> </ul> <p>Implemented something like this:</p> <pre><code>LockAndCall(string key, Callback* callback) { global_lock.Lock(); if (global_key_map.contains(key)) { iterator iter = global_key_map.insert(key, callback); while (true) { global_lock.Unlock(); iter-&gt;second-&gt;Call(); global_lock.Lock(); global_key_map.erase(iter); iter = global_key_map.find(key); if (iter == global_key_map.end()) { global_lock.Unlock(); return; } } } else { global_key_map.insert(key, callback); global_lock.Unlock(); } } </code></pre> <p>This has the advantage of freeing up threads that would otherwise be waiting for a key lock, but apart from that it's pretty much the same as the naive solution I posted in the question.</p> <p>It could be combined with the answers given by Mike B and Constantin, though.</p> http://stackoverflow.com/questions/168249/how-do-i-use-an-arbitrary-string-as-a-lock-in-c/412233#412233 0 Answer by ramneek handa for How do I use an arbitrary string as a lock in C++? ramneek handa 2009-01-05T03:57:42Z 2009-01-05T03:57:42Z <pre><code> 1. /** 2. * StringLock class for string based locking mechanism 3. * e.g. usage 4. * StringLock strLock; 5. * strLock.Lock("row1"); 6. * strLock.UnLock("row1"); 7. */ 8. class StringLock { 9. public: 10. /** 11. * Constructor 12. * Initializes the mutexes 13. */ 14. StringLock() { 15. pthread_mutex_init(&amp;mtxGlobal, NULL); 16. } 17. /** 18. * Lock Function 19. * The thread will return immediately if the string is not locked 20. * The thread will wait if the string is locked until it gets a turn 21. * @param string the string to lock 22. */ 23. void Lock(string lockString) { 24. pthread_mutex_lock(&amp;mtxGlobal); 25. TListIds *listId = NULL; 26. TWaiter *wtr = new TWaiter; 27. wtr-&gt;evPtr = NULL; 28. wtr-&gt;threadId = pthread_self(); 29. if (lockMap.find(lockString) == lockMap.end()) { 30. listId = new TListIds(); 31. listId-&gt;insert(listId-&gt;end(), wtr); 32. lockMap[lockString] = listId; 33. pthread_mutex_unlock(&amp;mtxGlobal); 34. } else { 35. wtr-&gt;evPtr = new Event(false); 36. listId = lockMap[lockString]; 37. listId-&gt;insert(listId-&gt;end(), wtr); 38. pthread_mutex_unlock(&amp;mtxGlobal); 39. wtr-&gt;evPtr-&gt;Wait(); 40. } 41. } 42. /** 43. * UnLock Function 44. * @param string the string to unlock 45. */ 46. void UnLock(string lockString) { 47. pthread_mutex_lock(&amp;mtxGlobal); 48. TListIds *listID = NULL; 49. if (lockMap.find(lockString) != lockMap.end()) { 50. lockMap[lockString]-&gt;pop_front(); 51. listID = lockMap[lockString]; 52. if (!(listID-&gt;empty())) { 53. TWaiter *wtr = listID-&gt;front(); 54. Event *thdEvent = wtr-&gt;evPtr; 55. thdEvent-&gt;Signal(); 56. } else { 57. lockMap.erase(lockString); 58. delete listID; 59. } 60. } 61. pthread_mutex_unlock(&amp;mtxGlobal); 62. } 63. protected: 64. struct TWaiter { 65. Event *evPtr; 66. long threadId; 67. }; 68. StringLock(StringLock &amp;); 69. void operator=(StringLock&amp;); 70. typedef list TListIds; 71. typedef map TMapLockHolders; 72. typedef map TMapLockWaiters; 73. private: 74. pthread_mutex_t mtxGlobal; 75. TMapLockWaiters lockMap; 76. }; </code></pre>