rx-player
Version:
Canal+ HTML5 Video Player
169 lines (151 loc) • 5.37 kB
text/typescript
/**
* Copyright 2015 CANAL+ Group
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type {
IAdaptationSetIntermediateRepresentation,
IBaseUrlIntermediateRepresentation,
IContentProtectionIntermediateRepresentation,
IPeriodAttributes,
IPeriodChildren,
IPeriodIntermediateRepresentation,
ISegmentTemplateIntermediateRepresentation,
} from "../../node_parser_types";
import { createAdaptationSetIntermediateRepresentation } from "./AdaptationSet";
import parseBaseURL from "./BaseURL";
import parseContentProtection from "./ContentProtection";
import parseEventStream from "./EventStream";
import parseSegmentTemplate from "./SegmentTemplate";
import { parseBoolean, parseDuration, ValueParser } from "./utils";
/**
* @param {NodeList} periodChildren
* @returns {Array}
*/
function parsePeriodChildren(periodChildren: NodeList): [IPeriodChildren, Error[]] {
const baseURLs: IBaseUrlIntermediateRepresentation[] = [];
const adaptations: IAdaptationSetIntermediateRepresentation[] = [];
let segmentTemplate: ISegmentTemplateIntermediateRepresentation | undefined;
const contentProtections: IContentProtectionIntermediateRepresentation[] = [];
let warnings: Error[] = [];
const eventStreams = [];
for (let i = 0; i < periodChildren.length; i++) {
if (periodChildren[i].nodeType === Node.ELEMENT_NODE) {
const currentElement = periodChildren[i] as Element;
switch (currentElement.nodeName) {
case "BaseURL": {
const [baseURLObj, baseURLWarnings] = parseBaseURL(currentElement);
if (baseURLObj !== undefined) {
baseURLs.push(baseURLObj);
}
warnings = warnings.concat(baseURLWarnings);
break;
}
case "AdaptationSet": {
const [adaptation, adaptationWarnings] =
createAdaptationSetIntermediateRepresentation(currentElement);
adaptations.push(adaptation);
warnings = warnings.concat(adaptationWarnings);
break;
}
case "EventStream": {
const [eventStream, eventStreamWarnings] = parseEventStream(currentElement);
eventStreams.push(eventStream);
warnings = warnings.concat(eventStreamWarnings);
break;
}
case "SegmentTemplate": {
const [parsedSegmentTemplate, segmentTemplateWarnings] =
parseSegmentTemplate(currentElement);
segmentTemplate = parsedSegmentTemplate;
if (segmentTemplateWarnings.length > 0) {
warnings = warnings.concat(segmentTemplateWarnings);
}
break;
}
case "ContentProtection": {
const [contentProtection, contentProtectionWarnings] =
parseContentProtection(currentElement);
if (contentProtectionWarnings.length > 0) {
warnings = warnings.concat(contentProtectionWarnings);
}
if (contentProtection !== undefined) {
contentProtections.push(contentProtection);
}
break;
}
}
}
}
return [
{ baseURLs, adaptations, eventStreams, segmentTemplate, contentProtections },
warnings,
];
}
/**
* @param {Element} periodElement
* @returns {Array}
*/
function parsePeriodAttributes(periodElement: Element): [IPeriodAttributes, Error[]] {
const res: IPeriodAttributes = {};
const warnings: Error[] = [];
const parseValue = ValueParser(res, warnings);
for (let i = 0; i < periodElement.attributes.length; i++) {
const attr = periodElement.attributes[i];
switch (attr.name) {
case "id":
res.id = attr.value;
break;
case "start":
parseValue(attr.value, {
asKey: "start",
parser: parseDuration,
dashName: "start",
});
break;
case "duration":
parseValue(attr.value, {
asKey: "duration",
parser: parseDuration,
dashName: "duration",
});
break;
case "bitstreamSwitching":
parseValue(attr.value, {
asKey: "bitstreamSwitching",
parser: parseBoolean,
dashName: "bitstreamSwitching",
});
break;
case "xlink:href":
res.xlinkHref = attr.value;
break;
case "xlink:actuate":
res.xlinkActuate = attr.value;
break;
}
}
return [res, warnings];
}
/**
* @param {Element} periodElement
* @returns {Array}
*/
export function createPeriodIntermediateRepresentation(
periodElement: Element,
): [IPeriodIntermediateRepresentation, Error[]] {
const [children, childrenWarnings] = parsePeriodChildren(periodElement.childNodes);
const [attributes, attrsWarnings] = parsePeriodAttributes(periodElement);
const warnings = childrenWarnings.concat(attrsWarnings);
return [{ children, attributes }, warnings];
}