sbLocalDatabaseGUIDArrayLengthCache.cpp
Go to the documentation of this file.
1 /*
2  *=BEGIN SONGBIRD GPL
3  *
4  * This file is part of the Songbird web player.
5  *
6  * Copyright(c) 2005-2011 POTI, Inc.
7  * http://www.songbirdnest.com
8  *
9  * This file may be licensed under the terms of of the
10  * GNU General Public License Version 2 (the ``GPL'').
11  *
12  * Software distributed under the License is distributed
13  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
14  * express or implied. See the GPL for the specific language
15  * governing rights and limitations.
16  *
17  * You should have received a copy of the GPL along with this
18  * program. If not, go to http://www.gnu.org/licenses/gpl.html
19  * or write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  *=END SONGBIRD GPL
23  */
24 
26 
29 
31 {
32  mLock = nsAutoLock::NewLock("sbLocalDatabaseGUIDArrayLengthCache");
33 
34  mCachedLengths.Init();
35  mCachedNonNullLengths.Init();
36 }
37 
39 {
40  nsAutoLock::DestroyLock(mLock);
41 }
42 
43 NS_IMETHODIMP
44 sbLocalDatabaseGUIDArrayLengthCache::AddCachedLength(const nsAString &aKey,
45  PRUint32 aLength)
46 {
47  nsAutoLock lock(mLock);
48 
49  NS_ENSURE_TRUE(mCachedLengths.Put(aKey, aLength), NS_ERROR_OUT_OF_MEMORY);
50 
51  return NS_OK;
52 }
53 
54 NS_IMETHODIMP
55 sbLocalDatabaseGUIDArrayLengthCache::GetCachedLength(const nsAString &aKey,
56  PRUint32 *aLength)
57 {
58  NS_ENSURE_ARG_POINTER(aLength);
59 
60  *aLength = 0;
61 
62  nsAutoLock lock(mLock);
63 
64  if (!mCachedLengths.Get(aKey, aLength))
65  return NS_ERROR_NOT_AVAILABLE;
66  return NS_OK;
67 }
68 
69 NS_IMETHODIMP
70 sbLocalDatabaseGUIDArrayLengthCache::RemoveCachedLength(const nsAString &aKey)
71 {
72  nsAutoLock lock(mLock);
73 
74  // We don't care if it wasn't there
75  mCachedLengths.Remove(aKey);
76 
77  return NS_OK;
78 }
79 
80 NS_IMETHODIMP
81 sbLocalDatabaseGUIDArrayLengthCache::AddCachedNonNullLength(
82  const nsAString &aKey,
83  PRUint32 aLength)
84 {
85  nsAutoLock lock(mLock);
86 
87  NS_ENSURE_TRUE(mCachedNonNullLengths.Put(aKey, aLength),
88  NS_ERROR_OUT_OF_MEMORY);
89 
90  return NS_OK;
91 }
92 
93 NS_IMETHODIMP
94 sbLocalDatabaseGUIDArrayLengthCache::GetCachedNonNullLength(
95  const nsAString &aKey,
96  PRUint32 *aLength)
97 {
98  NS_ENSURE_ARG_POINTER(aLength);
99 
100  *aLength = 0;
101 
102  nsAutoLock lock(mLock);
103 
104  if (!mCachedNonNullLengths.Get(aKey, aLength))
105  return NS_ERROR_NOT_AVAILABLE;
106  return NS_OK;
107 }
108 
109 NS_IMETHODIMP
110 sbLocalDatabaseGUIDArrayLengthCache::RemoveCachedNonNullLength(
111  const nsAString &aKey)
112 {
113  nsAutoLock lock(mLock);
114 
115  // We don't care if it wasn't there
116  mCachedNonNullLengths.Remove(aKey);
117 
118  return NS_OK;
119 }
120 
return NS_OK
nsDataHashtable< nsStringHashKey, PRUint32 > mCachedLengths
NS_DECL_ISUPPORTS NS_DECL_SBILOCALDATABASEGUIDARRAYLENGTHCACHE sbLocalDatabaseGUIDArrayLengthCache()
nsDataHashtable< nsStringHashKey, PRUint32 > mCachedNonNullLengths
[USER CODE SHOULD NOT REFERENCE THIS CLASS]
NS_IMPL_THREADSAFE_ISUPPORTS1(sbLocalDatabaseGUIDArrayLengthCache, sbILocalDatabaseGUIDArrayLengthCache)