blob: 1f7468947f359984f361f4dce1d181ff33564751 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// Copyright (c) 2012 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.
#include "remoting/host/clipboard.h"
#include <X11/Xlib.h>
#include "base/bind.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "remoting/host/linux/x_server_clipboard.h"
#include "remoting/proto/event.pb.h"
#include "remoting/protocol/clipboard_stub.h"
namespace remoting {
// This code is expected to be called on the desktop thread only.
class ClipboardLinux : public Clipboard,
public MessageLoopForIO::Watcher {
public:
ClipboardLinux();
virtual ~ClipboardLinux();
// Clipboard interface.
virtual void Start(
scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE;
virtual void InjectClipboardEvent(
const protocol::ClipboardEvent& event) OVERRIDE;
virtual void Stop() OVERRIDE;
// MessageLoopForIO::Watcher interface.
virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE;
virtual void OnFileCanWriteWithoutBlocking(int fd) OVERRIDE;
private:
void OnClipboardChanged(const std::string& mime_type,
const std::string& data);
void PumpXEvents();
scoped_ptr<protocol::ClipboardStub> client_clipboard_;
XServerClipboard x_server_clipboard_;
Display* display_;
MessageLoopForIO::FileDescriptorWatcher x_connection_watcher_;
DISALLOW_COPY_AND_ASSIGN(ClipboardLinux);
};
ClipboardLinux::ClipboardLinux()
: display_(NULL) {
}
ClipboardLinux::~ClipboardLinux() {
Stop();
}
void ClipboardLinux::Start(
scoped_ptr<protocol::ClipboardStub> client_clipboard) {
// TODO(lambroslambrou): Share the X connection with EventExecutor.
display_ = XOpenDisplay(NULL);
if (!display_) {
LOG(ERROR) << "Couldn't open X display";
return;
}
client_clipboard_.swap(client_clipboard);
x_server_clipboard_.Init(display_,
base::Bind(&ClipboardLinux::OnClipboardChanged,
base::Unretained(this)));
MessageLoopForIO::current()->WatchFileDescriptor(
ConnectionNumber(display_), true, MessageLoopForIO::WATCH_READ,
&x_connection_watcher_, this);
PumpXEvents();
}
void ClipboardLinux::InjectClipboardEvent(
const protocol::ClipboardEvent& event) {
x_server_clipboard_.SetClipboard(event.mime_type(), event.data());
}
void ClipboardLinux::Stop() {
client_clipboard_.reset();
x_connection_watcher_.StopWatchingFileDescriptor();
if (display_) {
XCloseDisplay(display_);
display_ = NULL;
}
}
void ClipboardLinux::OnFileCanReadWithoutBlocking(int fd) {
PumpXEvents();
}
void ClipboardLinux::OnFileCanWriteWithoutBlocking(int fd) {
}
void ClipboardLinux::OnClipboardChanged(const std::string& mime_type,
const std::string& data) {
protocol::ClipboardEvent event;
event.set_mime_type(mime_type);
event.set_data(data);
if (client_clipboard_.get()) {
client_clipboard_->InjectClipboardEvent(event);
}
}
void ClipboardLinux::PumpXEvents() {
DCHECK(display_);
while (XPending(display_)) {
XEvent event;
XNextEvent(display_, &event);
x_server_clipboard_.ProcessXEvent(&event);
}
}
scoped_ptr<Clipboard> Clipboard::Create() {
return scoped_ptr<Clipboard>(new ClipboardLinux());
}
} // namespace remoting
|