Sha256: f8884da4b7c53a3573f6e881d7cc63c110bb22cbe1b5659cf6209c11bdc1ca01

Contents?: true

Size: 1.5 KB

Versions: 182

Compression:

Stored size: 1.5 KB

Contents

#ifndef _PARSER_UNICODE_H_
#define _PARSER_UNICODE_H_

#include "ruby.h"

typedef unsigned long	UTF32;	/* at least 32 bits */
typedef unsigned short	UTF16;	/* at least 16 bits */
typedef unsigned char	UTF8;	/* typically 8 bits */

#define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD
#define UNI_MAX_BMP (UTF32)0x0000FFFF
#define UNI_MAX_UTF16 (UTF32)0x0010FFFF
#define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF
#define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF

#define UNI_SUR_HIGH_START  (UTF32)0xD800
#define UNI_SUR_HIGH_END    (UTF32)0xDBFF
#define UNI_SUR_LOW_START   (UTF32)0xDC00
#define UNI_SUR_LOW_END     (UTF32)0xDFFF

static const int halfShift  = 10; /* used for shifting by 10 bits */

static const UTF32 halfBase = 0x0010000UL;
static const UTF32 halfMask = 0x3FFUL;

typedef enum {
	conversionOK = 0, 	/* conversion successful */
	sourceExhausted,	/* partial character in source, but hit end */
	targetExhausted,	/* insuff. room in target for conversion */
	sourceIllegal		/* source sequence is illegal/malformed */
} ConversionResult;

typedef enum {
	strictConversion = 0,
	lenientConversion
} ConversionFlags;

char *JSON_convert_UTF16_to_UTF8 (
    VALUE buffer,
    char *source,
    char *sourceEnd,
		ConversionFlags flags);

#ifndef RARRAY_PTR
#define RARRAY_PTR(ARRAY) RARRAY(ARRAY)->ptr
#endif
#ifndef RARRAY_LEN
#define RARRAY_LEN(ARRAY) RARRAY(ARRAY)->len
#endif
#ifndef RSTRING_PTR
#define RSTRING_PTR(string) RSTRING(string)->ptr
#endif
#ifndef RSTRING_LEN
#define RSTRING_LEN(string) RSTRING(string)->len
#endif

#endif

Version data entries

182 entries across 161 versions & 20 rubygems

Version Path
3mix-castronaut-0.5.0.2 vendor/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.0 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.1 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.10 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.11 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.12 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.13 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.14 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.15 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.16 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.17 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.2 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.3 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.4 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.5 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.6 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.7 vendor/gems/json/ext/json/ext/parser/unicode.h
auser-poolparty-1.3.8 vendor/gems/json/ext/json/ext/parser/unicode.h
benschwarz-smoke-0.5.0 vendor/json-1.1.3/ext/json/ext/parser/unicode.h
benschwarz-smoke-0.5.1 vendor/json-1.1.3/ext/json/ext/parser/unicode.h