locale.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463
  1. /* Copyright (C) 2002 Manuel Novoa III
  2. *
  3. * This library is free software; you can redistribute it and/or
  4. * modify it under the terms of the GNU Library General Public
  5. * License as published by the Free Software Foundation; either
  6. * version 2 of the License, or (at your option) any later version.
  7. *
  8. * This library is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * Library General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Library General Public
  14. * License along with this library; if not, write to the Free
  15. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. /* Nov. 1, 2002
  18. * Reworked setlocale() return values and locale arg processing to
  19. * be more like glibc. Applications expecting to be able to
  20. * query locale settings should now work... at the cost of almost
  21. * doubling the size of the setlocale object code.
  22. * Fixed a bug in the internal fixed-size-string locale specifier code.
  23. *
  24. * Dec 20, 2002
  25. * Added in collation support and updated stub nl_langinfo.
  26. *
  27. * Aug 1, 2003
  28. * Added glibc-like extended locale stuff (newlocale, duplocale, etc).
  29. *
  30. * Aug 18, 2003
  31. * Bug in duplocale... collation data wasn't copied.
  32. * Bug in newlocale... translate 1<<LC_ALL to LC_ALL_MASK.
  33. * Bug in _wchar_utf8sntowcs... fix cut-n-paste error.
  34. *
  35. * Aug 31, 2003
  36. * Hack around bg_BG bug; grouping specified but no thousands separator.
  37. * Also, disable the locale link_warnings for now, as they generate a
  38. * lot of noise when using libstd++.
  39. */
  40. /* TODO:
  41. * Implement the shared mmap code so non-mmu platforms can use this.
  42. * Add some basic collate functionality similar to what the previous
  43. * locale support had (8-bit codesets only).
  44. */
  45. #define stpcpy __stpcpy
  46. #define strtok_r __strtok_r
  47. #define _GNU_SOURCE
  48. #define __CTYPE_HAS_8_BIT_LOCALES 1
  49. #include <string.h>
  50. #include <stdlib.h>
  51. #include <stddef.h>
  52. #include <limits.h>
  53. #include <stdint.h>
  54. #include <assert.h>
  55. #include <errno.h>
  56. #include <ctype.h>
  57. #include <stdio.h>
  58. #ifdef __UCLIBC_MJN3_ONLY__
  59. #ifdef L_setlocale
  60. #warning TODO: Make the link_warning()s a config option?
  61. #endif
  62. #endif
  63. #undef link_warning
  64. #define link_warning(A,B)
  65. #undef __LOCALE_C_ONLY
  66. #ifndef __UCLIBC_HAS_LOCALE__
  67. #define __LOCALE_C_ONLY
  68. #endif /* __UCLIBC_HAS_LOCALE__ */
  69. #ifdef __LOCALE_C_ONLY
  70. #include <locale.h>
  71. #else /* __LOCALE_C_ONLY */
  72. #ifdef __UCLIBC_MJN3_ONLY__
  73. #ifdef L_setlocale
  74. #warning TODO: Fix the __CTYPE_HAS_8_BIT_LOCALES define at the top of the file.
  75. #warning TODO: Fix __WCHAR_ENABLED.
  76. #endif
  77. #endif
  78. /* Need to include this before locale.h and xlocale.h! */
  79. #include <bits/uClibc_locale.h>
  80. #undef CODESET_LIST
  81. #define CODESET_LIST (__locale_mmap->codeset_list)
  82. #ifdef __UCLIBC_HAS_XLOCALE__
  83. #include <xlocale.h>
  84. #include <locale.h>
  85. #else /* __UCLIBC_HAS_XLOCALE__ */
  86. /* We need this internally... */
  87. #define __UCLIBC_HAS_XLOCALE__ 1
  88. #include <xlocale.h>
  89. #include <locale.h>
  90. #undef __UCLIBC_HAS_XLOCALE__
  91. #endif /* __UCLIBC_HAS_XLOCALE__ */
  92. #include <wchar.h>
  93. #define LOCALE_NAMES (__locale_mmap->locale_names5)
  94. #define LOCALES (__locale_mmap->locales)
  95. #define LOCALE_AT_MODIFIERS (__locale_mmap->locale_at_modifiers)
  96. #define CATEGORY_NAMES (__locale_mmap->lc_names)
  97. #ifdef __UCLIBC_MJN3_ONLY__
  98. #warning REMINDER: redo the MAX_LOCALE_STR stuff...
  99. #endif
  100. #define MAX_LOCALE_STR 256 /* TODO: Only sufficient for current case. */
  101. #define MAX_LOCALE_CATEGORY_STR 32 /* TODO: Only sufficient for current case. */
  102. /* Note: Best if MAX_LOCALE_CATEGORY_STR is a power of 2. */
  103. extern int _locale_set_l(const unsigned char *p, __locale_t base);
  104. extern void _locale_init_l(__locale_t base);
  105. #endif /* __LOCALE_C_ONLY */
  106. #undef LOCALE_STRING_SIZE
  107. #define LOCALE_SELECTOR_SIZE (2 * __LC_ALL + 2)
  108. #ifdef __UCLIBC_MJN3_ONLY__
  109. #ifdef L_setlocale
  110. #warning TODO: Create a C locale selector string.
  111. #endif
  112. #endif
  113. #define C_LOCALE_SELECTOR "\x23\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80"
  114. #include <langinfo.h>
  115. #include <nl_types.h>
  116. /**********************************************************************/
  117. #ifdef L_setlocale
  118. #ifdef __LOCALE_C_ONLY
  119. link_warning(setlocale,"REMINDER: The 'setlocale' function supports only C|POSIX locales.")
  120. static const char C_string[] = "C";
  121. char *setlocale(int category, register const char *locale)
  122. {
  123. return ( (((unsigned int)(category)) <= LC_ALL)
  124. && ( (!locale) /* Request for locale category string. */
  125. || (!*locale) /* Implementation-defined default is C. */
  126. || ((*locale == 'C') && !locale[1])
  127. || (!__strcmp(locale, "POSIX"))) )
  128. ? (char *) C_string /* Always in C/POSIX locale. */
  129. : NULL;
  130. }
  131. #else /* ---------------------------------------------- __LOCALE_C_ONLY */
  132. #ifdef __UCLIBC_HAS_THREADS__
  133. link_warning(setlocale,"REMINDER: The 'setlocale' function is _not_ threadsafe except for simple queries.")
  134. #endif
  135. #if !defined(__LOCALE_DATA_NUM_LOCALES) || (__LOCALE_DATA_NUM_LOCALES <= 1)
  136. #error locales enabled, but not data other than for C locale!
  137. #endif
  138. #ifdef __UCLIBC_MJN3_ONLY__
  139. #warning TODO: Move posix and utf8 strings.
  140. #endif
  141. static const char posix[] = "POSIX";
  142. static const char utf8[] = "UTF-8";
  143. #ifdef __UCLIBC_MJN3_ONLY__
  144. #warning TODO: Fix dimensions of hr_locale.
  145. #endif
  146. /* Individual category strings start at hr_locale + category * MAX_LOCALE_CATEGORY.
  147. * This holds for LC_ALL as well.
  148. */
  149. static char hr_locale[(MAX_LOCALE_CATEGORY_STR * LC_ALL) + MAX_LOCALE_STR];
  150. static void update_hr_locale(const unsigned char *spec)
  151. {
  152. const unsigned char *loc;
  153. const unsigned char *s;
  154. char *n;
  155. int i, category, done;
  156. done = category = 0;
  157. do {
  158. s = spec + 1;
  159. n = hr_locale + category * MAX_LOCALE_CATEGORY_STR;
  160. if (category == LC_ALL) {
  161. done = 1;
  162. for (i = 0 ; i < LC_ALL-1 ; i += 2) {
  163. if ((s[i] != s[i+2]) || (s[i+1] != s[i+3])) {
  164. goto SKIP;
  165. }
  166. }
  167. /* All categories the same, so simplify string by using a single
  168. * category. */
  169. category = LC_CTYPE;
  170. }
  171. SKIP:
  172. i = (category == LC_ALL) ? 0 : category;
  173. s += 2*i;
  174. do {
  175. if ((*s != 0xff) || (s[1] != 0xff)) {
  176. loc = LOCALES
  177. + __LOCALE_DATA_WIDTH_LOCALES * ((((int)(*s & 0x7f)) << 7)
  178. + (s[1] & 0x7f));
  179. if (category == LC_ALL) {
  180. n = stpcpy(n, CATEGORY_NAMES + (int) CATEGORY_NAMES[i]);
  181. *n++ = '=';
  182. }
  183. if (*loc == 0) {
  184. *n++ = 'C';
  185. *n = 0;
  186. } else {
  187. char at = 0;
  188. __memcpy(n, LOCALE_NAMES + 5*((*loc)-1), 5);
  189. if (n[2] != '_') {
  190. at = n[2];
  191. n[2] = '_';
  192. }
  193. n += 5;
  194. *n++ = '.';
  195. if (loc[2] == 2) {
  196. n = stpcpy(n, utf8);
  197. } else if (loc[2] >= 3) {
  198. n = stpcpy(n, CODESET_LIST + (int)(CODESET_LIST[loc[2] - 3]));
  199. }
  200. if (at) {
  201. const char *q;
  202. *n++ = '@';
  203. q = LOCALE_AT_MODIFIERS;
  204. do {
  205. if (q[1] == at) {
  206. n = stpcpy(n, q+2);
  207. break;
  208. }
  209. q += 2 + *q;
  210. } while (*q);
  211. }
  212. }
  213. *n++ = ';';
  214. }
  215. s += 2;
  216. } while (++i < category);
  217. *--n = 0; /* Remove trailing ';' and nul-terminate. */
  218. ++category;
  219. } while (!done);
  220. }
  221. char *setlocale(int category, const char *locale)
  222. {
  223. if (((unsigned int)(category)) > LC_ALL) {
  224. #if 0
  225. __set_errno(EINVAL); /* glibc sets errno -- SUSv3 doesn't say. */
  226. #endif
  227. return NULL; /* Illegal/unsupported category. */
  228. }
  229. if (locale != NULL) { /* Not just a query... */
  230. if (!__newlocale((1 << category), locale, __global_locale)) {
  231. return NULL; /* Failed! */
  232. }
  233. update_hr_locale(__global_locale->cur_locale);
  234. }
  235. /* Either a query or a successful set, so return current locale string. */
  236. return hr_locale + (category * MAX_LOCALE_CATEGORY_STR);
  237. }
  238. #endif /* __LOCALE_C_ONLY */
  239. #endif
  240. /**********************************************************************/
  241. #ifdef L_localeconv
  242. /* Note: We assume here that the compiler does the sane thing regarding
  243. * placement of the fields in the struct. If necessary, we could ensure
  244. * this usings an array of offsets but at some size cost. */
  245. #ifdef __LOCALE_C_ONLY
  246. link_warning(localeconv,"REMINDER: The 'localeconv' function is hardwired for C/POSIX locale only.")
  247. static struct lconv the_lconv;
  248. static const char decpt[] = ".";
  249. struct lconv *localeconv(void)
  250. {
  251. register char *p = (char *)(&the_lconv);
  252. *((char **)p) = (char *) decpt;
  253. do {
  254. p += sizeof(char **);
  255. *((char **)p) = (char *) (decpt+1);
  256. } while (p < (char *) &the_lconv.negative_sign);
  257. p = (&the_lconv.int_frac_digits);
  258. do {
  259. *p = CHAR_MAX;
  260. ++p;
  261. } while (p <= &the_lconv.int_n_sign_posn);
  262. return &the_lconv;
  263. }
  264. #else /* __LOCALE_C_ONLY */
  265. static struct lconv the_lconv;
  266. struct lconv *localeconv(void)
  267. {
  268. register char *p = (char *) &the_lconv;
  269. register char **q = (char **) &(__UCLIBC_CURLOCALE_DATA).decimal_point;
  270. do {
  271. *((char **)p) = *q;
  272. p += sizeof(char **);
  273. ++q;
  274. } while (p < &the_lconv.int_frac_digits);
  275. do {
  276. *p = **q;
  277. ++p;
  278. ++q;
  279. } while (p <= &the_lconv.int_n_sign_posn);
  280. return &the_lconv;
  281. }
  282. #endif /* __LOCALE_C_ONLY */
  283. #endif
  284. /**********************************************************************/
  285. #if defined(L__locale_init) && !defined(__LOCALE_C_ONLY)
  286. __uclibc_locale_t __global_locale_data;
  287. __locale_t __global_locale = &__global_locale_data;
  288. #ifdef __UCLIBC_HAS_XLOCALE__
  289. __locale_t __curlocale_var = &__global_locale_data;
  290. #endif
  291. /*----------------------------------------------------------------------*/
  292. #ifdef __UCLIBC_MJN3_ONLY__
  293. #warning TODO: Move utf8 and ascii strings.
  294. #endif
  295. static const char utf8[] = "UTF-8";
  296. static const char ascii[] = "ASCII";
  297. typedef struct {
  298. uint16_t num_base;
  299. uint16_t num_der;
  300. uint16_t MAX_WEIGHTS;
  301. uint16_t num_index2weight;
  302. #define num_index2ruleidx num_index2weight
  303. uint16_t num_weightstr;
  304. uint16_t num_multistart;
  305. uint16_t num_override;
  306. uint16_t num_ruletable;
  307. } coldata_header_t;
  308. typedef struct {
  309. uint16_t num_weights;
  310. uint16_t num_starters;
  311. uint16_t ii_shift;
  312. uint16_t ti_shift;
  313. uint16_t ii_len;
  314. uint16_t ti_len;
  315. uint16_t max_weight;
  316. uint16_t num_col_base;
  317. uint16_t max_col_index;
  318. uint16_t undefined_idx;
  319. uint16_t range_low;
  320. uint16_t range_count;
  321. uint16_t range_base_weight;
  322. uint16_t range_rule_offset;
  323. uint16_t index2weight_offset;
  324. uint16_t index2ruleidx_offset;
  325. uint16_t multistart_offset;
  326. uint16_t wcs2colidt_offset_low;
  327. uint16_t wcs2colidt_offset_hi;
  328. } coldata_base_t;
  329. typedef struct {
  330. uint16_t base_idx;
  331. uint16_t undefined_idx;
  332. uint16_t overrides_offset;
  333. uint16_t multistart_offset;
  334. } coldata_der_t;
  335. static int init_cur_collate(int der_num, __collate_t *cur_collate)
  336. {
  337. const uint16_t *__locale_collate_tbl = __locale_mmap->collate_data;
  338. coldata_header_t *cdh;
  339. coldata_base_t *cdb;
  340. coldata_der_t *cdd;
  341. const uint16_t *p;
  342. size_t n;
  343. uint16_t i, w;
  344. #ifdef __UCLIBC_MJN3_ONLY__
  345. #warning kill of x86-specific asserts
  346. #endif
  347. #if 0
  348. assert(sizeof(coldata_base_t) == 19*2);
  349. assert(sizeof(coldata_der_t) == 4*2);
  350. assert(sizeof(coldata_header_t) == 8*2);
  351. #endif
  352. if (!der_num) { /* C locale... special */
  353. cur_collate->num_weights = 0;
  354. return 1;
  355. }
  356. --der_num;
  357. cdh = (coldata_header_t *) __locale_collate_tbl;
  358. #ifdef __UCLIBC_MJN3_ONLY__
  359. #warning CONSIDER: Should we assert here?
  360. #endif
  361. #if 0
  362. if (der_num >= cdh->num_der) {
  363. return 0;
  364. }
  365. #else
  366. assert((der_num < cdh->num_der));
  367. #endif
  368. cdd = (coldata_der_t *)(__locale_collate_tbl
  369. + (sizeof(coldata_header_t)
  370. + cdh->num_base * sizeof(coldata_base_t)
  371. + der_num * sizeof(coldata_der_t)
  372. )/2 );
  373. cdb = (coldata_base_t *)(__locale_collate_tbl
  374. + (sizeof(coldata_header_t)
  375. + cdd->base_idx * sizeof(coldata_base_t)
  376. )/2 );
  377. __memcpy(cur_collate, cdb, offsetof(coldata_base_t,index2weight_offset));
  378. cur_collate->undefined_idx = cdd->undefined_idx;
  379. cur_collate->ti_mask = (1 << cur_collate->ti_shift)-1;
  380. cur_collate->ii_mask = (1 << cur_collate->ii_shift)-1;
  381. /* fflush(stdout); */
  382. /* fprintf(stderr,"base=%d num_col_base: %d %d\n", cdd->base_idx ,cur_collate->num_col_base, cdb->num_col_base); */
  383. n = (sizeof(coldata_header_t) + cdh->num_base * sizeof(coldata_base_t)
  384. + cdh->num_der * sizeof(coldata_der_t))/2;
  385. /* fprintf(stderr,"n = %d\n", n); */
  386. cur_collate->index2weight_tbl = __locale_collate_tbl + n + cdb->index2weight_offset;
  387. /* fprintf(stderr,"i2w = %d\n", n + cdb->index2weight_offset); */
  388. n += cdh->num_index2weight;
  389. cur_collate->index2ruleidx_tbl = __locale_collate_tbl + n + cdb->index2ruleidx_offset;
  390. /* fprintf(stderr,"i2r = %d\n", n + cdb->index2ruleidx_offset); */
  391. n += cdh->num_index2ruleidx;
  392. cur_collate->multistart_tbl = __locale_collate_tbl + n + cdd->multistart_offset;
  393. /* fprintf(stderr,"mts = %d\n", n + cdb->multistart_offset); */
  394. n += cdh->num_multistart;
  395. cur_collate->overrides_tbl = __locale_collate_tbl + n + cdd->overrides_offset;
  396. /* fprintf(stderr,"ovr = %d\n", n + cdd->overrides_offset); */
  397. n += cdh->num_override;
  398. cur_collate->ruletable = __locale_collate_tbl + n;
  399. /* fprintf(stderr, "rtb = %d\n", n); */
  400. n += cdh->num_ruletable;
  401. cur_collate->weightstr = __locale_collate_tbl + n;
  402. /* fprintf(stderr,"wts = %d\n", n); */
  403. n += cdh->num_weightstr;
  404. cur_collate->wcs2colidt_tbl = __locale_collate_tbl + n
  405. + (((unsigned long)(cdb->wcs2colidt_offset_hi)) << 16)
  406. + cdb->wcs2colidt_offset_low;
  407. /* fprintf(stderr,"wcs = %lu\n", n + (((unsigned long)(cdb->wcs2colidt_offset_hi)) << 16) */
  408. /* + cdb->wcs2colidt_offset_low); */
  409. cur_collate->MAX_WEIGHTS = cdh->MAX_WEIGHTS;
  410. #ifdef __UCLIBC_MJN3_ONLY__
  411. #warning CONSIDER: Fix the +1 by increasing max_col_index?
  412. #warning CONSIDER: Since this collate info is dependent only on LC_COLLATE ll_cc and not on codeset, we could just globally allocate this for each in a table
  413. #endif
  414. cur_collate->index2weight = calloc(2*cur_collate->max_col_index+2,
  415. sizeof(uint16_t));
  416. if (!cur_collate->index2weight) {
  417. return 0;
  418. }
  419. cur_collate->index2ruleidx = cur_collate->index2weight
  420. + cur_collate->max_col_index + 1;
  421. __memcpy(cur_collate->index2weight, cur_collate->index2weight_tbl,
  422. cur_collate->num_col_base * sizeof(uint16_t));
  423. __memcpy(cur_collate->index2ruleidx, cur_collate->index2ruleidx_tbl,
  424. cur_collate->num_col_base * sizeof(uint16_t));
  425. /* now do the overrides */
  426. p = cur_collate->overrides_tbl;
  427. while (*p > 1) {
  428. /* fprintf(stderr, "processing override -- count = %d\n", *p); */
  429. n = *p++;
  430. w = *p++;
  431. do {
  432. i = *p++;
  433. /* fprintf(stderr, " i=%d (%#x) w=%d *p=%d\n", i, i, w, *p); */
  434. cur_collate->index2weight[i-1] = w++;
  435. cur_collate->index2ruleidx[i-1] = *p++;
  436. } while (--n);
  437. }
  438. assert(*p == 1);
  439. while (*++p) {
  440. i = *p;
  441. /* fprintf(stderr, " i=%d (%#x) w=%d *p=%d\n", i, i, p[1], p[2]); */
  442. cur_collate->index2weight[i-1] = *++p;
  443. cur_collate->index2ruleidx[i-1] = *++p;
  444. }
  445. for (i=0 ; i < cur_collate->multistart_tbl[0] ; i++) {
  446. p = cur_collate->multistart_tbl;
  447. /* fprintf(stderr, "%2d of %2d: %d ", i, cur_collate->multistart_tbl[0], p[i]); */
  448. p += p[i];
  449. do {
  450. n = *p++;
  451. do {
  452. if (!*p) { /* found it */
  453. /* fprintf(stderr, "found: n=%d (%#lx) |%.*ls|\n", n, (int) *cs->s, n, cs->s); */
  454. /* fprintf(stderr, ": %d - single\n", n); */
  455. goto FOUND;
  456. }
  457. /* the lookup check here is safe since we're assured that *p is a valid colidex */
  458. /* fprintf(stderr, "lookup(%lc)==%d *p==%d\n", cs->s[n], lookup(cs->s[n]), (int) *p); */
  459. /* fprintf(stderr, ": %d - ", n); */
  460. do {
  461. /* fprintf(stderr, "%d|", *p); */
  462. } while (*p++);
  463. break;
  464. } while (1);
  465. } while (1);
  466. FOUND:
  467. continue;
  468. }
  469. return 1;
  470. }
  471. int _locale_set_l(const unsigned char *p, __locale_t base)
  472. {
  473. const char **x;
  474. unsigned char *s = base->cur_locale + 1;
  475. const size_t *stp;
  476. const unsigned char *r;
  477. const uint16_t *io;
  478. const uint16_t *ii;
  479. const unsigned char *d;
  480. int row; /* locale row */
  481. int crow; /* category row */
  482. int len;
  483. int c;
  484. int i = 0;
  485. __collate_t newcol;
  486. ++p;
  487. newcol.index2weight = NULL;
  488. if ((p[2*LC_COLLATE] != s[2*LC_COLLATE])
  489. || (p[2*LC_COLLATE + 1] != s[2*LC_COLLATE + 1])
  490. ) {
  491. row = (((int)(*p & 0x7f)) << 7) + (p[1] & 0x7f);
  492. assert(row < __LOCALE_DATA_NUM_LOCALES);
  493. if (!init_cur_collate(__locale_mmap->locales[ __LOCALE_DATA_WIDTH_LOCALES
  494. * row + 3 + LC_COLLATE ],
  495. &newcol)
  496. ) {
  497. return 0; /* calloc failed. */
  498. }
  499. free(base->collate.index2weight);
  500. __memcpy(&base->collate, &newcol, sizeof(__collate_t));
  501. }
  502. do {
  503. if ((*p != *s) || (p[1] != s[1])) {
  504. row = (((int)(*p & 0x7f)) << 7) + (p[1] & 0x7f);
  505. assert(row < __LOCALE_DATA_NUM_LOCALES);
  506. *s = *p;
  507. s[1] = p[1];
  508. if ((i != LC_COLLATE)
  509. && ((len = __locale_mmap->lc_common_item_offsets_LEN[i]) != 0)
  510. ) {
  511. crow = __locale_mmap->locales[ __LOCALE_DATA_WIDTH_LOCALES * row
  512. + 3 + i ]
  513. * len;
  514. x = (const char **)(((char *) base)
  515. + base->category_offsets[i]);
  516. stp = __locale_mmap->lc_common_tbl_offsets + 4*i;
  517. r = (const unsigned char *)( ((char *)__locale_mmap) + *stp );
  518. io = (const uint16_t *)( ((char *)__locale_mmap) + *++stp );
  519. ii = (const uint16_t *)( ((char *)__locale_mmap) + *++stp );
  520. d = (const unsigned char *)( ((char *)__locale_mmap) + *++stp );
  521. for (c=0 ; c < len ; c++) {
  522. *(x + c) = d + ii[ r[crow + c] + io[c] ];
  523. }
  524. }
  525. if (i == LC_CTYPE) {
  526. c = __locale_mmap->locales[ __LOCALE_DATA_WIDTH_LOCALES * row
  527. + 2 ]; /* codeset */
  528. if (c <= 2) {
  529. if (c == 2) {
  530. base->codeset = utf8;
  531. base->encoding = __ctype_encoding_utf8;
  532. /* TODO - fix for bcc */
  533. base->mb_cur_max = 6;
  534. } else {
  535. assert(c==1);
  536. base->codeset = ascii;
  537. base->encoding = __ctype_encoding_7_bit;
  538. base->mb_cur_max = 1;
  539. }
  540. } else {
  541. const __codeset_8_bit_t *c8b;
  542. r = CODESET_LIST;
  543. base->codeset = r + r[c -= 3];
  544. base->encoding = __ctype_encoding_8_bit;
  545. #ifdef __UCLIBC_MJN3_ONLY__
  546. #warning REMINDER: update 8 bit mb_cur_max when translit implemented!
  547. #endif
  548. /* TODO - update when translit implemented! */
  549. base->mb_cur_max = 1;
  550. c8b = __locale_mmap->codeset_8_bit + c;
  551. #ifdef __CTYPE_HAS_8_BIT_LOCALES
  552. base->idx8ctype = c8b->idx8ctype;
  553. base->idx8uplow = c8b->idx8uplow;
  554. #ifdef __UCLIBC_HAS_WCHAR__
  555. base->idx8c2wc = c8b->idx8c2wc;
  556. base->idx8wc2c = c8b->idx8wc2c;
  557. /* translit */
  558. #endif /* __UCLIBC_HAS_WCHAR__ */
  559. /* What follows is fairly bloated, but it is just a hack
  560. * to get the 8-bit codeset ctype stuff functioning.
  561. * All of this will be replaced in the next generation
  562. * of locale support anyway... */
  563. __memcpy(base->__ctype_b_data,
  564. __C_ctype_b - __UCLIBC_CTYPE_B_TBL_OFFSET,
  565. (256 + __UCLIBC_CTYPE_B_TBL_OFFSET)
  566. * sizeof(__ctype_mask_t));
  567. __memcpy(base->__ctype_tolower_data,
  568. __C_ctype_tolower - __UCLIBC_CTYPE_TO_TBL_OFFSET,
  569. (256 + __UCLIBC_CTYPE_TO_TBL_OFFSET)
  570. * sizeof(__ctype_touplow_t));
  571. __memcpy(base->__ctype_toupper_data,
  572. __C_ctype_toupper - __UCLIBC_CTYPE_TO_TBL_OFFSET,
  573. (256 + __UCLIBC_CTYPE_TO_TBL_OFFSET)
  574. * sizeof(__ctype_touplow_t));
  575. #define Cctype_TBL_MASK ((1 << __LOCALE_DATA_Cctype_IDX_SHIFT) - 1)
  576. #define Cctype_IDX_OFFSET (128 >> __LOCALE_DATA_Cctype_IDX_SHIFT)
  577. {
  578. int u;
  579. __ctype_mask_t m;
  580. for (u=0 ; u < 128 ; u++) {
  581. #ifdef __LOCALE_DATA_Cctype_PACKED
  582. c = base->tbl8ctype
  583. [ ((int)(c8b->idx8ctype
  584. [(u >> __LOCALE_DATA_Cctype_IDX_SHIFT) ])
  585. << (__LOCALE_DATA_Cctype_IDX_SHIFT - 1))
  586. + ((u & Cctype_TBL_MASK) >> 1)];
  587. c = (u & 1) ? (c >> 4) : (c & 0xf);
  588. #else
  589. c = base->tbl8ctype
  590. [ ((int)(c8b->idx8ctype
  591. [(u >> __LOCALE_DATA_Cctype_IDX_SHIFT) ])
  592. << __LOCALE_DATA_Cctype_IDX_SHIFT)
  593. + (u & Cctype_TBL_MASK) ];
  594. #endif
  595. m = base->code2flag[c];
  596. base->__ctype_b_data
  597. [128 + __UCLIBC_CTYPE_B_TBL_OFFSET + u]
  598. = m;
  599. #ifdef __UCLIBC_HAS_CTYPE_SIGNED__
  600. if (((signed char)(128 + u)) != -1) {
  601. base->__ctype_b_data[__UCLIBC_CTYPE_B_TBL_OFFSET
  602. + ((signed char)(128 + u))]
  603. = m;
  604. }
  605. #endif
  606. base->__ctype_tolower_data
  607. [128 + __UCLIBC_CTYPE_TO_TBL_OFFSET + u]
  608. = 128 + u;
  609. base->__ctype_toupper_data
  610. [128 + __UCLIBC_CTYPE_TO_TBL_OFFSET + u]
  611. = 128 + u;
  612. if (m & (_ISlower|_ISupper)) {
  613. c = base->tbl8uplow
  614. [ ((int)(c8b->idx8uplow
  615. [u >> __LOCALE_DATA_Cuplow_IDX_SHIFT])
  616. << __LOCALE_DATA_Cuplow_IDX_SHIFT)
  617. + ((128 + u)
  618. & ((1 << __LOCALE_DATA_Cuplow_IDX_SHIFT)
  619. - 1)) ];
  620. if (m & _ISlower) {
  621. base->__ctype_toupper_data
  622. [128 + __UCLIBC_CTYPE_TO_TBL_OFFSET + u]
  623. = (unsigned char)(128 + u + c);
  624. #ifdef __UCLIBC_HAS_CTYPE_SIGNED__
  625. if (((signed char)(128 + u)) != -1) {
  626. base->__ctype_toupper_data
  627. [__UCLIBC_CTYPE_TO_TBL_OFFSET
  628. + ((signed char)(128 + u))]
  629. = (unsigned char)(128 + u + c);
  630. }
  631. #endif
  632. } else {
  633. base->__ctype_tolower_data
  634. [128 + __UCLIBC_CTYPE_TO_TBL_OFFSET + u]
  635. = (unsigned char)(128 + u - c);
  636. #ifdef __UCLIBC_HAS_CTYPE_SIGNED__
  637. if (((signed char)(128 + u)) != -1) {
  638. base->__ctype_tolower_data
  639. [__UCLIBC_CTYPE_TO_TBL_OFFSET
  640. + ((signed char)(128 + u))]
  641. = (unsigned char)(128 + u - c);
  642. }
  643. #endif
  644. }
  645. }
  646. }
  647. }
  648. #ifdef __UCLIBC_HAS_XLOCALE__
  649. base->__ctype_b = base->__ctype_b_data
  650. + __UCLIBC_CTYPE_B_TBL_OFFSET;
  651. base->__ctype_tolower = base->__ctype_tolower_data
  652. + __UCLIBC_CTYPE_TO_TBL_OFFSET;
  653. base->__ctype_toupper = base->__ctype_toupper_data
  654. + __UCLIBC_CTYPE_TO_TBL_OFFSET;
  655. #else /* __UCLIBC_HAS_XLOCALE__ */
  656. __ctype_b = base->__ctype_b_data
  657. + __UCLIBC_CTYPE_B_TBL_OFFSET;
  658. __ctype_tolower = base->__ctype_tolower_data
  659. + __UCLIBC_CTYPE_TO_TBL_OFFSET;
  660. __ctype_toupper = base->__ctype_toupper_data
  661. + __UCLIBC_CTYPE_TO_TBL_OFFSET;
  662. #endif /* __UCLIBC_HAS_XLOCALE__ */
  663. #endif /* __CTYPE_HAS_8_BIT_LOCALES */
  664. }
  665. #ifdef __UCLIBC_MJN3_ONLY__
  666. #warning TODO: Put the outdigit string length in the locale_mmap object.
  667. #endif
  668. d = base->outdigit_length;
  669. x = &base->outdigit0_mb;
  670. for (c = 0 ; c < 10 ; c++) {
  671. ((unsigned char *)d)[c] = __strlen(x[c]);
  672. assert(d[c] > 0);
  673. }
  674. } else if (i == LC_NUMERIC) {
  675. assert(LC_NUMERIC > LC_CTYPE); /* Need ctype initialized. */
  676. base->decimal_point_len
  677. = __locale_mbrtowc_l(&base->decimal_point_wc,
  678. base->decimal_point, base);
  679. assert(base->decimal_point_len > 0);
  680. assert(base->decimal_point[base->decimal_point_len] == 0);
  681. if (*base->grouping) {
  682. base->thousands_sep_len
  683. = __locale_mbrtowc_l(&base->thousands_sep_wc,
  684. base->thousands_sep, base);
  685. #if 1
  686. #ifdef __UCLIBC_MJN3_ONLY__
  687. #warning TODO: Remove hack involving grouping without a thousep char (bg_BG).
  688. #endif
  689. assert(base->thousands_sep_len >= 0);
  690. if (base->thousands_sep_len == 0) {
  691. base->grouping = base->thousands_sep; /* empty string */
  692. }
  693. assert(base->thousands_sep[base->thousands_sep_len] == 0);
  694. #else
  695. assert(base->thousands_sep_len > 0);
  696. assert(base->thousands_sep[base->thousands_sep_len] == 0);
  697. #endif
  698. }
  699. /* } else if (i == LC_COLLATE) { */
  700. /* init_cur_collate(__locale_mmap->locales[ __LOCALE_DATA_WIDTH_LOCALES */
  701. /* * row + 3 + i ], */
  702. /* &base->collate); */
  703. }
  704. }
  705. ++i;
  706. p += 2;
  707. s += 2;
  708. } while (i < LC_ALL);
  709. return 1;
  710. }
  711. static const uint16_t __code2flag[16] = {
  712. 0, /* unclassified = 0 */
  713. _ISprint|_ISgraph|_ISalnum|_ISalpha, /* alpha_nonupper_nonlower */
  714. _ISprint|_ISgraph|_ISalnum|_ISalpha|_ISlower, /* alpha_lower */
  715. _ISprint|_ISgraph|_ISalnum|_ISalpha|_ISlower|_ISupper, /* alpha_upper_lower */
  716. _ISprint|_ISgraph|_ISalnum|_ISalpha|_ISupper, /* alpha_upper */
  717. _ISprint|_ISgraph|_ISalnum|_ISdigit, /* digit */
  718. _ISprint|_ISgraph|_ISpunct, /* punct */
  719. _ISprint|_ISgraph, /* graph */
  720. _ISprint|_ISspace, /* print_space_nonblank */
  721. _ISprint|_ISspace|_ISblank, /* print_space_blank */
  722. _ISspace, /* space_nonblank_noncntrl */
  723. _ISspace|_ISblank, /* space_blank_noncntrl */
  724. _IScntrl|_ISspace, /* cntrl_space_nonblank */
  725. _IScntrl|_ISspace|_ISblank, /* cntrl_space_blank */
  726. _IScntrl /* cntrl_nonspace */
  727. };
  728. void _locale_init_l(__locale_t base)
  729. {
  730. __memset(base->cur_locale, 0, LOCALE_SELECTOR_SIZE);
  731. base->cur_locale[0] = '#';
  732. __memcpy(base->category_item_count,
  733. __locale_mmap->lc_common_item_offsets_LEN,
  734. LC_ALL);
  735. ++base->category_item_count[0]; /* Increment for codeset entry. */
  736. base->category_offsets[0] = offsetof(__uclibc_locale_t, outdigit0_mb);
  737. base->category_offsets[1] = offsetof(__uclibc_locale_t, decimal_point);
  738. base->category_offsets[2] = offsetof(__uclibc_locale_t, int_curr_symbol);
  739. base->category_offsets[3] = offsetof(__uclibc_locale_t, abday_1);
  740. /* base->category_offsets[4] = offsetof(__uclibc_locale_t, collate???); */
  741. base->category_offsets[5] = offsetof(__uclibc_locale_t, yesexpr);
  742. #ifdef __CTYPE_HAS_8_BIT_LOCALES
  743. base->tbl8ctype
  744. = (const unsigned char *) &__locale_mmap->tbl8ctype;
  745. base->tbl8uplow
  746. = (const unsigned char *) &__locale_mmap->tbl8uplow;
  747. #ifdef __UCLIBC_HAS_WCHAR__
  748. base->tbl8c2wc
  749. = (const uint16_t *) &__locale_mmap->tbl8c2wc;
  750. base->tbl8wc2c
  751. = (const unsigned char *) &__locale_mmap->tbl8wc2c;
  752. /* translit */
  753. #endif /* __UCLIBC_HAS_WCHAR__ */
  754. #endif /* __CTYPE_HAS_8_BIT_LOCALES */
  755. #ifdef __UCLIBC_HAS_WCHAR__
  756. base->tblwctype
  757. = (const unsigned char *) &__locale_mmap->tblwctype;
  758. base->tblwuplow
  759. = (const unsigned char *) &__locale_mmap->tblwuplow;
  760. base->tblwuplow_diff
  761. = (const uint16_t *) &__locale_mmap->tblwuplow_diff;
  762. /* base->tblwcomb */
  763. /* = (const unsigned char *) &__locale_mmap->tblwcomb; */
  764. /* width?? */
  765. #endif /* __UCLIBC_HAS_WCHAR__ */
  766. /* Initially, set things up to use the global C ctype tables.
  767. * This is correct for C (ASCII) and UTF-8 based locales (except tr_TR). */
  768. #ifdef __UCLIBC_HAS_XLOCALE__
  769. base->__ctype_b = __C_ctype_b;
  770. base->__ctype_tolower = __C_ctype_tolower;
  771. base->__ctype_toupper = __C_ctype_toupper;
  772. #else /* __UCLIBC_HAS_XLOCALE__ */
  773. __ctype_b = __C_ctype_b;
  774. __ctype_tolower = __C_ctype_tolower;
  775. __ctype_toupper = __C_ctype_toupper;
  776. #endif /* __UCLIBC_HAS_XLOCALE__ */
  777. #ifdef __UCLIBC_MJN3_ONLY__
  778. #warning TODO: Initialize code2flag correctly based on locale_mmap.
  779. #endif
  780. base->code2flag = __code2flag;
  781. _locale_set_l(C_LOCALE_SELECTOR, base);
  782. }
  783. void _locale_init(void)
  784. {
  785. /* TODO: mmap the locale file */
  786. /* TODO - ??? */
  787. _locale_init_l(__global_locale);
  788. }
  789. #endif
  790. /**********************************************************************/
  791. #if defined(L_nl_langinfo) || defined(L_nl_langinfo_l)
  792. #ifdef __LOCALE_C_ONLY
  793. /* We need to index 320 bytes of data, so you might initially think we
  794. * need to store the offsets in shorts. But since the offset of the
  795. * 64th item is 182, we'll store "offset - 2*64" for all items >= 64
  796. * and always calculate the data offset as "offset[i] + 2*(i & 64)".
  797. * This allows us to pack the data offsets in an unsigned char while
  798. * also avoiding an "if".
  799. *
  800. * Note: Category order is assumed to be:
  801. * ctype, numeric, monetary, time, collate, messages, all
  802. */
  803. #define C_LC_ALL 6
  804. /* Combine the data to avoid size penalty for seperate char arrays when
  805. * compiler aligns objects. The original code is left in as documentation. */
  806. #define cat_start nl_data
  807. #define C_locale_data (nl_data + C_LC_ALL + 1 + 90)
  808. static const unsigned char nl_data[C_LC_ALL + 1 + 90 + 320] = {
  809. /* static const char cat_start[LC_ALL + 1] = { */
  810. '\x00', '\x0b', '\x0e', '\x24', '\x56', '\x56', '\x5a',
  811. /* }; */
  812. /* static const char item_offset[90] = { */
  813. '\x00', '\x02', '\x04', '\x06', '\x08', '\x0a', '\x0c', '\x0e',
  814. '\x10', '\x12', '\x14', '\x1a', '\x1b', '\x1b', '\x1b', '\x1b',
  815. '\x1b', '\x1b', '\x1b', '\x1b', '\x1b', '\x1c', '\x1c', '\x1c',
  816. '\x1c', '\x1c', '\x1c', '\x1c', '\x1c', '\x1c', '\x1c', '\x1c',
  817. '\x1c', '\x1c', '\x1c', '\x1e', '\x20', '\x24', '\x28', '\x2c',
  818. '\x30', '\x34', '\x38', '\x3c', '\x43', '\x4a', '\x52', '\x5c',
  819. '\x65', '\x6c', '\x75', '\x79', '\x7d', '\x81', '\x85', '\x89',
  820. '\x8d', '\x91', '\x95', '\x99', '\x9d', '\xa1', '\xa5', '\xad',
  821. '\x36', '\x3c', '\x42', '\x46', '\x4b', '\x50', '\x57', '\x61',
  822. '\x69', '\x72', '\x7b', '\x7e', '\x81', '\x96', '\x9f', '\xa8',
  823. '\xb3', '\xb3', '\xb3', '\xb3', '\xb3', '\xb3', '\xb4', '\xba',
  824. '\xbf', '\xbf',
  825. /* }; */
  826. /* static const char C_locale_data[320] = { */
  827. '0', '\x00', '1', '\x00', '2', '\x00', '3', '\x00',
  828. '4', '\x00', '5', '\x00', '6', '\x00', '7', '\x00',
  829. '8', '\x00', '9', '\x00', 'A', 'S', 'C', 'I',
  830. 'I', '\x00', '.', '\x00', '\x7f', '\x00', '-', '\x00',
  831. 'S', 'u', 'n', '\x00', 'M', 'o', 'n', '\x00',
  832. 'T', 'u', 'e', '\x00', 'W', 'e', 'd', '\x00',
  833. 'T', 'h', 'u', '\x00', 'F', 'r', 'i', '\x00',
  834. 'S', 'a', 't', '\x00', 'S', 'u', 'n', 'd',
  835. 'a', 'y', '\x00', 'M', 'o', 'n', 'd', 'a',
  836. 'y', '\x00', 'T', 'u', 'e', 's', 'd', 'a',
  837. 'y', '\x00', 'W', 'e', 'd', 'n', 'e', 's',
  838. 'd', 'a', 'y', '\x00', 'T', 'h', 'u', 'r',
  839. 's', 'd', 'a', 'y', '\x00', 'F', 'r', 'i',
  840. 'd', 'a', 'y', '\x00', 'S', 'a', 't', 'u',
  841. 'r', 'd', 'a', 'y', '\x00', 'J', 'a', 'n',
  842. '\x00', 'F', 'e', 'b', '\x00', 'M', 'a', 'r',
  843. '\x00', 'A', 'p', 'r', '\x00', 'M', 'a', 'y',
  844. '\x00', 'J', 'u', 'n', '\x00', 'J', 'u', 'l',
  845. '\x00', 'A', 'u', 'g', '\x00', 'S', 'e', 'p',
  846. '\x00', 'O', 'c', 't', '\x00', 'N', 'o', 'v',
  847. '\x00', 'D', 'e', 'c', '\x00', 'J', 'a', 'n',
  848. 'u', 'a', 'r', 'y', '\x00', 'F', 'e', 'b',
  849. 'r', 'u', 'a', 'r', 'y', '\x00', 'M', 'a',
  850. 'r', 'c', 'h', '\x00', 'A', 'p', 'r', 'i',
  851. 'l', '\x00', 'M', 'a', 'y', '\x00', 'J', 'u',
  852. 'n', 'e', '\x00', 'J', 'u', 'l', 'y', '\x00',
  853. 'A', 'u', 'g', 'u', 's', 't', '\x00', 'S',
  854. 'e', 'p', 't', 'e', 'm', 'b', 'e', 'r',
  855. '\x00', 'O', 'c', 't', 'o', 'b', 'e', 'r',
  856. '\x00', 'N', 'o', 'v', 'e', 'm', 'b', 'e',
  857. 'r', '\x00', 'D', 'e', 'c', 'e', 'm', 'b',
  858. 'e', 'r', '\x00', 'A', 'M', '\x00', 'P', 'M',
  859. '\x00', '%', 'a', ' ', '%', 'b', ' ', '%',
  860. 'e', ' ', '%', 'H', ':', '%', 'M', ':',
  861. '%', 'S', ' ', '%', 'Y', '\x00', '%', 'm',
  862. '/', '%', 'd', '/', '%', 'y', '\x00', '%',
  863. 'H', ':', '%', 'M', ':', '%', 'S', '\x00',
  864. '%', 'I', ':', '%', 'M', ':', '%', 'S',
  865. ' ', '%', 'p', '\x00', '^', '[', 'y', 'Y',
  866. ']', '\x00', '^', '[', 'n', 'N', ']', '\x00',
  867. };
  868. char *nl_langinfo(nl_item item)
  869. {
  870. unsigned int c;
  871. unsigned int i;
  872. if ((c = _NL_ITEM_CATEGORY(item)) < C_LC_ALL) {
  873. if ((i = cat_start[c] + _NL_ITEM_INDEX(item)) < cat_start[c+1]) {
  874. /* return (char *) C_locale_data + item_offset[i] + (i & 64); */
  875. return (char *) C_locale_data + nl_data[C_LC_ALL+1+i] + 2*(i & 64);
  876. }
  877. }
  878. return (char *) cat_start; /* Conveniently, this is the empty string. */
  879. }
  880. #else /* __LOCALE_C_ONLY */
  881. #if defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE)
  882. char *nl_langinfo(nl_item item)
  883. {
  884. return __nl_langinfo_l(item, __UCLIBC_CURLOCALE);
  885. }
  886. #else /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  887. static const char empty[] = "";
  888. char *__XL(nl_langinfo)(nl_item item __LOCALE_PARAM )
  889. {
  890. unsigned int c = _NL_ITEM_CATEGORY(item);
  891. unsigned int i = _NL_ITEM_INDEX(item);
  892. if ((c < LC_ALL) && (i < __LOCALE_PTR->category_item_count[c])) {
  893. return ((char **)(((char *) __LOCALE_PTR)
  894. + __LOCALE_PTR->category_offsets[c]))[i];
  895. }
  896. return (char *) empty;
  897. }
  898. #endif /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
  899. #endif /* __LOCALE_C_ONLY */
  900. #endif
  901. /**********************************************************************/
  902. #ifdef L_newlocale
  903. #ifdef __UCLIBC_MJN3_ONLY__
  904. #warning TODO: Move posix and utf8 strings.
  905. #endif
  906. static const char posix[] = "POSIX";
  907. static const char utf8[] = "UTF-8";
  908. static int find_locale(int category_mask, const char *p,
  909. unsigned char *new_locale)
  910. {
  911. int i;
  912. const unsigned char *s;
  913. uint16_t n;
  914. unsigned char lang_cult, codeset;
  915. #if defined(__LOCALE_DATA_AT_MODIFIERS_LENGTH) && 1
  916. /* Support standard locale handling for @-modifiers. */
  917. #ifdef __UCLIBC_MJN3_ONLY__
  918. #warning REMINDER: Fix buf size in find_locale.
  919. #endif
  920. char buf[18]; /* TODO: 7+{max codeset name length} */
  921. const char *q;
  922. if ((q = __strchr(p,'@')) != NULL) {
  923. if ((((size_t)((q-p)-5)) > (sizeof(buf) - 5)) || (p[2] != '_')) {
  924. return 0;
  925. }
  926. /* locale name at least 5 chars long and 3rd char is '_' */
  927. s = LOCALE_AT_MODIFIERS;
  928. do {
  929. if (!__strcmp(s+2, q+1)) {
  930. break;
  931. }
  932. s += 2 + *s; /* TODO - fix this throughout */
  933. } while (*s);
  934. if (!*s) {
  935. return 0;
  936. }
  937. assert(q - p < sizeof(buf));
  938. __memcpy(buf, p, q-p);
  939. buf[q-p] = 0;
  940. buf[2] = s[1];
  941. p = buf;
  942. }
  943. #endif
  944. lang_cult = codeset = 0; /* Assume C and default codeset. */
  945. if (((*p == 'C') && !p[1]) || !__strcmp(p, posix)) {
  946. goto FIND_LOCALE;
  947. }
  948. if ((__strlen(p) > 5) && (p[5] == '.')) { /* Codeset in locale name? */
  949. /* TODO: maybe CODESET_LIST + *s ??? */
  950. /* 7bit is 1, UTF-8 is 2, 8-bit is >= 3 */
  951. codeset = 2;
  952. if (__strcmp(utf8,p+6) != 0) {/* TODO - fix! */
  953. s = CODESET_LIST;
  954. do {
  955. ++codeset; /* Increment codeset first. */
  956. if (!__strcmp(CODESET_LIST+*s, p+6)) {
  957. goto FIND_LANG_CULT;
  958. }
  959. } while (*++s);
  960. return 0; /* No matching codeset! */
  961. }
  962. }
  963. FIND_LANG_CULT: /* Find language_culture number. */
  964. s = LOCALE_NAMES;
  965. do { /* TODO -- do a binary search? */
  966. /* TODO -- fix gen_mmap!*/
  967. ++lang_cult; /* Increment first since C/POSIX is 0. */
  968. if (!__strncmp(s,p,5)) { /* Found a matching locale name; */
  969. goto FIND_LOCALE;
  970. }
  971. s += 5;
  972. } while (lang_cult < __LOCALE_DATA_NUM_LOCALE_NAMES);
  973. return 0; /* No matching language_culture! */
  974. FIND_LOCALE: /* Find locale row matching name and codeset */
  975. s = LOCALES;
  976. n = 0;
  977. do { /* TODO -- do a binary search? */
  978. if ((lang_cult == *s) && ((codeset == s[1]) || (codeset == s[2]))) {
  979. i = 1;
  980. s = new_locale + 1;
  981. do {
  982. if (category_mask & i) {
  983. /* Encode current locale row number. */
  984. ((unsigned char *) s)[0] = (n >> 7) | 0x80;
  985. ((unsigned char *) s)[1] = (n & 0x7f) | 0x80;
  986. }
  987. s += 2;
  988. i += i;
  989. } while (i < (1 << LC_ALL));
  990. return i; /* Return non-zero */
  991. }
  992. s += __LOCALE_DATA_WIDTH_LOCALES;
  993. ++n;
  994. } while (n <= __LOCALE_DATA_NUM_LOCALES); /* We started at 1!!! */
  995. return 0; /* Unsupported locale. */
  996. }
  997. static unsigned char *composite_locale(int category_mask, const char *locale,
  998. unsigned char *new_locale)
  999. {
  1000. char buf[MAX_LOCALE_STR];
  1001. char *t;
  1002. char *e;
  1003. int c;
  1004. int component_mask;
  1005. if (!__strchr(locale,'=')) {
  1006. if (!find_locale(category_mask, locale, new_locale)) {
  1007. return NULL;
  1008. }
  1009. return new_locale;
  1010. }
  1011. if (__strlen(locale) >= sizeof(buf)) {
  1012. return NULL;
  1013. }
  1014. stpcpy(buf, locale);
  1015. component_mask = 0;
  1016. t = strtok_r(buf, "=", &e); /* This can't fail because of strchr test above. */
  1017. do {
  1018. c = 0;
  1019. while (__strcmp(CATEGORY_NAMES + (int) CATEGORY_NAMES[c], t)) {
  1020. if (++c == LC_ALL) { /* Unknown category name! */
  1021. return NULL;
  1022. }
  1023. }
  1024. t = strtok_r(NULL, ";", &e);
  1025. c = (1 << c);
  1026. if (component_mask & c) { /* Multiple components for one category. */
  1027. return NULL;
  1028. }
  1029. component_mask |= c;
  1030. if ((category_mask & c) && (!t || !find_locale(c, t, new_locale))) {
  1031. return NULL;
  1032. }
  1033. } while ((t = strtok_r(NULL, "=", &e)) != NULL);
  1034. if (category_mask & ~component_mask) { /* Category component(s) missing. */
  1035. return NULL;
  1036. }
  1037. return new_locale;
  1038. }
  1039. __locale_t __newlocale(int category_mask, const char *locale, __locale_t base)
  1040. {
  1041. const unsigned char *p;
  1042. int i, j, k;
  1043. unsigned char new_selector[LOCALE_SELECTOR_SIZE];
  1044. if (category_mask == (1 << LC_ALL)) {
  1045. category_mask = LC_ALL_MASK;
  1046. }
  1047. if (!locale || (((unsigned int)(category_mask)) > LC_ALL_MASK)) {
  1048. INVALID:
  1049. __set_errno(EINVAL);
  1050. return NULL; /* No locale or illegal/unsupported category. */
  1051. }
  1052. #ifdef __UCLIBC_MJN3_ONLY__
  1053. #warning TODO: Rename cur_locale to locale_selector.
  1054. #endif
  1055. __strcpy((char *) new_selector,
  1056. (base ? (char *) base->cur_locale : C_LOCALE_SELECTOR));
  1057. if (!*locale) { /* locale == "", so check environment. */
  1058. #ifndef __UCLIBC_HAS_THREADS__
  1059. static /* If no threads, then envstr can be static. */
  1060. #endif /* __UCLIBC_HAS_THREADS__ */
  1061. const char *envstr[4] = { "LC_ALL", NULL, "LANG", posix };
  1062. i = 1;
  1063. k = 0;
  1064. do {
  1065. if (category_mask & i) {
  1066. /* Note: SUSv3 doesn't define a fallback mechanism here.
  1067. * So, if LC_ALL is invalid, we do _not_ continue trying
  1068. * the other environment vars. */
  1069. envstr[1] = CATEGORY_NAMES + CATEGORY_NAMES[k];
  1070. j = 0;
  1071. do {
  1072. p = envstr[j];
  1073. } while ((++j < 4) && (!(p = __getenv(p)) || !*p));
  1074. /* The user set something... is it valid? */
  1075. /* Note: Since we don't support user-supplied locales and
  1076. * alternate paths, we don't need to worry about special
  1077. * handling for suid/sgid apps. */
  1078. if (!find_locale(i, p, new_selector)) {
  1079. goto INVALID;
  1080. }
  1081. }
  1082. i += i;
  1083. } while (++k < LC_ALL);
  1084. } else if (!composite_locale(category_mask, locale, new_selector)) {
  1085. goto INVALID;
  1086. }
  1087. #ifdef __UCLIBC_MJN3_ONLY__
  1088. #warning TODO: Do a compatible codeset check!
  1089. #endif
  1090. /* If we get here, the new selector corresponds to a valid locale. */
  1091. #ifdef __UCLIBC_MJN3_ONLY__
  1092. #warning CONSIDER: Probably want a _locale_new func to allow for caching of locales.
  1093. #endif
  1094. #if 0
  1095. if (base) {
  1096. _locale_set_l(new_selector, base);
  1097. } else {
  1098. base = _locale_new(new_selector);
  1099. }
  1100. #else
  1101. if (!base) {
  1102. if ((base = malloc(sizeof(__uclibc_locale_t))) == NULL) {
  1103. return base;
  1104. }
  1105. _locale_init_l(base);
  1106. }
  1107. _locale_set_l(new_selector, base);
  1108. #endif
  1109. return base;
  1110. }
  1111. weak_alias(__newlocale, newlocale)
  1112. #endif
  1113. /**********************************************************************/
  1114. #ifdef L_duplocale
  1115. #ifdef __UCLIBC_MJN3_ONLY__
  1116. #warning REMINDER: When we allocate ctype tables, remember to dup them.
  1117. #endif
  1118. __locale_t __duplocale(__locale_t dataset)
  1119. {
  1120. __locale_t r;
  1121. uint16_t * i2w;
  1122. size_t n;
  1123. assert(dataset != LC_GLOBAL_LOCALE);
  1124. if ((r = malloc(sizeof(__uclibc_locale_t))) != NULL) {
  1125. n = 2*dataset->collate.max_col_index+2;
  1126. if ((i2w = calloc(n, sizeof(uint16_t)))
  1127. != NULL
  1128. ) {
  1129. __memcpy(r, dataset, sizeof(__uclibc_locale_t));
  1130. r->collate.index2weight = i2w;
  1131. __memcpy(i2w, dataset->collate.index2weight, n * sizeof(uint16_t));
  1132. } else {
  1133. free(r);
  1134. r = NULL;
  1135. }
  1136. }
  1137. return r;
  1138. }
  1139. weak_alias(__duplocale, duplocale)
  1140. #endif
  1141. /**********************************************************************/
  1142. #ifdef L_freelocale
  1143. #ifdef __UCLIBC_MJN3_ONLY__
  1144. #warning REMINDER: When we allocate ctype tables, remember to free them.
  1145. #endif
  1146. void __freelocale(__locale_t dataset)
  1147. {
  1148. assert(dataset != __global_locale);
  1149. assert(dataset != LC_GLOBAL_LOCALE);
  1150. free(dataset->collate.index2weight); /* Free collation data. */
  1151. free(dataset); /* Free locale */
  1152. }
  1153. weak_alias(__freelocale, freelocale)
  1154. #endif
  1155. /**********************************************************************/
  1156. #ifdef L_uselocale
  1157. __locale_t __uselocale(__locale_t dataset)
  1158. {
  1159. __locale_t old;
  1160. if (!dataset) {
  1161. old = __UCLIBC_CURLOCALE;
  1162. } else {
  1163. if (dataset == LC_GLOBAL_LOCALE) {
  1164. dataset = __global_locale;
  1165. }
  1166. #ifdef __UCLIBC_HAS_THREADS__
  1167. old = __curlocale_set(dataset);
  1168. #else
  1169. old = __curlocale_var;
  1170. __curlocale_var = dataset;
  1171. #endif
  1172. }
  1173. if (old == __global_locale) {
  1174. return LC_GLOBAL_LOCALE;
  1175. }
  1176. return old;
  1177. }
  1178. weak_alias(__uselocale, uselocale)
  1179. #endif
  1180. /**********************************************************************/
  1181. #ifdef L___curlocale
  1182. #ifdef __UCLIBC_HAS_THREADS__
  1183. __locale_t weak_const_function __curlocale(void)
  1184. {
  1185. return __curlocale_var; /* This is overriden by the thread version. */
  1186. }
  1187. __locale_t weak_function __curlocale_set(__locale_t newloc)
  1188. {
  1189. __locale_t oldloc = __curlocale_var;
  1190. assert(newloc != LC_GLOBAL_LOCALE);
  1191. __curlocale_var = newloc;
  1192. return oldloc;
  1193. }
  1194. #endif
  1195. #endif
  1196. /**********************************************************************/
  1197. #ifdef L___locale_mbrtowc_l
  1198. /* NOTE: This returns an int... not size_t. Also, it is not a general
  1199. * routine. It is actually a very stripped-down version of mbrtowc
  1200. * that takes a __locale_t arg. This is used by strcoll and strxfrm.
  1201. * It is also used above to generate wchar_t versions of the decimal point
  1202. * and thousands seperator. */
  1203. #ifndef __CTYPE_HAS_UTF_8_LOCALES
  1204. #warning __CTYPE_HAS_UTF_8_LOCALES not set!
  1205. #endif
  1206. #ifndef __CTYPE_HAS_8_BIT_LOCALES
  1207. #warning __CTYPE_HAS_8_BIT_LOCALES not set!
  1208. #endif
  1209. #define Cc2wc_IDX_SHIFT __LOCALE_DATA_Cc2wc_IDX_SHIFT
  1210. #define Cc2wc_ROW_LEN __LOCALE_DATA_Cc2wc_ROW_LEN
  1211. extern size_t _wchar_utf8sntowcs(wchar_t *__restrict pwc, size_t wn,
  1212. const char **__restrict src, size_t n,
  1213. mbstate_t *ps, int allow_continuation) attribute_hidden;
  1214. int __locale_mbrtowc_l(wchar_t *__restrict dst,
  1215. const char *__restrict src,
  1216. __locale_t loc )
  1217. {
  1218. #ifdef __CTYPE_HAS_UTF_8_LOCALES
  1219. if (loc->encoding == __ctype_encoding_utf8) {
  1220. mbstate_t ps;
  1221. const char *p = src;
  1222. size_t r;
  1223. ps.__mask = 0;
  1224. r = _wchar_utf8sntowcs(dst, 1, &p, SIZE_MAX, &ps, 1);
  1225. return (r == 1) ? (p-src) : r; /* Need to return 0 if nul char. */
  1226. }
  1227. #endif
  1228. #ifdef __CTYPE_HAS_8_BIT_LOCALES
  1229. assert((loc->encoding == __ctype_encoding_7_bit) || (loc->encoding == __ctype_encoding_8_bit));
  1230. #else
  1231. assert(loc->encoding == __ctype_encoding_7_bit);
  1232. #endif
  1233. if ((*dst = ((unsigned char)(*src))) < 0x80) { /* ASCII... */
  1234. return (*src != 0);
  1235. }
  1236. #ifdef __CTYPE_HAS_8_BIT_LOCALES
  1237. if (loc->encoding == __ctype_encoding_8_bit) {
  1238. wchar_t wc = *dst - 0x80;
  1239. *dst = loc->tbl8c2wc[
  1240. (loc->idx8c2wc[wc >> Cc2wc_IDX_SHIFT]
  1241. << Cc2wc_IDX_SHIFT) + (wc & (Cc2wc_ROW_LEN - 1))];
  1242. if (*dst) {
  1243. return 1;
  1244. }
  1245. }
  1246. #endif
  1247. return -1;
  1248. }
  1249. #endif
  1250. /**********************************************************************/