1 | /* $Id: tstFileLock.cpp 1 1970-01-01 00:00:00Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * InnoTek Portable Runtime Testcase - File Locks.
|
---|
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 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #include <iprt/file.h>
|
---|
27 | #include <iprt/stream.h>
|
---|
28 | #include <iprt/err.h>
|
---|
29 | #include <iprt/thread.h> /* for RTThreadSleep() */
|
---|
30 | #include <iprt/runtime.h>
|
---|
31 | #include <iprt/string.h>
|
---|
32 |
|
---|
33 | #include <stdio.h>
|
---|
34 |
|
---|
35 | static char achTest1[] = "Test line 1\n";
|
---|
36 | static char achTest2[] = "Test line 2\n";
|
---|
37 | static char achTest3[] = "Test line 3\n";
|
---|
38 |
|
---|
39 | static bool fRun = false;
|
---|
40 |
|
---|
41 | /** @todo Create a tstFileLock-2 which doesn't require interaction and counts errors. */
|
---|
42 |
|
---|
43 | int main()
|
---|
44 | {
|
---|
45 | RTR3Init();
|
---|
46 | RTPrintf("tstFileLock: TESTING\n");
|
---|
47 |
|
---|
48 | RTFILE File;
|
---|
49 | int rc = RTFileOpen(&File, "tstLock.tst", RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
|
---|
50 | RTPrintf("File open: rc=%Vrc\n", rc);
|
---|
51 | if (RT_FAILURE(rc))
|
---|
52 | {
|
---|
53 | if (rc != VERR_FILE_NOT_FOUND && rc != VERR_OPEN_FAILED)
|
---|
54 | {
|
---|
55 | RTPrintf("FATAL\n");
|
---|
56 | return 1;
|
---|
57 | }
|
---|
58 |
|
---|
59 | rc = RTFileOpen(&File, "tstLock.tst", RTFILE_O_READWRITE | RTFILE_O_CREATE | RTFILE_O_DENY_NONE);
|
---|
60 | RTPrintf("File create: rc=%Vrc\n", rc);
|
---|
61 | if (RT_FAILURE(rc))
|
---|
62 | {
|
---|
63 | RTPrintf("FATAL\n");
|
---|
64 | return 2;
|
---|
65 | }
|
---|
66 | fRun = true;
|
---|
67 | }
|
---|
68 |
|
---|
69 | /* grow file a little */
|
---|
70 | rc = RTFileSetSize(File, fRun ? 2048 : 20480);
|
---|
71 | RTPrintf("File size: rc=%Vrc\n", rc);
|
---|
72 |
|
---|
73 | int buf;
|
---|
74 | /* read test. */
|
---|
75 | rc = RTFileRead(File, &buf, sizeof(buf), NULL);
|
---|
76 | RTPrintf("Read: rc=%Vrc\n", rc);
|
---|
77 |
|
---|
78 | /* write test. */
|
---|
79 | rc = RTFileWrite(File, achTest1, strlen(achTest1), NULL);
|
---|
80 | RTPrintf("Write: rc=%Vrc\n", rc);
|
---|
81 |
|
---|
82 | /* lock: read, non-blocking. */
|
---|
83 | rc = RTFileLock(File, RTFILE_LOCK_READ | RTFILE_LOCK_IMMEDIATELY, 0, _4G);
|
---|
84 | RTPrintf("Lock: read, non-blocking, rc=%Vrc\n", rc);
|
---|
85 | bool fl = RT_SUCCESS(rc);
|
---|
86 |
|
---|
87 | /* read test. */
|
---|
88 | rc = RTFileRead(File, &buf, sizeof(buf), NULL);
|
---|
89 | RTPrintf("Read: rc=%Vrc\n", rc);
|
---|
90 |
|
---|
91 | /* write test. */
|
---|
92 | rc = RTFileWrite(File, achTest2, strlen(achTest2), NULL);
|
---|
93 | RTPrintf("Write: rc=%Vrc\n", rc);
|
---|
94 | RTPrintf("Lock test will change in three seconds\n");
|
---|
95 | for (int i = 0; i < 3; i++)
|
---|
96 | {
|
---|
97 | RTThreadSleep(1000);
|
---|
98 | RTPrintf(".");
|
---|
99 | }
|
---|
100 | RTPrintf("\n");
|
---|
101 |
|
---|
102 | /* change lock: write, non-blocking. */
|
---|
103 | rc = RTFileLock(File, RTFILE_LOCK_WRITE | RTFILE_LOCK_IMMEDIATELY, 0, _4G);
|
---|
104 | RTPrintf("Change lock: write, non-blocking, rc=%Vrc\n", rc);
|
---|
105 | RTPrintf("Test will unlock in three seconds\n");
|
---|
106 | for (int i = 0; i < 3; i++)
|
---|
107 | {
|
---|
108 | RTThreadSleep(1000);
|
---|
109 | RTPrintf(".");
|
---|
110 | }
|
---|
111 | RTPrintf("\n");
|
---|
112 |
|
---|
113 | /* remove lock. */
|
---|
114 | if (fl)
|
---|
115 | {
|
---|
116 | fl = false;
|
---|
117 | rc = RTFileUnlock(File, 0, _4G);
|
---|
118 | RTPrintf("Unlock: rc=%Vrc\n", rc);
|
---|
119 | RTPrintf("Write test will lock in three seconds\n");
|
---|
120 | for (int i = 0; i < 3; i++)
|
---|
121 | {
|
---|
122 | RTThreadSleep(1000);
|
---|
123 | RTPrintf(".");
|
---|
124 | }
|
---|
125 | RTPrintf("\n");
|
---|
126 | }
|
---|
127 |
|
---|
128 | /* lock: write, non-blocking. */
|
---|
129 | rc = RTFileLock(File, RTFILE_LOCK_WRITE | RTFILE_LOCK_IMMEDIATELY, 0, _4G);
|
---|
130 | RTPrintf("Lock: write, non-blocking, rc=%Vrc\n", rc);
|
---|
131 | fl = RT_SUCCESS(rc);
|
---|
132 |
|
---|
133 | /* grow file test */
|
---|
134 | rc = RTFileSetSize(File, fRun ? 2048 : 20480);
|
---|
135 | RTPrintf("File size: rc=%Vrc\n", rc);
|
---|
136 |
|
---|
137 | /* read test. */
|
---|
138 | rc = RTFileRead(File, &buf, sizeof(buf), NULL);
|
---|
139 | RTPrintf("Read: rc=%Vrc\n", rc);
|
---|
140 |
|
---|
141 | /* write test. */
|
---|
142 | rc = RTFileWrite(File, achTest3, strlen(achTest3), NULL);
|
---|
143 | RTPrintf("Write: rc=%Vrc\n", rc);
|
---|
144 | RTPrintf("Continuing to next test in three seconds\n");
|
---|
145 | for (int i = 0; i < 3; i++)
|
---|
146 | {
|
---|
147 | RTThreadSleep(1000);
|
---|
148 | RTPrintf(".");
|
---|
149 | }
|
---|
150 | RTPrintf("\n");
|
---|
151 |
|
---|
152 | RTFileClose(File);
|
---|
153 | RTFileDelete("tstLock.tst");
|
---|
154 |
|
---|
155 |
|
---|
156 | RTPrintf("tstFileLock: I've no recollection of this testcase succeeding or not, sorry.\n");
|
---|
157 | return 0;
|
---|
158 | }
|
---|