blob: 45c9c8b2a6c40446cb3651644c657f25b5a6a91a [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "modules/mediasource/TrackDefaultList.h"
#include "bindings/core/v8/ExceptionState.h"
#include "core/dom/ExceptionCode.h"
#include "platform/wtf/text/AtomicStringHash.h"
#include "platform/wtf/text/StringHash.h"
namespace blink {
TrackDefaultList* TrackDefaultList::Create() {
return new TrackDefaultList();
}
TrackDefaultList* TrackDefaultList::Create(
const HeapVector<Member<TrackDefault>>& track_defaults,
ExceptionState& exception_state) {
// Per 11 Dec 2014 Editor's Draft
// https://w3c.github.io/media-source/#trackdefaultlist
// When this method is invoked, the user agent must run the following steps:
// 1. If |trackDefaults| contains two or more TrackDefault objects with the
// same type and the same byteStreamTrackID, then throw an
// InvalidAccessError and abort these steps.
// Note: This also applies when byteStreamTrackID contains an empty
// string and ensures that there is only one "byteStreamTrackID
// independent" default for each TrackDefaultType value.
using TypeAndID = std::pair<AtomicString, String>;
using TypeAndIDToTrackDefaultMap =
HeapHashMap<TypeAndID, Member<TrackDefault>>;
TypeAndIDToTrackDefaultMap type_and_id_to_track_default_map;
for (const auto& track_default : track_defaults) {
TypeAndID key =
TypeAndID(track_default->type(), track_default->byteStreamTrackID());
if (!type_and_id_to_track_default_map.insert(key, track_default)
.is_new_entry) {
exception_state.ThrowDOMException(
kInvalidAccessError, "Duplicate TrackDefault type (" + key.first +
") and byteStreamTrackID (" + key.second +
")");
return nullptr;
}
}
// 2. Store a shallow copy of |trackDefaults| in this new object so the values
// can be returned by the accessor methods.
// This step is done in constructor initializer.
return new TrackDefaultList(track_defaults);
}
TrackDefault* TrackDefaultList::item(unsigned index) const {
// Per 11 Dec 2014 Editor's Draft
// https://w3c.github.io/media-source/#trackdefaultlist
// When this method is invoked, the user agent must run the following steps:
// 1. If |index| is greater than or equal to the length attribute then
// return undefined and abort these steps.
if (index >= track_defaults_.size())
return 0;
// 2. Return the |index|'th TrackDefault object in the list.
return track_defaults_[index].Get();
}
TrackDefaultList::TrackDefaultList() {}
TrackDefaultList::TrackDefaultList(
const HeapVector<Member<TrackDefault>>& track_defaults)
: track_defaults_(track_defaults) {}
DEFINE_TRACE(TrackDefaultList) {
visitor->Trace(track_defaults_);
}
} // namespace blink