1 /* ftruncate emulations for native Windows.
2 Copyright (C) 1992-2018 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, see <https://www.gnu.org/licenses/>. */
23 /* A native Windows platform. */
27 # if _GL_WINDOWS_64_BIT_OFF_T
29 /* Large File Support: off_t is 64-bit, but chsize() takes only a 32-bit
30 argument. So, define a 64-bit safe SetFileSize function ourselves. */
32 /* Ensure that <windows.h> declares GetFileSizeEx. */
34 # define _WIN32_WINNT _WIN32_WINNT_WIN2K
36 /* Get declarations of the native Windows API functions. */
37 # define WIN32_LEAN_AND_MEAN
40 /* Get _get_osfhandle. */
41 # if GNULIB_MSVC_NOTHROW
42 # include "msvc-nothrow.h"
48 SetFileSize (HANDLE h
, LONGLONG size
)
50 LARGE_INTEGER old_size
;
52 if (!GetFileSizeEx (h
, &old_size
))
55 if (size
!= old_size
.QuadPart
)
57 /* Duplicate the handle, so we are free to modify its file position. */
58 HANDLE curr_process
= GetCurrentProcess ();
61 if (!DuplicateHandle (curr_process
, /* SourceProcessHandle */
63 curr_process
, /* TargetProcessHandle */
64 (PHANDLE
) &tmph
, /* TargetHandle */
65 (DWORD
) 0, /* DesiredAccess */
66 FALSE
, /* InheritHandle */
67 DUPLICATE_SAME_ACCESS
)) /* Options */
70 if (size
< old_size
.QuadPart
)
72 /* Reduce the size. */
73 LONG size_hi
= (LONG
) (size
>> 32);
74 if (SetFilePointer (tmph
, (LONG
) size
, &size_hi
, FILE_BEGIN
)
75 == INVALID_SET_FILE_POINTER
76 && GetLastError() != NO_ERROR
)
81 if (!SetEndOfFile (tmph
))
89 /* Increase the size by adding zero bytes at the end. */
90 static char zero_bytes
[1024];
92 LONG pos_lo
= SetFilePointer (tmph
, (LONG
) 0, &pos_hi
, FILE_END
);
94 if (pos_lo
== INVALID_SET_FILE_POINTER
95 && GetLastError() != NO_ERROR
)
100 pos
= ((LONGLONG
) pos_hi
<< 32) | (ULONGLONG
) (ULONG
) pos_lo
;
104 LONGLONG count
= size
- pos
;
105 if (count
> sizeof (zero_bytes
))
106 count
= sizeof (zero_bytes
);
107 if (!WriteFile (tmph
, zero_bytes
, (DWORD
) count
, &written
, NULL
)
113 pos
+= (ULONGLONG
) (ULONG
) written
;
116 /* Close the handle. */
123 ftruncate (int fd
, off_t length
)
125 HANDLE handle
= (HANDLE
) _get_osfhandle (fd
);
127 if (handle
== INVALID_HANDLE_VALUE
)
137 if (!SetFileSize (handle
, length
))
139 switch (GetLastError ())
141 case ERROR_ACCESS_DENIED
:
144 case ERROR_HANDLE_DISK_FULL
:
145 case ERROR_DISK_FULL
:
146 case ERROR_DISK_TOO_FRAGMENTED
:
162 # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
163 # include "msvc-inval.h"
165 chsize_nothrow (int fd
, long length
)
171 result
= chsize (fd
, length
);
183 # define chsize_nothrow chsize
187 ftruncate (int fd
, off_t length
)
189 return chsize_nothrow (fd
, length
);