VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibClipboard.cpp@ 6569

Last change on this file since 6569 was 6470, checked in by vboxsync, 17 years ago

Back to private naming convention.

  • Property svn:eol-style set to native
  • Property svn:keyword set to Id
  • Property svn:keywords set to Author Date Id Revision
File size: 7.2 KB
Line 
1/* $Id: VBoxGuestR3LibClipboard.cpp 6470 2008-01-24 07:09:56Z vboxsync $ */
2/** @file
3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Clipboard.
4 */
5
6/*
7 * Copyright (C) 2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#include <VBox/HostServices/VBoxClipboardSvc.h>
23#include <VBox/VBoxGuest.h>
24#include <iprt/string.h>
25#include <iprt/assert.h>
26#include "VBGLR3Internal.h"
27
28
29
30
31/**
32 * Connects to the clipboard service.
33 *
34 * @returns VBox status code
35 * @param pu32ClientId Where to put the client id on success. The client id
36 * must be passed to all the other clipboard calls.
37 */
38VBGLR3DECL(int) VbglR3ClipboardConnect(uint32_t *pu32ClientId)
39{
40 VBoxGuestHGCMConnectInfo Info;
41 Info.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */
42 Info.Loc.type = VMMDevHGCMLoc_LocalHost_Existing;
43 memset(&Info.Loc.u, 0, sizeof(Info.Loc.u));
44 strcpy(Info.Loc.u.host.achName, "VBoxSharedClipboard");
45
46 int rc = vbglR3DoIOCtl(IOCTL_VBOXGUEST_HGCM_CONNECT, &Info, sizeof(Info));
47 if (RT_SUCCESS(rc))
48 {
49 rc = Info.result;
50 if (RT_SUCCESS(rc))
51 *pu32ClientId = Info.u32ClientID;
52 }
53 return rc;
54}
55
56
57/**
58 * Disconnect from the clipboard service.
59 *
60 * @returns VBox status code.
61 * @param u32ClientId The client id returned by VbglR3ClipboardConnect().
62 */
63VBGLR3DECL(int) VbglR3ClipboardDisconnect(uint32_t u32ClientId)
64{
65 VBoxGuestHGCMDisconnectInfo Info;
66 Info.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */
67 Info.u32ClientID = u32ClientId;
68
69 int rc = vbglR3DoIOCtl(IOCTL_VBOXGUEST_HGCM_DISCONNECT, &Info, sizeof(Info));
70 if (RT_SUCCESS(rc))
71 rc = Info.result;
72 return rc;
73}
74
75
76/**
77 * Get a host message.
78 *
79 * This will block until a message becomes available.
80 *
81 * @returns VBox status code.
82 * @param u32ClientId The client id returned by VbglR3ClipboardConnect().
83 * @param pMsg Where to store the message id.
84 * @param pfFormats Where to store the format(s) the message applies to.
85 */
86VBGLR3DECL(int) VbglR3ClipboardGetHostMsg(uint32_t u32ClientId, uint32_t *pMsg, uint32_t *pfFormats)
87{
88 VBoxClipboardGetHostMsg Msg;
89
90 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */
91 Msg.hdr.u32ClientID = u32ClientId;
92 Msg.hdr.u32Function = VBOX_SHARED_CLIPBOARD_FN_GET_HOST_MSG;
93 Msg.hdr.cParms = 2;
94 VbglHGCMParmUInt32Set(&Msg.msg, 0);
95 VbglHGCMParmUInt32Set(&Msg.formats, 0);
96
97 int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
98 if (RT_SUCCESS(rc))
99 {
100 rc = Msg.hdr.result;
101 if (RT_SUCCESS(rc))
102 {
103 uint32_t u32Msg;
104 rc = VbglHGCMParmUInt32Get(&Msg.msg, &u32Msg);
105 if (RT_SUCCESS(rc))
106 {
107 uint32_t fFormats;
108 rc = VbglHGCMParmUInt32Get(&Msg.formats, &fFormats);
109 if (RT_SUCCESS(rc))
110 {
111 *pMsg = u32Msg;
112 *pfFormats = fFormats;
113 return Msg.hdr.result;
114 }
115 }
116 }
117 }
118
119 return rc;
120}
121
122
123/**
124 * Reads data from the host clipboard.
125 *
126 * @returns VBox status code.
127 * @retval VINF_BUFFER_OVERFLOW If there is more data available than the caller provided buffer space for.
128 *
129 * @param u32ClientId The client id returned by VbglR3ClipboardConnect().
130 * @param fFormat The format we're requesting the data in.
131 * @param pv Where to store the data.
132 * @param cb The size of the buffer pointed to by pv.
133 * @param pcb The actual size of the host clipboard data. May be larger than cb.
134 */
135VBGLR3DECL(int) VbglR3ClipboardReadData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb, uint32_t *pcb)
136{
137 VBoxClipboardReadData Msg;
138
139 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */
140 Msg.hdr.u32ClientID = u32ClientId;
141 Msg.hdr.u32Function = VBOX_SHARED_CLIPBOARD_FN_READ_DATA;
142 Msg.hdr.cParms = 3;
143 VbglHGCMParmUInt32Set(&Msg.format, fFormat);
144 VbglHGCMParmPtrSet(&Msg.ptr, pv, cb);
145 VbglHGCMParmUInt32Set(&Msg.size, 0);
146
147 int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
148 if (RT_SUCCESS(rc))
149 {
150 rc = Msg.hdr.result;
151 if (RT_SUCCESS(rc))
152 {
153 uint32_t cbActual;
154 rc = VbglHGCMParmUInt32Get(&Msg.size, &cbActual);
155 if (RT_SUCCESS(rc))
156 {
157 *pcb = cbActual;
158 if (cbActual > cb)
159 return VINF_BUFFER_OVERFLOW;
160 return Msg.hdr.result;
161 }
162 }
163 }
164 return rc;
165}
166
167
168/**
169 * Advertises guest clipboard formats to the host.
170 *
171 * @returns VBox status code.
172 * @param u32ClientId The client id returned by VbglR3ClipboardConnect().
173 * @param fFormats The formats to advertise.
174 */
175VBGLR3DECL(int) VbglR3ClipboardReportFormats(uint32_t u32ClientId, uint32_t fFormats)
176{
177 VBoxClipboardFormats Msg;
178
179 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */
180 Msg.hdr.u32ClientID = u32ClientId;
181 Msg.hdr.u32Function = VBOX_SHARED_CLIPBOARD_FN_FORMATS;
182 Msg.hdr.cParms = 1;
183 VbglHGCMParmUInt32Set(&Msg.formats, fFormats);
184
185 int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
186 if (RT_SUCCESS(rc))
187 rc = Msg.hdr.result;
188 return rc;
189}
190
191
192/**
193 * Send guest clipboard data to the host.
194 *
195 * This is usually called in reply to a VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA message
196 * from the host.
197 *
198 * @returns VBox status code.
199 * @param u32ClientId The client id returned by VbglR3ClipboardConnect().
200 * @param fFormat The format of the data.
201 * @param pv The data.
202 * @param cb The size of the data.
203 */
204VBGLR3DECL(int) VbglR3ClipboardWriteData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb)
205{
206 VBoxClipboardWriteData Msg;
207 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */
208 Msg.hdr.u32ClientID = u32ClientId;
209 Msg.hdr.u32Function = VBOX_SHARED_CLIPBOARD_FN_WRITE_DATA;
210 Msg.hdr.cParms = 2;
211 VbglHGCMParmUInt32Set(&Msg.format, fFormat);
212 VbglHGCMParmPtrSet(&Msg.ptr, pv, cb);
213
214 int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
215 if (RT_SUCCESS(rc))
216 rc = Msg.hdr.result;
217 return rc;
218}
219
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette