| // Copyright 2015 Google Inc. All Rights Reserved. |
| // |
| // 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. |
| |
| #ifndef STARBOARD_SHARED_X11_APPLICATION_X11_H_ |
| #define STARBOARD_SHARED_X11_APPLICATION_X11_H_ |
| |
| #include <X11/Xlib.h> |
| |
| #include <vector> |
| |
| #include "starboard/configuration.h" |
| #include "starboard/player.h" |
| #include "starboard/shared/internal_only.h" |
| #include "starboard/shared/starboard/application.h" |
| #include "starboard/shared/starboard/queue_application.h" |
| #include "starboard/types.h" |
| #include "starboard/window.h" |
| |
| namespace starboard { |
| namespace shared { |
| namespace x11 { |
| |
| // This application engine combines the generic queue with the X11 event queue. |
| class ApplicationX11 : public shared::starboard::QueueApplication { |
| public: |
| ApplicationX11(); |
| ~ApplicationX11() SB_OVERRIDE; |
| |
| static ApplicationX11* Get() { |
| return static_cast<ApplicationX11*>(shared::starboard::Application::Get()); |
| } |
| |
| SbWindow CreateWindow(const SbWindowOptions* options); |
| bool DestroyWindow(SbWindow window); |
| |
| #if SB_IS(PLAYER_PUNCHED_OUT) |
| void Composite(); |
| |
| protected: |
| void AcceptFrame(SbPlayer player, |
| const shared::starboard::player::VideoFrame& frame, |
| int x, |
| int y, |
| int width, |
| int height) SB_OVERRIDE; |
| #endif // SB_IS(PLAYER_PUNCHED_OUT) |
| |
| protected: |
| // --- Application overrides --- |
| void Initialize() SB_OVERRIDE; |
| void Teardown() SB_OVERRIDE; |
| |
| // --- QueueApplication overrides --- |
| bool MayHaveSystemEvents() SB_OVERRIDE; |
| Event* WaitForSystemEventWithTimeout(SbTime time) SB_OVERRIDE; |
| void WakeSystemEventWait() SB_OVERRIDE; |
| |
| private: |
| typedef std::vector<SbWindow> SbWindowVector; |
| |
| #if SB_IS(PLAYER_PUNCHED_OUT) |
| struct FrameInfo { |
| shared::starboard::player::VideoFrame frame; |
| int x; |
| int y; |
| int width; |
| int height; |
| }; |
| #endif // SB_IS(PLAYER_PUNCHED_OUT) |
| |
| // Ensures that X is up, display is populated and connected. |
| void EnsureX(); |
| |
| // Shuts X down. |
| void StopX(); |
| |
| // Creates a new shared::Application::Event from an XEvent, passing ownership |
| // of the Event to the caller. |
| Event* XEventToEvent(XEvent* x_event); |
| |
| // Finds the SbWindow associated with the given X Window. |
| SbWindow FindWindow(Window window); |
| |
| Atom wake_up_atom_; |
| Atom wm_delete_atom_; |
| |
| #if SB_IS(PLAYER_PUNCHED_OUT) |
| SbEventId composite_event_id_; |
| Mutex frame_mutex_; |
| int frame_read_index_; |
| bool frame_written_; |
| static const int kNumFrames = 2; |
| FrameInfo frame_infos_[kNumFrames]; |
| #endif // SB_IS(PLAYER_PUNCHED_OUT) |
| |
| Display* display_; |
| SbWindowVector windows_; |
| }; |
| |
| } // namespace x11 |
| } // namespace shared |
| } // namespace starboard |
| |
| #endif // STARBOARD_SHARED_X11_APPLICATION_X11_H_ |