OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_LIST_H_ | 5 #ifndef COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_LIST_H_ |
6 #define COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_LIST_H_ | 6 #define COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_LIST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 | 15 |
16 namespace media { | 16 namespace media { |
17 class AudioBusRefCounted; | 17 class AudioBusRefCounted; |
18 } | 18 } |
19 | 19 |
20 namespace copresence { | 20 namespace copresence { |
21 | 21 |
22 struct AudioDirective { | 22 struct AudioDirective final { |
23 // Default ctor, required by the priority queue. | 23 // Default ctor, required by the priority queue. |
24 AudioDirective(); | 24 AudioDirective(); |
25 AudioDirective(const std::string& op_id, base::Time end_time); | 25 AudioDirective(const std::string& op_id, base::Time end_time); |
26 | 26 |
27 std::string op_id; | 27 std::string op_id; |
28 base::Time end_time; | 28 base::Time end_time; |
29 }; | 29 }; |
30 | 30 |
31 // This class maintains a list of active audio directives. It fetches the audio | 31 // This class maintains a list of active audio directives. It fetches the audio |
32 // samples associated with a audio transmit directives and expires directives | 32 // samples associated with a audio transmit directives and expires directives |
33 // that have outlived their TTL. | 33 // that have outlived their TTL. |
34 // TODO(rkc): Once we implement more token technologies, move reusable code | 34 // TODO(rkc): Once we implement more token technologies, move reusable code |
35 // from here to a base class and inherit various XxxxDirectiveList | 35 // from here to a base class and inherit various XxxxDirectiveList |
36 // classes from it. | 36 // classes from it. |
37 class AudioDirectiveList { | 37 class AudioDirectiveList { |
38 public: | 38 public: |
39 AudioDirectiveList(); | 39 AudioDirectiveList(); |
40 virtual ~AudioDirectiveList(); | 40 ~AudioDirectiveList(); |
41 | 41 |
42 void AddDirective(const std::string& op_id, base::TimeDelta ttl); | 42 void AddDirective(const std::string& op_id, base::TimeDelta ttl); |
43 void RemoveDirective(const std::string& op_id); | 43 void RemoveDirective(const std::string& op_id); |
44 | 44 |
45 scoped_ptr<AudioDirective> GetActiveDirective(); | 45 scoped_ptr<AudioDirective> GetActiveDirective(); |
46 | 46 |
47 private: | 47 private: |
48 // Comparator for comparing end_times on audio tokens. | 48 // Comparator for comparing end_times on audio tokens. |
49 class LatestFirstComparator { | 49 class LatestFirstComparator { |
50 public: | 50 public: |
(...skipping 10 matching lines...) Expand all Loading... |
61 // This vector will be organized as a heap with the latest time as the first | 61 // This vector will be organized as a heap with the latest time as the first |
62 // element. Only currently active directives will exist in this list. | 62 // element. Only currently active directives will exist in this list. |
63 std::vector<AudioDirective> active_directives_; | 63 std::vector<AudioDirective> active_directives_; |
64 | 64 |
65 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveList); | 65 DISALLOW_COPY_AND_ASSIGN(AudioDirectiveList); |
66 }; | 66 }; |
67 | 67 |
68 } // namespace copresence | 68 } // namespace copresence |
69 | 69 |
70 #endif // COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_LIST_H_ | 70 #endif // COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_LIST_H_ |
OLD | NEW |