summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/filemapping_memmgt/LockFile/test6/helper.c
blob: 98112fc4a57b7dd596a32c9371b3f39260d1a15e (plain)
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*=============================================================
**
** Source: helper.c
**
** Purpose: A child process which will attempt to append to the end of 
** a locked file.
**
**
**============================================================*/

#include <palsuite.h>

#define FILENAME "testfile.txt"
#define BUF_SIZE 128

int __cdecl main(int argc, char *argv[])
{
    HANDLE TheFile;
    int result = 0;
    char DataBuffer[BUF_SIZE];
    DWORD BytesWritten;
    
    if(0 != (PAL_Initialize(argc, argv)))
    {
        return FAIL;
    }
    
    /* Open the same file that the parent has opened and locked */
    TheFile = CreateFile(FILENAME,     
                         GENERIC_READ|GENERIC_WRITE, 
                         FILE_SHARE_READ|FILE_SHARE_WRITE,
                         NULL,     
                         OPEN_EXISTING,                 
                         FILE_ATTRIBUTE_NORMAL, 
                         NULL);
    
    if (TheFile == INVALID_HANDLE_VALUE) 
    { 
        Trace("ERROR: Could not open file '%s' with CreateFile.  "
             "GetLastError() returns %d.",FILENAME,GetLastError()); 
        result = -1;
    }
      
    
    /* Move the FilePointer to the EOF */
    if(SetFilePointer(TheFile,0,NULL,FILE_END) == INVALID_SET_FILE_POINTER)
    {
        Trace("ERROR: Could not set the file pointer to the EOF "
             "using SetFilePointer.  It returned INVALID_SET_FILE_POINTER.");
        result = -1;
    }

    memset(DataBuffer, 'X', BUF_SIZE);

    /* Return the result of WriteFile -- we want to check in the parent that
       this was successful.  Note: WriteFile doesn't get run if something
       failed during the setup, in that case -1 is returned.
    */

    if(result != -1)
    {
        result = WriteFile(TheFile, DataBuffer, 3,&BytesWritten, NULL);   
    }
    
    PAL_TerminateEx(result);
    return result;
}