Shaka Packager SDK
simple_hls_notifier.h
1 // Copyright 2016 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #ifndef PACKAGER_HLS_BASE_SIMPLE_HLS_NOTIFIER_H_
8 #define PACKAGER_HLS_BASE_SIMPLE_HLS_NOTIFIER_H_
9 
10 #include <list>
11 #include <map>
12 #include <memory>
13 #include <string>
14 #include <vector>
15 
16 #include "packager/base/macros.h"
17 #include "packager/base/synchronization/lock.h"
18 #include "packager/hls/base/hls_notifier.h"
19 #include "packager/hls/base/master_playlist.h"
20 #include "packager/hls/base/media_playlist.h"
21 #include "packager/hls/public/hls_params.h"
22 
23 namespace shaka {
24 namespace hls {
25 
29  public:
30  virtual ~MediaPlaylistFactory();
31  virtual std::unique_ptr<MediaPlaylist> Create(const HlsParams& hls_params,
32  const std::string& file_name,
33  const std::string& name,
34  const std::string& group_id);
35 };
36 
39  public:
41  explicit SimpleHlsNotifier(const HlsParams& hls_params);
42  ~SimpleHlsNotifier() override;
43 
46  bool Init() override;
47  bool NotifyNewStream(const MediaInfo& media_info,
48  const std::string& playlist_name,
49  const std::string& stream_name,
50  const std::string& group_id,
51  uint32_t* stream_id) override;
52  bool NotifyNewSegment(uint32_t stream_id,
53  const std::string& segment_name,
54  uint64_t start_time,
55  uint64_t duration,
56  uint64_t start_byte_offset,
57  uint64_t size) override;
58  bool NotifyKeyFrame(uint32_t stream_id,
59  uint64_t timestamp,
60  uint64_t start_byte_offset,
61  uint64_t size) override;
62  bool NotifyCueEvent(uint32_t container_id, uint64_t timestamp) override;
63  bool NotifyEncryptionUpdate(
64  uint32_t stream_id,
65  const std::vector<uint8_t>& key_id,
66  const std::vector<uint8_t>& system_id,
67  const std::vector<uint8_t>& iv,
68  const std::vector<uint8_t>& protection_system_specific_data) override;
69  bool Flush() override;
71 
72  private:
73  friend class SimpleHlsNotifierTest;
74 
75  struct StreamEntry {
76  std::unique_ptr<MediaPlaylist> media_playlist;
77  MediaPlaylist::EncryptionMethod encryption_method;
78  };
79 
80  std::string output_dir_;
81  uint32_t target_duration_ = 0;
82 
83  std::unique_ptr<MediaPlaylistFactory> media_playlist_factory_;
84  std::unique_ptr<MasterPlaylist> master_playlist_;
85 
86  // Maps to unique_ptr because StreamEntry also holds unique_ptr
87  std::map<uint32_t, std::unique_ptr<StreamEntry>> stream_map_;
88  std::list<MediaPlaylist*> media_playlists_;
89 
90  uint32_t sequence_number_ = 0;
91 
92  base::Lock lock_;
93 
94  DISALLOW_COPY_AND_ASSIGN(SimpleHlsNotifier);
95 };
96 
97 } // namespace hls
98 } // namespace shaka
99 
100 #endif // PACKAGER_HLS_BASE_SIMPLE_HLS_NOTIFIER_H_
HLS related parameters.
Definition: hls_params.h:23
All the methods that are virtual are virtual for mocking.