1 /* 2 * Copyright (c) 2022-2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef RESSCHED_SCHED_CONTROLLER_OBSERVER_INCLUDE_AUDIO_OBSERVER_H 17 #define RESSCHED_SCHED_CONTROLLER_OBSERVER_INCLUDE_AUDIO_OBSERVER_H 18 #ifdef RESSCHED_AUDIO_FRAMEWORK_ENABLE 19 #include <string> 20 21 #include "nlohmann/json.hpp" 22 #include "audio_stream_manager.h" 23 #include "audio_system_manager.h" 24 25 namespace OHOS { 26 namespace ResourceSchedule { 27 class AudioObserver : public AudioStandard::AudioRendererStateChangeCallback, 28 public AudioStandard::AudioRingerModeCallback, public AudioStandard::VolumeKeyEventCallback { 29 public: 30 void OnRendererStateChange( 31 const std::vector<std::unique_ptr<AudioStandard::AudioRendererChangeInfo>> &audioRendererChangeInfos) override; 32 void OnRingerModeUpdated(const AudioStandard::AudioRingerMode &ringerMode) override; 33 void OnVolumeKeyEvent(AudioStandard::VolumeEvent volumeEvent) override; 34 private: 35 int32_t mode_ = -1; 36 void MarshallingAudioRendererChangeInfo( 37 const std::unique_ptr<AudioStandard::AudioRendererChangeInfo> &audioRendererChangeInfo, 38 nlohmann::json &payload); 39 }; 40 } // namespace ResourceSchedule 41 } // namespace OHOS 42 #endif 43 #endif // RESSCHED_SCHED_CONTROLLER_OBSERVER_INCLUDE_AUDIO_OBSERVER_H 44