2010-03-10 02:26:11 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-03-10 02:26:11 -08:00
|
|
|
|
|
|
|
#ifndef _nsAccCache_H_
|
|
|
|
#define _nsAccCache_H_
|
|
|
|
|
2014-10-21 17:49:28 -07:00
|
|
|
#include "xpcAccessibleDocument.h"
|
2010-03-10 02:26:11 -08:00
|
|
|
|
2010-04-26 23:52:03 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Accessible cache utils
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2010-03-10 02:26:11 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shutdown and removes the accessible from cache.
|
|
|
|
*/
|
|
|
|
template <class T>
|
|
|
|
static PLDHashOperator
|
2010-06-11 21:04:35 -07:00
|
|
|
ClearCacheEntry(const void* aKey, nsRefPtr<T>& aAccessible, void* aUserArg)
|
2010-03-10 02:26:11 -08:00
|
|
|
{
|
2013-04-02 17:33:43 -07:00
|
|
|
NS_ASSERTION(aAccessible, "Calling ClearCacheEntry with a nullptr pointer!");
|
2015-02-18 20:37:32 -08:00
|
|
|
if (aAccessible && !aAccessible->IsDefunct())
|
2010-06-11 21:04:35 -07:00
|
|
|
aAccessible->Shutdown();
|
2010-03-10 02:26:11 -08:00
|
|
|
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
}
|
|
|
|
|
2015-02-18 20:37:32 -08:00
|
|
|
template <class T>
|
|
|
|
static PLDHashOperator
|
|
|
|
UnbindCacheEntryFromDocument(const void* aKey, nsRefPtr<T>& aAccessible,
|
|
|
|
void* aUserArg)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aAccessible && !aAccessible->IsDefunct());
|
|
|
|
aAccessible->Document()->UnbindFromDocument(aAccessible);
|
|
|
|
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
}
|
|
|
|
|
2010-03-10 02:26:11 -08:00
|
|
|
/**
|
|
|
|
* Clear the cache and shutdown the accessibles.
|
|
|
|
*/
|
2012-03-21 11:07:31 -07:00
|
|
|
|
2014-11-05 07:46:37 -08:00
|
|
|
template <class T>
|
2010-03-10 02:26:11 -08:00
|
|
|
static void
|
2014-11-05 07:46:37 -08:00
|
|
|
ClearCache(nsRefPtrHashtable<nsPtrHashKey<const void>, T>& aCache)
|
2010-03-10 02:26:11 -08:00
|
|
|
{
|
2014-11-05 07:46:37 -08:00
|
|
|
aCache.Enumerate(ClearCacheEntry<T>, nullptr);
|
2010-03-10 02:26:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|