Glen: This patch gets the string conversion functions working on Windows. It also refactors repetitive code in string.cpp do greatly reduce the repetitiveness, increasing maintainability.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@182026 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6287c65a03
commit
9e98b34a8c
@ -15,26 +15,23 @@
|
||||
Functions and constants used in libc++ that are missing from the Windows C library.
|
||||
*/
|
||||
|
||||
#include <__config>
|
||||
#include <wchar.h> // mbstate_t
|
||||
#include <stdio.h> // _snwprintf
|
||||
#include <cwchar> // mbstate_t
|
||||
#include <cstdarg> // va_ macros
|
||||
#define swprintf _snwprintf
|
||||
#define vswprintf _vsnwprintf
|
||||
#define vfscnaf fscanf
|
||||
|
||||
int vasprintf( char **sptr, const char *__restrict fmt , va_list ap );
|
||||
extern "C" {
|
||||
|
||||
int vasprintf( char **sptr, const char *__restrict fmt, va_list ap );
|
||||
int asprintf( char **sptr, const char *__restrict fmt, ...);
|
||||
//int vfscanf( FILE *__restrict stream, const char *__restrict format,
|
||||
// va_list arg);
|
||||
|
||||
size_t mbsnrtowcs( wchar_t *__restrict dst, const char **__restrict src,
|
||||
size_t nmc, size_t len, mbstate_t *__restrict ps );
|
||||
size_t wcsnrtombs( char *__restrict dst, const wchar_t **__restrict src,
|
||||
size_t nwc, size_t len, mbstate_t *__restrict ps );
|
||||
}
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define snprintf _snprintf
|
||||
|
||||
#include <xlocinfo.h>
|
||||
#define atoll _atoi64
|
||||
#define strtoll _strtoi64
|
||||
@ -85,9 +82,11 @@ _LIBCPP_ALWAYS_INLINE int __builtin_ctz( unsigned int x )
|
||||
_BitScanReverse(&r, x);
|
||||
return static_cast<int>(r);
|
||||
}
|
||||
|
||||
// sizeof(long) == sizeof(int) on Windows
|
||||
_LIBCPP_ALWAYS_INLINE int __builtin_ctzl( unsigned long x )
|
||||
{ return __builtin_ctz( static_cast<int>(x) ); }
|
||||
|
||||
_LIBCPP_ALWAYS_INLINE int __builtin_ctzll( unsigned long long x )
|
||||
{
|
||||
DWORD r = 0;
|
||||
|
853
src/string.cpp
853
src/string.cpp
File diff suppressed because it is too large
Load Diff
@ -9,8 +9,8 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "support/win32/locale_win32.h"
|
||||
|
||||
#include <stdarg.h> // va_start, va_end
|
||||
#include <cstdarg> // va_start, va_end
|
||||
#include <cwchar> // mbstate_t
|
||||
|
||||
// FIXME: base currently unused. Needs manual work to construct the new locale
|
||||
locale_t newlocale( int mask, const char * locale, locale_t /*base*/ )
|
||||
|
@ -8,38 +8,55 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include <support/win32/support.h>
|
||||
#include <stdarg.h> // va_start, va_end
|
||||
#include <stddef.h> // size_t
|
||||
#include <stdlib.h> // malloc
|
||||
#include <stdio.h> // vsprintf, vsnprintf
|
||||
#include <string.h> // strcpy, wcsncpy
|
||||
#include <cstdarg> // va_start, va_end
|
||||
#include <cstddef> // size_t
|
||||
#include <cstdlib> // malloc
|
||||
#include <cstdio> // vsprintf, vsnprintf
|
||||
#include <cstring> // strcpy, wcsncpy
|
||||
#include <cwchar> // mbstate_t
|
||||
#include <memory> // unique_ptr
|
||||
|
||||
int asprintf(char **sptr, const char *__restrict fmt, ...)
|
||||
namespace { // Private
|
||||
|
||||
struct free_deleter {
|
||||
inline void operator()(char* p) { free(p); }
|
||||
};
|
||||
}
|
||||
// Some of these functions aren't standard or if they conform, the name does not.
|
||||
|
||||
int asprintf(char **sptr, const char *__restrict format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
int result = vasprintf(sptr, fmt, ap);
|
||||
va_start(ap, format);
|
||||
int result;
|
||||
#ifndef _LIBCPP_NO_EXCEPTIONS
|
||||
try {
|
||||
#endif
|
||||
result = vasprintf(sptr, format, ap);
|
||||
#ifndef _LIBCPP_NO_EXCEPTIONS
|
||||
} catch( ... ) {
|
||||
va_end(ap);
|
||||
throw;
|
||||
}
|
||||
#endif
|
||||
va_end(ap);
|
||||
return result;
|
||||
}
|
||||
|
||||
// Like sprintf, but when return value >= 0 it returns a pointer to a malloc'd string in *sptr.
|
||||
// If return >= 0, use free to delete *sptr.
|
||||
int vasprintf( char **sptr, const char *__restrict fmt, va_list ap )
|
||||
int vasprintf( char **sptr, const char *__restrict format, va_list ap )
|
||||
{
|
||||
*sptr = NULL;
|
||||
int count = vsnprintf( NULL, 0, fmt, ap ); // Query the buffer size required.
|
||||
int count = _vsnprintf( NULL, 0, format, ap ); // Query the buffer size required.
|
||||
if( count >= 0 ) {
|
||||
char* p = static_cast<char*>(malloc(count+1)); // Allocate memory for it and the terminator.
|
||||
if ( p == NULL )
|
||||
std::unique_ptr<char, free_deleter> p( static_cast<char*>(malloc(count+1)) );
|
||||
if ( ! p )
|
||||
return -1;
|
||||
if ( vsnprintf( p, count+1, fmt, ap ) == count ) // We should have used exactly what was required.
|
||||
*sptr = p;
|
||||
else { // Otherwise something is wrong, likely a bug in vsnprintf. If so free the memory and report the error.
|
||||
free(p);
|
||||
return -1;
|
||||
}
|
||||
if ( vsnprintf( p.get(), count+1, format, ap ) == count ) // We should have used exactly what was required.
|
||||
*sptr = p.release();
|
||||
else // Otherwise something is wrong, likely a bug in vsnprintf. If so free the memory and report the error.
|
||||
return -1; // Pointer will get automaticlaly deleted.
|
||||
}
|
||||
|
||||
return count;
|
||||
@ -120,7 +137,7 @@ size_t wcsnrtombs( char *__restrict dst, const wchar_t **__restrict src,
|
||||
if ( dst )
|
||||
result = wcrtomb_s( &char_size, dst + dest_converted, dest_remaining, c, ps);
|
||||
else
|
||||
result = wcrtomb_s( &char_size, NULL, 0, c, ps);
|
||||
result = wcrtomb_s( &char_size, NULL, 0, c, ps);
|
||||
// If result is zero there is no error and char_size contains the size of the multi-byte-sequence converted.
|
||||
// Otherwise result indicates an errno type error.
|
||||
if ( result == no_error ) {
|
||||
|
Loading…
Reference in New Issue
Block a user