VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstFileLock.cpp@ 76553

Last change on this file since 76553 was 76553, checked in by vboxsync, 5 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 5.1 KB
Line 
1/* $Id: tstFileLock.cpp 76553 2019-01-01 01:45:53Z vboxsync $ */
2/** @file
3 * IPRT Testcase - File Locks.
4 */
5
6/*
7 * Copyright (C) 2006-2019 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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/file.h>
32#include <iprt/stream.h>
33#include <iprt/err.h>
34#include <iprt/thread.h> /* for RTThreadSleep() */
35#include <iprt/initterm.h>
36#include <iprt/string.h>
37
38#include <stdio.h>
39
40static char achTest1[] = "Test line 1\n";
41static char achTest2[] = "Test line 2\n";
42static char achTest3[] = "Test line 3\n";
43
44static bool fRun = false;
45
46/** @todo Create a tstFileLock-2 which doesn't require interaction and counts errors. */
47
48int main()
49{
50 RTR3InitExeNoArguments(0);
51 RTPrintf("tstFileLock: TESTING\n");
52
53 RTFILE File;
54 int rc = RTFileOpen(&File, "tstLock.tst", RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
55 RTPrintf("File open: rc=%Rrc\n", rc);
56 if (RT_FAILURE(rc))
57 {
58 if (rc != VERR_FILE_NOT_FOUND && rc != VERR_OPEN_FAILED)
59 {
60 RTPrintf("FATAL\n");
61 return 1;
62 }
63
64 rc = RTFileOpen(&File, "tstLock.tst", RTFILE_O_READWRITE | RTFILE_O_CREATE | RTFILE_O_DENY_NONE);
65 RTPrintf("File create: rc=%Rrc\n", rc);
66 if (RT_FAILURE(rc))
67 {
68 RTPrintf("FATAL\n");
69 return 2;
70 }
71 fRun = true;
72 }
73
74 /* grow file a little */
75 rc = RTFileSetSize(File, fRun ? 2048 : 20480);
76 RTPrintf("File size: rc=%Rrc\n", rc);
77
78 int buf;
79 /* read test. */
80 rc = RTFileRead(File, &buf, sizeof(buf), NULL);
81 RTPrintf("Read: rc=%Rrc\n", rc);
82
83 /* write test. */
84 rc = RTFileWrite(File, achTest1, strlen(achTest1), NULL);
85 RTPrintf("Write: rc=%Rrc\n", rc);
86
87 /* lock: read, non-blocking. */
88 rc = RTFileLock(File, RTFILE_LOCK_READ | RTFILE_LOCK_IMMEDIATELY, 0, _4G);
89 RTPrintf("Lock: read, non-blocking, rc=%Rrc\n", rc);
90 bool fl = RT_SUCCESS(rc);
91
92 /* read test. */
93 rc = RTFileRead(File, &buf, sizeof(buf), NULL);
94 RTPrintf("Read: rc=%Rrc\n", rc);
95
96 /* write test. */
97 rc = RTFileWrite(File, achTest2, strlen(achTest2), NULL);
98 RTPrintf("Write: rc=%Rrc\n", rc);
99 RTPrintf("Lock test will change in three seconds\n");
100 for (int i = 0; i < 3; i++)
101 {
102 RTThreadSleep(1000);
103 RTPrintf(".");
104 }
105 RTPrintf("\n");
106
107 /* change lock: write, non-blocking. */
108 rc = RTFileLock(File, RTFILE_LOCK_WRITE | RTFILE_LOCK_IMMEDIATELY, 0, _4G);
109 RTPrintf("Change lock: write, non-blocking, rc=%Rrc\n", rc);
110 RTPrintf("Test will unlock in three seconds\n");
111 for (int i = 0; i < 3; i++)
112 {
113 RTThreadSleep(1000);
114 RTPrintf(".");
115 }
116 RTPrintf("\n");
117
118 /* remove lock. */
119 if (fl)
120 {
121 fl = false;
122 rc = RTFileUnlock(File, 0, _4G);
123 RTPrintf("Unlock: rc=%Rrc\n", rc);
124 RTPrintf("Write test will lock in three seconds\n");
125 for (int i = 0; i < 3; i++)
126 {
127 RTThreadSleep(1000);
128 RTPrintf(".");
129 }
130 RTPrintf("\n");
131 }
132
133 /* lock: write, non-blocking. */
134 rc = RTFileLock(File, RTFILE_LOCK_WRITE | RTFILE_LOCK_IMMEDIATELY, 0, _4G);
135 RTPrintf("Lock: write, non-blocking, rc=%Rrc\n", rc);
136 fl = RT_SUCCESS(rc);
137
138 /* grow file test */
139 rc = RTFileSetSize(File, fRun ? 2048 : 20480);
140 RTPrintf("File size: rc=%Rrc\n", rc);
141
142 /* read test. */
143 rc = RTFileRead(File, &buf, sizeof(buf), NULL);
144 RTPrintf("Read: rc=%Rrc\n", rc);
145
146 /* write test. */
147 rc = RTFileWrite(File, achTest3, strlen(achTest3), NULL);
148 RTPrintf("Write: rc=%Rrc\n", rc);
149 RTPrintf("Continuing to next test in three seconds\n");
150 for (int i = 0; i < 3; i++)
151 {
152 RTThreadSleep(1000);
153 RTPrintf(".");
154 }
155 RTPrintf("\n");
156
157 RTFileClose(File);
158 RTFileDelete("tstLock.tst");
159
160
161 RTPrintf("tstFileLock: I've no recollection of this testcase succeeding or not, sorry.\n");
162 return 0;
163}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use