// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_ #define COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_ #include #include #include #include #include #include #include "base/containers/hash_tables.h" #include "base/macros.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "components/mus/public/interfaces/surface_id.mojom.h" #include "components/mus/public/interfaces/window_tree.mojom.h" #include "components/mus/ws/access_policy_delegate.h" #include "components/mus/ws/ids.h" #include "mojo/public/cpp/bindings/associated_binding.h" namespace gfx { class Insets; class Rect; } namespace mus { namespace ws { class AccessPolicy; class ConnectionManager; class ServerWindow; class TargetedEvent; class WindowTreeHostImpl; class WindowTreeTest; // An instance of WindowTreeImpl is created for every WindowTree request. // WindowTreeImpl tracks all the state and windows created by a client. // WindowTreeImpl coordinates with ConnectionManager to update the client (and // internal state) as necessary. class WindowTreeImpl : public mojom::WindowTree, public AccessPolicyDelegate, public mojom::WindowManagerInternalClient { public: WindowTreeImpl(ConnectionManager* connection_manager, ServerWindow* root, uint32_t policy_bitmask); ~WindowTreeImpl() override; void Init(mojom::WindowTreeClient* client, mojom::WindowTreePtr tree); ConnectionSpecificId id() const { return id_; } mojom::WindowTreeClient* client() { return client_; } // Returns the Window with the specified id. ServerWindow* GetWindow(const WindowId& id) { return const_cast( const_cast(this)->GetWindow(id)); } const ServerWindow* GetWindow(const WindowId& id) const; // Returns true if |window| is one of this connections roots. bool HasRoot(const ServerWindow* window) const; std::set roots() { return roots_; } bool is_embed_root() const { return is_embed_root_; } const WindowTreeHostImpl* GetHost(const ServerWindow* window) const; WindowTreeHostImpl* GetHost(const ServerWindow* window) { return const_cast( const_cast(this)->GetHost(window)); } // Invoked when a connection is about to be destroyed. void OnWindowDestroyingTreeImpl(WindowTreeImpl* connection); void OnWillDestroyWindowTreeHost(WindowTreeHostImpl* tree_host); // These functions are synchronous variants of those defined in the mojom. The // WindowTree implementations all call into these. See the mojom for details. bool NewWindow(const WindowId& window_id, const std::map>& properties); bool AddWindow(const WindowId& parent_id, const WindowId& child_id); bool AddTransientWindow(const WindowId& window_id, const WindowId& transient_window_id); std::vector GetWindowTree( const WindowId& window_id) const; bool SetWindowVisibility(const WindowId& window_id, bool visible); bool Embed(const WindowId& window_id, mojom::WindowTreeClientPtr client, uint32_t policy_bitmask, ConnectionSpecificId* connection_id); void DispatchInputEvent(ServerWindow* target, mojom::EventPtr event); bool IsWaitingForNewTopLevelWindow(uint32_t wm_change_id); void OnWindowManagerCreatedTopLevelWindow(uint32_t wm_change_id, uint32_t client_change_id, const WindowId& window_id); // Maps the window id from the client to the server. Normally the ids are the // same, but there may be a different id at the embed point. WindowId MapWindowIdFromClient(Id transport_window_id) const { return MapWindowIdFromClient(WindowIdFromTransportId(transport_window_id)); } WindowId MapWindowIdFromClient(const WindowId& id) const; // Maps the window id to the client. Id MapWindowIdToClient(const ServerWindow* window) const; Id MapWindowIdToClient(const WindowId& id) const; // Calls through to the client. void OnChangeCompleted(uint32_t change_id, bool success); // The following methods are invoked after the corresponding change has been // processed. They do the appropriate bookkeeping and update the client as // necessary. void ProcessWindowBoundsChanged(const ServerWindow* window, const gfx::Rect& old_bounds, const gfx::Rect& new_bounds, bool originated_change); void ProcessClientAreaChanged( const ServerWindow* window, const gfx::Insets& new_client_area, const std::vector& new_additional_client_areas, bool originated_change); void ProcessViewportMetricsChanged(WindowTreeHostImpl* host, const mojom::ViewportMetrics& old_metrics, const mojom::ViewportMetrics& new_metrics, bool originated_change); void ProcessWillChangeWindowHierarchy(const ServerWindow* window, const ServerWindow* new_parent, const ServerWindow* old_parent, bool originated_change); void ProcessWindowPropertyChanged(const ServerWindow* window, const std::string& name, const std::vector* new_data, bool originated_change); void ProcessWindowHierarchyChanged(const ServerWindow* window, const ServerWindow* new_parent, const ServerWindow* old_parent, bool originated_change); void ProcessWindowReorder(const ServerWindow* window, const ServerWindow* relative_window, mojom::OrderDirection direction, bool originated_change); void ProcessWindowDeleted(const ServerWindow* window, bool originated_change); void ProcessWillChangeWindowVisibility(const ServerWindow* window, bool originated_change); void ProcessCursorChanged(const ServerWindow* window, int32_t cursor_id, bool originated_change); void ProcessFocusChanged(const ServerWindow* old_focused_window, const ServerWindow* new_focused_window); void ProcessTransientWindowAdded(const ServerWindow* window, const ServerWindow* transient_window, bool originated_change); void ProcessTransientWindowRemoved(const ServerWindow* window, const ServerWindow* transient_window, bool originated_change); private: using WindowIdSet = base::hash_set; using WindowMap = std::map; friend class WindowTreeTest; struct WaitingForTopLevelWindowInfo { WaitingForTopLevelWindowInfo(WindowId window_id, uint32_t wm_change_id) : window_id(window_id), wm_change_id(wm_change_id) {} ~WaitingForTopLevelWindowInfo() {} // Id supplied from the client. WindowId window_id; // Change id we created for the window manager. uint32_t wm_change_id; }; enum class RemoveRootReason { // The window is being removed. DELETED, // Another connection is being embedded in the window. EMBED, }; // Used when this connection is associated with the window manager. WindowTreeHostImpl* GetHostForWindowManager(); bool ShouldRouteToWindowManager(const ServerWindow* window) const; bool IsWindowKnown(const ServerWindow* window) const; // Returns true if |id| is a valid WindowId for a new window. bool IsValidIdForNewWindow(const WindowId& id) const; // These functions return true if the corresponding mojom function is allowed // for this connection. bool CanReorderWindow(const ServerWindow* window, const ServerWindow* relative_window, mojom::OrderDirection direction) const; // Deletes a window owned by this connection. Returns true on success. // |source| is the connection that originated the change. bool DeleteWindowImpl(WindowTreeImpl* source, ServerWindow* window); // If |window| is known (in |known_windows_|) does nothing. Otherwise adds // |window| to |windows|, marks |window| as known and recurses. void GetUnknownWindowsFrom(const ServerWindow* window, std::vector* windows); // Removes |window| and all its descendants from |known_windows_|. This does // not recurse through windows that were created by this connection. All // windows owned by this connection are added to |local_windows|. void RemoveFromKnown(const ServerWindow* window, std::vector* local_windows); // Resets the root of this connection. void RemoveRoot(const ServerWindow* window, RemoveRootReason reason); // Converts Window(s) to WindowData(s) for transport. This assumes all the // windows are valid for the client. The parent of windows the client is not // allowed to see are set to NULL (in the returned WindowData(s)). mojo::Array WindowsToWindowDatas( const std::vector& windows); mojom::WindowDataPtr WindowToWindowData(const ServerWindow* window); // Implementation of GetWindowTree(). Adds |window| to |windows| and recurses // if CanDescendIntoWindowForWindowTree() returns true. void GetWindowTreeImpl(const ServerWindow* window, std::vector* windows) const; // Notify the client if the drawn state of any of the roots changes. // |window| is the window that is changing to the drawn state // |new_drawn_value|. void NotifyDrawnStateChanged(const ServerWindow* window, bool new_drawn_value); // Deletes all Windows we own. void DestroyWindows(); bool CanEmbed(const WindowId& window_id, uint32_t policy_bitmask) const; void PrepareForEmbed(const WindowId& window_id); void RemoveChildrenAsPartOfEmbed(const WindowId& window_id); void DispatchInputEventImpl(ServerWindow* target, mojom::EventPtr event); // Calls OnChangeCompleted() on the client. void NotifyChangeCompleted(uint32_t change_id, mojom::WindowManagerErrorCode error_code); // WindowTree: void NewWindow(uint32_t change_id, Id transport_window_id, mojo::Map> transport_properties) override; void NewTopLevelWindow(uint32_t change_id, Id transport_window_id, mojo::Map> transport_properties) override; void DeleteWindow(uint32_t change_id, Id transport_window_id) override; void AddWindow(uint32_t change_id, Id parent_id, Id child_id) override; void RemoveWindowFromParent(uint32_t change_id, Id window_id) override; void AddTransientWindow(uint32_t change_id, Id window_id, Id transient_window_id) override; void RemoveTransientWindowFromParent(uint32_t change_id, Id transient_window_id) override; void ReorderWindow(uint32_t change_Id, Id window_id, Id relative_window_id, mojom::OrderDirection direction) override; void GetWindowTree( Id window_id, const mojo::Callback)>& callback) override; void SetWindowBounds(uint32_t change_id, Id window_id, mojo::RectPtr bounds) override; void SetWindowVisibility(uint32_t change_id, Id window_id, bool visible) override; void SetWindowProperty(uint32_t change_id, Id transport_window_id, const mojo::String& name, mojo::Array value) override; void AttachSurface(Id transport_window_id, mojom::SurfaceType type, mojo::InterfaceRequest surface, mojom::SurfaceClientPtr client) override; void Embed(Id transport_window_id, mojom::WindowTreeClientPtr client, uint32_t policy_bitmask, const EmbedCallback& callback) override; void SetFocus(uint32_t change_id, Id transport_window_id) override; void SetCanFocus(Id transport_window_id, bool can_focus) override; void SetPredefinedCursor(uint32_t change_id, Id transport_window_id, mus::mojom::Cursor cursor_id) override; void SetWindowTextInputState(Id transport_window_id, mojo::TextInputStatePtr state) override; void SetImeVisibility(Id transport_window_id, bool visible, mojo::TextInputStatePtr state) override; void OnWindowInputEventAck(uint32_t event_id) override; void SetClientArea( Id transport_window_id, mojo::InsetsPtr insets, mojo::Array transport_additional_client_areas) override; void GetWindowManagerInternalClient( mojo::AssociatedInterfaceRequest internal) override; // mojom::WindowManagerInternalClient: void WmResponse(uint32_t change_id, bool response) override; void WmRequestClose(Id transport_window_id) override; void OnWmCreatedTopLevelWindow(uint32_t change_id, Id transport_window_id) override; // AccessPolicyDelegate: bool HasRootForAccessPolicy(const ServerWindow* window) const override; bool IsWindowKnownForAccessPolicy(const ServerWindow* window) const override; bool IsWindowRootOfAnotherConnectionForAccessPolicy( const ServerWindow* window) const override; bool IsDescendantOfEmbedRoot(const ServerWindow* window) override; ConnectionManager* connection_manager_; // Id of this connection as assigned by ConnectionManager. const ConnectionSpecificId id_; mojom::WindowTreeClient* client_; scoped_ptr access_policy_; // The windows created by this connection. This connection owns these objects. WindowMap window_map_; // The set of windows that has been communicated to the client. WindowIdSet known_windows_; // The roots, or embed points, of this connection. A WindowTreeImpl may have // any number of roots, including 0. std::set roots_; uint32_t event_ack_id_; // WindowTreeHostImpl the current event came from. WindowTreeHostImpl* event_source_host_; bool is_embed_root_; std::queue> event_queue_; scoped_ptr> window_manager_internal_client_binding_; mojom::WindowManagerInternal* window_manager_internal_; std::map embed_to_real_id_map_; scoped_ptr waiting_for_top_level_window_info_; DISALLOW_COPY_AND_ASSIGN(WindowTreeImpl); }; } // namespace ws } // namespace mus #endif // COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_