1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox HDD container test utility - I/O data generator.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011 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 | #ifndef _VDIoRnd_h__
|
---|
18 | #define _VDIoRnd_h__
|
---|
19 |
|
---|
20 | /** Pointer to the I/O random number generator. */
|
---|
21 | typedef struct VDIORND *PVDIORND;
|
---|
22 | /** Pointer to a I/O random number generator pointer. */
|
---|
23 | typedef PVDIORND *PPVDIORND;
|
---|
24 |
|
---|
25 | /**
|
---|
26 | * Creates a I/O RNG.
|
---|
27 | *
|
---|
28 | * @returns VBox status code.
|
---|
29 | *
|
---|
30 | * @param ppIoRnd Where to store the handle on success.
|
---|
31 | * @param cbPattern Size of the test pattern to create.
|
---|
32 | * @param uSeed Seed for the RNG.
|
---|
33 | */
|
---|
34 | int VDIoRndCreate(PPVDIORND ppIoRnd, size_t cbPattern, uint64_t uSeed);
|
---|
35 |
|
---|
36 | /**
|
---|
37 | * Destroys the I/O RNG.
|
---|
38 | *
|
---|
39 | * @param pIoRnd I/O RNG handle.
|
---|
40 | */
|
---|
41 | void VDIoRndDestroy(PVDIORND pIoRnd);
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * Returns a pointer filled with random data of the given size.
|
---|
45 | *
|
---|
46 | * @returns VBox status code.
|
---|
47 | *
|
---|
48 | * @param pIoRnd I/O RNG handle.
|
---|
49 | * @param ppv Where to store the pointer on success.
|
---|
50 | * @param cb Size of the buffer.
|
---|
51 | */
|
---|
52 | int VDIoRndGetBuffer(PVDIORND pIoRnd, void **ppv, size_t cb);
|
---|
53 |
|
---|
54 | uint32_t VDIoRndGetU32Ex(PVDIORND pIoRnd, uint32_t uMin, uint32_t uMax);
|
---|
55 | #endif /* _VDIoRnd_h__ */
|
---|