[Spice-devel] [PATCH 08/22] Use C++ style for cursor message initialization instead of C style
Christophe de Dinechin
christophe at dinechin.org
Wed Feb 28 15:43:11 UTC 2018
From: Christophe de Dinechin <dinechin at redhat.com>
Use C++ "placement new" to directly initialize a C++ object at a
specified memory location. This makes it possible to get rid of
type-unsafe memset, low-level unsafe pointer + sizeof displacement
computations, and type-unsafe reinterpret_cast<>.
Signed-off-by: Christophe de Dinechin <dinechin at redhat.com>
---
src/spice-streaming-agent.cpp | 44 +++++++++++++++++++++++++------------------
1 file changed, 26 insertions(+), 18 deletions(-)
diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp
index 5c36906..21f9c31 100644
--- a/src/spice-streaming-agent.cpp
+++ b/src/spice-streaming-agent.cpp
@@ -334,36 +334,44 @@ static void usage(const char *progname)
}
static void
-send_cursor(int streamfd, unsigned width, unsigned height, int hotspot_x, int hotspot_y,
+send_cursor(int streamfd,
+ uint16_t width, uint16_t height,
+ uint16_t hotspot_x, uint16_t hotspot_y,
std::function<void(uint32_t *)> fill_cursor)
{
if (width >= STREAM_MSG_CURSOR_SET_MAX_WIDTH || height >= STREAM_MSG_CURSOR_SET_MAX_HEIGHT) {
return;
}
- size_t cursor_size = sizeof(CursorMessage) + width * height * sizeof(uint32_t);
- std::unique_ptr<uint8_t[]> msg(new uint8_t[cursor_size]);
+ const uint32_t msgsize = sizeof(CursorMessage) + width * height * sizeof(uint32_t);
+ const uint32_t hdrsize = sizeof(StreamDevHeader);
- StreamDevHeader &dev_hdr(*reinterpret_cast<StreamDevHeader*>(msg.get()));
- memset(&dev_hdr, 0, sizeof(dev_hdr));
- dev_hdr.protocol_version = STREAM_DEVICE_PROTOCOL;
- dev_hdr.type = STREAM_TYPE_CURSOR_SET;
- dev_hdr.size = cursor_size - sizeof(StreamDevHeader);
+ std::unique_ptr<uint8_t[]> storage(new uint8_t[msgsize]);
- StreamMsgCursorSet &cursor_msg(*reinterpret_cast<StreamMsgCursorSet *>(msg.get() + sizeof(StreamDevHeader)));
- memset(&cursor_msg, 0, sizeof(cursor_msg));
-
- cursor_msg.type = SPICE_CURSOR_TYPE_ALPHA;
- cursor_msg.width = width;
- cursor_msg.height = height;
- cursor_msg.hot_spot_x = hotspot_x;
- cursor_msg.hot_spot_y = hotspot_y;
+ CursorMessage *cursor_msg =
+ new(storage.get()) CursorMessage {
+ .hdr = {
+ .protocol_version = STREAM_DEVICE_PROTOCOL,
+ .padding = 0, // Workaround GCC internal / not implemented compiler error
+ .type = STREAM_TYPE_CURSOR_SET,
+ .size = msgsize - hdrsize
+ },
+ .msg = {
+ .width = width,
+ .height = height,
+ .hot_spot_x = hotspot_x,
+ .hot_spot_y = hotspot_y,
+ .type = SPICE_CURSOR_TYPE_ALPHA,
+ .padding1 = { },
+ .data = { }
+ }
+ };
- uint32_t *pixels = reinterpret_cast<uint32_t *>(cursor_msg.data);
+ uint32_t *pixels = reinterpret_cast<uint32_t *>(cursor_msg->msg.data);
fill_cursor(pixels);
std::lock_guard<std::mutex> stream_guard(stream_mtx);
- write_all(streamfd, msg.get(), cursor_size);
+ write_all(streamfd, storage.get(), msgsize);
}
static void cursor_changes(int streamfd, Display *display, int event_base)
--
2.13.5 (Apple Git-94)
More information about the Spice-devel
mailing list