VirtualBox

source: vbox/trunk/src/VBox/Storage/testcase/VDIoRnd.cpp@ 36140

Last change on this file since 36140 was 35596, checked in by vboxsync, 14 years ago

Storage/tstVDIo: Basic working testcase for async and sync I/O

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
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#define LOGGROUP LOGGROUP_DEFAULT
18#include <iprt/log.h>
19#include <iprt/err.h>
20#include <iprt/mem.h>
21#include <iprt/rand.h>
22
23#include "VDIoRnd.h"
24
25/**
26 * I/O random data generator instance data.
27 */
28typedef struct VDIORND
29{
30 /** Pointer to the buffer holding the random data. */
31 uint8_t *pbPattern;
32 /** Size of the buffer. */
33 size_t cbPattern;
34 /** RNG */
35 RTRAND hRand;
36} VDIORND;
37
38int VDIoRndCreate(PPVDIORND ppIoRnd, size_t cbPattern, uint64_t uSeed)
39{
40 PVDIORND pIoRnd = NULL;
41 int rc = VINF_SUCCESS;
42
43 AssertPtrReturn(ppIoRnd, VERR_INVALID_POINTER);
44
45 pIoRnd = (PVDIORND)RTMemAllocZ(sizeof(VDIORND));
46 if (pIoRnd)
47 pIoRnd->pbPattern = (uint8_t *)RTMemPageAllocZ(cbPattern);
48
49 if ( pIoRnd
50 && pIoRnd->pbPattern)
51 {
52 pIoRnd->cbPattern = cbPattern;
53
54 rc = RTRandAdvCreateParkMiller(&pIoRnd->hRand);
55 if (RT_SUCCESS(rc))
56 {
57 RTRandAdvSeed(pIoRnd->hRand, uSeed);
58 RTRandAdvBytes(pIoRnd->hRand, pIoRnd->pbPattern, cbPattern);
59 }
60 else
61 {
62 RTMemPageFree(pIoRnd->pbPattern, cbPattern);
63 RTMemFree(pIoRnd);
64 }
65 }
66 else
67 {
68 if (pIoRnd)
69 RTMemFree(pIoRnd);
70 rc = VERR_NO_MEMORY;
71 }
72
73 if (RT_SUCCESS(rc))
74 *ppIoRnd = pIoRnd;
75
76 return rc;
77}
78
79void VDIoRndDestroy(PVDIORND pIoRnd)
80{
81 AssertPtrReturnVoid(pIoRnd);
82
83 RTRandAdvDestroy(pIoRnd->hRand);
84 RTMemPageFree(pIoRnd->pbPattern, pIoRnd->cbPattern);
85 RTMemFree(pIoRnd);
86}
87
88int VDIoRndGetBuffer(PVDIORND pIoRnd, void **ppv, size_t cb)
89{
90 AssertPtrReturn(pIoRnd, VERR_INVALID_POINTER);
91 AssertPtrReturn(ppv, VERR_INVALID_POINTER);
92 AssertReturn(cb > 0, VERR_INVALID_PARAMETER);
93
94 if (cb > pIoRnd->cbPattern - 512)
95 return VERR_INVALID_PARAMETER;
96
97 *ppv = pIoRnd->pbPattern + RT_ALIGN_64(RTRandAdvU64Ex(pIoRnd->hRand, 0, pIoRnd->cbPattern - cb - 512), 512);
98 return VINF_SUCCESS;
99}
100
101
102uint32_t VDIoRndGetU32Ex(PVDIORND pIoRnd, uint32_t uMin, uint32_t uMax)
103{
104 return RTRandAdvU32Ex(pIoRnd->hRand, uMin, uMax);
105}
106
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