1999-08-16 21:50:52 +00:00
|
|
|
/*
|
2001-03-21 22:07:51 +00:00
|
|
|
******************************************************************************
|
2000-01-13 23:54:23 +00:00
|
|
|
*
|
2001-03-21 22:07:51 +00:00
|
|
|
* Copyright (C) 1998-2001, International Business Machines
|
2000-01-13 23:54:23 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
2001-03-21 22:07:51 +00:00
|
|
|
******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File ustdio.c
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 11/18/98 stephen Creation.
|
|
|
|
* 03/12/99 stephen Modified for new C API.
|
|
|
|
* 07/19/99 stephen Fixed read() and gets()
|
2001-03-21 22:07:51 +00:00
|
|
|
******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*/
|
|
|
|
|
2000-01-05 19:40:01 +00:00
|
|
|
#include "unicode/ustdio.h"
|
2001-01-03 00:18:57 +00:00
|
|
|
#include "unicode/putil.h"
|
2002-03-14 00:40:08 +00:00
|
|
|
#include "cmemory.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "ufile.h"
|
|
|
|
#include "ufmt_cmn.h"
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/ucnv.h"
|
|
|
|
#include "unicode/ustring.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define DELIM_CR 0x000D
|
|
|
|
#define DELIM_LF 0x000A
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
static const UChar DELIMITERS [] = { DELIM_CR, DELIM_LF, 0x0000 };
|
|
|
|
static const uint32_t DELIMITERS_LEN = 2;
|
|
|
|
#else
|
|
|
|
static const UChar DELIMITERS [] = { DELIM_LF, 0x0000 };
|
|
|
|
static const uint32_t DELIMITERS_LEN = 1;
|
|
|
|
#endif
|
|
|
|
|
2000-05-18 22:08:39 +00:00
|
|
|
#define IS_STRING_DELIMITER(s) (UBool)( (s) == DELIM_CR || \
|
2002-03-14 00:40:08 +00:00
|
|
|
(s) == DELIM_LF )
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
|
2002-03-13 16:11:04 +00:00
|
|
|
U_CAPI UTransliterator* U_EXPORT2
|
|
|
|
u_fsettransliterator(UFILE *file, UFileDirection direction,
|
2002-03-14 00:40:08 +00:00
|
|
|
UTransliterator *adopt, UErrorCode *status)
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
UTransliterator *old = NULL;
|
|
|
|
|
|
|
|
if(file==NULL || U_FAILURE(*status))
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
return adopt;
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
if(!file)
|
|
|
|
{
|
|
|
|
*status = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return adopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(direction & U_READ)
|
|
|
|
{
|
|
|
|
/** TODO: implement */
|
|
|
|
*status = U_UNSUPPORTED_ERROR;
|
|
|
|
return adopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(adopt == NULL) /* they are clearing it */
|
|
|
|
{
|
|
|
|
if(file->fTranslit != NULL)
|
|
|
|
{
|
|
|
|
/* TODO: Check side */
|
|
|
|
old = file->fTranslit->translit;
|
|
|
|
uprv_free(file->fTranslit->buffer);
|
|
|
|
file->fTranslit->buffer=NULL;
|
|
|
|
uprv_free(file->fTranslit);
|
|
|
|
file->fTranslit=NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(file->fTranslit == NULL)
|
|
|
|
{
|
|
|
|
file->fTranslit = (UFILETranslitBuffer*) uprv_malloc(sizeof(UFILETranslitBuffer));
|
|
|
|
if(!file->fTranslit)
|
|
|
|
{
|
|
|
|
*status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return adopt;
|
|
|
|
}
|
|
|
|
file->fTranslit->capacity = 0;
|
|
|
|
file->fTranslit->length = 0;
|
|
|
|
file->fTranslit->pos = 0;
|
|
|
|
file->fTranslit->buffer = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
old = file->fTranslit->translit;
|
|
|
|
ufile_flush_translit(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
file->fTranslit->translit = adopt;
|
|
|
|
}
|
2002-03-13 16:11:04 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
return old;
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-02 03:25:05 +00:00
|
|
|
static const UChar * u_file_translit(UFILE *f, const UChar *src, int32_t *count, UBool flush)
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
int32_t newlen;
|
|
|
|
int32_t junkCount = 0;
|
|
|
|
int32_t textLength;
|
|
|
|
int32_t textLimit;
|
|
|
|
UTransPosition pos;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
|
|
|
|
if(count == NULL)
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
count = &junkCount;
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
2002-03-14 00:40:08 +00:00
|
|
|
|
|
|
|
if ((!f)||(!f->fTranslit)||(!f->fTranslit->translit))
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
/* fast path */
|
|
|
|
return src;
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
2002-03-14 00:40:08 +00:00
|
|
|
|
|
|
|
/* First: slide over everything */
|
|
|
|
if(f->fTranslit->length > f->fTranslit->pos)
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
memmove(f->fTranslit->buffer, f->fTranslit->buffer + f->fTranslit->pos,
|
|
|
|
(f->fTranslit->length - f->fTranslit->pos)*sizeof(UChar));
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
2002-03-14 00:40:08 +00:00
|
|
|
f->fTranslit->length -= f->fTranslit->pos; /* always */
|
|
|
|
f->fTranslit->pos = 0;
|
|
|
|
|
|
|
|
/* Calculate new buffer size needed */
|
|
|
|
newlen = (*count + f->fTranslit->length) * 4;
|
|
|
|
|
|
|
|
if(newlen > f->fTranslit->capacity)
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
if(f->fTranslit->buffer == NULL)
|
|
|
|
{
|
|
|
|
f->fTranslit->buffer = (UChar*)uprv_malloc(newlen * sizeof(UChar));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
f->fTranslit->buffer = (UChar*)uprv_realloc(f->fTranslit->buffer, newlen * sizeof(UChar));
|
|
|
|
}
|
|
|
|
f->fTranslit->capacity = newlen;
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* Now, copy any data over */
|
|
|
|
u_strncpy(f->fTranslit->buffer + f->fTranslit->length,
|
|
|
|
src,
|
|
|
|
*count);
|
|
|
|
f->fTranslit->length += *count;
|
2002-03-13 16:11:04 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* Now, translit in place as much as we can */
|
|
|
|
if(flush == FALSE)
|
|
|
|
{
|
|
|
|
textLength = f->fTranslit->length;
|
|
|
|
pos.contextStart = 0;
|
|
|
|
pos.contextLimit = textLength;
|
|
|
|
pos.start = 0;
|
|
|
|
pos.limit = textLength;
|
|
|
|
|
|
|
|
utrans_transIncrementalUChars(f->fTranslit->translit,
|
|
|
|
f->fTranslit->buffer, /* because we shifted */
|
|
|
|
&textLength,
|
|
|
|
f->fTranslit->capacity,
|
|
|
|
&pos,
|
|
|
|
&status);
|
|
|
|
|
|
|
|
if(U_FAILURE(status))
|
|
|
|
{
|
|
|
|
fprintf(stderr, " Gack. Translit blew up with a %s\n", u_errorName(status));
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now: start/limit point to the transliterated text */
|
|
|
|
/* Transliterated is [buffer..pos.start) */
|
|
|
|
*count = pos.start;
|
|
|
|
f->fTranslit->pos = pos.start;
|
|
|
|
f->fTranslit->length = pos.limit;
|
|
|
|
|
|
|
|
return f->fTranslit->buffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
textLength = f->fTranslit->length;
|
|
|
|
textLimit = f->fTranslit->length;
|
|
|
|
|
|
|
|
utrans_transUChars(f->fTranslit->translit,
|
|
|
|
f->fTranslit->buffer,
|
|
|
|
&textLength,
|
|
|
|
f->fTranslit->capacity,
|
|
|
|
0,
|
|
|
|
&textLimit,
|
|
|
|
&status);
|
|
|
|
|
|
|
|
if(U_FAILURE(status))
|
|
|
|
{
|
|
|
|
fprintf(stderr, " Gack. Translit(flush) blew up with a %s\n", u_errorName(status));
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* out: converted len */
|
|
|
|
*count = textLimit;
|
|
|
|
|
|
|
|
/* Set pointers to 0 */
|
|
|
|
f->fTranslit->pos = 0;
|
|
|
|
f->fTranslit->length = 0;
|
|
|
|
|
|
|
|
return f->fTranslit->buffer;
|
|
|
|
}
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
void
|
2002-03-13 16:11:04 +00:00
|
|
|
ufile_flush_translit(UFILE *f)
|
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
if((!f)||(!f->fTranslit))
|
|
|
|
return;
|
2002-03-13 16:11:04 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
u_file_write_flush(NULL, 0, f, TRUE);
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
void
|
2002-03-13 16:11:04 +00:00
|
|
|
ufile_close_translit(UFILE *f)
|
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
if((!f)||(!f->fTranslit))
|
|
|
|
return;
|
2002-03-13 16:11:04 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
ufile_flush_translit(f);
|
2002-03-13 16:11:04 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
if(f->fTranslit->translit)
|
|
|
|
utrans_close(f->fTranslit->translit);
|
|
|
|
|
|
|
|
if(f->fTranslit->buffer)
|
|
|
|
{
|
|
|
|
uprv_free(f->fTranslit->buffer);
|
|
|
|
}
|
2002-03-13 16:11:04 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
uprv_free(f->fTranslit);
|
|
|
|
f->fTranslit = NULL;
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/* Input/output */
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
1999-08-16 21:50:52 +00:00
|
|
|
u_fputs(const UChar *s,
|
2002-03-14 00:40:08 +00:00
|
|
|
UFILE *f)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
int32_t count = u_file_write(s, u_strlen(s), f);
|
|
|
|
count += u_file_write(DELIMITERS, DELIMITERS_LEN, f);
|
|
|
|
return count;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
1999-08-16 21:50:52 +00:00
|
|
|
u_fputc(UChar uc,
|
2002-03-14 00:40:08 +00:00
|
|
|
UFILE *f)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
return u_file_write(&uc, 1, f) == 1 ? uc : EOF;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2002-03-13 16:11:04 +00:00
|
|
|
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
2002-03-14 00:40:08 +00:00
|
|
|
u_file_write_flush( const UChar *chars,
|
|
|
|
int32_t count,
|
|
|
|
UFILE *f,
|
|
|
|
UBool flush)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
/* Set up conversion parameters */
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
const UChar *mySource = chars;
|
|
|
|
const UChar *sourceAlias = chars;
|
|
|
|
const UChar *mySourceEnd = chars + count;
|
|
|
|
char *myTarget = f->fCharBuffer;
|
|
|
|
int32_t bufferSize = UFILE_CHARBUFFER_SIZE;
|
|
|
|
int32_t written = 0;
|
2002-03-26 05:33:56 +00:00
|
|
|
int32_t numConverted = 0;
|
2002-03-14 00:40:08 +00:00
|
|
|
|
|
|
|
if((f->fTranslit) && (f->fTranslit->translit))
|
|
|
|
{
|
|
|
|
/* Do the transliteration */
|
|
|
|
mySource = u_file_translit(f, chars, &count, flush);
|
|
|
|
sourceAlias = mySource;
|
|
|
|
mySourceEnd = mySource + count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform the conversion in a loop */
|
|
|
|
do {
|
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
sourceAlias = mySource;
|
|
|
|
if(f->fConverter != NULL) { /* We have a valid converter */
|
|
|
|
ucnv_fromUnicode(f->fConverter,
|
|
|
|
&myTarget,
|
|
|
|
f->fCharBuffer + bufferSize,
|
|
|
|
&mySource,
|
|
|
|
mySourceEnd,
|
|
|
|
NULL,
|
|
|
|
flush,
|
|
|
|
&status);
|
|
|
|
} else { /*weiv: do the invariant conversion */
|
|
|
|
u_UCharsToChars(mySource, myTarget, count);
|
|
|
|
myTarget += count;
|
|
|
|
}
|
2002-03-26 05:33:56 +00:00
|
|
|
numConverted = (myTarget - f->fCharBuffer);
|
2002-03-14 00:40:08 +00:00
|
|
|
|
2002-03-26 05:33:56 +00:00
|
|
|
if (numConverted > 0) {
|
|
|
|
/* write the converted bytes */
|
|
|
|
fwrite(f->fCharBuffer,
|
|
|
|
sizeof(char),
|
|
|
|
numConverted,
|
|
|
|
f->fFile);
|
2002-03-14 00:40:08 +00:00
|
|
|
|
2002-03-26 05:33:56 +00:00
|
|
|
written += numConverted;
|
|
|
|
}
|
2002-03-14 00:40:08 +00:00
|
|
|
myTarget = f->fCharBuffer;
|
|
|
|
}
|
|
|
|
while(status == U_BUFFER_OVERFLOW_ERROR);
|
|
|
|
|
|
|
|
/* return # of chars written */
|
|
|
|
return written;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2002-03-13 16:11:04 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
2002-03-14 00:40:08 +00:00
|
|
|
u_file_write( const UChar *chars,
|
|
|
|
int32_t count,
|
|
|
|
UFILE *f)
|
2002-03-13 16:11:04 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
return u_file_write_flush(chars,count,f,FALSE);
|
2002-03-13 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/* private function used for buffering input */
|
|
|
|
void
|
|
|
|
ufile_fill_uchar_buffer(UFILE *f)
|
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
UErrorCode status;
|
|
|
|
const char *mySource;
|
|
|
|
const char *mySourceEnd;
|
|
|
|
UChar *myTarget;
|
|
|
|
int32_t bufferSize;
|
|
|
|
int32_t maxCPBytes;
|
|
|
|
int32_t bytesRead;
|
|
|
|
int32_t availLength;
|
|
|
|
int32_t dataSize;
|
|
|
|
|
|
|
|
|
|
|
|
/* shift the buffer if it isn't empty */
|
|
|
|
dataSize = f->fUCLimit - f->fUCPos;
|
|
|
|
if(dataSize != 0) {
|
|
|
|
memmove(f->fUCBuffer,
|
|
|
|
f->fUCPos,
|
|
|
|
dataSize * sizeof(UChar));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* record how much buffer space is available */
|
|
|
|
availLength = UFILE_UCHARBUFFER_SIZE - dataSize;
|
|
|
|
|
|
|
|
/* Determine the # of codepage bytes needed to fill our UChar buffer */
|
|
|
|
/* weiv: if converter is NULL, we use invariant converter with charwidth = 1)*/
|
|
|
|
maxCPBytes = availLength / (f->fConverter!=NULL?(2*ucnv_getMinCharSize(f->fConverter)):1);
|
|
|
|
|
|
|
|
/* Read in the data to convert */
|
|
|
|
bytesRead = fread(f->fCharBuffer,
|
|
|
|
sizeof(char),
|
|
|
|
ufmt_min(maxCPBytes, UFILE_CHARBUFFER_SIZE),
|
|
|
|
f->fFile);
|
2000-10-26 21:42:33 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* Set up conversion parameters */
|
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
mySource = f->fCharBuffer;
|
|
|
|
mySourceEnd = f->fCharBuffer + bytesRead;
|
|
|
|
myTarget = f->fUCBuffer + dataSize;
|
|
|
|
bufferSize = UFILE_UCHARBUFFER_SIZE;
|
|
|
|
|
|
|
|
if(f->fConverter != NULL) { /* We have a valid converter */
|
|
|
|
/* Perform the conversion */
|
|
|
|
ucnv_toUnicode(f->fConverter,
|
|
|
|
&myTarget,
|
|
|
|
f->fUCBuffer + bufferSize,
|
|
|
|
&mySource,
|
|
|
|
mySourceEnd,
|
|
|
|
NULL,
|
|
|
|
(UBool)(feof(f->fFile) != 0),
|
|
|
|
&status);
|
|
|
|
|
|
|
|
} else { /*weiv: do the invariant conversion */
|
|
|
|
u_charsToUChars(mySource, myTarget, bytesRead);
|
|
|
|
myTarget += bytesRead;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update the pointers into our array */
|
|
|
|
f->fUCPos = f->fUCBuffer;
|
|
|
|
f->fUCLimit = myTarget;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI UChar* U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
1999-08-16 21:50:52 +00:00
|
|
|
u_fgets(UFILE *f,
|
2002-03-14 00:40:08 +00:00
|
|
|
int32_t n,
|
|
|
|
UChar *s)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
int32_t dataSize;
|
|
|
|
int32_t read;
|
|
|
|
int32_t count;
|
|
|
|
UChar *alias;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-27 21:17:25 +00:00
|
|
|
if (n <= 0) {
|
|
|
|
/* Caller screwed up. We need to write the null terminatior. */
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* fill the buffer */
|
1999-08-16 21:50:52 +00:00
|
|
|
ufile_fill_uchar_buffer(f);
|
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* subtract 1 from n to compensate for the terminator */
|
|
|
|
--n;
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/* determine the amount of data in the buffer */
|
|
|
|
dataSize = f->fUCLimit - f->fUCPos;
|
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* if the buffer contains more data than requested, operate on the buffer */
|
|
|
|
if(dataSize > n) {
|
|
|
|
|
|
|
|
/* find the first occurrence of a delimiter character */
|
|
|
|
alias = f->fUCPos;
|
|
|
|
count = 0;
|
|
|
|
while( ! IS_STRING_DELIMITER(*alias) && count < n) {
|
2002-03-27 20:08:42 +00:00
|
|
|
count++;
|
|
|
|
alias++;
|
|
|
|
}
|
|
|
|
/* Preserve the newline */
|
|
|
|
if (IS_STRING_DELIMITER(*alias) && count < n) {
|
|
|
|
count++;
|
2002-03-14 00:40:08 +00:00
|
|
|
alias++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy the characters into the target*/
|
|
|
|
memcpy(s, f->fUCPos, count * sizeof(UChar));
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* add the terminator */
|
|
|
|
s[count] = 0x0000;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* update the current buffer position */
|
|
|
|
f->fUCPos += count;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* refill the buffer */
|
|
|
|
ufile_fill_uchar_buffer(f);
|
2000-11-07 19:45:07 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* skip over any remaining delimiters */
|
|
|
|
while(IS_STRING_DELIMITER(*(f->fUCPos)) && f->fUCPos < f->fUCLimit)
|
|
|
|
(f->fUCPos)++;
|
2000-11-07 19:45:07 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* return s */
|
|
|
|
return s;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* otherwise, iteratively fill the buffer and copy */
|
|
|
|
read = 0;
|
|
|
|
do {
|
|
|
|
|
|
|
|
/* determine the amount of data in the buffer */
|
|
|
|
dataSize = f->fUCLimit - f->fUCPos;
|
|
|
|
|
|
|
|
/* find the first occurrence of a delimiter character, if present */
|
|
|
|
alias = f->fUCPos;
|
|
|
|
count = 0;
|
|
|
|
while( ! IS_STRING_DELIMITER(*alias) && alias < f->fUCLimit && count < n) {
|
|
|
|
++count;
|
|
|
|
alias++;
|
|
|
|
}
|
2002-03-27 20:08:42 +00:00
|
|
|
/* Preserve the newline */
|
|
|
|
if (IS_STRING_DELIMITER(*alias) && count < n) {
|
|
|
|
count++;
|
|
|
|
alias++;
|
|
|
|
}
|
2002-03-14 00:40:08 +00:00
|
|
|
|
|
|
|
/* copy the current data in the buffer */
|
|
|
|
memcpy(s + read, f->fUCPos, count * sizeof(UChar));
|
|
|
|
|
|
|
|
/* update number of items read */
|
|
|
|
read += count;
|
|
|
|
|
|
|
|
/* update the current buffer position */
|
|
|
|
f->fUCPos += count;
|
|
|
|
|
|
|
|
/* if we found a delimiter */
|
|
|
|
if(alias < f->fUCLimit) {
|
|
|
|
|
|
|
|
/* refill the buffer */
|
|
|
|
ufile_fill_uchar_buffer(f);
|
|
|
|
|
|
|
|
/* skip over any remaining delimiters */
|
|
|
|
while(IS_STRING_DELIMITER(*(f->fUCPos)) && f->fUCPos < f->fUCLimit)
|
|
|
|
(f->fUCPos)++;
|
|
|
|
|
|
|
|
/* break out */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* refill the buffer */
|
|
|
|
ufile_fill_uchar_buffer(f);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
} while(dataSize != 0 && read < n);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* if 0 characters were read, return 0 */
|
|
|
|
if(read == 0)
|
|
|
|
return 0;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* add the terminator and return s */
|
|
|
|
s[read] = 0x0000;
|
|
|
|
return s;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI UChar U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
1999-08-16 21:50:52 +00:00
|
|
|
u_fgetc(UFILE *f)
|
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
/* if we have an available character in the buffer, return it */
|
1999-08-16 21:50:52 +00:00
|
|
|
if(f->fUCPos < f->fUCLimit)
|
2002-03-14 00:40:08 +00:00
|
|
|
return *(f->fUCPos)++;
|
|
|
|
/* otherwise, fill the buffer and return the next character */
|
|
|
|
else {
|
|
|
|
ufile_fill_uchar_buffer(f);
|
|
|
|
if(f->fUCPos < f->fUCLimit)
|
|
|
|
return *(f->fUCPos)++;
|
|
|
|
else
|
|
|
|
return 0xFFFF;
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-07-16 13:43:15 +00:00
|
|
|
/* u_unescapeAt() callback to return a UChar from a UFILE */
|
|
|
|
static UChar _charAt(int32_t offset, void *context) {
|
|
|
|
return ((UFILE*) context)->fUCPos[offset];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read a UChar from a UFILE and process escape sequences */
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI UChar32 U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
2002-03-14 00:40:08 +00:00
|
|
|
u_fgetcx(UFILE *f)
|
|
|
|
{
|
2000-07-16 13:43:15 +00:00
|
|
|
int32_t length;
|
|
|
|
int32_t offset;
|
|
|
|
UChar32 c32;
|
|
|
|
UChar c16;
|
2002-03-14 00:40:08 +00:00
|
|
|
|
2000-07-16 13:43:15 +00:00
|
|
|
/* Fill the buffer if it is empty */
|
|
|
|
if (f->fUCPos >= f->fUCLimit) {
|
2002-03-14 00:40:08 +00:00
|
|
|
ufile_fill_uchar_buffer(f);
|
2000-07-16 13:43:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the next character in the buffer */
|
|
|
|
if (f->fUCPos < f->fUCLimit) {
|
|
|
|
c16 = *(f->fUCPos)++;
|
|
|
|
} else {
|
|
|
|
c16 = U_EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If it isn't a backslash, return it */
|
|
|
|
if (c16 != 0x005C /*'\\'*/) {
|
|
|
|
return c16;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine the amount of data in the buffer */
|
|
|
|
length = f->fUCLimit - f->fUCPos;
|
|
|
|
|
|
|
|
/* The longest escape sequence is \Uhhhhhhhh; make sure
|
2002-03-14 00:40:08 +00:00
|
|
|
we have at least that many characters */
|
2000-07-16 13:43:15 +00:00
|
|
|
if (length < 10) {
|
|
|
|
/* fill the buffer */
|
|
|
|
ufile_fill_uchar_buffer(f);
|
|
|
|
length = f->fUCLimit - f->fUCPos;
|
|
|
|
}
|
2002-03-14 00:40:08 +00:00
|
|
|
|
2000-07-16 13:43:15 +00:00
|
|
|
/* Process the escape */
|
|
|
|
offset = 0;
|
|
|
|
c32 = u_unescapeAt(_charAt, &offset, length, (void*)f);
|
|
|
|
|
|
|
|
/* Update the current buffer position */
|
|
|
|
f->fUCPos += offset;
|
|
|
|
|
|
|
|
return c32;
|
|
|
|
}
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI UChar U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
1999-08-16 21:50:52 +00:00
|
|
|
u_fungetc(UChar c,
|
2002-03-14 00:40:08 +00:00
|
|
|
UFILE *f)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
/* if we're at the beginning of the buffer, sorry! */
|
|
|
|
if(f->fUCPos == f->fUCBuffer)
|
|
|
|
return 0xFFFF;
|
|
|
|
/* otherwise, put the character back */
|
|
|
|
else {
|
|
|
|
*--(f->fUCPos) = c;
|
|
|
|
return c;
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
2002-03-14 00:40:08 +00:00
|
|
|
u_file_read( UChar *chars,
|
|
|
|
int32_t count,
|
|
|
|
UFILE *f)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2002-03-14 00:40:08 +00:00
|
|
|
int32_t dataSize;
|
|
|
|
int32_t read;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* fill the buffer */
|
|
|
|
ufile_fill_uchar_buffer(f);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* determine the amount of data in the buffer */
|
|
|
|
dataSize = f->fUCLimit - f->fUCPos;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* if the buffer contains the amount requested, just copy */
|
|
|
|
if(dataSize > count) {
|
|
|
|
memcpy(chars, f->fUCPos, count * sizeof(UChar));
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* update the current buffer position */
|
|
|
|
f->fUCPos += count;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* return # of chars read */
|
|
|
|
return count;
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* otherwise, iteratively fill the buffer and copy */
|
|
|
|
read = 0;
|
|
|
|
do {
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* determine the amount of data in the buffer */
|
|
|
|
dataSize = f->fUCLimit - f->fUCPos;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* copy the current data in the buffer */
|
|
|
|
memcpy(chars + read, f->fUCPos, dataSize * sizeof(UChar));
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
/* update number of items read */
|
|
|
|
read += dataSize;
|
|
|
|
|
|
|
|
/* update the current buffer position */
|
|
|
|
f->fUCPos += dataSize;
|
|
|
|
|
|
|
|
/* refill the buffer */
|
|
|
|
ufile_fill_uchar_buffer(f);
|
|
|
|
|
|
|
|
} while(dataSize != 0 && read < count);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2002-03-14 00:40:08 +00:00
|
|
|
return read;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|