VirtualBox

source: vbox/trunk/src/VBox/Devices/testcase/tstDevicePlugin.h@ 80396

Last change on this file since 80396 was 76565, checked in by vboxsync, 6 years ago

Devices: Use VBOX_INCLUDED_SRC_ as header guard prefix with scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1/** @file
2 * tstDevice: Plugin API.
3 */
4
5/*
6 * Copyright (C) 2017-2019 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef VBOX_INCLUDED_SRC_testcase_tstDevicePlugin_h
18#define VBOX_INCLUDED_SRC_testcase_tstDevicePlugin_h
19#ifndef RT_WITHOUT_PRAGMA_ONCE
20# pragma once
21#endif
22
23#include <VBox/types.h>
24
25/**
26 * Config item type.
27 */
28typedef enum TSTDEVCFGITEMTYPE
29{
30 /** Invalid type. */
31 TSTDEVCFGITEMTYPE_INVALID = 0,
32 /** String type. */
33 TSTDEVCFGITEMTYPE_STRING,
34 /** Integer value encoded in the string. */
35 TSTDEVCFGITEMTYPE_INTEGER,
36 /** Raw bytes. */
37 TSTDEVCFGITEMTYPE_BYTES,
38 /** 32bit hack. */
39 TSTDEVCFGITEMTYPE_32BIT_HACK = 0x7fffffff
40} TSTDEVCFGITEMTYPE;
41/** Pointer to a config item type. */
42typedef TSTDEVCFGITEMTYPE *PTSTDEVCFGITEMTYPE;
43
44
45/**
46 * Testcase config item.
47 */
48typedef struct TSTDEVCFGITEM
49{
50 /** The key of the item. */
51 const char *pszKey;
52 /** Type of the config item. */
53 TSTDEVCFGITEMTYPE enmType;
54 /** The value of the item (as a string/number of bytes to make static
55 * instantiation easier). */
56 const char *pszVal;
57} TSTDEVCFGITEM;
58/** Pointer to a testcase config item. */
59typedef TSTDEVCFGITEM *PTSTDEVCFGITEM;
60/** Pointer to a constant testcase config item. */
61typedef const TSTDEVCFGITEM *PCTSTDEVCFGITEM;
62
63
64/** Device under test handle. */
65typedef struct TSTDEVDUTINT *TSTDEVDUT;
66
67/**
68 * Testcase registration structure.
69 */
70typedef struct TSTDEVTESTCASEREG
71{
72 /** Testcase name. */
73 char szName[16];
74 /** Testcase description. */
75 const char *pszDesc;
76 /** The device name the testcase handles. */
77 char szDevName[16];
78 /** Flags for this testcase. */
79 uint32_t fFlags;
80 /** CFGM configuration for the device to be instantiated. */
81 PCTSTDEVCFGITEM paDevCfg;
82
83 /**
84 * Testcase entry point.
85 *
86 * @returns VBox status code.
87 * @param hDut Handle of the device under test.
88 */
89 DECLR3CALLBACKMEMBER(int, pfnTestEntry, (TSTDEVDUT hDut));
90} TSTDEVTESTCASEREG;
91/** Pointer to a testcase registration structure. */
92typedef TSTDEVTESTCASEREG *PTSTDEVTESTCASEREG;
93/** Pointer to a constant testcase registration structure. */
94typedef const TSTDEVTESTCASEREG *PCTSTDEVTESTCASEREG;
95
96
97/**
98 * Testcase register callbacks structure.
99 */
100typedef struct TSTDEVPLUGINREGISTER
101{
102 /**
103 * Registers a new testcase.
104 *
105 * @returns VBox status code.
106 * @param pvUser Opaque user data given in the plugin load callback.
107 * @param pTestcaseReg The testcase descriptor to register.
108 */
109 DECLR3CALLBACKMEMBER(int, pfnRegisterTestcase, (void *pvUser, PCTSTDEVTESTCASEREG pTestcaseReg));
110
111} TSTDEVPLUGINREGISTER;
112/** Pointer to a backend register callbacks structure. */
113typedef TSTDEVPLUGINREGISTER *PTSTDEVPLUGINREGISTER;
114
115
116/**
117 * Initialization entry point called by the device test framework when
118 * a plugin is loaded.
119 *
120 * @returns VBox status code.
121 * @param pvUser Opaque user data passed in the register callbacks.
122 * @param pRegisterCallbacks Pointer to the register callbacks structure.
123 */
124typedef DECLCALLBACK(int) FNTSTDEVPLUGINLOAD(void *pvUser, PTSTDEVPLUGINREGISTER pRegisterCallbacks);
125typedef FNTSTDEVPLUGINLOAD *PFNTSTDEVPLUGINLOAD;
126#define TSTDEV_PLUGIN_LOAD_NAME "TSTDevPluginLoad"
127
128#endif /* !VBOX_INCLUDED_SRC_testcase_tstDevicePlugin_h */
Note: See TracBrowser for help on using the repository browser.

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