VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadget.cpp@ 62137

Last change on this file since 62137 was 61024, checked in by vboxsync, 9 years ago

copyright header fix

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.5 KB
Line 
1/* $Id: UsbTestServiceGadget.cpp 61024 2016-05-18 07:45:51Z vboxsync $ */
2/** @file
3 * UsbTestServ - Remote USB test configuration and execution server, USB gadget host API.
4 */
5
6/*
7 * Copyright (C) 2016 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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31
32#include <iprt/asm.h>
33#include <iprt/cdefs.h>
34#include <iprt/ctype.h>
35#include <iprt/mem.h>
36#include <iprt/string.h>
37#include <iprt/types.h>
38
39#include "UsbTestServiceGadgetInternal.h"
40
41/*********************************************************************************************************************************
42* Constants And Macros, Structures and Typedefs *
43*********************************************************************************************************************************/
44
45/**
46 * Internal UTS gadget host instance data.
47 */
48typedef struct UTSGADGETINT
49{
50 /** Reference counter. */
51 volatile uint32_t cRefs;
52 /** Pointer to the gadget class callback table. */
53 PCUTSGADGETCLASSIF pClassIf;
54 /** The gadget host handle. */
55 UTSGADGETHOST hGadgetHost;
56 /** Class specific instance data - variable in size. */
57 uint8_t abClassInst[1];
58} UTSGADGETINT;
59/** Pointer to the internal gadget host instance data. */
60typedef UTSGADGETINT *PUTSGADGETINT;
61
62
63/*********************************************************************************************************************************
64* Global variables *
65*********************************************************************************************************************************/
66
67/** Known gadget host interfaces. */
68static const PCUTSGADGETCLASSIF g_apUtsGadgetClass[] =
69{
70 &g_UtsGadgetClassTest
71};
72
73
74/*********************************************************************************************************************************
75* Internal Functions *
76*********************************************************************************************************************************/
77
78
79/**
80 * Destroys a gadget instance.
81 *
82 * @returns nothing.
83 * @param pThis The gadget instance.
84 */
85static void utsGadgetDestroy(PUTSGADGETINT pThis)
86{
87 pThis->pClassIf->pfnTerm((PUTSGADGETCLASSINT)&pThis->abClassInst[0]);
88 RTMemFree(pThis);
89}
90
91
92DECLHIDDEN(int) utsGadgetCreate(UTSGADGETHOST hGadgetHost, UTSGADGETCLASS enmClass,
93 PCUTSGADGETCFGITEM paCfg, PUTSGADET phGadget)
94{
95 int rc = VINF_SUCCESS;
96 PCUTSGADGETCLASSIF pClassIf = NULL;
97
98 /* Get the interface. */
99 for (unsigned i = 0; i < RT_ELEMENTS(g_apUtsGadgetClass); i++)
100 {
101 if (g_apUtsGadgetClass[i]->enmClass == enmClass)
102 {
103 pClassIf = g_apUtsGadgetClass[i];
104 break;
105 }
106 }
107
108 if (RT_LIKELY(pClassIf))
109 {
110 PUTSGADGETINT pThis = (PUTSGADGETINT)RTMemAllocZ(RT_OFFSETOF(UTSGADGETINT, abClassInst[pClassIf->cbClass]));
111 if (RT_LIKELY(pThis))
112 {
113 pThis->cRefs = 1;
114 pThis->hGadgetHost = hGadgetHost;
115 pThis->pClassIf = pClassIf;
116 rc = pClassIf->pfnInit((PUTSGADGETCLASSINT)&pThis->abClassInst[0], paCfg);
117 if (RT_SUCCESS(rc))
118 {
119 /* Connect the gadget to the host. */
120 rc = utsGadgetHostGadgetConnect(pThis->hGadgetHost, pThis);
121 if (RT_SUCCESS(rc))
122 *phGadget = pThis;
123 }
124 else
125 RTMemFree(pThis);
126 }
127 else
128 rc = VERR_NO_MEMORY;
129 }
130 else
131 rc = VERR_INVALID_PARAMETER;
132
133 return rc;
134}
135
136
137DECLHIDDEN(uint32_t) utsGadgetRetain(UTSGADGET hGadget)
138{
139 PUTSGADGETINT pThis = hGadget;
140
141 AssertPtrReturn(pThis, 0);
142
143 return ASMAtomicIncU32(&pThis->cRefs);
144}
145
146
147DECLHIDDEN(uint32_t) utsGadgetRelease(UTSGADGET hGadget)
148{
149 PUTSGADGETINT pThis = hGadget;
150
151 AssertPtrReturn(pThis, 0);
152
153 uint32_t cRefs = ASMAtomicDecU32(&pThis->cRefs);
154 if (!cRefs)
155 utsGadgetDestroy(pThis);
156
157 return cRefs;
158}
159
160
161DECLHIDDEN(uint32_t) utsGadgetGetBusId(UTSGADGET hGadget)
162{
163 PUTSGADGETINT pThis = hGadget;
164
165 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
166 return pThis->pClassIf->pfnGetBusId((PUTSGADGETCLASSINT)&pThis->abClassInst[0]);
167}
168
169
170DECLHIDDEN(uint32_t) utsGadgetGetDevId(UTSGADGET hGadget)
171{
172 PUTSGADGETINT pThis = hGadget;
173
174 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
175 return 1; /** @todo: Current assumption which is true on Linux with dummy_hcd. */
176}
177
178
179DECLHIDDEN(int) utsGadgetConnect(UTSGADGET hGadget)
180{
181 PUTSGADGETINT pThis = hGadget;
182
183 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
184 int rc = pThis->pClassIf->pfnConnect((PUTSGADGETCLASSINT)&pThis->abClassInst[0]);
185 if (RT_SUCCESS(rc))
186 rc = utsGadgetHostGadgetConnect(pThis->hGadgetHost, hGadget);
187
188 return rc;
189}
190
191
192DECLHIDDEN(int) utsGadgetDisconnect(UTSGADGET hGadget)
193{
194 PUTSGADGETINT pThis = hGadget;
195
196 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
197 int rc = utsGadgetHostGadgetDisconnect(pThis->hGadgetHost, hGadget);
198 if (RT_SUCCESS(rc))
199 rc = pThis->pClassIf->pfnDisconnect((PUTSGADGETCLASSINT)&pThis->abClassInst[0]);
200
201 return rc;
202}
203
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