#pragma once /* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #ifdef FUZZ_TEST_VNC #include #endif #include #include "common/libs/thread_safe_queue/thread_safe_queue.h" #include "common/libs/threads/thread_annotations.h" #include "host/frontend/vnc_server/blackboard.h" #include "host/frontend/vnc_server/screen_connector.h" namespace cvd { namespace vnc { class SimulatedHWComposer { public: SimulatedHWComposer(BlackBoard* bb); SimulatedHWComposer(const SimulatedHWComposer&) = delete; SimulatedHWComposer& operator=(const SimulatedHWComposer&) = delete; ~SimulatedHWComposer(); Stripe GetNewStripe(); // NOTE not constexpr on purpose static int NumberOfStripes(); private: bool closed(); void close(); static void EraseHalfOfElements(ThreadSafeQueue::QueueImpl* q); void MakeStripes(); #ifdef FUZZ_TEST_VNC std::default_random_engine engine_; std::uniform_int_distribution random_ = std::uniform_int_distribution{0, 2}; #endif static constexpr int kNumStripes = 8; constexpr static std::size_t kMaxQueueElements = 64; bool closed_ GUARDED_BY(m_){}; std::mutex m_; BlackBoard* bb_{}; ThreadSafeQueue stripes_; std::thread stripe_maker_; std::shared_ptr screen_connector_{ScreenConnector::Get()}; }; } // namespace vnc } // namespace cvd