VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/nsprpub/pr/tests/bigfile2.c@ 32258

Last change on this file since 32258 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is the Netscape Portable Runtime (NSPR).
16 *
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38#include "nspr.h"
39
40#include <stdio.h>
41#include <stdlib.h>
42#include <string.h>
43#ifdef _WIN32
44#include <windows.h>
45#endif
46
47#define TEST_FILE_NAME "bigfile2.txt"
48
49#define MESSAGE "Hello world!"
50#define MESSAGE_SIZE 13
51
52int main(int argc, char **argv)
53{
54 PRFileDesc *fd;
55 PRInt64 offset, position;
56 PRInt32 nbytes;
57 char buf[MESSAGE_SIZE];
58#ifdef _WIN32
59 HANDLE hFile;
60 LARGE_INTEGER li;
61#endif /* _WIN32 */
62
63 LL_I2L(offset, 1);
64 LL_SHL(offset, offset, 32);
65
66 fd = PR_Open(TEST_FILE_NAME,
67 PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE, 0666);
68 if (fd == NULL) {
69 fprintf(stderr, "PR_Open failed\n");
70 exit(1);
71 }
72 position = PR_Seek64(fd, offset, PR_SEEK_SET);
73 if (!LL_GE_ZERO(position)) {
74 fprintf(stderr, "PR_Seek64 failed\n");
75 exit(1);
76 }
77 PR_ASSERT(LL_EQ(position, offset));
78 strcpy(buf, MESSAGE);
79 nbytes = PR_Write(fd, buf, sizeof(buf));
80 if (nbytes != sizeof(buf)) {
81 fprintf(stderr, "PR_Write failed\n");
82 exit(1);
83 }
84 if (PR_Close(fd) == PR_FAILURE) {
85 fprintf(stderr, "PR_Close failed\n");
86 exit(1);
87 }
88
89 memset(buf, 0, sizeof(buf));
90
91#ifdef _WIN32
92 hFile = CreateFile(TEST_FILE_NAME, GENERIC_READ, 0, NULL,
93 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
94 if (hFile == INVALID_HANDLE_VALUE) {
95 fprintf(stderr, "CreateFile failed\n");
96 exit(1);
97 }
98 li.QuadPart = offset;
99 li.LowPart = SetFilePointer(hFile, li.LowPart, &li.HighPart, FILE_BEGIN);
100 if (li.LowPart == 0xFFFFFFFF && GetLastError() != NO_ERROR) {
101 fprintf(stderr, "SetFilePointer failed\n");
102 exit(1);
103 }
104 PR_ASSERT(li.QuadPart == offset);
105 if (ReadFile(hFile, buf, sizeof(buf), &nbytes, NULL) == 0) {
106 fprintf(stderr, "ReadFile failed\n");
107 exit(1);
108 }
109 PR_ASSERT(nbytes == sizeof(buf));
110 if (strcmp(buf, MESSAGE)) {
111 fprintf(stderr, "corrupt data:$%s$\n", buf);
112 exit(1);
113 }
114 if (CloseHandle(hFile) == 0) {
115 fprintf(stderr, "CloseHandle failed\n");
116 exit(1);
117 }
118#endif /* _WIN32 */
119
120 if (PR_Delete(TEST_FILE_NAME) == PR_FAILURE) {
121 fprintf(stderr, "PR_Delete failed\n");
122 exit(1);
123 }
124
125 printf("PASS\n");
126 return 0;
127}
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