// Copyright 2016 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #ifndef PACKAGER_HLS_BASE_SIMPLE_HLS_NOTIFIER_H_ #define PACKAGER_HLS_BASE_SIMPLE_HLS_NOTIFIER_H_ #include #include #include #include "packager/base/atomic_sequence_num.h" #include "packager/base/macros.h" #include "packager/base/memory/scoped_ptr.h" #include "packager/base/stl_util.h" #include "packager/base/synchronization/lock.h" #include "packager/hls/base/hls_notifier.h" #include "packager/hls/base/master_playlist.h" #include "packager/hls/base/media_playlist.h" namespace shaka { namespace hls { /// For testing. /// Creates MediaPlaylist. Mock this and return mock MediaPlaylist. class MediaPlaylistFactory { public: virtual ~MediaPlaylistFactory(); virtual scoped_ptr Create( MediaPlaylist::MediaPlaylistType type, const std::string& file_name, const std::string& name, const std::string& group_id); }; /// This is thread safe. class SimpleHlsNotifier : public HlsNotifier { public: /// @a prefix is used as hte prefix for all the URIs for Media Playlist. This /// includes the segment URIs in the Media Playlists. /// @param profile is the profile of the playlists. /// @param prefix is the used as the prefix for MediaPlaylist URIs. May be /// empty for relative URI from the playlist. /// @param output_dir is the output directory of the playlists. May be empty /// to write to current directory. /// @param master_playlist_name is the name of the master playlist. SimpleHlsNotifier(HlsProfile profile, const std::string& prefix, const std::string& output_dir, const std::string& master_playlist_name); ~SimpleHlsNotifier() override; /// @name HlsNotifier implemetation overrides. /// @{ bool Init() override; bool NotifyNewStream(const MediaInfo& media_info, const std::string& playlist_name, const std::string& stream_name, const std::string& group_id, uint32_t* stream_id) override; bool NotifyNewSegment(uint32_t stream_id, const std::string& segment_name, uint64_t start_time, uint64_t duration, uint64_t size) override; bool NotifyEncryptionUpdate( uint32_t stream_id, const std::vector& key_id, const std::vector& system_id, const std::vector& iv, const std::vector& protection_system_specific_data) override; bool Flush() override; /// }@ private: friend class SimpleHlsNotifierTest; const std::string prefix_; const std::string output_dir_; scoped_ptr media_playlist_factory_; scoped_ptr master_playlist_; std::map media_playlist_map_; STLValueDeleter media_playlist_map_deleter_; base::AtomicSequenceNumber sequence_number_; base::Lock lock_; DISALLOW_COPY_AND_ASSIGN(SimpleHlsNotifier); }; } // namespace hls } // namespace shaka #endif // PACKAGER_HLS_BASE_SIMPLE_HLS_NOTIFIER_H_