summaryrefslogtreecommitdiffstats
path: root/private/os2/client/os2file.c
blob: c2a61ca215597acb14968f34a4d804743bef08ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*++

Copyright (c) 1989  Microsoft Corporation

Module Name:

    os2file.c

Abstract:

    This is a test OS/2 application to test the file system component of OS/2

Author:

    Therese Stowell (thereses) 24-Oct-1989

Environment:

    User Mode Only

Revision History:

--*/

#define OS2_API32
#define INCL_OS2V20_ERRORS
#define INCL_OS2V20_FILESYS
#define INCL_OS2V20_TASKING
#include <os2.h>

#define NEWMAXFH 25
#define SECONDNEWMAXFH 27

// create file
// query handle type
// set file size
// set file pointer
// write
// read
// open 21 handles
// test sharing, open directory, open for write code
// setmaxfh to 23
// open 3 more handles
// set verify
// query verify
// set fhstate
// query fhstate
// dup handle
// close 1 handle
// open 1 handle

int
main(
    int argc,
    char *argv[],
    char *envp[]
    )
{
    int i;
    APIRET rc;
    HFILE FileHandle;
    HFILE HandleArray[NEWMAXFH];
    ULONG ActionTaken;
    ULONG DiskNumber,
	  LogicalDrives;
    char DirectoryName[30];
    ULONG DirectoryNameLength=30;

    DbgPrint( "*** Entering OS/2 File System Test Application\n" );

    DbgPrint( "argc: %ld\n", argc );
    for (i=0; i<argc; i++) {
        DbgPrint( "argv[ %ld ]: %s\n", i, argv[ i ] );
	}

// create new file

    rc = DosOpen("a:\\newfile3",
		   &FileHandle,
		   &ActionTaken,
		   0L,
		   FILE_SYSTEM, // system attribute
		   FILE_CREATE_NEW_FILE,
		   OPEN_ACCESS_READWRITE | OPEN_SHARE_DENYNONE,
		   0L
		   );
    if (rc) {
	DbgPrint( "*** DosOpen returned an error code = %ld\n", rc );
    }
    else {
	DbgPrint( "*** DosOpen(a:\\newfile3) was successful\n");
	DbgPrint( "*** file handle is %ld\n",FileHandle);
	DbgPrint( "*** action taken is %ld\n",ActionTaken);
	rc = DosClose(FileHandle);
	if (rc) {
	    DbgPrint( "*** DosClose returned an error code = %ld\n", rc );
	}
    }
// open existing file

    rc = DosOpen("a:\\newfile3",
		   &FileHandle,
		   &ActionTaken,
		   0L,
		   FILE_SYSTEM, // system attribute
		   FILE_OPEN_EXISTING_FILE,
		   OPEN_ACCESS_READWRITE | OPEN_SHARE_DENYNONE,
		   0L
		   );
    if (rc) {
	DbgPrint( "*** DosOpen returned an error code = %ld\n", rc );
    }
    else {
	DbgPrint( "*** DosOpen(a:\\newfile3) was successful\n");
	DbgPrint( "*** file handle is %ld\n",FileHandle);
	DbgPrint( "*** action taken is %ld\n",ActionTaken);
    }

// close handle past end of table

    rc = DosClose((HFILE)21);
    if (rc) {
	DbgPrint( "*** DosClose returned an error code = %ld\n", rc );
    }

// close unopen handle

    rc = DosClose((HFILE)1);
    if (rc) {
	DbgPrint( "*** DosClose returned an error code = %ld\n", rc );
    }

// set new max file handles

//	pass bad value

    rc = DosSetMaxFH(10L);
    if (!rc) {
	DbgPrint( "*** DosSetMaxFH should have failed and did not\n");
    }

    rc = DosSetMaxFH(NEWMAXFH);
    if (rc) {
	DbgPrint( "*** DosSetMaxFH returned an error code = %ld\n", rc );
    }

    for (i=0; i<NEWMAXFH-1; i++) {
	rc = DosOpen("a:\\newfile3",
		       &(HandleArray[i]),
		       &ActionTaken,
		       0L,
		       FILE_SYSTEM, // system attribute
		       FILE_OPEN_EXISTING_FILE,
		       OPEN_ACCESS_READWRITE | OPEN_SHARE_DENYNONE,
		       0L
		       );
	if (rc) {
	    DbgPrint( "*** DosOpen returned an error code = %ld\n", rc );
	}
	else {
	    DbgPrint( "*** DosOpen returned handle %ld\n",HandleArray[i]);
	}
    }

// shouldn't be any handles left

    rc = DosOpen("a:\\newfile3",
		       &(HandleArray[i]),
		       &ActionTaken,
		       0L,
		       FILE_SYSTEM, // system attribute
		       FILE_OPEN_EXISTING_FILE,
		       OPEN_ACCESS_READWRITE | OPEN_SHARE_DENYNONE,
		       0L
		       );
    if (rc==ERROR_TOO_MANY_OPEN_FILES) {
	DbgPrint( "*** DosOpen returned correct error code\n");
    }
    else {
	DbgPrint( "*** DosOpen returned wrong error code = %ld\n", rc );
	DbgPrint( "***  it should have returned ERROR_TOO_MANY_OPEN_FILES\n");
    }

// close handle that should have been copied from original handle table

    rc = DosClose(FileHandle);
    if (rc) {
	DbgPrint( "*** DosClose returned an error code = %ld\n", rc );
    }

// close last handle in table

    rc = DosClose(HandleArray[NEWMAXFH-2]);
    if (rc) {
	DbgPrint( "*** DosClose returned an error code = %ld\n", rc );
    }

// set max fh again (2 more)

    rc = DosSetMaxFH(SECONDNEWMAXFH);
    if (rc) {
	DbgPrint( "*** DosSetMaxFH returned an error code = %ld\n", rc );
    }

// make sure this handle got copied

    rc = DosClose(HandleArray[0]);
    if (rc) {
	DbgPrint( "*** DosClose returned an error code = %ld\n", rc );
    }

    DbgPrint( "*** Exiting OS/2 Test Application\n" );
    return( 0 );
}