[llvm] r186511 - Split openFileForRead into Windows and Unix versions.
Aaron Ballman
aaron at aaronballman.com
Wed Jul 17 08:08:58 PDT 2013
On Wed, Jul 17, 2013 at 10:58 AM, Rafael Espindola
<rafael.espindola at gmail.com> wrote:
> Author: rafael
> Date: Wed Jul 17 09:58:25 2013
> New Revision: 186511
>
> URL: http://llvm.org/viewvc/llvm-project?rev=186511&view=rev
> Log:
> Split openFileForRead into Windows and Unix versions.
>
> This has some advantages:
>
> * Lets us use native, utf16 windows functions.
> * Easy to produce good errors on windows about trying to use a
> directory when we want a file.
> * Simplifies the unix version a bit.
>
> Modified:
> llvm/trunk/lib/Support/Path.cpp
> llvm/trunk/lib/Support/Unix/Path.inc
> llvm/trunk/lib/Support/Windows/Path.inc
> llvm/trunk/test/Object/directory.ll
>
> Modified: llvm/trunk/lib/Support/Path.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Path.cpp?rev=186511&r1=186510&r2=186511&view=diff
> ==============================================================================
> --- llvm/trunk/lib/Support/Path.cpp (original)
> +++ llvm/trunk/lib/Support/Path.cpp Wed Jul 17 09:58:25 2013
> @@ -722,21 +722,6 @@ error_code openFileForWrite(const Twine
> return error_code::success();
> }
>
> -error_code openFileForRead(const Twine &Name, int &ResultFD) {
> - int OpenFlags = O_RDONLY;
> -#ifdef O_BINARY
> - OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
> -#endif
> -
> - SmallString<128> Storage;
> - StringRef P = Name.toNullTerminatedStringRef(Storage);
> - while ((ResultFD = open(P.begin(), OpenFlags)) < 0) {
> - if (errno != EINTR)
> - return error_code(errno, system_category());
> - }
> - return error_code::success();
> -}
> -
> error_code make_absolute(SmallVectorImpl<char> &path) {
> StringRef p(path.data(), path.size());
>
>
> Modified: llvm/trunk/lib/Support/Unix/Path.inc
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Unix/Path.inc?rev=186511&r1=186510&r2=186511&view=diff
> ==============================================================================
> --- llvm/trunk/lib/Support/Unix/Path.inc (original)
> +++ llvm/trunk/lib/Support/Unix/Path.inc Wed Jul 17 09:58:25 2013
> @@ -815,6 +815,15 @@ error_code unmap_file_pages(void *base,
> return error_code::success();
> }
>
> +error_code openFileForRead(const Twine &Name, int &ResultFD) {
> + SmallString<128> Storage;
> + StringRef P = Name.toNullTerminatedStringRef(Storage);
> + while ((ResultFD = open(P.begin(), O_RDONLY)) < 0) {
> + if (errno != EINTR)
> + return error_code(errno, system_category());
> + }
> + return error_code::success();
> +}
>
> } // end namespace fs
> } // end namespace sys
>
> Modified: llvm/trunk/lib/Support/Windows/Path.inc
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Path.inc?rev=186511&r1=186510&r2=186511&view=diff
> ==============================================================================
> --- llvm/trunk/lib/Support/Windows/Path.inc (original)
> +++ llvm/trunk/lib/Support/Windows/Path.inc Wed Jul 17 09:58:25 2013
> @@ -1041,7 +1041,38 @@ error_code unmap_file_pages(void *base,
> return windows_error::invalid_function;
> }
>
> +error_code openFileForRead(const Twine &Name, int &ResultFD) {
> + SmallString<128> PathStorage;
> + SmallVector<wchar_t, 128> PathUTF16;
>
> + if (error_code EC = UTF8ToUTF16(Name.toStringRef(PathStorage),
> + PathUTF16))
> + return EC;
> +
> + HANDLE H = ::CreateFileW(PathUTF16.begin(), GENERIC_READ,
> + FILE_SHARE_READ, NULL,
> + OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
> + if (H == INVALID_HANDLE_VALUE) {
> + error_code EC = windows_error(::GetLastError());
> + // Provide a better error massage when trying to open directories.
Typo (message instead of massage)
> + // This only runs if we failed to open the file, so there is probably
> + // no performances issues.
> + if (EC != windows_error::access_denied)
> + return EC;
> + if (is_directory(Name))
> + return error_code(errc::is_a_directory, posix_category());
> + return EC;
> + }
> +
> + int FD = ::_open_osfhandle(intptr_t(H), 0);
> + if (FD == -1) {
> + ::CloseHandle(H);
> + return windows_error::invalid_handle;
> + }
> +
> + ResultFD = FD;
> + return error_code::success();
> +}
>
> } // end namespace fs
> } // end namespace sys
>
> Modified: llvm/trunk/test/Object/directory.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Object/directory.ll?rev=186511&r1=186510&r2=186511&view=diff
> ==============================================================================
> --- llvm/trunk/test/Object/directory.ll (original)
> +++ llvm/trunk/test/Object/directory.ll Wed Jul 17 09:58:25 2013
> @@ -3,8 +3,7 @@
> ;CHECK: .: Is a directory
>
> ; Opening a directory works on cygwin and freebsd.
> -; On windows we just get a "Permission denied."
> -;XFAIL: freebsd, win32, mingw32, cygwin
> +;XFAIL: freebsd, cygwin
>
> ;RUN: rm -f %T/test.a
> ;RUN: touch %T/a-very-long-file-name
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list