scuffed-code/icu4c/source/extra/ustdio/ufile.h

105 lines
2.6 KiB
C
Raw Normal View History

1999-08-16 21:50:52 +00:00
/*
*******************************************************************************
*
* Copyright (C) 1998-2003, International Business Machines
* Corporation and others. All Rights Reserved.
*
1999-08-16 21:50:52 +00:00
*******************************************************************************
*
* File ufile.h
*
* Modification History:
*
* Date Name Description
* 12/01/98 stephen Creation.
* 03/12/99 stephen Modified for new C API.
*******************************************************************************
*/
#ifndef UFILE_H
#define UFILE_H
#include "unicode/utypes.h"
#include "unicode/ucnv.h"
#include "unicode/utrans.h"
1999-08-16 21:50:52 +00:00
#include "locbund.h"
/* The buffer size for fromUnicode calls */
#define UFILE_CHARBUFFER_SIZE 1024
/* The buffer size for toUnicode calls */
#define UFILE_UCHARBUFFER_SIZE 1024
/* A UFILE */
#if !UCONFIG_NO_TRANSLITERATION
typedef struct {
UChar *buffer; /* Beginning of buffer */
int32_t capacity; /* Capacity of buffer */
int32_t pos; /* Beginning of untranslitted data */
int32_t length; /* Length *from beginning of buffer* of untranslitted data */
UTransliterator *translit;
} UFILETranslitBuffer;
#endif
typedef struct u_localized_string {
UChar *fBuffer; /* Place to write the string */
UChar *fPos; /* current pos in fUCBuffer */
const UChar *fLimit; /* data limit in fUCBuffer */
#if !UCONFIG_NO_FORMATTING
ULocaleBundle fBundle; /* formatters */
#endif
} u_localized_string;
1999-08-16 21:50:52 +00:00
struct UFILE {
#if !UCONFIG_NO_TRANSLITERATION
UFILETranslitBuffer *fTranslit;
#endif
1999-08-16 21:50:52 +00:00
FILE *fFile; /* the actual filesystem interface */
1999-08-16 21:50:52 +00:00
UConverter *fConverter; /* for codeset conversion */
1999-08-16 21:50:52 +00:00
u_localized_string str; /* struct to handle strings for number formatting */
UChar fUCBuffer[UFILE_UCHARBUFFER_SIZE];/* buffer used for toUnicode */
UBool fOwnFile; /* TRUE if fFile should be closed */
1999-08-16 21:50:52 +00:00
};
/**
* Like u_file_write but takes a flush parameter
*/
U_CAPI int32_t U_EXPORT2
u_file_write_flush( const UChar *chars,
int32_t count,
UFILE *f,
2002-04-02 01:17:28 +00:00
UBool flush);
1999-08-16 21:50:52 +00:00
/**
* Fill a UFILE's buffer with converted codepage data.
* @param f The UFILE containing the buffer to fill.
*/
void
ufile_fill_uchar_buffer(UFILE *f);
/**
* Close out the transliterator and flush any data therein.
* @param f flu
*/
void
ufile_close_translit(UFILE *f);
/**
* Flush the buffer in the transliterator
* @param f UFile to flush
*/
void
ufile_flush_translit(UFILE *f);
1999-08-16 21:50:52 +00:00
#endif