1 | /** @file
|
---|
2 | *
|
---|
3 | * Simple VBox HDD container test utility.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #include <VBox/err.h>
|
---|
23 | #include <VBox/VBoxHDD.h>
|
---|
24 | #include <iprt/runtime.h>
|
---|
25 | #include <iprt/string.h>
|
---|
26 | #include <iprt/stream.h>
|
---|
27 | #include <iprt/mem.h>
|
---|
28 |
|
---|
29 |
|
---|
30 | int dotest(const char *pszBaseFilename, const char *pszDiffFilename)
|
---|
31 | {
|
---|
32 | PVDIDISK pVdi = VDIDiskCreate();
|
---|
33 |
|
---|
34 | #define CHECK(str) \
|
---|
35 | do \
|
---|
36 | { \
|
---|
37 | RTPrintf("%s rc=%Vrc\n", str, rc); \
|
---|
38 | if (VBOX_FAILURE(rc)) \
|
---|
39 | { \
|
---|
40 | VDIDiskCloseAllImages(pVdi); \
|
---|
41 | return rc; \
|
---|
42 | } \
|
---|
43 | } while (0)
|
---|
44 |
|
---|
45 |
|
---|
46 | int rc = VDIDiskOpenImage(pVdi, pszBaseFilename, VDI_OPEN_FLAGS_NORMAL);
|
---|
47 | RTPrintf("openImage() rc=%Vrc\n", rc);
|
---|
48 | if (VBOX_FAILURE(rc))
|
---|
49 | {
|
---|
50 | rc = VDICreateBaseImage(pszBaseFilename, VDI_IMAGE_TYPE_NORMAL,
|
---|
51 | #ifdef _MSC_VER
|
---|
52 | (1000 * 1024 * 1024UI64),
|
---|
53 | #else
|
---|
54 | (1000 * 1024 * 1024ULL),
|
---|
55 | #endif
|
---|
56 | "Test image", NULL, NULL);
|
---|
57 | CHECK("createImage()");
|
---|
58 |
|
---|
59 | rc = VDIDiskOpenImage(pVdi, pszBaseFilename, VDI_OPEN_FLAGS_NORMAL);
|
---|
60 | CHECK("openImage()");
|
---|
61 | }
|
---|
62 |
|
---|
63 | void *pvBuf = RTMemAlloc(1*1124*1024);
|
---|
64 |
|
---|
65 | memset(pvBuf, 0x33, 1*1124*1024);
|
---|
66 | rc = VDIDiskWrite(pVdi, 20*1024*1024 + 594040, pvBuf, 1024*1024);
|
---|
67 | CHECK("write()");
|
---|
68 |
|
---|
69 | memset(pvBuf, 0x46, 1*1124*1024);
|
---|
70 | rc = VDIDiskWrite(pVdi, 20*1024*1024 + 594040, pvBuf, 1024);
|
---|
71 | CHECK("write()");
|
---|
72 |
|
---|
73 | memset(pvBuf, 0x51, 1*1124*1024);
|
---|
74 | rc = VDIDiskWrite(pVdi, 40*1024*1024 + 594040, pvBuf, 1024);
|
---|
75 | CHECK("write()");
|
---|
76 |
|
---|
77 | rc = VDIDiskCreateOpenDifferenceImage(pVdi, pszDiffFilename, "Test diff image", NULL, NULL);
|
---|
78 | CHECK("create undo");
|
---|
79 | // rc = VHDDOpenSecondImage(pVdi, "undoimg.vdi");
|
---|
80 | // RTPrintf("open undo rc=%Vrc\n", rc);
|
---|
81 |
|
---|
82 | memset(pvBuf, '_', 1*1124*1024);
|
---|
83 | rc = VDIDiskWrite(pVdi, 20*1024*1024 + 594040, pvBuf, 512);
|
---|
84 | CHECK("write()");
|
---|
85 |
|
---|
86 | rc = VDIDiskWrite(pVdi, 22*1024*1024 + 594040, pvBuf, 78263);
|
---|
87 | CHECK("write()");
|
---|
88 | rc = VDIDiskWrite(pVdi, 13*1024*1024 + 594040, pvBuf, 782630);
|
---|
89 | CHECK("write()");
|
---|
90 | rc = VDIDiskWrite(pVdi, 44*1024*1024 + 594040, pvBuf, 67899);
|
---|
91 | CHECK("write()");
|
---|
92 |
|
---|
93 | RTPrintf("committing..\n");
|
---|
94 | VDIDiskDumpImages(pVdi);
|
---|
95 | rc = VDIDiskCommitLastDiff(pVdi, NULL, NULL);
|
---|
96 | CHECK("commit last diff");
|
---|
97 | VDIDiskCloseAllImages(pVdi);
|
---|
98 | #undef CHECK
|
---|
99 | return 0;
|
---|
100 | }
|
---|
101 |
|
---|
102 |
|
---|
103 | int main()
|
---|
104 | {
|
---|
105 | RTR3Init();
|
---|
106 |
|
---|
107 | RTFileDelete("tstVdiBase.vdi");
|
---|
108 | RTFileDelete("tstVdiDiff.vdi");
|
---|
109 |
|
---|
110 | int rc = dotest("tstVdiBase.vdi", "tstVdiDiff.vdi");
|
---|
111 | if (!rc)
|
---|
112 | RTPrintf("tstVDI: SUCCESS\n");
|
---|
113 | else
|
---|
114 | RTPrintf("tstVDI: FAILURE\n");
|
---|
115 |
|
---|
116 | RTFileDelete("tstVdiBase.vdi");
|
---|
117 | RTFileDelete("tstVdiDiff.vdi");
|
---|
118 | return !!rc;
|
---|
119 | }
|
---|
120 |
|
---|