-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Centralise code to map between UTF-8 and UTF-16 on Windows. #62605
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a31b1c5
Centralise code to map between UTF-8 and UTF-16 on Windows.
al45tair ca771c4
Change to returning `nullptr` rather than triggering a fatal error.
al45tair fb1211e
Rename the functions as they're exported as C APIs.
al45tair e73de53
Move _swift_win32_withDbgHelpLibrary into the new header.
al45tair a13d677
Make the UTF8-to-wide functions into SPI rather than internal.
al45tair File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
//===--- Win32.h - Win32 utility functions ----------------------*- C++ -*-===// | ||
// | ||
// This source file is part of the Swift.org open source project | ||
// | ||
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors | ||
// Licensed under Apache License v2.0 with Runtime Library Exception | ||
// | ||
// See https://swift.org/LICENSE.txt for license information | ||
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Utility functions that are specific to the Windows port. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef SWIFT_RUNTIME_WIN32_H | ||
#define SWIFT_RUNTIME_WIN32_H | ||
|
||
#ifdef _WIN32 | ||
|
||
#include "swift/shims/Visibility.h" | ||
|
||
#include <functional> | ||
#include <type_traits> | ||
|
||
// For HANDLE | ||
#define WIN32_LEAN_AND_MEAN | ||
#define NOMINMAX | ||
#include <windows.h> | ||
|
||
#include <wchar.h> | ||
|
||
/// Convert a wide string to UTF-8. | ||
/// | ||
/// @param str The string to convert. | ||
/// | ||
/// @returns The string, converted to UTF-8. The caller is responsible | ||
/// for freeing this string with @c free() when done with it. | ||
/// | ||
/// If @a str cannot be converted to UTF-8, @c nullptr is returned. | ||
SWIFT_RUNTIME_STDLIB_SPI | ||
char *_swift_win32_copyUTF8FromWide(const wchar_t *str); | ||
|
||
/// Convert a UTF-8 string to a wide string. | ||
/// | ||
/// @param str The string to convert. | ||
/// | ||
/// @returns The string, converted to UTF-16. The caller is responsible | ||
/// for freeing this string with @c free() when done with it. | ||
/// | ||
/// If @a str cannot be converted to UTF-16, @c nullptr is returned. | ||
SWIFT_RUNTIME_STDLIB_SPI | ||
wchar_t *_swift_win32_copyWideFromUTF8(const char *str); | ||
|
||
/// Configure the environment to allow calling into the Debug Help library. | ||
/// | ||
/// \param body A function to invoke. This function attempts to first initialize | ||
/// the Debug Help library. If it did so successfully, the handle used during | ||
/// initialization is passed to this function and should be used with | ||
/// subsequent calls to the Debug Help library. Do not close this handle. | ||
/// \param context A caller-supplied value to pass to \a body. | ||
/// | ||
/// On Windows, the Debug Help library (DbgHelp.lib) is not thread-safe. All | ||
/// calls into it from the Swift runtime and stdlib should route through this | ||
/// function. | ||
/// | ||
/// This function sets the Debug Help library's options by calling | ||
/// \c SymSetOptions() before \a body is invoked, and then resets them back to | ||
/// their old value before returning. \a body can also call \c SymSetOptions() | ||
/// if needed. | ||
SWIFT_RUNTIME_STDLIB_SPI | ||
void _swift_win32_withDbgHelpLibrary( | ||
void (* body)(HANDLE hProcess, void *context), void *context); | ||
|
||
/// Configure the environment to allow calling into the Debug Help library. | ||
/// | ||
/// \param body A function to invoke. This function attempts to first initialize | ||
/// the Debug Help library. If it did so successfully, the handle used during | ||
/// initialization is passed to this function and should be used with | ||
/// subsequent calls to the Debug Help library. Do not close this handle. | ||
/// | ||
/// On Windows, the Debug Help library (DbgHelp.lib) is not thread-safe. All | ||
/// calls into it from the Swift runtime and stdlib should route through this | ||
/// function. | ||
/// | ||
/// This function sets the Debug Help library's options by calling | ||
/// \c SymSetOptions() before \a body is invoked, and then resets them back to | ||
/// their old value before returning. \a body can also call \c SymSetOptions() | ||
/// if needed. | ||
static inline void _swift_win32_withDbgHelpLibrary( | ||
const std::function<void(HANDLE /*hProcess*/)> &body) { | ||
_swift_win32_withDbgHelpLibrary([](HANDLE hProcess, void *context) { | ||
auto bodyp = reinterpret_cast<std::function<void(HANDLE)> *>(context); | ||
(* bodyp)(hProcess); | ||
}, const_cast<void *>(reinterpret_cast<const void *>(&body))); | ||
} | ||
|
||
/// Configure the environment to allow calling into the Debug Help library. | ||
/// | ||
/// \param body A function to invoke. This function attempts to first initialize | ||
/// the Debug Help library. If it did so successfully, the handle used during | ||
/// initialization is passed to this function and should be used with | ||
/// subsequent calls to the Debug Help library. Do not close this handle. | ||
/// | ||
/// \returns Whatever is returned from \a body. | ||
/// | ||
/// On Windows, the Debug Help library (DbgHelp.lib) is not thread-safe. All | ||
/// calls into it from the Swift runtime and stdlib should route through this | ||
/// function. | ||
/// | ||
/// This function sets the Debug Help library's options by calling | ||
/// \c SymSetOptions() before \a body is invoked, and then resets them back to | ||
/// their old value before returning. \a body can also call \c SymSetOptions() | ||
/// if needed. | ||
template < | ||
typename F, | ||
typename R = typename std::result_of_t<F&(HANDLE /*hProcess*/)>, | ||
typename = typename std::enable_if_t<!std::is_same<void, R>::value> | ||
> | ||
static inline R _swift_win32_withDbgHelpLibrary(const F& body) { | ||
R result; | ||
|
||
_swift_win32_withDbgHelpLibrary([&body, &result] (HANDLE hProcess) { | ||
result = body(hProcess); | ||
}); | ||
|
||
return result; | ||
} | ||
|
||
#endif // defined(_WIN32) | ||
|
||
#endif // SWIFT_RUNTIME_WIN32_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.