2013-05-21 16:14:00 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/TextTrackCueList.h"
|
|
|
|
#include "mozilla/dom/TextTrackCueListBinding.h"
|
|
|
|
#include "mozilla/dom/TextTrackCue.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-06-18 17:52:10 +00:00
|
|
|
class CompareCuesByTime
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool Equals(TextTrackCue* aOne, TextTrackCue* aTwo) const {
|
|
|
|
return aOne->StartTime() == aTwo->StartTime() &&
|
|
|
|
aOne->EndTime() == aTwo->EndTime();
|
|
|
|
}
|
|
|
|
bool LessThan(TextTrackCue* aOne, TextTrackCue* aTwo) const {
|
|
|
|
return aOne->StartTime() < aTwo->StartTime() ||
|
|
|
|
(aOne->StartTime() == aTwo->StartTime() &&
|
|
|
|
aOne->EndTime() < aTwo->EndTime());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-04-29 08:57:00 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TextTrackCueList, mParent, mList)
|
2013-05-21 16:14:00 +00:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(TextTrackCueList)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(TextTrackCueList)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(TextTrackCueList)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
TextTrackCueList::TextTrackCueList(nsISupports* aParent) : mParent(aParent)
|
|
|
|
{
|
|
|
|
SetIsDOMBinding();
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
2014-04-08 22:27:18 +00:00
|
|
|
TextTrackCueList::WrapObject(JSContext* aCx)
|
2013-05-21 16:14:00 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return TextTrackCueListBinding::Wrap(aCx, this);
|
2013-05-21 16:14:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextTrackCue*
|
|
|
|
TextTrackCueList::IndexedGetter(uint32_t aIndex, bool& aFound)
|
|
|
|
{
|
|
|
|
aFound = aIndex < mList.Length();
|
|
|
|
return aFound ? mList[aIndex] : nullptr;
|
|
|
|
}
|
|
|
|
|
2013-06-14 20:10:36 +00:00
|
|
|
TextTrackCue*
|
|
|
|
TextTrackCueList::operator[](uint32_t aIndex)
|
|
|
|
{
|
|
|
|
return mList.SafeElementAt(aIndex, nullptr);
|
|
|
|
}
|
|
|
|
|
2013-05-21 16:14:00 +00:00
|
|
|
TextTrackCue*
|
|
|
|
TextTrackCueList::GetCueById(const nsAString& aId)
|
|
|
|
{
|
|
|
|
if (aId.IsEmpty()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < mList.Length(); i++) {
|
|
|
|
if (aId.Equals(mList[i]->Id())) {
|
|
|
|
return mList[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-06-14 19:08:17 +00:00
|
|
|
TextTrackCueList::AddCue(TextTrackCue& aCue)
|
2013-05-21 16:14:00 +00:00
|
|
|
{
|
2013-06-14 19:08:17 +00:00
|
|
|
if (mList.Contains(&aCue)) {
|
2013-06-28 17:31:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-06-18 17:52:10 +00:00
|
|
|
mList.InsertElementSorted(&aCue, CompareCuesByTime());
|
2013-05-21 16:14:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-06-14 19:08:17 +00:00
|
|
|
TextTrackCueList::RemoveCue(TextTrackCue& aCue, ErrorResult& aRv)
|
2013-05-21 16:14:00 +00:00
|
|
|
{
|
2013-06-14 19:08:17 +00:00
|
|
|
if (!mList.Contains(&aCue)) {
|
2013-06-28 17:31:43 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_NOT_FOUND_ERR);
|
|
|
|
return;
|
|
|
|
}
|
2013-06-14 19:08:17 +00:00
|
|
|
mList.RemoveElement(&aCue);
|
2013-05-21 16:14:00 +00:00
|
|
|
}
|
|
|
|
|
2013-06-14 20:10:36 +00:00
|
|
|
void
|
|
|
|
TextTrackCueList::RemoveCueAt(uint32_t aIndex)
|
|
|
|
{
|
|
|
|
if (aIndex < mList.Length()) {
|
|
|
|
mList.RemoveElementAt(aIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TextTrackCueList::RemoveAll()
|
|
|
|
{
|
|
|
|
mList.Clear();
|
|
|
|
}
|
|
|
|
|
2013-12-12 15:57:21 +00:00
|
|
|
void
|
|
|
|
TextTrackCueList::GetArray(nsTArray<nsRefPtr<TextTrackCue> >& aCues)
|
|
|
|
{
|
|
|
|
aCues = nsTArray<nsRefPtr<TextTrackCue> >(mList);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-21 16:14:00 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|