~hikiko/mir/mir.unity8-desktop-session

« back to all changes in this revision

Viewing changes to src/server/shell/mediating_display_changer.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Daniel van Vugt, Ubuntu daily release
  • Date: 2013-11-20 07:36:15 UTC
  • mfrom: (1.1.52)
  • Revision ID: package-import@ubuntu.com-20131120073615-47my1n59hszj1y6z
Tags: 0.1.1+14.04.20131120-0ubuntu1
[ Daniel van Vugt ]
* New upstream release 0.1.1
  - Add unit tests for V/H scroll events.
  - surfaces: avoid publishing some internal headers, tidy up default
    configuration, integrate surfaces report.
  - client: Add mir_connection_drm_set_gbm_device()
  - graphics: avoid publishing some internal headers.
  - Fixed: unity-system-compositor FTBFS on trusty against new Mir
    (libmirserver9) (LP: #1244192)
  - compositor: avoid publishing some internal headers.
  - shell: Add set_lifecycle_state() to the Session interface.
  - frontend: avoid publishing some internal headers
  - logging: avoid publishing some internal headers.
  - Allow specifying the nested server name by passing --name= or setting
    MIR_SERVER_NAME=.
  - graphics,gbm: Inform the EGL platform about the used gbm device when
    using the native GBM platform
  - examples: Restore GL state after initializing buffers, fixing crashes 
    observed in render_surfaces (LP: #1234563)
  - Continue refactoring the mir android display classes.
  - shell: Hoist focus control functions needed by unity-mir into
    FocusController interface
  - client: Remove the timeout for detecting server crashes
  - Avoid a race condition that could lead to spurious failures of server
    shutdown tests (LP: #1245336)
  - test_client_input.cpp: Bump reception time-out in client test fixture.
    (LP: #1227683)
  - Ensure StubBufferAllocator returns buffers with the properties requested,
    and not the same old hardcoded constants.
  - Update docs and scripting for trusty.
  - compositor: Make DefaultDisplayBufferCompositorFactory private to the
    compositor component.
  - Ignore warnings clang treats as errors, about unused functions being
    generated from macros in <lttng/tracepoint.h> (LP: #1246590)
  - Add resize() support to BufferBundle. This is the first step and lowest
    level of surface resize support.
  - Clean up constants relating to SwitchingBundle.
  - Fix the armhf chroot setup script to point to the right library, so
    cross compiling can work again (LP: #1246975)
  - shell: avoid publishing some internal headers.
  - input: avoid publishing some internal headers.
* Bump timeouts used in socket testing. It seems 100ms isn't always
  enough, which leads to spurious test failures (LP: #1252144) (LP:
  #1252144)
* Fix uninitialized variable causing random drm_auth_magic test
  failures. (LP: #1252144). (LP: #1252144)

[ Ubuntu daily release ]
* Automatic snapshot from revision 1165

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef MIR_SHELL_MEDIATING_DISPLAY_CHANGER_H_
 
20
#define MIR_SHELL_MEDIATING_DISPLAY_CHANGER_H_
 
21
 
 
22
#include "mir/frontend/display_changer.h"
 
23
#include "mir/display_changer.h"
 
24
 
 
25
#include <mutex>
 
26
#include <map>
 
27
 
 
28
namespace mir
 
29
{
 
30
 
 
31
namespace graphics
 
32
{
 
33
    class Display;
 
34
    class DisplayConfigurationPolicy;
 
35
}
 
36
namespace compositor { class Compositor; }
 
37
 
 
38
namespace shell
 
39
{
 
40
 
 
41
class SessionContainer;
 
42
class SessionEventHandlerRegister;
 
43
 
 
44
class MediatingDisplayChanger : public frontend::DisplayChanger,
 
45
                                public mir::DisplayChanger
 
46
{
 
47
public:
 
48
    MediatingDisplayChanger(
 
49
        std::shared_ptr<graphics::Display> const& display,
 
50
        std::shared_ptr<compositor::Compositor> const& compositor,
 
51
        std::shared_ptr<graphics::DisplayConfigurationPolicy> const& display_configuration_policy,
 
52
        std::shared_ptr<SessionContainer> const& session_container,
 
53
        std::shared_ptr<SessionEventHandlerRegister> const& session_event_handler_register);
 
54
 
 
55
    /* From mir::frontend::DisplayChanger */
 
56
    std::shared_ptr<graphics::DisplayConfiguration> active_configuration();
 
57
    void configure(std::shared_ptr<frontend::Session> const& session,
 
58
                   std::shared_ptr<graphics::DisplayConfiguration> const& conf);
 
59
 
 
60
    void ensure_display_powered(std::shared_ptr<frontend::Session> const& session);
 
61
 
 
62
    /* From mir::DisplayChanger */
 
63
    void configure_for_hardware_change(
 
64
        std::shared_ptr<graphics::DisplayConfiguration> const& conf,
 
65
        SystemStateHandling pause_resume_system);
 
66
 
 
67
private:
 
68
    void apply_config(std::shared_ptr<graphics::DisplayConfiguration> const& conf,
 
69
                      SystemStateHandling pause_resume_system);
 
70
    void apply_base_config(SystemStateHandling pause_resume_system);
 
71
    void send_config_to_all_sessions(
 
72
        std::shared_ptr<graphics::DisplayConfiguration> const& conf);
 
73
 
 
74
    std::shared_ptr<graphics::Display> const display;
 
75
    std::shared_ptr<compositor::Compositor> const compositor;
 
76
    std::shared_ptr<graphics::DisplayConfigurationPolicy> const display_configuration_policy;
 
77
    std::shared_ptr<shell::SessionContainer> const session_container;
 
78
    std::shared_ptr<SessionEventHandlerRegister> const session_event_handler_register;
 
79
    std::mutex configuration_mutex;
 
80
    std::map<std::weak_ptr<frontend::Session>,
 
81
             std::shared_ptr<graphics::DisplayConfiguration>,
 
82
             std::owner_less<std::weak_ptr<frontend::Session>>> config_map;
 
83
    std::weak_ptr<frontend::Session> focused_session;
 
84
    std::shared_ptr<graphics::DisplayConfiguration> base_configuration;
 
85
    bool base_configuration_applied;
 
86
};
 
87
 
 
88
}
 
89
}
 
90
 
 
91
#endif /* MIR_SHELL_MEDIATING_DISPLAY_CHANGER_H_ */