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 | #ifdef _WIN32
|
---|
43 | #include <windows.h>
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | #define TEST_FILE_NAME "bigfile3.txt"
|
---|
47 |
|
---|
48 | #define MESSAGE "Hello world!"
|
---|
49 | #define MESSAGE_SIZE 13
|
---|
50 |
|
---|
51 | int main(int argc, char **argv)
|
---|
52 | {
|
---|
53 | PRFileDesc *fd;
|
---|
54 | PRInt64 offset, position;
|
---|
55 | PRInt32 nbytes;
|
---|
56 | char buf[MESSAGE_SIZE];
|
---|
57 | #ifdef _WIN32
|
---|
58 | HANDLE hFile;
|
---|
59 | LARGE_INTEGER li;
|
---|
60 | #endif /* _WIN32 */
|
---|
61 |
|
---|
62 | LL_I2L(offset, 1);
|
---|
63 | LL_SHL(offset, offset, 32);
|
---|
64 |
|
---|
65 | #ifdef _WIN32
|
---|
66 | hFile = CreateFile(TEST_FILE_NAME, GENERIC_WRITE, 0, NULL,
|
---|
67 | CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
---|
68 | if (hFile == INVALID_HANDLE_VALUE) {
|
---|
69 | fprintf(stderr, "CreateFile failed\n");
|
---|
70 | exit(1);
|
---|
71 | }
|
---|
72 | li.QuadPart = offset;
|
---|
73 | li.LowPart = SetFilePointer(hFile, li.LowPart, &li.HighPart, FILE_BEGIN);
|
---|
74 | if (li.LowPart == 0xFFFFFFFF && GetLastError() != NO_ERROR) {
|
---|
75 | fprintf(stderr, "SetFilePointer failed\n");
|
---|
76 | exit(1);
|
---|
77 | }
|
---|
78 | PR_ASSERT(li.QuadPart == offset);
|
---|
79 | strcpy(buf, MESSAGE);
|
---|
80 | if (WriteFile(hFile, buf, sizeof(buf), &nbytes, NULL) == 0) {
|
---|
81 | fprintf(stderr, "WriteFile failed\n");
|
---|
82 | exit(1);
|
---|
83 | }
|
---|
84 | PR_ASSERT(nbytes == sizeof(buf));
|
---|
85 | if (CloseHandle(hFile) == 0) {
|
---|
86 | fprintf(stderr, "CloseHandle failed\n");
|
---|
87 | exit(1);
|
---|
88 | }
|
---|
89 | #endif /* _WIN32 */
|
---|
90 |
|
---|
91 | memset(buf, 0, sizeof(buf));
|
---|
92 |
|
---|
93 | fd = PR_Open(TEST_FILE_NAME, PR_RDONLY, 0666);
|
---|
94 | if (fd == NULL) {
|
---|
95 | fprintf(stderr, "PR_Open failed\n");
|
---|
96 | exit(1);
|
---|
97 | }
|
---|
98 | position = PR_Seek64(fd, offset, PR_SEEK_SET);
|
---|
99 | if (!LL_GE_ZERO(position)) {
|
---|
100 | fprintf(stderr, "PR_Seek64 failed\n");
|
---|
101 | exit(1);
|
---|
102 | }
|
---|
103 | PR_ASSERT(LL_EQ(position, offset));
|
---|
104 | nbytes = PR_Read(fd, buf, sizeof(buf));
|
---|
105 | if (nbytes != sizeof(buf)) {
|
---|
106 | fprintf(stderr, "PR_Read failed\n");
|
---|
107 | exit(1);
|
---|
108 | }
|
---|
109 | if (strcmp(buf, MESSAGE)) {
|
---|
110 | fprintf(stderr, "corrupt data:$%s$\n", buf);
|
---|
111 | exit(1);
|
---|
112 | }
|
---|
113 | if (PR_Close(fd) == PR_FAILURE) {
|
---|
114 | fprintf(stderr, "PR_Close failed\n");
|
---|
115 | exit(1);
|
---|
116 | }
|
---|
117 |
|
---|
118 | if (PR_Delete(TEST_FILE_NAME) == PR_FAILURE) {
|
---|
119 | fprintf(stderr, "PR_Delete failed\n");
|
---|
120 | exit(1);
|
---|
121 | }
|
---|
122 |
|
---|
123 | printf("PASS\n");
|
---|
124 | return 0;
|
---|
125 | }
|
---|