1 /** 2 * Copyright (C) 2022 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef STREAM_SCHEDULER_H 18 #define STREAM_SCHEDULER_H 19 20 #include <BaseNode.h> 21 #include <IImsMediaThread.h> 22 #include <StreamSchedulerCallback.h> 23 #include <ImsMediaCondition.h> 24 #include <list> 25 26 class StreamScheduler : public IImsMediaThread, StreamSchedulerCallback 27 { 28 public: 29 StreamScheduler(); 30 virtual ~StreamScheduler(); 31 void RegisterNode(BaseNode* pNode); 32 void DeRegisterNode(BaseNode* pNode); 33 void Start(); 34 void Stop(); 35 void Awake(); onAwakeScheduler()36 virtual void onAwakeScheduler() { this->Awake(); } 37 virtual void* run(); 38 39 private: 40 void RunRegisteredNode(); 41 std::list<BaseNode*> mlistRegisteredNode; 42 ImsMediaCondition mConditionMain; 43 ImsMediaCondition mConditionExit; 44 std::mutex mMutex; 45 }; 46 47 #endif