gecko/layout/style/nsDOMMediaQueryList.cpp
Ehsan Akhgari 0fd9123eac Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script.  Here's the source of the script for
future reference:

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t

convert PRIntn int
convert PRUintn unsigned

convert PRSize size_t

convert PROffset32 int32_t
convert PROffset64 int64_t

convert PRPtrdiff ptrdiff_t

convert PRFloat64 double
2012-08-22 11:56:38 -04:00

166 lines
4.2 KiB
C++

/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
/* 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/. */
/* implements DOM interface for querying and observing media queries */
#include "nsDOMMediaQueryList.h"
#include "nsPresContext.h"
#include "nsIMediaList.h"
#include "nsCSSParser.h"
#include "nsDOMClassInfoID.h" // DOMCI_DATA
nsDOMMediaQueryList::nsDOMMediaQueryList(nsPresContext *aPresContext,
const nsAString &aMediaQueryList)
: mPresContext(aPresContext),
mMediaList(new nsMediaList),
mMatchesValid(false)
{
PR_INIT_CLIST(this);
nsCSSParser parser;
parser.ParseMediaList(aMediaQueryList, nullptr, 0, mMediaList, false);
}
nsDOMMediaQueryList::~nsDOMMediaQueryList()
{
if (mPresContext) {
PR_REMOVE_LINK(this);
}
}
NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMMediaQueryList)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsDOMMediaQueryList)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mPresContext)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSTARRAY_OF_NSCOMPTR(mListeners)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsDOMMediaQueryList)
if (tmp->mPresContext) {
PR_REMOVE_LINK(tmp);
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mPresContext)
}
tmp->RemoveAllListeners();
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
DOMCI_DATA(MediaQueryList, nsDOMMediaQueryList)
NS_INTERFACE_MAP_BEGIN(nsDOMMediaQueryList)
NS_INTERFACE_MAP_ENTRY(nsIDOMMediaQueryList)
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_ENTRIES_CYCLE_COLLECTION(nsDOMMediaQueryList)
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(MediaQueryList)
NS_INTERFACE_MAP_END
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMMediaQueryList)
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMMediaQueryList)
NS_IMETHODIMP
nsDOMMediaQueryList::GetMedia(nsAString &aMedia)
{
mMediaList->GetText(aMedia);
return NS_OK;
}
NS_IMETHODIMP
nsDOMMediaQueryList::GetMatches(bool *aMatches)
{
if (!mMatchesValid) {
NS_ABORT_IF_FALSE(!HasListeners(),
"when listeners present, must keep mMatches current");
RecomputeMatches();
}
*aMatches = mMatches;
return NS_OK;
}
NS_IMETHODIMP
nsDOMMediaQueryList::AddListener(nsIDOMMediaQueryListListener *aListener)
{
if (!aListener) {
return NS_OK;
}
if (!HasListeners()) {
// When we have listeners, the pres context owns a reference to
// this. This is a cyclic reference that can only be broken by
// cycle collection.
NS_ADDREF_THIS();
}
if (!mMatchesValid) {
NS_ABORT_IF_FALSE(!HasListeners(),
"when listeners present, must keep mMatches current");
RecomputeMatches();
}
if (!mListeners.Contains(aListener)) {
mListeners.AppendElement(aListener);
if (!HasListeners()) {
// Append failed; undo the AddRef above.
NS_RELEASE_THIS();
}
}
return NS_OK;
}
NS_IMETHODIMP
nsDOMMediaQueryList::RemoveListener(nsIDOMMediaQueryListListener *aListener)
{
bool removed = mListeners.RemoveElement(aListener);
NS_ABORT_IF_FALSE(!mListeners.Contains(aListener),
"duplicate occurrence of listeners");
if (removed && !HasListeners()) {
// See NS_ADDREF_THIS() in AddListener.
NS_RELEASE_THIS();
}
return NS_OK;
}
void
nsDOMMediaQueryList::RemoveAllListeners()
{
bool hadListeners = HasListeners();
mListeners.Clear();
if (hadListeners) {
// See NS_ADDREF_THIS() in AddListener.
NS_RELEASE_THIS();
}
}
void
nsDOMMediaQueryList::RecomputeMatches()
{
if (!mPresContext) {
return;
}
mMatches = mMediaList->Matches(mPresContext, nullptr);
mMatchesValid = true;
}
void
nsDOMMediaQueryList::MediumFeaturesChanged(NotifyList &aListenersToNotify)
{
mMatchesValid = false;
if (mListeners.Length()) {
bool oldMatches = mMatches;
RecomputeMatches();
if (mMatches != oldMatches) {
for (uint32_t i = 0, i_end = mListeners.Length(); i != i_end; ++i) {
HandleChangeData *d = aListenersToNotify.AppendElement();
if (d) {
d->mql = this;
d->listener = mListeners[i];
}
}
}
}
}