All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.alexeylapin.m3u8.parser.ContentSteeringAttribute Maven / Gradle / Ivy

The newest version!
package com.github.alexeylapin.m3u8.parser;

import com.github.alexeylapin.m3u8.model.ContentSteering;
import com.github.alexeylapin.m3u8.model.ContentSteering;
import com.github.alexeylapin.m3u8.model.SegmentMap;

import java.util.Map;

/*
 * #EXT-X-CONTENT-STEERING:
 */
enum ContentSteeringAttribute implements Attribute {

    SERVER_URI {
        @Override
        public void read(ContentSteering.Builder builder, String value) throws PlaylistParserException {
            builder.serverUri(value);
        }

        @Override
        public void write(ContentSteering contentSteering, TextBuilder textBuilder) {
            textBuilder.addQuoted(key(), contentSteering.serverUri());
        }
    },

    PATHWAY_ID {
        @Override
        public void read(ContentSteering.Builder builder, String value) throws PlaylistParserException {
            builder.pathwayId(value);
        }

        @Override
        public void write(ContentSteering contentSteering, TextBuilder textBuilder) {
            contentSteering.pathwayId().ifPresent(pathwayId -> textBuilder.addQuoted(key(), pathwayId));
        }
    };

    final static Map attributeMap = ParserUtils.toMap(values(), Attribute::key);

    static ContentSteering parse(String attributes, ParsingMode parsingMode) throws PlaylistParserException {
        ContentSteering.Builder builder = ContentSteering.builder();
        ParserUtils.readAttributes(attributeMap, attributes, builder, parsingMode);
        return builder.build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy