f6a1518f3f
X-SVN-Rev: 8673
300 lines
8.8 KiB
C
300 lines
8.8 KiB
C
/*
|
|
**********************************************************************
|
|
* Copyright (C) 2000-2001, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
**********************************************************************
|
|
* ucnv_cb.c:
|
|
* External APIs for the ICU's codeset conversion library
|
|
* Helena Shih
|
|
*
|
|
* Modification History:
|
|
*
|
|
* Date Name Description
|
|
* 7/28/2000 srl Implementation
|
|
*/
|
|
|
|
/**
|
|
* @name Character Conversion C API
|
|
*
|
|
*/
|
|
|
|
#include "unicode/utypes.h"
|
|
#include "unicode/ucnv_cb.h"
|
|
#include "ucnv_bld.h"
|
|
#include "ucnv_cnv.h"
|
|
#include "cmemory.h"
|
|
|
|
/* need to update the offsets when the target moves. */
|
|
/* Note: Recursion may occur in the cb functions, be sure to update the offsets correctly
|
|
if you don't use ucnv_cbXXX functions. Make sure you don't use the same callback within
|
|
the same call stack if the complexity arises. */
|
|
U_CAPI void U_EXPORT2
|
|
ucnv_cbFromUWriteBytes (UConverterFromUnicodeArgs *args,
|
|
const char* source,
|
|
int32_t length,
|
|
int32_t offsetIndex,
|
|
UErrorCode * err)
|
|
{
|
|
int32_t togo;
|
|
int8_t toerr;
|
|
int32_t i;
|
|
|
|
if((args->targetLimit - args->target) >= length) /* If the buffer fits.. */
|
|
{
|
|
uprv_memcpy(args->target, source, length);
|
|
args->target += length;
|
|
if(args->offsets) /* set all the offsets to the same # */
|
|
{
|
|
for(i=0;i<length;i++)
|
|
{
|
|
*(args->offsets++) = offsetIndex;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
togo = (int32_t)(args->targetLimit - args->target);
|
|
|
|
uprv_memcpy(args->target, source, togo);
|
|
args->target += togo;
|
|
|
|
if(args->offsets)
|
|
{
|
|
for(i=0;i<togo;i++)
|
|
{
|
|
*(args->offsets++) = offsetIndex;
|
|
}
|
|
}
|
|
|
|
/* Now, copy the remainder into the errbuff */
|
|
source += togo;
|
|
toerr = (int8_t)(length - togo);
|
|
|
|
uprv_memcpy(args->converter->charErrorBuffer +
|
|
args->converter->charErrorBufferLength,
|
|
source,
|
|
toerr * sizeof(source[0]));
|
|
args->converter->charErrorBufferLength += toerr;
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucnv_cbFromUWriteUChars(UConverterFromUnicodeArgs *args,
|
|
const UChar** source,
|
|
const UChar* sourceLimit,
|
|
int32_t offsetIndex,
|
|
UErrorCode * err)
|
|
{
|
|
/*
|
|
This is a fun one. Recursion can occur - we're basically going to
|
|
just retry shoving data through the same converter. Note, if you got
|
|
here through some kind of invalid sequence, you maybe should emit a
|
|
reset sequence of some kind and/or call ucnv_reset(). Since this
|
|
IS an actual conversion, take care that you've changed the callback
|
|
or the data, or you'll get an infinite loop.
|
|
|
|
Please set the err value to something reasonable before calling
|
|
into this.
|
|
*/
|
|
|
|
char *oldTarget;
|
|
|
|
if(U_FAILURE(*err))
|
|
{
|
|
return;
|
|
}
|
|
|
|
oldTarget = args->target;
|
|
|
|
ucnv_fromUnicode(args->converter,
|
|
&args->target,
|
|
args->targetLimit,
|
|
source,
|
|
sourceLimit,
|
|
NULL, /* no offsets */
|
|
FALSE, /* no flush */
|
|
err);
|
|
|
|
if(args->offsets)
|
|
{
|
|
while (args->target != oldTarget) /* if it moved at all.. */
|
|
{
|
|
*(args->offsets)++ = offsetIndex;
|
|
oldTarget++;
|
|
}
|
|
}
|
|
|
|
/*
|
|
Note, if you did something like used a Stop subcallback, things would get interesting.
|
|
In fact, here's where we want to return the partially consumed in-source!
|
|
*/
|
|
if(*err == U_BUFFER_OVERFLOW_ERROR)
|
|
/* && (*source < sourceLimit && args->target >= args->targetLimit)
|
|
-- S. Hrcek */
|
|
{
|
|
/* Overflowed the target. Now, we'll write into the charErrorBuffer.
|
|
It's a fixed size. If we overflow it... Hmm */
|
|
char *newTarget;
|
|
const char *newTargetLimit;
|
|
UErrorCode err2 = U_ZERO_ERROR;
|
|
|
|
int8_t errBuffLen;
|
|
|
|
errBuffLen = args->converter->charErrorBufferLength;
|
|
|
|
/* start the new target at the first free slot in the errbuff.. */
|
|
newTarget = (char *)(args->converter->charErrorBuffer + errBuffLen);
|
|
|
|
newTargetLimit = (char *)(args->converter->charErrorBuffer +
|
|
sizeof(args->converter->charErrorBuffer));
|
|
|
|
if(newTarget >= newTargetLimit)
|
|
{
|
|
*err = U_INTERNAL_PROGRAM_ERROR;
|
|
return;
|
|
}
|
|
|
|
/* We're going to tell the converter that the errbuff len is empty.
|
|
This prevents the existing errbuff from being 'flushed' out onto
|
|
itself. If the errbuff is needed by the converter this time,
|
|
we're hosed - we're out of space! */
|
|
|
|
args->converter->charErrorBufferLength = 0;
|
|
|
|
ucnv_fromUnicode(args->converter,
|
|
&newTarget,
|
|
newTargetLimit,
|
|
source,
|
|
sourceLimit,
|
|
NULL,
|
|
FALSE,
|
|
&err2);
|
|
|
|
/* We can go ahead and overwrite the length here. We know just how
|
|
to recalculate it. */
|
|
|
|
args->converter->charErrorBufferLength = (int8_t)(
|
|
newTarget - (char*)args->converter->charErrorBuffer);
|
|
|
|
if((newTarget >= newTargetLimit) || (err2 == U_BUFFER_OVERFLOW_ERROR))
|
|
{
|
|
/* now we're REALLY in trouble.
|
|
Internal program error - callback shouldn't have written this much
|
|
data!
|
|
*/
|
|
*err = U_INTERNAL_PROGRAM_ERROR;
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
/* sub errs could be invalid/truncated/illegal chars or w/e.
|
|
These might want to be passed on up.. But the problem is, we already
|
|
need to pass U_BUFFER_OVERFLOW_ERROR. That has to override these
|
|
other errs.. */
|
|
|
|
/*
|
|
if(U_FAILURE(err2))
|
|
??
|
|
*/
|
|
}
|
|
}
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucnv_cbFromUWriteSub (UConverterFromUnicodeArgs *args,
|
|
int32_t offsetIndex,
|
|
UErrorCode * err)
|
|
{
|
|
if(U_FAILURE(*err)) {
|
|
return;
|
|
}
|
|
|
|
if(args->converter->sharedData->impl->writeSub!=NULL) {
|
|
args->converter->sharedData->impl->writeSub(args, offsetIndex, err);
|
|
} else if(args->converter->subChar1!=0 && args->converter->invalidUCharBuffer[0]<=0xff) {
|
|
ucnv_cbFromUWriteBytes(args,
|
|
(const char *)&args->converter->subChar1, 1,
|
|
offsetIndex, err);
|
|
} else {
|
|
ucnv_cbFromUWriteBytes(args,
|
|
(const char *)args->converter->subChar, args->converter->subCharLen,
|
|
offsetIndex, err);
|
|
}
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucnv_cbToUWriteUChars (UConverterToUnicodeArgs *args,
|
|
const UChar* source,
|
|
int32_t length,
|
|
int32_t offsetIndex,
|
|
UErrorCode * err)
|
|
{
|
|
int32_t togo;
|
|
int8_t toerr;
|
|
int32_t i;
|
|
|
|
if(U_FAILURE(*err))
|
|
{
|
|
return;
|
|
}
|
|
|
|
|
|
if((args->targetLimit - args->target) >= length) /* If the buffer fits.. */
|
|
{
|
|
uprv_memcpy(args->target, source, length * sizeof(args->target[0]) );
|
|
args->target += length;
|
|
if(args->offsets) /* set all the offsets to the same # */
|
|
{
|
|
for(i=0;i<length;i++)
|
|
{
|
|
*(args->offsets++) = offsetIndex;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
togo = (int32_t)(args->targetLimit - args->target);
|
|
|
|
uprv_memcpy(args->target, source, togo * sizeof(args->target[0]) );
|
|
args->target += togo;
|
|
|
|
if(args->offsets)
|
|
{
|
|
for(i=0;i<togo;i++)
|
|
{
|
|
*(args->offsets++) = offsetIndex;
|
|
}
|
|
}
|
|
|
|
/* Now, copy the remainder into the errbuff */
|
|
source += togo;
|
|
toerr = (int8_t)(length - togo);
|
|
|
|
uprv_memcpy(args->converter->UCharErrorBuffer +
|
|
args->converter->UCharErrorBufferLength,
|
|
source,
|
|
toerr * sizeof(source[0]));
|
|
args->converter->UCharErrorBufferLength += toerr;
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
}
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucnv_cbToUWriteSub (UConverterToUnicodeArgs *args,
|
|
int32_t offsetIndex,
|
|
UErrorCode * err)
|
|
{
|
|
static const UChar kSubstituteChar1 = 0x1A, kSubstituteChar = 0xFFFD;
|
|
|
|
/* could optimize this case, just one uchar */
|
|
if(args->converter->invalidCharLength == 1 && args->converter->subChar1 != 0) {
|
|
ucnv_cbToUWriteUChars(args, &kSubstituteChar1, 1, offsetIndex, err);
|
|
} else {
|
|
ucnv_cbToUWriteUChars(args, &kSubstituteChar, 1, offsetIndex, err);
|
|
}
|
|
}
|