UNPKG

rx-player

Version:
258 lines (226 loc) 20.7 kB
# RxPlayer Architecture documentation ## Preliminary notes You will find the architecture documentation alongside the code it documents, as `README.md` files (like this one). ## Global architecture The RxPlayer may either run in a multithreaded "mode" or a monothreaded one depending on how it is configured. To easily allow for both, files containing its main logic are principally organized between two directories: - `./main_thread` contains code that will always run in the main JS thread regardless of the RxPlayer's current mode. - `./core` contains code that may either run in a separate Worker thread (in the multithreaded mode) or in main thread (in monothreaded mode). There are also several other files and directories those two may depend on. To better understand the player's architecture, you can find below a simplified schema for it: ``` ┌─────────────────────────────────────────────┐ │ │ │ Application/UI │ │ │ └─────────────────────────────────────────────┘ │ │ call the RxPlayer API │ ─────────────────────────┼─ RxPlayer Main Thread ─────────────────────────── │ Front-facing API ▼ ┌───────────────────────────────────────┐ ┌──────────────────────┐ │ Public API │ uses │ TracksStore │ │ (./main_thread/api) │─────>│(./main_thread/tracks_│ └───────────────────────────────────────┘ │store) │ │ └──────────────────────┘ │ Facilitate track switching Initialize │ creates for the API playback andcreate/connect │ Negotiate content modules ▼ decryption ┌────────────────────┐ ┌───────────────────────┐ │ │ │ Content Decryptor │ Renders text │ Content │──>│(./main_thread/decrypt)│ tracks to the │ Initializer │ └───────────────────────┘ DOM │ │ ┌──────────────────┐ │(./main_thread/init)│ creates │ Text Displayer │ │ │ ───────────────────────────>│(./main_thread/te │ └────────────────────┘ │xt_displayer) │ │ ▲ └──────────────────┘ ▼ │ ▲ ┌────────────────────────────────┐ │ │ CoreInterface │ Link `main_thread` │ │ (./main_thread/core_interface) │ to `core` logic │ └────────────────────────────────┘ │ │ ▲ │ │ │ │ │ │ │ │ │ Message exchanges │ │ │ │ │ │ │ ───┼──┼─────────── RxPlayer Core (May run in a WebWorker) ──────────────── │ │ │ │ │ │ │ │ │ │ │ Exchange messages with the main │ ▼ │ thread and process them. │ ┌───────────────────────┐ ┌──────────────────────────┐ │ │ Core Entry │────────────>│ Manifest Fetcher │ │ │ (./core/entry) │ creates │(./core/fetchers/manifest)│ │ └───────────────────────┘ └──────────────────────────┘ │ │ Creates │ Load and │ │ ▼ │ refresh the │ Ask to load │ ┌───────────────────┐ │ Manifest │ and parse the │ │ │ │ creates │ Manifest │ │ CMCD data builder │ │ ▼ │ Internet │ (./core/cmcd) │ │ ┌────────────────────┐ │ ` │ │ │ │ │ request │ ` ╭───╮ └───────────────────┘ │ │ transports │──────────────┼─`~>│CDN│ Perform data collection │ │ (./transports) │ │ ` ╰───╯ for the "Common Media │ │ │<────────┐ │ ` Client Data" (CMCD) │ └────────────────────┘ │ │ scheme. │ Abstract the streaming │ │ │ protocol (e.g. DASH) │ │ │ │ │ Stream (./core/stream) │ │ └──────┐ ┌────────────────────────┼────────────────────────────────┐ │ │ │ ▼ │ └─────────┐ │ │ Create PeriodStreams ┌────────────────────────────┐ │ Ask to │ │ │ based on the position │ StreamOrchestrator │ │ load │ │ │ and settings │(./core/stream/orchestrator)│ │ and │ │ │ └────────────────────────────┘ │ parse │ │ │ │ │ │ │ segments │ │ │ │ creates │ │ │ │ │ │ │ │ │ │ │ │ │ (audio) ▼ (video) ▼ (text) ▼ │ │ │ │ Create the right ┌────────┐ ┌────────┐ ┌────────┐ uses┌────────────┐ │ │ │ AdaptationStream │ │ │ │ │ │────>│SegmentSinks│ │ │ │ depending on the │ Period │─┐ │ Period │─┐ │ Period │─┐ │ │ Store │ │ │ │ wanted track │ Stream │ │ │ Stream │ │ │ Stream │ │ │ │(./core/segm│ │ │ │ (One per Period │ │ │ │ │ │ │ │ │ │ │ent_sinks) │ │ │ │ and one per type └────────┘ │ └────────┘ │ └────────┘ │ │ └────────────┘ │ │ │ of media) │ (./core/stream/period) │ │ Create one │ │ │ └─────────┘ └─────────┘ └─────────┘ │ "sink" per │ │ │ │ │ │ │ type of media │ │ │ │ creates │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ (audio) ▼ (video) ▼ (text) ▼ uses┌────────────┐ │ │ │ ┌────────┐ ┌────────┐ ┌────────┐ ──> │ ARS* │ │ │ │ (Adaptation- │ │ │ │ │ │ │ │(./core/adap│ │ │ │ Stream) │Adapt...│─┐ │Adapt...│─┐ │Adapt...│─┐ │ │tive) │ │ │ │ Create the right │ Stream │ │ │ Stream │ │ │ Stream │ │ │ └────────────┘ │ │ │ Representation- │ │ │ │ │ │ │ │ │ │ *Adaptive │ │ │ Stream depending └────────┘ │ └────────┘ │ └────────┘ │ │ Representation │ │ │ on the current │ (./core/stream/adaptation) │ │ Selector: │ │ │ network, └─────────┘ └─────────┘ └─────────┘ │ Find the best │ │ │ settings... │ │ │ │ Representation │ │ │ │ creates │ │ │ to play │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ (audio) ▼ (video) ▼ (text) ▼ uses │ │ │ ┌────────┐ ┌────────┐ ┌────────┐ ───>┌─────────────┐│ │ │ (Representation- │ │ │ │ │ │ │ │ Segment ││ │ │ Stream). │Repre...│─┐ │Repre...│─┐ │Repre...│─┐ │ │ Queue │┘ │ │ Download and push│ Stream │ │ │ Stream │ │ │ Stream │ │ │ │(./core/fetc │ │ │ segments based on│ │ │ │ │ │ │ │ │ │ │hers/segment)│ │ │ the current └────────┘ │ └────────┘ │ └────────┘ │ │ └─────────────┘ │ │ position and │ (./core/stream/representation) │ │ Load media │ │ buffer state └─────────┘ └─────────┘ └─────────┘ │ segments │ │ │ │ │ │ │ └─────────────────────────┼───────────────┼─────────────┼─┘ │ │ │ │ │ │ push media │ │ add subtitle │ │ data │ │ │ │ │ │ │ ┌─────────┼───────────────┼─────────────┼───────┐ │ │ (audio)▼ (video)▼ (text)▼ │ │ │ ┌────────────┐ ┌────────────┐ ┌───────────┐ │ │ Media sinks on │ │ Audio/Video│ │ Audio/Video│ │ Text │ │ │ which media │ │ Segment │ │ Segment │ │ Segment │ │ │ data to decode │ │ Sink │ │ Sink │ │ Sink │ │ │ is pushed. │ └────────────┘ └────────────┘ └───────────┘ │ │ Also maintain │ │ │ │ │ │ an inventory │ SegmentSink implementations │ │ │ and history of │ (./core/segment_sinks/implementations)│ │ │ pushed media └───────┼───────────────┼───────────────┼───────┘ │ │ │ │ │ │ push media │ │ │ │ data │ │ │ │ │ │ │ (audio)▼ (video)▼ (text)▼ │ ┌───────────────────────┐ ┌─────────────────────────┐ │ Actually pushes │ MediaSource │ │ TextDisplayer │ │ audio and video │ Interface │ │ Message sender │────┘ data to the right │ (./mse) │ │ (./core/entry) │ low-level buffers └───────────────────────┘ └─────────────────────────┘ Small interface facilitating communication with current TextDisplayer implementation ``` For the subdirectories and files in this directory not represented in that schema: - `compat` (_./compat_): Regroups every function related to improving compatibility with browsers / environments. - `errors` (_./errors_): Defines error subclasses, most of all for the API. - `experimental` (_./experimental_): Special directory for "experimental" tools and features. - `features` (_./features_): Special directory allowing feature switching (enabling/disallowing features to not include unused code when importing the RxPlayer). - `manifest` (_./manifest_): Defines a `Manifest` structure and its properties, a central structure of the player describing a content. - `PlaybackObserver` (./playback_observer): Defines `PlaybackObserver` instances, used by many modules to obtain playback-related properties (such as the playing position, the current playback speed etc.). - `parsers` (_./parsers_): Various parsers for several formats - `tools` (_./tools_): Defines "tools", APIs which are not part of the RxPlayer class. - `utils` (_./utils_): Defines utility functions, small functions which can be used in several parts of the RxPlayer's code. - `config.ts` (_./config.ts_): Exports an interface allowing to update the RxPlayer's config. - `index.ts` (_./index.ts_): Exports the main entry point for the RxPlayer, with a default set of features. - `log.ts` (_./log.ts_): Exports the main RxPlayer's Logger instance. - `minimal.ts` (_./minimal.ts_): Exports the entry point for the minimal RxPlayer, which is an RxPlayer without any feature. When relying on this build, an application will have to manually add the specific features it wants. - `multithread_types.ts` (_./multithread_types.ts_): TypeScript types used specifically when running the RxPlayer in multithread mode. - `public_types.ts` (_./public_types.ts_): List all TypeScript types which are part of the API. - `worker_entry_point.ts` (_./worker_entry_point.ts_): Entry point for the logic of the RxPlayer which will run in the WebWorker (and which will have to be loaded separately by the application). ## Directfile mode The RxPlayer can also play content already natively decodable by the browser, e.g. mp4 files or HLS playlists on Safari. When playing such content, the code path is slightly different and simpler: ``` ┌─────────────────────────────────────────────┐ │ Application/UI │ └─────────────────────────────────────────────┘ │ │ call RxPlayer API │ ─────────────────────────│─── RxPlayer Main Thread ──────────────────────────── │ Front-facing API ▼ ┌───────────────────────────────────────┐ ┌─────────────────────────┐ │ Public API │ uses │ MediaElementTracksStore │ │ (./main_thread/api) │─────>│(./main_thread/tracks_sto│ └───────────────────────────────────────┘ │re) │ │ └─────────────────────────┘ Manage playback of │ creates Handle track switching a "directfile" │ using directly the media content ▼ element's API (`audioTracks`, ┌───────────────────────────────────────┐ `textTracks` etc.) │ DirectfileContentInitializer │ │ (./main_thread/init) │ └───────────────────────────────────────┘ │ ▼ ... Some other RxPlayer modules (All running in main thread) ``` As you can see, everything runs in main thread, a specialized module called the `DirectfileContentInitializer` is called by the API to start-up such contents and a specialized `MediaElementTracksStore` is handling tracks specifically for directfile contents (as they are handled differently than for other code paths, here through APIs exposed by the browser).