Mir
native_window_report.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2016 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser 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 Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser 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_GRAPHICS_ANDROID_NATIVE_WINDOW_REPORT_H_
20 #define MIR_GRAPHICS_ANDROID_NATIVE_WINDOW_REPORT_H_
21 #include <system/window.h>
22 #include <vector>
23 #include <memory>
24 
25 namespace mir
26 {
27 namespace logging
28 {
29 class Logger;
30 }
31 namespace graphics
32 {
33 namespace android
34 {
35 enum class BufferEvent
36 {
37  Queue,
38  Dequeue,
39  Cancel
40 };
42 {
43 public:
44  NativeWindowReport() = default;
45  virtual ~NativeWindowReport() = default;
46 
47  virtual void buffer_event(BufferEvent type, ANativeWindow const* win, ANativeWindowBuffer* buf, int fence) const = 0;
48  virtual void buffer_event(BufferEvent type, ANativeWindow const* win, ANativeWindowBuffer* buf) const = 0;
49  virtual void query_event(ANativeWindow const* win, int type, int result) const = 0;
50  virtual void perform_event(ANativeWindow const* win, int type, std::vector<int> const& args) const = 0;
51 
52 private:
53  NativeWindowReport(NativeWindowReport const&) = delete;
54  NativeWindowReport& operator=(NativeWindowReport const&) = delete;
55 };
56 
58 {
59  void buffer_event(BufferEvent type, ANativeWindow const* win, ANativeWindowBuffer* buf, int fence) const override;
60  void buffer_event(BufferEvent type, ANativeWindow const* win, ANativeWindowBuffer* buf) const override;
61  void query_event(ANativeWindow const* win, int type, int result) const override;
62  void perform_event(ANativeWindow const* win, int type, std::vector<int> const& args) const override;
63 };
64 
66 {
67 public:
68  ConsoleNativeWindowReport(std::shared_ptr<logging::Logger> const&);
69  void buffer_event(BufferEvent type, ANativeWindow const* win, ANativeWindowBuffer* buf, int fence) const override;
70  void buffer_event(BufferEvent type, ANativeWindow const* win, ANativeWindowBuffer* buf) const override;
71  void query_event(ANativeWindow const* win, int type, int result) const override;
72  void perform_event(ANativeWindow const* win, int type, std::vector<int> const& args) const override;
73 private:
74  std::shared_ptr<logging::Logger> const logger;
75  std::string const component_name = "AndroidNativeWindow";
76 };
77 
78 }
79 }
80 }
81 #endif /* MIR_GRAPHICS_ANDROID_NATIVE_WINDOW_REPORT_H_ */
All things Mir.
Definition: atomic_callback.h:25
BufferEvent
Definition: native_window_report.h:35
Definition: native_window_report.h:57
Definition: native_window_report.h:65
Definition: native_window_report.h:41
Definition: android_input_receiver.h:36

Copyright © 2012-2015 Canonical Ltd.
Generated on Thu Sep 8 14:50:19 UTC 2016