OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2014 Google Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
12 * | 12 * |
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 * | 24 * |
25 */ | 25 */ |
26 | 26 |
27 #ifndef MessageChannel_h | 27 #ifndef LockManager_h |
28 #define MessageChannel_h | 28 #define LockManager_h |
29 | 29 |
30 #include "bindings/v8/ScriptWrappable.h" | 30 #include "bindings/v8/ScriptWrappable.h" |
| 31 #include "wtf/HashMap.h" |
31 #include "wtf/PassRefPtr.h" | 32 #include "wtf/PassRefPtr.h" |
32 #include "wtf/RefCounted.h" | 33 #include "wtf/RefCounted.h" |
33 #include "wtf/RefPtr.h" | 34 #include "wtf/RefPtr.h" |
| 35 #include "wtf/ThreadSafeRefCounted.h" |
| 36 #include "wtf/ThreadingPrimitives.h" |
34 | 37 |
35 namespace WebCore { | 38 namespace WebCore { |
36 | 39 |
37 class MessagePort; | |
38 class ExecutionContext; | 40 class ExecutionContext; |
39 | 41 |
40 class MessageChannel : public RefCounted<MessageChannel>, public ScriptWrappable
{ | 42 class LockInfo; |
| 43 |
| 44 typedef WTF::HashMap<uint32_t, LockInfo*> LockHashMap; |
| 45 |
| 46 class LockShard { |
41 public: | 47 public: |
42 static PassRefPtr<MessageChannel> create(ExecutionContext* context) { return
adoptRef(new MessageChannel(context)); } | 48 ~LockShard(); |
43 ~MessageChannel(); | |
44 | 49 |
45 MessagePort* port1() const { return m_port1.get(); } | 50 LockInfo* get(uint32_t uid); |
46 MessagePort* port2() const { return m_port2.get(); } | 51 |
| 52 Mutex mutex; |
| 53 private: |
| 54 LockHashMap locks; |
| 55 }; |
| 56 |
| 57 #define SHARD_BITS 5 |
| 58 #define NUM_SHARDS (1 << SHARD_BITS) |
| 59 #define SHARD_MASK (NUM_SHARDS-1) |
| 60 |
| 61 class LockManagerImpl FINAL : public ThreadSafeRefCounted<LockManagerImpl> { |
| 62 public: |
| 63 void lock(uint32_t uid); |
| 64 void unlock(uint32_t uid); |
47 | 65 |
48 private: | 66 private: |
49 explicit MessageChannel(ExecutionContext*); | 67 LockShard shards[NUM_SHARDS]; |
| 68 }; |
50 | 69 |
51 RefPtr<MessagePort> m_port1; | 70 class LockManager FINAL : public RefCounted<LockManager> |
52 RefPtr<MessagePort> m_port2; | 71 , public ScriptWrappable { |
| 72 public: |
| 73 static PassRefPtr<LockManager> create(ExecutionContext* context) |
| 74 { |
| 75 return adoptRef(new LockManager(context)); |
| 76 } |
| 77 |
| 78 void lock(unsigned long uid); |
| 79 void unlock(unsigned long uid); |
| 80 |
| 81 // HACK for performance testing. |
| 82 void nop(); |
| 83 |
| 84 private: |
| 85 explicit LockManager(ExecutionContext*); |
| 86 |
| 87 RefPtr<LockManagerImpl> impl; |
53 }; | 88 }; |
54 | 89 |
55 } // namespace WebCore | 90 } // namespace WebCore |
56 | 91 |
57 #endif // MessageChannel_h | 92 #endif // LockManager_h |
OLD | NEW |