/* ******************************************************************************* * * Copyright (C) 2002-2006, International Business Machines * Corporation and others. All Rights Reserved. * ******************************************************************************* * * File wrtxml.c * * Modification History: * * Date Name Description * 10/01/02 Ram Creation. ******************************************************************************* */ #include "reslist.h" #include "unewdata.h" #include "unicode/ures.h" #include "errmsg.h" #include "filestrm.h" #include "cstring.h" #include "unicode/ucnv.h" #include "genrb.h" #include "rle.h" #include "ucol_tok.h" #include "uhash.h" #include "uresimp.h" #include "unicode/ustring.h" #include "unicode/uchar.h" #include "ustr.h" #include "prscmnts.h" #include static int tabCount = 0; static FileStream* out=NULL; static struct SRBRoot* srBundle ; static const char* outDir = NULL; static const char* enc =""; static UConverter* conv = NULL; const char* const* ISOLanguages; const char* const* ISOCountries; const char* textExt = ".txt"; const char* xliffExt = ".xlf"; /*write indentation for formatting*/ static void write_tabs(FileStream* os){ int i=0; for(;i<=tabCount;i++){ T_FileStream_write(os," ",4); } } /*get ID for each element. ID is globally unique.*/ static char* getID(const char* id, char* curKey, char* result) { if(curKey == NULL) { result = uprv_malloc(sizeof(char)*uprv_strlen(id) + 1); uprv_memset(result, 0, sizeof(char)*uprv_strlen(id) + 1); uprv_strcpy(result, id); } else { result = uprv_malloc(sizeof(char)*(uprv_strlen(id) + 1 + uprv_strlen(curKey)) + 1); uprv_memset(result, 0, sizeof(char)*(uprv_strlen(id) + 1 + uprv_strlen(curKey)) + 1); if(id[0]!='\0'){ uprv_strcpy(result, id); uprv_strcat(result, "_"); } uprv_strcat(result, curKey); } return result; } /*compute CRC for binary code*/ /* The code is from http://www.theorem.com/java/CRC32.java * Calculates the CRC32 - 32 bit Cyclical Redundancy Check *

This check is used in numerous systems to verify the integrity * of information. It's also used as a hashing function. Unlike a regular * checksum, it's sensitive to the order of the characters. * It produces a 32 bit * * @author Michael Lecuyer (mjl@theorem.com) * @version 1.1 August 11, 1998 */ /* ICU is not endian portable, because ICU data generated on big endian machines can be * ported to big endian machines but not to little endian machines and vice versa. The * conversion is not portable across platforms with different endianess. */ static uint32_t computeCRC(char *ptr, uint32_t len, uint32_t lastcrc){ int32_t crc; uint32_t temp1; uint32_t temp2; int32_t crc_ta[256]; int i = 0; int j = 0; uint32_t crc2 = 0; #define CRC32_POLYNOMIAL 0xEDB88320 /*build crc table*/ for (i = 0; i <= 255; i++) { crc2 = i; for (j = 8; j > 0; j--) { if ((crc2 & 1) == 1) { crc2 = (crc2 >> 1) ^ CRC32_POLYNOMIAL; } else { crc2 >>= 1; } } crc_ta[i] = crc2; } crc = lastcrc; while(len--!=0) { temp1 = (uint32_t)crc>>8; temp2 = crc_ta[(crc^*ptr) & 0xFF]; crc = temp1^temp2; ptr++; } return(crc); } static void strnrepchr(char* src, int32_t srcLen, char s, char r){ int32_t i = 0; for(i=0;i\n" "\n"; static const char* bundleStart = "\n"; static const char* bundleEnd = "\n"; void res_write_xml(struct SResource *res, const char* id, const char* language, UBool isTopLevel, UErrorCode *status); static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, const UChar* src, int32_t srcLen, UErrorCode* status){ int32_t srcIndex=0; char* dest=NULL; char* temp=NULL; int32_t destLen=0; UChar32 c = 0; if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){ return NULL; } dest =*pDest; if(dest==NULL || destCap <=0){ destCap = srcLen * 8; dest = (char*) uprv_malloc(sizeof(char) * destCap); if(dest==NULL){ *status=U_MEMORY_ALLOCATION_ERROR; return NULL; } } dest[0]=0; while(srcIndex': uprv_strcpy(dest+(destLen),">"); destLen+=(int32_t)uprv_strlen(">"); break; case '"': uprv_strcpy(dest+(destLen),"""); destLen+=(int32_t)uprv_strlen("""); break; case '\'': uprv_strcpy(dest+(destLen),"'"); destLen+=(int32_t)uprv_strlen("'"); break; /* Disallow C0 controls except TAB, CR, LF*/ case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07: case 0x08: /*case 0x09:*/ /*case 0x0A: */ case 0x0B: case 0x0C: /*case 0x0D:*/ case 0x0E: case 0x0F: case 0x10: case 0x11: case 0x12: case 0x13: case 0x14: case 0x15: case 0x16: case 0x17: case 0x18: case 0x19: case 0x1A: case 0x1B: case 0x1C: case 0x1D: case 0x1E: case 0x1F: *status = U_ILLEGAL_CHAR_FOUND; fprintf(stderr, "Illegal Character \\u%04X!\n",(int)c); uprv_free(dest); return NULL; default: dest[destLen++]=(char)c; } }else{ UBool isError = FALSE; U8_APPEND((unsigned char*)dest,destLen,destCap,c,isError); if(isError){ *status = U_ILLEGAL_CHAR_FOUND; fprintf(stderr, "Illegal Character \\U%08X!\n",(int)c); uprv_free(dest); return NULL; } } }else{ destCap += destLen; temp = (char*) uprv_malloc(sizeof(char)*destCap); if(temp==NULL){ *status=U_MEMORY_ALLOCATION_ERROR; uprv_free(dest); return NULL; } uprv_memmove(temp,dest,destLen); destLen=0; uprv_free(dest); dest=temp; temp=NULL; } } *destLength = destLen; return dest; } #define ASTERISK 0x002A #define SPACE 0x0020 #define CR 0x000A #define LF 0x000D #define AT_SIGN 0x0040 static void trim(char **src, int32_t *len){ char *s = NULL; int32_t i = 0; if(src == NULL || *src == NULL){ return; } s = *src; /* trim from the end */ for( i=(*len-1); i>= 0; i--){ switch(s[i]){ case ASTERISK: case SPACE: case CR: case LF: s[i] = 0; continue; default: break; } break; } *len = i+1; } static void print(UChar* src, int32_t srcLen,const char *tagStart,const char *tagEnd, UErrorCode *status){ int32_t bufCapacity = srcLen*4; char *buf = NULL; int32_t bufLen = 0; if(U_FAILURE(*status)){ return; } buf = (char*) (uprv_malloc(bufCapacity)); if(buf==0){ fprintf(stderr, "Could not allocate memory!!"); exit(U_MEMORY_ALLOCATION_ERROR); } buf = convertAndEscape(&buf, bufCapacity, &bufLen, src, srcLen,status); if(U_SUCCESS(*status)){ trim(&buf,&bufLen); T_FileStream_write(out,tagStart, (int32_t)uprv_strlen(tagStart)); T_FileStream_write(out, buf, bufLen); T_FileStream_write(out,tagEnd, (int32_t)uprv_strlen(tagEnd)); T_FileStream_write(out,"\n",1); } } static void printNoteElements(struct UString *src, UErrorCode *status){ #if UCONFIG_NO_REGULAR_EXPRESSIONS==0 /* donot compile when no RegularExpressions are available */ int32_t capacity = 0; UChar* note = NULL; int32_t noteLen = 0; int32_t count = 0,i; if(src == NULL){ return; } capacity = src->fLength; note = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity); count = getCount(src->fChars,src->fLength, UPC_NOTE, status); if(U_FAILURE(*status)){ return; } for(i=0; i < count; i++){ noteLen = getAt(src->fChars,src->fLength, ¬e, capacity, i, UPC_NOTE, status); if(U_FAILURE(*status)){ return; } if(noteLen > 0){ write_tabs(out); print(note, noteLen,"", "", status); } } uprv_free(note); #else fprintf(stderr, "Warning: Could not output comments to XLIFF file. ICU has been built without RegularExpression support.\n"); #endif /* UCONFIG_NO_REGULAR_EXPRESSIONS */ } static void printComments(struct UString *src, const char *resName, UBool printTranslate, UErrorCode *status){ #if UCONFIG_NO_REGULAR_EXPRESSIONS==0 /* donot compile when no RegularExpressions are available */ int32_t capacity = src->fLength; char* buf = NULL; int32_t bufLen = 0; const char* translateAttr = " translate=\""; UChar* desc = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity); UChar* trans = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity); int32_t descLen = 0, transLen=0; if(status==NULL || U_FAILURE(*status)){ uprv_free(desc); uprv_free(trans); return; } if(desc==NULL || trans==NULL){ *status = U_MEMORY_ALLOCATION_ERROR; uprv_free(desc); uprv_free(trans); return; } src->fLength = removeCmtText(src->fChars, src->fLength, status); descLen = getDescription(src->fChars,src->fLength, &desc, capacity, status); transLen = getTranslate(src->fChars,src->fLength, &trans, capacity, status); /* first print translate attribute */ if(transLen > 0){ if(printTranslate==TRUE){ /* print translate attribute */ buf = convertAndEscape(&buf, 0, &bufLen, trans, transLen, status); if(U_SUCCESS(*status)){ T_FileStream_write(out,translateAttr, (int32_t)uprv_strlen(translateAttr)); T_FileStream_write(out,buf, bufLen); T_FileStream_write(out,"\">\n", 3); } }else if(getShowWarning() == TRUE){ fprintf(stderr, "Warning: Tranlate attribute for resource %s cannot be set. XLIFF prohibits it.\n", resName); /* no translate attribute .. just close the tag */ T_FileStream_write(out,">\n", 2); } }else{ /* no translate attribute .. just close the tag */ T_FileStream_write(out,">\n", 2); } if(descLen > 0){ write_tabs(out); print(desc, descLen, "", status); } #else fprintf(stderr, "Warning: Could not output comments to XLIFF file. ICU has been built without RegularExpression support.\n"); #endif /* UCONFIG_NO_REGULAR_EXPRESSIONS */ } /* Writing Functions */ static void string_write_xml(struct SResource *res, const char* id, const char* language, UErrorCode *status) { char* buf = NULL; int32_t bufLen = 0; char* sid = NULL; const char* strStart = "fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ write_tabs(out); T_FileStream_write(out,strStart, (int32_t)uprv_strlen(strStart)); sid = getID(id, NULL, sid); T_FileStream_write(out,sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out,"\"", 1); tabCount++; if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out,valStrStart, (int32_t)uprv_strlen(valStrStart)); /* T_FileStream_write(out,language, (int32_t)uprv_strlen(language)); */ T_FileStream_write(out,">", 1); buf = convertAndEscape(&buf,0,&bufLen,res->u.fString.fChars,res->u.fString.fLength,status); if(U_FAILURE(*status)){ return; } T_FileStream_write(out,buf,bufLen); T_FileStream_write(out,valStrEnd,(int32_t)uprv_strlen(valStrEnd)); printNoteElements(res->fComment, status); tabCount--; write_tabs(out); T_FileStream_write(out,strEnd,(int32_t)uprv_strlen(strEnd)); }else{ const char* keyStrStart = "resname = \""; write_tabs(out); T_FileStream_write(out, strStart, (int32_t)uprv_strlen(strStart)); sid = getID(id, srBundle->fKeys+res->fKey,sid); T_FileStream_write(out,sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out,"\" ", 2); T_FileStream_write(out,keyStrStart, (int32_t)uprv_strlen(keyStrStart)); T_FileStream_write(out,srBundle->fKeys+res->fKey, (int32_t)uprv_strlen(srBundle->fKeys+res->fKey)); T_FileStream_write(out,"\"", 1); tabCount++; if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out,valStrStart, (int32_t)uprv_strlen(valStrStart)); /*T_FileStream_write(out,language, (int32_t)uprv_strlen(language));*/ T_FileStream_write(out,">", 1); buf = convertAndEscape(&buf,0,&bufLen,res->u.fString.fChars,res->u.fString.fLength,status); if(U_FAILURE(*status)){ return; } T_FileStream_write(out,buf,bufLen); T_FileStream_write(out,valStrEnd,(int32_t)uprv_strlen(valStrEnd)); printNoteElements(res->fComment, status); tabCount--; write_tabs(out); T_FileStream_write(out,strEnd,(int32_t)uprv_strlen(strEnd)); } uprv_free(sid); sid = NULL; uprv_free(buf); buf = NULL; } static void alias_write_xml(struct SResource *res, const char* id, const char* language, UErrorCode *status) { static const char* startKey = "resname=\""; static const char* val = ""; static const char* endKey = "\n"; static const char* start = "fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, NULL, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\"", 1); tabCount++; if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment,srBundle->fKeys+res->fKey, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out, val, (int32_t)uprv_strlen(val)); }else{ sid = getID(id, srBundle->fKeys+res->fKey, sid); T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\" ", 2); T_FileStream_write(out, startKey, (int32_t)uprv_strlen(startKey)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); T_FileStream_write(out, "\"", 1); tabCount++; if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out, val, (int32_t)uprv_strlen(val)); } buf = convertAndEscape(&buf,0,&bufLen,res->u.fString.fChars,res->u.fString.fLength,/*FALSE,*/status); if(U_FAILURE(*status)){ return; } T_FileStream_write(out,buf,bufLen); T_FileStream_write(out, endKey, (int32_t)uprv_strlen(endKey)); printNoteElements(res->fComment, status); tabCount--; write_tabs(out); T_FileStream_write(out, end, (int32_t)uprv_strlen(end)); uprv_free(buf); uprv_free(sid); } static void array_write_xml( struct SResource *res, const char* id, const char* language, UErrorCode *status) { const char* start = "fKey<0 ||uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, NULL, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\"", 1); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, sid, FALSE, status); printNoteElements(res->fComment, status); }else{ T_FileStream_write(out,">\n", 2); } }else{ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, srBundle->fKeys+res->fKey, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\" ", 2); T_FileStream_write(out, startKey, (int32_t)uprv_strlen(startKey)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); T_FileStream_write(out, "\"", 1); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, FALSE, status); printNoteElements(res->fComment, status); }else{ T_FileStream_write(out,">\n", 2); } } current = res->u.fArray.fFirst; first=current; while (current != NULL) { char c[256] = {0}; char* subId = NULL; itostr(c, index,10,0); index++; subId = getID(sid, c, subId); res_write_xml(current, subId, language, FALSE, status); uprv_free(subId); subId = NULL; if(U_FAILURE(*status)){ return; } current = current->fNext; } tabCount--; write_tabs(out); T_FileStream_write(out,end,(int32_t)uprv_strlen(end)); uprv_free(sid); sid = NULL; } static void intvector_write_xml( struct SResource *res, const char* id, const char* language, UErrorCode *status) { const char* start = "fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, NULL, sid); T_FileStream_write(out,sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\"", 1); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, sid, FALSE, status); }else{ T_FileStream_write(out,">\n", 2); } }else{ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, srBundle->fKeys+res->fKey, sid); T_FileStream_write(out,sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out,"\" ", 2); T_FileStream_write(out, startKey, (int32_t)uprv_strlen(startKey)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); T_FileStream_write(out, "\"", 1); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, FALSE, status); printNoteElements(res->fComment, status); }else{ T_FileStream_write(out,">\n", 2); } } for(i = 0; iu.fIntVector.fCount; i++) { char c[256] = {0}; itostr(c, i,10,0); ivd = getID(sid, c, ivd); len=itostr(buf,res->u.fIntVector.fArray[i],10,0); write_tabs(out); T_FileStream_write(out, intStart, (int32_t)uprv_strlen(intStart)); T_FileStream_write(out, ivd, (int32_t)uprv_strlen(ivd)); T_FileStream_write(out,"\">\n", 3); tabCount++; write_tabs(out); T_FileStream_write(out,valIntStart, (int32_t)uprv_strlen(valIntStart)); T_FileStream_write(out,buf,len); T_FileStream_write(out,valIntEnd, (int32_t)uprv_strlen(valIntEnd)); tabCount--; write_tabs(out); T_FileStream_write(out, intEnd, (int32_t)uprv_strlen(intEnd)); uprv_free(ivd); ivd = NULL; } tabCount--; write_tabs(out); T_FileStream_write(out, end, (int32_t)uprv_strlen(end)); uprv_free(sid); sid = NULL; } static void int_write_xml(struct SResource *res, const char* id, const char* language, UErrorCode *status) { const char* intStart = "fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ T_FileStream_write(out, intStart, (int32_t)uprv_strlen(intStart)); sid = getID(id, NULL, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out,"\"", 1); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, sid, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out,valIntStart, (int32_t)uprv_strlen(valIntStart)); }else{ T_FileStream_write(out, intStart, (int32_t)uprv_strlen(intStart)); sid = getID(id, srBundle->fKeys+res->fKey, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out,"\" ", 2); T_FileStream_write(out,keyIntStart, (int32_t)uprv_strlen(keyIntStart)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); T_FileStream_write(out,"\"", 1); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out, valIntStart, (int32_t)uprv_strlen(valIntStart)); } len=itostr(buf,res->u.fIntValue.fValue,10,0); T_FileStream_write(out,buf,len); T_FileStream_write(out, valIntEnd, (int32_t)uprv_strlen(valIntEnd)); printNoteElements(res->fComment, status); tabCount--; write_tabs(out); T_FileStream_write(out, intEnd, (int32_t)uprv_strlen(intEnd)); uprv_free(sid); sid = NULL; } static void bin_write_xml( struct SResource *res, const char* id, const char* language, UErrorCode *status) { const char* start = "\n"; const char* m_type = "\"application"; char* sid = NULL; uint32_t crc = 0xFFFFFFFF; char fileName[1024] ={0}; int32_t tLen = ( outDir == NULL) ? 0 :(int32_t)uprv_strlen(outDir); char* fn = (char*) uprv_malloc(sizeof(char) * (tLen+1024 + (res->u.fBinaryValue.fFileName !=NULL ? uprv_strlen(res->u.fBinaryValue.fFileName) :0))); const char* ext = NULL; char* f = NULL; fn[0]=0; if(res->u.fBinaryValue.fFileName!=NULL){ uprv_strcpy(fileName, res->u.fBinaryValue.fFileName); f = uprv_strrchr(fileName, '\\'); f++; ext = uprv_strrchr(fileName, '.'); if(uprv_strcmp(ext, ".jpg")==0 || uprv_strcmp(ext, ".jpeg")==0 || uprv_strcmp(ext, ".gif")==0 ){ m_type = "\"image"; } else if(uprv_strcmp(ext, ".wav")==0 || uprv_strcmp(ext, ".au")==0 ){ m_type = "\"audio"; } else if(uprv_strcmp(ext, ".avi")==0 || uprv_strcmp(ext, ".mpg")==0 || uprv_strcmp(ext, ".mpeg")==0){ m_type = "\"video"; } else if(uprv_strcmp(ext, ".txt")==0 || uprv_strcmp(ext, ".text")==0){ m_type = "\"text"; } write_tabs(out); T_FileStream_write(out, importStart, (int32_t)uprv_strlen(importStart)); if(res->fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ sid = getID(id, NULL, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); } else { sid = getID(id, srBundle->fKeys+res->fKey, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); } T_FileStream_write(out, "\" ", 2); T_FileStream_write(out, mime, (int32_t)uprv_strlen(mime)); T_FileStream_write(out, m_type, (int32_t)uprv_strlen(m_type)); if(!(res->fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0)){ T_FileStream_write(out, key, (int32_t)uprv_strlen(key)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); } T_FileStream_write(out,"\"", 1); tabCount++; if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, sid, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out, valStart, (int32_t)uprv_strlen(valStart)); tabCount++; write_tabs(out); T_FileStream_write(out, externalFileStart, (int32_t)uprv_strlen(externalFileStart)); T_FileStream_write(out, f, (int32_t)uprv_strlen(f)); T_FileStream_write(out, externalFileEnd, (int32_t)uprv_strlen(externalFileEnd)); tabCount--; write_tabs(out); T_FileStream_write(out, valEnd, (int32_t)uprv_strlen(valEnd)); printNoteElements(res->fComment, status); tabCount--; write_tabs(out); T_FileStream_write(out,end,(int32_t)uprv_strlen(end)); } else { char temp[256] = {0}; uint32_t i = 0; int32_t len=0; write_tabs(out); T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); if(res->fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ sid = getID(id, NULL, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); } else { sid = getID(id, srBundle->fKeys+res->fKey, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); } T_FileStream_write(out, "\" ", 2); T_FileStream_write(out, mime, (int32_t)uprv_strlen(mime)); T_FileStream_write(out, m_type, (int32_t)uprv_strlen(m_type)); if(!(res->fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0)){ T_FileStream_write(out, key, (int32_t)uprv_strlen(key)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); } T_FileStream_write(out,"\"", 1); tabCount++; if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, sid, TRUE, status); }else{ T_FileStream_write(out,">\n", 2); } write_tabs(out); T_FileStream_write(out, valStart, (int32_t)uprv_strlen(valStart)); tabCount++; write_tabs(out); T_FileStream_write(out, fileStart, (int32_t)uprv_strlen(fileStart)); while(i u.fBinaryValue.fLength){ len = itostr(temp,res->u.fBinaryValue.fData[i],16,2); crc = computeCRC(temp, len, crc); i++; } len = itostr(temp, crc, 10, 0); T_FileStream_write(out,temp,len); T_FileStream_write(out,"\">",2); i = 0; while(i u.fBinaryValue.fLength){ len = itostr(temp,res->u.fBinaryValue.fData[i],16,2); T_FileStream_write(out,temp,len); i++; } T_FileStream_write(out, fileEnd, (int32_t)uprv_strlen(fileEnd)); tabCount--; write_tabs(out); T_FileStream_write(out, valEnd, (int32_t)uprv_strlen(valEnd)); printNoteElements(res->fComment, status); tabCount--; write_tabs(out); T_FileStream_write(out,end,(int32_t)uprv_strlen(end)); uprv_free(sid); sid = NULL; } uprv_free(fn); } static void table_write_xml(struct SResource *res, const char* id, const char* language, UBool isTopLevel, UErrorCode *status) { uint32_t i = 0; struct SResource *current = NULL; struct SResource *save = NULL; char* sid = NULL; const char* start = "u.fTable.fCount > 0) { write_tabs(out); tabCount++; if(res->fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); if(isTopLevel){ int32_t len = uprv_strlen(id); T_FileStream_write(out, idstr, (int32_t)uprv_strlen(idstr)); T_FileStream_write(out, id,len); T_FileStream_write(out, "\" ", 2); id=""; } sid = getID(id, NULL, sid); /* only write the id if the sid!="" */ if(sid[0]!='\0'){ T_FileStream_write(out, idstr, (int32_t)uprv_strlen(idstr)); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\" ", 2); } if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, sid, FALSE, status); printNoteElements(res->fComment, status); }else{ T_FileStream_write(out,">\n", 2); } }else{ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, srBundle->fKeys+res->fKey, sid); /* only write the id if the sid!="" */ if(sid[0]!='\0'){ T_FileStream_write(out, idstr, (int32_t)uprv_strlen(idstr)); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\" ", 2); } T_FileStream_write(out, startKey, (int32_t)uprv_strlen(startKey)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); T_FileStream_write(out, "\" ", 2); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, FALSE, status); printNoteElements(res->fComment, status); }else{ T_FileStream_write(out,">\n", 2); } } save = current = res->u.fTable.fFirst; i = 0; while (current != NULL) { res_write_xml(current, sid, language, FALSE, status); if(U_FAILURE(*status)){ return; } i++; current = current->fNext; } tabCount--; write_tabs(out); T_FileStream_write(out,end,(int32_t)uprv_strlen(end)); } else { write_tabs(out); if(res->fKey<0 || uprv_strcmp(srBundle->fKeys+res->fKey ,"")==0){ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, NULL, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, sid, FALSE, status); printNoteElements(res->fComment, status); }else{ T_FileStream_write(out,">\n", 2); } }else{ T_FileStream_write(out, start, (int32_t)uprv_strlen(start)); sid = getID(id, srBundle->fKeys+res->fKey, sid); T_FileStream_write(out, sid, (int32_t)uprv_strlen(sid)); T_FileStream_write(out, "\" ", 2); T_FileStream_write(out, startKey, (int32_t)uprv_strlen(startKey)); T_FileStream_write(out, srBundle->fKeys+res->fKey, (int32_t) uprv_strlen(srBundle->fKeys+res->fKey)); if(res->fComment!=NULL && res->fComment->fChars != NULL){ printComments(res->fComment, srBundle->fKeys+res->fKey, FALSE, status); printNoteElements(res->fComment, status); }else{ T_FileStream_write(out,">\n", 2); } } write_tabs(out); T_FileStream_write(out,end,(int32_t)uprv_strlen(end)); } uprv_free(sid); sid = NULL; } void res_write_xml(struct SResource *res, const char* id, const char* language, UBool isTopLevel, UErrorCode *status) { if (U_FAILURE(*status)) { return ; } if (res != NULL) { switch (res->fType) { case URES_STRING: string_write_xml (res, id, language, status); return; case URES_ALIAS: alias_write_xml (res, id, language, status); return; case URES_INT_VECTOR: intvector_write_xml (res, id, language, status); return; case URES_BINARY: bin_write_xml (res, id, language, status); return; case URES_INT: int_write_xml (res, id, language, status); return; case URES_ARRAY: array_write_xml (res, id, language, status); return; case URES_TABLE: case URES_TABLE32: table_write_xml (res, id, language, isTopLevel, status); return; default: break; } } *status = U_INTERNAL_PROGRAM_ERROR; } void bundle_write_xml(struct SRBRoot *bundle, const char *outputDir,const char* outputEnc, const char* filename, char *writtenFilename, int writtenFilenameLen, const char* language, const char* outFileName, UErrorCode *status) { char* xmlfileName = NULL; char* outputFileName = NULL; char* originalFileName = NULL; const char* fileStart = "fLocale) != 0) { fprintf(stdout, "Warning: The file name is not same as the resource name!\n"); } temp = originalFileName; originalFileName = uprv_malloc(sizeof(char)* (uprv_strlen(temp)+uprv_strlen(textExt)) + 1); uprv_memset(originalFileName, 0, sizeof(char)* (uprv_strlen(temp)+uprv_strlen(textExt)) + 1); uprv_strcat(originalFileName, temp); uprv_strcat(originalFileName, textExt); uprv_free(temp); temp = NULL; if (language == NULL) { /* lang = parseFilename(filename, lang); if (lang == NULL) {*/ /* now check if locale name is valid or not * this is to cater for situation where * pegasusServer.txt contains * * en{ * .. * } */ lang = parseFilename(srBundle->fLocale, lang); /* * Neither the file name nor the table name inside the * txt file contain a valid country and language codes * throw an error. * pegasusServer.txt contains * * testelements{ * .... * } */ if(lang==NULL){ fprintf(stderr, "Error: The file name and table name do not contain a valid language code. Please use -l option to specify it.\n"); exit(U_ILLEGAL_ARGUMENT_ERROR); } /* }*/ } else { lang = uprv_malloc(sizeof(char)*uprv_strlen(language) +1); uprv_memset(lang, 0, sizeof(char)*uprv_strlen(language) +1); uprv_strcpy(lang, language); } if(outFileName) { outputFileName = uprv_malloc(sizeof(char)*uprv_strlen(outFileName) + 1); uprv_memset(outputFileName, 0, sizeof(char)*uprv_strlen(outFileName) + 1); uprv_strcpy(outputFileName,outFileName); } else { outputFileName = uprv_malloc(sizeof(char)*uprv_strlen(srBundle->fLocale) + 1); uprv_memset(outputFileName, 0, sizeof(char)*uprv_strlen(srBundle->fLocale) + 1); uprv_strcpy(outputFileName,srBundle->fLocale); } if(outputDir) { xmlfileName = uprv_malloc(sizeof(char)*(uprv_strlen(outputDir) + uprv_strlen(outputFileName) + uprv_strlen(xliffExt) + 1) +1); uprv_memset(xmlfileName, 0, sizeof(char)*(uprv_strlen(outputDir)+ uprv_strlen(outputFileName) + uprv_strlen(xliffExt) + 1) +1); } else { xmlfileName = uprv_malloc(sizeof(char)*(uprv_strlen(outputFileName) + uprv_strlen(xliffExt)) +1); uprv_memset(xmlfileName, 0, sizeof(char)*(uprv_strlen(outputFileName) + uprv_strlen(xliffExt)) +1); } if(outputDir){ uprv_strcpy(xmlfileName, outputDir); if(outputDir[uprv_strlen(outputDir)-1] !=U_FILE_SEP_CHAR){ uprv_strcat(xmlfileName,U_FILE_SEP_STRING); } } uprv_strcat(xmlfileName,outputFileName); uprv_strcat(xmlfileName,xliffExt); if (writtenFilename) { uprv_strncpy(writtenFilename, xmlfileName, writtenFilenameLen); } if (U_FAILURE(*status)) { goto cleanup_bundle_write_xml; } out= T_FileStream_open(xmlfileName,"w"); if(out==NULL){ *status = U_FILE_ACCESS_ERROR; goto cleanup_bundle_write_xml; } T_FileStream_write(out,xmlHeader, (int32_t)uprv_strlen(xmlHeader)); if(outputEnc && *outputEnc!='\0'){ /* store the output encoding */ enc = outputEnc; conv=ucnv_open(enc,status); if(U_FAILURE(*status)){ goto cleanup_bundle_write_xml; } } T_FileStream_write(out,bundleStart, (int32_t)uprv_strlen(bundleStart)); write_tabs(out); T_FileStream_write(out, fileStart, (int32_t)uprv_strlen(fileStart)); /* check if lang and language are the same */ if(language != NULL && uprv_strcmp(lang, srBundle->fLocale)!=0){ fprintf(stderr,"Warning: The top level tag in the resource and language specified are not the same. Please check the input.\n"); } T_FileStream_write(out,lang, (int32_t)uprv_strlen(lang)); T_FileStream_write(out,file1, (int32_t)uprv_strlen(file1)); T_FileStream_write(out,file2, (int32_t)uprv_strlen(file2)); T_FileStream_write(out,originalFileName, (int32_t)uprv_strlen(originalFileName)); T_FileStream_write(out,file3, (int32_t)uprv_strlen(file3)); T_FileStream_write(out,file4, (int32_t)uprv_strlen(file4)); time(&currTime); strftime(timeBuf, sizeof(timeBuf), "%Y-%m-%dT%H:%M:%SZ", gmtime(&currTime)); T_FileStream_write(out,timeBuf, (int32_t)uprv_strlen(timeBuf)); T_FileStream_write(out,"\">\n", 3); tabCount++; write_tabs(out); T_FileStream_write(out,headerStart, (int32_t)uprv_strlen(headerStart)); T_FileStream_write(out,headerEnd, (int32_t)uprv_strlen(headerEnd)); write_tabs(out); tabCount++; T_FileStream_write(out,bodyStart, (int32_t)uprv_strlen(bodyStart)); res_write_xml(bundle->fRoot, bundle->fLocale, lang, TRUE, status); tabCount--; write_tabs(out); T_FileStream_write(out,bodyEnd, (int32_t)uprv_strlen(bodyEnd)); tabCount--; write_tabs(out); T_FileStream_write(out,fileEnd, (int32_t)uprv_strlen(fileEnd)); tabCount--; write_tabs(out); T_FileStream_write(out,bundleEnd,(int32_t)uprv_strlen(bundleEnd)); T_FileStream_close(out); ucnv_close(conv); cleanup_bundle_write_xml: if(originalFileName!= NULL) { uprv_free(originalFileName); originalFileName = NULL; } if(lang != NULL) { uprv_free(lang); lang = NULL; } if(pid != NULL) { uprv_free(pid); pid = NULL; } if(xmlfileName != NULL) { uprv_free(xmlfileName); pid = NULL; } if(outputFileName != NULL){ uprv_free(outputFileName); pid = NULL; } }