1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/********************************************************************
* COPYRIGHT:
* Copyright (c) 2007-2012, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#include "udbgutil.h"
#include "dbgutil.h"
#if !UCONFIG_NO_FORMATTING
#include "unicode/unistr.h"
#include "unicode/ustring.h"
#include "util.h"
#include "ucln.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
U_NAMESPACE_USE
static UnicodeString **strs = nullptr;
static const UnicodeString& _fieldString(UDebugEnumType type, int32_t field, UnicodeString& fillin) {
const char *str = udbg_enumName(type, field);
if(str == nullptr) {
return fillin.remove();
} else {
return fillin = UnicodeString(str, -1, US_INV);
}
}
U_CDECL_BEGIN
static void udbg_cleanup() {
if(strs != nullptr) {
for(int t=0;t<=UDBG_ENUM_COUNT;t++) {
delete [] strs[t];
}
delete[] strs;
strs = nullptr;
}
}
static UBool tu_cleanup()
{
udbg_cleanup();
return true;
}
static void udbg_register_cleanup() {
ucln_registerCleanup(UCLN_TOOLUTIL, tu_cleanup);
}
U_CDECL_END
static void udbg_setup() {
if(strs == nullptr) {
udbg_register_cleanup();
//fprintf(stderr,"Initializing string cache..\n");
//fflush(stderr);
UnicodeString **newStrs = new UnicodeString*[UDBG_ENUM_COUNT+1];
for(int t=0;t<UDBG_ENUM_COUNT;t++) {
int32_t c = udbg_enumCount((UDebugEnumType)t);
newStrs[t] = new UnicodeString[c+1];
for(int f=0;f<=c;f++) {
_fieldString((UDebugEnumType)t, f, newStrs[t][f]);
}
}
newStrs[UDBG_ENUM_COUNT] = new UnicodeString[1]; // empty string
strs = newStrs;
}
}
U_TOOLUTIL_API const UnicodeString& U_EXPORT2 udbg_enumString(UDebugEnumType type, int32_t field) {
if(strs == nullptr ) {
udbg_setup();
}
if(type<0||type>=UDBG_ENUM_COUNT) {
// use UDBG_ENUM_COUNT,0 to mean an empty string
//fprintf(stderr, "** returning out of range on %d\n",type);
//fflush(stderr);
return strs[UDBG_ENUM_COUNT][0];
}
int32_t count = udbg_enumCount(type);
//fprintf(stderr, "enumString [%d,%d]: typecount %d, fieldcount %d\n", type,field,UDBG_ENUM_COUNT,count);
//fflush(stderr);
if(field<0 || field > count) {
return strs[type][count];
} else { return strs[type][field];
}
}
U_CAPI int32_t U_EXPORT2 udbg_enumByString(UDebugEnumType type, const UnicodeString& string) {
if(type<0||type>=UDBG_ENUM_COUNT) {
return -1;
}
// initialize array
udbg_enumString(type,0);
// search
/// printf("type=%d\n", type); fflush(stdout);
for(int i=0;i<udbg_enumCount(type);i++) {
// printf("i=%d/%d\n", i, udbg_enumCount(type)); fflush(stdout);
if(string == (strs[type][i])) {
return i;
}
}
return -1;
}
// from DataMap::utoi
U_CAPI int32_t
udbg_stoi(const UnicodeString &s)
{
char ch[256];
const char16_t *u = toUCharPtr(s.getBuffer());
int32_t len = s.length();
u_UCharsToChars(u, ch, len);
ch[len] = 0; /* include terminating \0 */
return atoi(ch);
}
U_CAPI double
udbg_stod(const UnicodeString &s)
{
char ch[256];
const char16_t *u = toUCharPtr(s.getBuffer());
int32_t len = s.length();
u_UCharsToChars(u, ch, len);
ch[len] = 0; /* include terminating \0 */
return atof(ch);
}
U_CAPI UnicodeString *
udbg_escape(const UnicodeString &src, UnicodeString *dst)
{
dst->remove();
for (int32_t i = 0; i < src.length(); ++i) {
char16_t c = src[i];
if(ICU_Utility::isUnprintable(c)) {
*dst += UnicodeString("[");
ICU_Utility::escapeUnprintable(*dst, c);
*dst += UnicodeString("]");
}
else {
*dst += c;
}
}
return dst;
}
#endif
|