VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/AudioTestServiceInternal.h@ 90778

Last change on this file since 90778 was 89962, checked in by vboxsync, 3 years ago

Audio/ValKit: Initial implementation / support for NATed VMs by using reversed (server) connections. The ATS client now also makes use of the transport layer and now can also be configured more flexible on a per-transport layer basis. bugref:10008

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.3 KB
Line 
1/* $Id: AudioTestServiceInternal.h 89962 2021-06-30 07:02:07Z vboxsync $ */
2/** @file
3 * AudioTestService - Audio test execution server, Internal Header.
4 */
5
6/*
7 * Copyright (C) 2021 Oracle Corporation
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#ifndef VBOX_INCLUDED_SRC_Audio_AudioTestServiceInternal_h
19#define VBOX_INCLUDED_SRC_Audio_AudioTestServiceInternal_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <iprt/getopt.h>
25#include <iprt/stream.h>
26
27#include "AudioTestServiceProtocol.h"
28
29RT_C_DECLS_BEGIN
30
31/** Opaque ATS transport layer specific client data. */
32typedef struct ATSTRANSPORTCLIENT *PATSTRANSPORTCLIENT;
33typedef PATSTRANSPORTCLIENT *PPATSTRANSPORTCLIENT;
34
35/** Opaque ATS transport specific instance data. */
36typedef struct ATSTRANSPORTINST *PATSTRANSPORTINST;
37typedef PATSTRANSPORTINST *PPATSTRANSPORTINST;
38
39/**
40 * Transport layer descriptor.
41 */
42typedef struct ATSTRANSPORT
43{
44 /** The name. */
45 char szName[16];
46 /** The description. */
47 const char *pszDesc;
48 /** Pointer to an array of options. */
49 PCRTGETOPTDEF paOpts;
50 /** The number of options in the array. */
51 size_t cOpts;
52
53 /**
54 * Print the usage information for this transport layer.
55 *
56 * @param pStream The stream to print the usage info to.
57 *
58 * @remarks This is only required if TXSTRANSPORT::cOpts is greater than 0.
59 */
60 DECLR3CALLBACKMEMBER(void, pfnUsage,(PRTSTREAM pStream));
61
62 /**
63 * Creates a transport instance.
64 *
65 * @returns IPRT status code. On errors, the transport layer shall call
66 * RTMsgError to display the error details to the user.
67 * @param ppThis Where to return the created transport instance on success.
68 */
69 DECLR3CALLBACKMEMBER(int, pfnCreate, (PPATSTRANSPORTINST ppThis));
70
71 /**
72 * Destroys a transport instance.
73 *
74 * On errors, the transport layer shall call RTMsgError to display the error
75 * details to the user.
76 *
77 * @returns IPRT status code. On errors, the transport layer shall call
78 * RTMsgError to display the error details to the user.
79 * @param pThis The transport instance.
80 * The pointer will be invalid on return.
81 */
82 DECLR3CALLBACKMEMBER(int, pfnDestroy, (PATSTRANSPORTINST pThis));
83
84 /**
85 * Handle an option.
86 *
87 * When encountering an options that is not part of the base options, we'll call
88 * this method for each transport layer until one handles it.
89 *
90 * @retval VINF_SUCCESS if handled.
91 * @retval VERR_TRY_AGAIN if not handled.
92 * @retval VERR_INVALID_PARAMETER if we should exit with a non-zero status.
93 *
94 * @param pThis Transport instance to set options for.
95 * @param ch The short option value.
96 * @param pVal Pointer to the value union.
97 *
98 * @remarks This is only required if TXSTRANSPORT::cOpts is greater than 0.
99 */
100 DECLR3CALLBACKMEMBER(int, pfnOption,(PATSTRANSPORTINST pThis, int ch, PCRTGETOPTUNION pVal));
101
102 /**
103 * Starts a transport instance.
104 *
105 * @returns IPRT status code. On errors, the transport layer shall call
106 * RTMsgError to display the error details to the user.
107 * @param pThis Transport instance to initialize.
108 */
109 DECLR3CALLBACKMEMBER(int, pfnStart, (PATSTRANSPORTINST pThis));
110
111 /**
112 * Terminate a transport instance, closing and freeing resources.
113 *
114 * On errors, the transport layer shall call RTMsgError to display the error
115 * details to the user.
116 *
117 * @param pThis The transport instance.
118 */
119 DECLR3CALLBACKMEMBER(void, pfnTerm, (PATSTRANSPORTINST pThis));
120
121 /**
122 * Waits for a new client to connect and returns the client specific data on
123 * success.
124 */
125 DECLR3CALLBACKMEMBER(int, pfnWaitForConnect, (PATSTRANSPORTINST pThis, PPATSTRANSPORTCLIENT ppClientNew));
126
127 /**
128 * Polls for incoming packets.
129 *
130 * @returns true if there are pending packets, false if there isn't.
131 * @param pThis The transport instance.
132 * @param pClient The client to poll for data.
133 */
134 DECLR3CALLBACKMEMBER(bool, pfnPollIn, (PATSTRANSPORTINST pThis, PATSTRANSPORTCLIENT pClient));
135
136 /**
137 * Adds any pollable handles to the poll set.
138 *
139 * @returns IPRT status code.
140 * @param pThis The transport instance.
141 * @param hPollSet The poll set to add them to.
142 * @param pClient The transport client structure.
143 * @param idStart The handle ID to start at.
144 */
145 DECLR3CALLBACKMEMBER(int, pfnPollSetAdd, (PATSTRANSPORTINST pThis, RTPOLLSET hPollSet, PATSTRANSPORTCLIENT pClient, uint32_t idStart));
146
147 /**
148 * Removes the given client frmo the given pollset.
149 *
150 * @returns IPRT status code.
151 * @param pThis The transport instance.
152 * @param hPollSet The poll set to remove from.
153 * @param pClient The transport client structure.
154 * @param idStart The handle ID to remove.
155 */
156 DECLR3CALLBACKMEMBER(int, pfnPollSetRemove, (PATSTRANSPORTINST pThis, RTPOLLSET hPollSet, PATSTRANSPORTCLIENT pClient, uint32_t idStart));
157
158 /**
159 * Receives an incoming packet.
160 *
161 * This will block until the data becomes available or we're interrupted by a
162 * signal or something.
163 *
164 * @returns IPRT status code. On error conditions other than VERR_INTERRUPTED,
165 * the current operation will be aborted when applicable. When
166 * interrupted, the transport layer will store the data until the next
167 * receive call.
168 *
169 * @param pThis The transport instance.
170 * @param pClient The transport client structure.
171 * @param ppPktHdr Where to return the pointer to the packet we've
172 * read. This is allocated from the heap using
173 * RTMemAlloc (w/ ATSPKT_ALIGNMENT) and must be
174 * free by calling RTMemFree.
175 */
176 DECLR3CALLBACKMEMBER(int, pfnRecvPkt, (PATSTRANSPORTINST pThis, PATSTRANSPORTCLIENT pClient, PPATSPKTHDR ppPktHdr));
177
178 /**
179 * Sends an outgoing packet.
180 *
181 * This will block until the data has been written.
182 *
183 * @returns IPRT status code.
184 * @retval VERR_INTERRUPTED if interrupted before anything was sent.
185 *
186 * @param pThis The transport instance.
187 * @param pClient The transport client structure.
188 * @param pPktHdr The packet to send. The size is given by
189 * aligning the size in the header by
190 * ATSPKT_ALIGNMENT.
191 */
192 DECLR3CALLBACKMEMBER(int, pfnSendPkt, (PATSTRANSPORTINST pThis, PATSTRANSPORTCLIENT pClient, PCATSPKTHDR pPktHdr));
193
194 /**
195 * Sends a babble packet and disconnects the client (if applicable).
196 *
197 * @param pThis The transport instance.
198 * @param pClient The transport client structure.
199 * @param pPktHdr The packet to send. The size is given by
200 * aligning the size in the header by
201 * ATSPKT_ALIGNMENT.
202 * @param cMsSendTimeout The send timeout measured in milliseconds.
203 */
204 DECLR3CALLBACKMEMBER(void, pfnBabble, (PATSTRANSPORTINST pThis, PATSTRANSPORTCLIENT pClient, PCATSPKTHDR pPktHdr, RTMSINTERVAL cMsSendTimeout));
205
206 /**
207 * Notification about a client HOWDY.
208 *
209 * @param pThis The transport instance.
210 * @param pClient The transport client structure.
211 */
212 DECLR3CALLBACKMEMBER(void, pfnNotifyHowdy, (PATSTRANSPORTINST pThis, PATSTRANSPORTCLIENT pClient));
213
214 /**
215 * Notification about a client BYE.
216 *
217 * For connection oriented transport layers, it would be good to disconnect the
218 * client at this point.
219 *
220 * @param pThis The transport instance.
221 * @param pClient The transport client structure.
222 */
223 DECLR3CALLBACKMEMBER(void, pfnNotifyBye, (PATSTRANSPORTINST pThis, PATSTRANSPORTCLIENT pClient));
224
225 /**
226 * Notification about a REBOOT or SHUTDOWN.
227 *
228 * For connection oriented transport layers, stop listening for and
229 * accepting at this point.
230 *
231 * @param pThis The transport instance.
232 */
233 DECLR3CALLBACKMEMBER(void, pfnNotifyReboot, (PATSTRANSPORTINST pThis));
234
235 /** Non-zero end marker. */
236 uint32_t u32EndMarker;
237} ATSTRANSPORT;
238/** Pointer to a const transport layer descriptor. */
239typedef const struct ATSTRANSPORT *PCATSTRANSPORT;
240
241
242extern ATSTRANSPORT const g_TcpTransport;
243
244RT_C_DECLS_END
245
246#endif /* !VBOX_INCLUDED_SRC_Audio_AudioTestServiceInternal_h */
247
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use