mirror of
https://github.com/ultrajson/ultrajson.git
synced 2024-11-23 08:22:12 +01:00
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
#include "double-conversion.h"
|
|
|
|
namespace double_conversion
|
|
{
|
|
extern "C"
|
|
{
|
|
void dconv_d2s_init(void **d2s,
|
|
int flags,
|
|
const char* infinity_symbol,
|
|
const char* nan_symbol,
|
|
char exponent_character,
|
|
int decimal_in_shortest_low,
|
|
int decimal_in_shortest_high,
|
|
int max_leading_padding_zeroes_in_precision_mode,
|
|
int max_trailing_padding_zeroes_in_precision_mode)
|
|
{
|
|
*d2s = new DoubleToStringConverter(flags, infinity_symbol, nan_symbol,
|
|
exponent_character, decimal_in_shortest_low,
|
|
decimal_in_shortest_high, max_leading_padding_zeroes_in_precision_mode,
|
|
max_trailing_padding_zeroes_in_precision_mode);
|
|
}
|
|
|
|
int dconv_d2s(void *d2s, double value, char* buf, int buflen, int* strlength)
|
|
{
|
|
StringBuilder sb(buf, buflen);
|
|
int success = static_cast<int>(static_cast<DoubleToStringConverter*>(d2s)->ToShortest(value, &sb));
|
|
*strlength = success ? sb.position() : -1;
|
|
return success;
|
|
}
|
|
|
|
void dconv_d2s_free(void **d2s)
|
|
{
|
|
delete static_cast<DoubleToStringConverter*>(*d2s);
|
|
*d2s = NULL;
|
|
}
|
|
|
|
void dconv_s2d_init(void **s2d, int flags, double empty_string_value,
|
|
double junk_string_value, const char* infinity_symbol,
|
|
const char* nan_symbol)
|
|
{
|
|
*s2d = new StringToDoubleConverter(flags, empty_string_value,
|
|
junk_string_value, infinity_symbol, nan_symbol);
|
|
}
|
|
|
|
double dconv_s2d(void *s2d, const char* buffer, int length, int* processed_characters_count)
|
|
{
|
|
return static_cast<StringToDoubleConverter*>(s2d)->StringToDouble(buffer, length, processed_characters_count);
|
|
}
|
|
|
|
void dconv_s2d_free(void **s2d)
|
|
{
|
|
delete static_cast<StringToDoubleConverter*>(*s2d);
|
|
*s2d = NULL;
|
|
}
|
|
}
|
|
}
|