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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
* Copyright 2011 Pierre Ossman <ossman@cendio.se> for Cendio AB
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <stdlib.h>
#include <FL/x.H>
#include <rfb/LogWriter.h>
#include <rfb/Exception.h>
#include "X11PixelBuffer.h"
using namespace rfb;
static rfb::LogWriter vlog("PlatformPixelBuffer");
static PixelFormat display_pf()
{
int i;
int bpp;
int trueColour, bigEndian;
int redShift, greenShift, blueShift;
int redMax, greenMax, blueMax;
int nformats;
XPixmapFormatValues* format;
// Might not be open at this point
fl_open_display();
format = XListPixmapFormats(fl_display, &nformats);
for (i = 0; i < nformats; i++)
if (format[i].depth == fl_visual->depth) break;
if (i == nformats)
throw rfb::Exception("Error: display lacks pixmap format for default depth");
switch (format[i].bits_per_pixel) {
case 8:
case 16:
case 32:
bpp = format[i].bits_per_pixel;
break;
default:
throw rfb::Exception("Error: couldn't find suitable pixmap format");
}
XFree(format);
bigEndian = (ImageByteOrder(fl_display) == MSBFirst);
trueColour = (fl_visual->c_class == TrueColor);
if (!trueColour)
throw rfb::Exception("Error: only true colour displays supported");
vlog.info("Using default colormap and visual, %sdepth %d.",
(fl_visual->c_class == TrueColor) ? "TrueColor, " :
((fl_visual->c_class == PseudoColor) ? "PseudoColor, " : ""),
fl_visual->depth);
redShift = ffs(fl_visual->red_mask) - 1;
greenShift = ffs(fl_visual->green_mask) - 1;
blueShift = ffs(fl_visual->blue_mask) - 1;
redMax = fl_visual->red_mask >> redShift;
greenMax = fl_visual->green_mask >> greenShift;
blueMax = fl_visual->blue_mask >> blueShift;
return PixelFormat(bpp, fl_visual->depth, bigEndian, trueColour,
redMax, greenMax, blueMax,
redShift, greenShift, blueShift);
}
PlatformPixelBuffer::PlatformPixelBuffer(int width, int height) :
FullFramePixelBuffer(display_pf(), width, height, NULL, NULL),
shminfo(NULL), xim(NULL)
{
// Might not be open at this point
fl_open_display();
if (!setupShm()) {
xim = XCreateImage(fl_display, fl_visual->visual, fl_visual->depth,
ZPixmap, 0, 0, width, height, BitmapPad(fl_display), 0);
assert(xim);
xim->data = (char*)malloc(xim->bytes_per_line * xim->height);
assert(xim->data);
}
data = (rdr::U8*)xim->data;
}
PlatformPixelBuffer::~PlatformPixelBuffer()
{
if (shminfo) {
vlog.debug("Freeing shared memory XImage");
shmdt(shminfo->shmaddr);
shmctl(shminfo->shmid, IPC_RMID, 0);
delete shminfo;
shminfo = NULL;
}
// XDestroyImage() will free(xim->data) if appropriate
if (xim)
XDestroyImage(xim);
xim = NULL;
}
void PlatformPixelBuffer::draw(int src_x, int src_y, int x, int y, int w, int h)
{
if (shminfo)
XShmPutImage(fl_display, fl_window, fl_gc, xim, src_x, src_y, x, y, w, h, False);
else
XPutImage(fl_display, fl_window, fl_gc, xim, src_x, src_y, x, y, w, h);
}
int PlatformPixelBuffer::getStride() const
{
return xim->bytes_per_line / (getPF().bpp/8);
}
static bool caughtError;
static int XShmAttachErrorHandler(Display *dpy, XErrorEvent *error)
{
caughtError = true;
return 0;
}
int PlatformPixelBuffer::setupShm()
{
int major, minor;
Bool pixmaps;
XErrorHandler old_handler;
Status status;
if (!XShmQueryVersion(fl_display, &major, &minor, &pixmaps))
return 0;
shminfo = new XShmSegmentInfo;
xim = XShmCreateImage(fl_display, fl_visual->visual, fl_visual->depth,
ZPixmap, 0, shminfo, width(), height());
if (!xim)
goto free_shminfo;
shminfo->shmid = shmget(IPC_PRIVATE,
xim->bytes_per_line * xim->height,
IPC_CREAT|0777);
if (shminfo->shmid == -1)
goto free_xim;
shminfo->shmaddr = xim->data = (char*)shmat(shminfo->shmid, 0, 0);
if (shminfo->shmaddr == (char *)-1)
goto free_shm;
shminfo->readOnly = True;
// This is the only way we can detect that shared memory won't work
// (e.g. because we're accessing a remote X11 server)
caughtError = false;
old_handler = XSetErrorHandler(XShmAttachErrorHandler);
XShmAttach(fl_display, shminfo);
XSync(fl_display, False);
XSetErrorHandler(old_handler);
if (caughtError)
goto free_shmaddr;
vlog.debug("Using shared memory XImage");
return 1;
free_shmaddr:
shmdt(shminfo->shmaddr);
free_shm:
shmctl(shminfo->shmid, IPC_RMID, 0);
free_xim:
XDestroyImage(xim);
xim = NULL;
free_shminfo:
delete shminfo;
shminfo = NULL;
return 0;
}
|