3 MPDM - Minimum Profit Data Manager
4 Copyright (C) 2003/2010 Angel Ortega <angel@triptico.com>
6 mpdm_s.c - String management
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 http://www.triptico.com
35 #ifdef CONFOPT_GETTEXT
48 void *mpdm_poke_o(void *dst
, int *dsize
, int *offset
, const void *org
, int osize
, int esize
)
50 if (org
!= NULL
&& osize
) {
52 if (*offset
+ osize
> *dsize
) {
56 dst
= realloc(dst
, *dsize
* esize
);
59 memcpy((char *)dst
+ (*offset
* esize
), org
, osize
* esize
);
67 void *mpdm_poke(void *dst
, int *dsize
, const void *org
, int osize
, int esize
)
68 /* pokes (adds) org into dst, which is a dynamic string, making it grow */
72 return mpdm_poke_o(dst
, dsize
, &offset
, org
, osize
, esize
);
76 wchar_t *mpdm_pokewsn(wchar_t *dst
, int *dsize
, const wchar_t *str
, int slen
)
77 /* adds a wide string to dst using mpdm_poke() with size */
80 dst
= mpdm_poke(dst
, dsize
, str
, slen
, sizeof(wchar_t));
86 wchar_t *mpdm_pokews(wchar_t *dst
, int *dsize
, const wchar_t *str
)
87 /* adds a wide string to dst using mpdm_poke() */
90 dst
= mpdm_pokewsn(dst
, dsize
, str
, wcslen(str
));
96 wchar_t *mpdm_pokev(wchar_t * dst
, int *dsize
, const mpdm_t v
)
97 /* adds the string in v to dst using mpdm_poke() */
100 const wchar_t *ptr
= mpdm_string(v
);
102 dst
= mpdm_pokews(dst
, dsize
, ptr
);
109 wchar_t *mpdm_mbstowcs(const char *str
, int *s
, int l
)
110 /* converts an mbs to a wcs, but filling invalid chars
111 with question marks instead of just failing */
114 char tmp
[64]; /* really MB_CUR_MAX + 1 */
119 /* allow NULL values for s */
123 /* if there is a limit, duplicate and break the string */
131 /* try first a direct conversion with mbstowcs */
132 if ((*s
= mbstowcs(NULL
, cstr
, 0)) != -1) {
133 /* direct conversion is possible; do it */
134 if ((ptr
= malloc((*s
+ 1) * sizeof(wchar_t))) != NULL
) {
135 mbstowcs(ptr
, cstr
, *s
);
140 /* zero everything */
144 /* no more characters to process? */
145 if ((c
= cstr
[n
+ i
]) == '\0' && i
== 0)
152 if (mbstowcs(&wc
, tmp
, 1) == (size_t) -1) {
153 /* can still be an incomplete multibyte char? */
154 if (c
!= '\0' && i
<= (int) MB_CUR_MAX
)
157 /* too many failing bytes; skip 1 byte */
163 /* skip used bytes and back again */
168 if ((ptr
= mpdm_poke(ptr
, s
, &wc
, 1, sizeof(wchar_t))) == NULL
)
172 /* null terminate and count one less */
174 ptr
= mpdm_poke(ptr
, s
, L
"", 1, sizeof(wchar_t));
179 /* free the duplicate */
187 char *mpdm_wcstombs(const wchar_t * str
, int *s
)
188 /* converts a wcs to an mbs, but filling invalid chars
189 with question marks instead of just failing */
192 char tmp
[64]; /* really MB_CUR_MAX + 1 */
195 /* allow NULL values for s */
199 /* try first a direct conversion with wcstombs */
200 if ((*s
= wcstombs(NULL
, str
, 0)) != -1) {
201 /* direct conversion is possible; do it and return */
202 if ((ptr
= malloc(*s
+ 1)) != NULL
) {
203 wcstombs(ptr
, str
, *s
);
210 /* invalid encoding? convert characters one by one */
214 if ((l
= wctomb(tmp
, *str
)) <= 0) {
215 /* if char couldn't be converted,
216 write a question mark instead */
217 l
= wctomb(tmp
, L
'?');
221 if ((ptr
= mpdm_poke(ptr
, s
, tmp
, l
, 1)) == NULL
)
227 /* null terminate and count one less */
229 ptr
= mpdm_poke(ptr
, s
, "", 1, 1);
237 mpdm_t
mpdm_new_wcs(int flags
, const wchar_t * str
, int size
, int cpy
)
238 /* creates a new string value from a wcs */
242 /* a size of -1 means 'calculate it' */
243 if (size
== -1 && str
!= NULL
)
248 /* free() on destruction */
252 if ((ptr
= malloc((size
+ 1) * sizeof(wchar_t))) == NULL
)
255 /* if no source, reset to zeroes; otherwise, copy */
257 memset(ptr
, '\0', size
* sizeof(wchar_t));
259 wcsncpy(ptr
, str
, size
);
264 ptr
= (wchar_t *)str
;
267 flags
|= MPDM_STRING
;
269 return mpdm_new(flags
, ptr
, size
);
273 mpdm_t
mpdm_new_mbstowcs(int flags
, const char *str
, int l
)
274 /* creates a new string value from an mbs */
279 if ((ptr
= mpdm_mbstowcs(str
, &size
, l
)) == NULL
)
283 flags
|= (MPDM_STRING
| MPDM_FREE
);
285 return mpdm_new(flags
, ptr
, size
);
289 mpdm_t
mpdm_new_wcstombs(int flags
, const wchar_t * str
)
290 /* creates a new mbs value from a wbs */
295 ptr
= mpdm_wcstombs(str
, &size
);
299 /* unset the string flag; mbs,s are not 'strings' */
300 flags
&= ~MPDM_STRING
;
302 return mpdm_new(flags
, ptr
, size
);
306 mpdm_t
mpdm_new_i(int ival
)
307 /* creates a new string value from an integer */
312 /* creates the visual representation */
313 snprintf(tmp
, sizeof(tmp
), "%d", ival
);
317 return mpdm_set_ival(v
, ival
);
321 mpdm_t
mpdm_new_r(double rval
)
322 /* creates a new string value from a real number */
327 /* creates the visual representation */
328 snprintf(tmp
, sizeof(tmp
), "%lf", rval
);
330 /* manually strip useless zeroes */
331 if (strchr(tmp
, '.') != NULL
) {
334 for (ptr
= tmp
+ strlen(tmp
) - 1; *ptr
== '0'; ptr
--);
336 /* if it's over the ., strip it also */
345 return mpdm_set_rval(v
, rval
);
352 * mpdm_string - Returns a printable representation of a value.
355 * Returns a printable representation of a value. For strings, it's
356 * the value data itself; for any other type, a conversion to string
357 * is returned instead. This value should be used immediately, as it
358 * can be a pointer to a static buffer.
361 wchar_t *mpdm_string(const mpdm_t v
)
363 static wchar_t wtmp
[32];
366 /* if it's NULL, return a constant */
370 /* if it's a string, return it */
371 if (v
->flags
& MPDM_STRING
)
372 return (wchar_t *) v
->data
;
374 /* otherwise, return a visual representation */
375 snprintf(tmp
, sizeof(tmp
), "%p", v
);
376 mbstowcs(wtmp
, tmp
, sizeof(wtmp
));
377 wtmp
[(sizeof(wtmp
) / sizeof(wchar_t)) - 1] = L
'\0';
384 * mpdm_cmp - Compares two values.
385 * @v1: the first value
386 * @v2: the second value
388 * Compares two values. If both has the MPDM_STRING flag set,
389 * a comparison using wcscoll() is returned; if both are arrays,
390 * the size is compared first and, if they have the same number
391 * elements, each one is compared; otherwise, a simple pointer
392 * comparison is done.
395 int mpdm_cmp(const mpdm_t v1
, const mpdm_t v2
)
403 /* is any value NULL? */
409 /* different values, but same content? (unlikely) */
410 if (v1
->data
== v2
->data
)
413 if (MPDM_IS_STRING(v1
) && MPDM_IS_STRING(v2
))
414 r
= wcscoll((wchar_t *) v1
->data
, (wchar_t *) v2
->data
);
416 if (MPDM_IS_ARRAY(v1
) && MPDM_IS_ARRAY(v2
)) {
417 /* compare first the sizes */
418 if ((r
= mpdm_size(v1
) - mpdm_size(v2
)) == 0) {
421 /* they have the same size;
422 compare each pair of elements */
423 for (n
= 0; n
< mpdm_size(v1
); n
++) {
424 if ((r
= mpdm_cmp(mpdm_aget(v1
, n
),
425 mpdm_aget(v2
, n
))) != 0)
431 /* in any other case, compare just pointers */
432 r
= (int) ((char *)v1
->data
- (char *)v2
->data
);
439 * mpdm_cmp_s - Compares two values (string version).
440 * @v1: the first value
441 * @v2: the second value
443 * Compares two values. Compares both values using wcscoll()
444 * if the first one is a string, or returns 1 otherwise.
446 int mpdm_cmp_s(const mpdm_t v1
, const wchar_t *v2
)
450 if (MPDM_IS_STRING(v1
))
451 r
= wcscoll((wchar_t *) v1
->data
, v2
);
453 r
= (int) ((wchar_t *)v1
->data
- v2
);
460 * mpdm_splice - Creates a new string value from another.
461 * @v: the original value
462 * @i: the value to be inserted
463 * @offset: offset where the substring is to be inserted
464 * @del: number of characters to delete
466 * Creates a new string value from @v, deleting @del chars at @offset
467 * and substituting them by @i. If @del is 0, no deletion is done.
468 * both @offset and @del can be negative; if this is the case, it's
469 * assumed as counting from the end of @v. If @v is NULL, @i will become
470 * the new string, and both @offset and @del will be ignored. If @v is
471 * not NULL and @i is, no insertion process is done (only deletion, if
474 * Returns a two element array, with the new string in the first
475 * element and the deleted string in the second (with a NULL value
479 mpdm_t
mpdm_splice(const mpdm_t v
, const mpdm_t i
, int offset
, int del
)
491 /* negative offsets start from the end */
493 offset
= os
+ 1 - offset
;
495 /* never add further the end */
499 /* negative del counts as 'characters left' */
501 del
= os
+ 1 - offset
+ del
;
503 /* something to delete? */
505 /* never delete further the end */
506 if (offset
+ del
> os
)
510 d
= MPDM_NS(((wchar_t *) v
->data
) + offset
, del
);
515 /* something to insert? */
518 /* new size and remainder */
522 if ((n
= MPDM_NS(NULL
, ns
)) == NULL
)
525 ptr
= (wchar_t *)n
->data
;
527 /* copy the beginning */
529 wcsncpy(ptr
, v
->data
, offset
);
533 /* copy the text to be inserted */
535 wcsncpy(ptr
, i
->data
, ins
);
539 /* copy the remaining */
542 wcsncpy(ptr
, ((wchar_t *) v
->data
) + r
, os
);
552 /* creates the output array */
563 * mpdm_strcat_sn - Concatenates two strings (string with size version).
564 * @s1: the first string
565 * @s2: the second string
566 * @size: the size of the second string
568 * Returns a new string formed by the concatenation of @s1 and @s2.
571 mpdm_t
mpdm_strcat_sn(const mpdm_t s1
, const wchar_t *s2
, int size
)
576 if (s1
== NULL
&& s2
== NULL
)
579 ptr
= mpdm_pokev(ptr
, &s
, s1
);
580 ptr
= mpdm_pokewsn(ptr
, &s
, s2
, size
);
582 /* if no characters were added, returns an empty string */
586 ptr
= mpdm_poke(ptr
, &s
, L
"", 1, sizeof(wchar_t));
587 return MPDM_ENS(ptr
, s
- 1);
592 * mpdm_strcat_s - Concatenates two strings (string version).
593 * @s1: the first string
594 * @s2: the second string
596 * Returns a new string formed by the concatenation of @s1 and @s2.
599 mpdm_t
mpdm_strcat_s(const mpdm_t s1
, const wchar_t *s2
)
601 return mpdm_strcat_sn(s1
, s2
, s2
? wcslen(s2
) : 0);
606 * mpdm_strcat - Concatenates two strings.
607 * @s1: the first string
608 * @s2: the second string
610 * Returns a new string formed by the concatenation of @s1 and @s2.
613 mpdm_t
mpdm_strcat(const mpdm_t s1
, const mpdm_t s2
)
615 return mpdm_strcat_s(s1
, s2
? mpdm_string(s2
) : NULL
);
620 * mpdm_ival - Returns a value's data as an integer.
623 * Returns a value's data as an integer. If the value is a string,
624 * it's converted via sscanf and returned; non-string values have all
625 * an ival of 0. The converted integer is cached, so costly string
626 * conversions are only done once. Values created with the MPDM_IVAL
627 * flag set have its ival cached from the beginning.
631 int mpdm_ival(mpdm_t v
)
636 /* if there is no cached integer, calculate it */
637 if (!(v
->flags
& MPDM_IVAL
)) {
640 /* if it's a string, calculate it; other
641 values will have an ival of 0 */
642 if (v
->flags
& MPDM_STRING
) {
646 wcstombs(tmp
, (wchar_t *) v
->data
, sizeof(tmp
));
647 tmp
[sizeof(tmp
) - 1] = '\0';
649 /* workaround for mingw32: as it doesn't
650 correctly parse octal and hexadecimal
651 numbers, they are tried as special cases */
653 if (tmp
[1] == 'b' || tmp
[1] == 'B') {
658 while (*ptr
== '0' || *ptr
== '1') {
668 if (tmp
[1] == 'x' || tmp
[1] == 'X')
675 sscanf(tmp
, fmt
, &i
);
686 * mpdm_rval - Returns a value's data as a real number (double).
689 * Returns a value's data as a real number (double float). If the value
690 * is a string, it's converted via sscanf and returned; non-string values
691 * have all an rval of 0. The converted double is cached, so costly string
692 * conversions are only done once. Values created with the MPDM_RVAL
693 * flag set have its rval cached from the beginning.
697 double mpdm_rval(mpdm_t v
)
702 /* if there is no cached double, calculate it */
703 if (!(v
->flags
& MPDM_RVAL
)) {
706 /* if it's a string, calculate it; other
707 values will have an rval of 0.0 */
708 if (v
->flags
& MPDM_STRING
) {
712 wcstombs(tmp
, (wchar_t *) v
->data
, sizeof(tmp
));
713 tmp
[sizeof(tmp
) - 1] = '\0';
715 /* if the number starts with 0, it's
716 an octal or hexadecimal number; just
717 take the integer value and cast it */
718 if (tmp
[0] == '0' && tmp
[1] != '.')
719 r
= (double) mpdm_ival(v
);
721 /* set locale to C for non locale-dependent
722 floating point conversion */
723 prev_locale
= setlocale(LC_NUMERIC
, "C");
726 sscanf(tmp
, "%lf", &r
);
728 /* set previous locale */
729 setlocale(LC_NUMERIC
, prev_locale
);
741 * mpdm_gettext - Translates a string to the current language.
744 * Translates the @str string to the current language.
746 * This function can still be used even if there is no real gettext
747 * support() by manually filling the __I18N__ hash.
749 * If the string is found in the current table, the translation is
750 * returned; otherwise, the same @str value is returned.
754 mpdm_t
mpdm_gettext(const mpdm_t str
)
759 /* gets the cache, if any */
760 if ((i18n
= mpdm_hget_s(mpdm_root(), L
"__I18N__")) == NULL
)
763 /* try first the cache */
764 if ((v
= mpdm_hget(i18n
, str
)) == NULL
) {
765 #ifdef CONFOPT_GETTEXT
770 t
= mpdm_ref(MPDM_2MBS(str
->data
));
772 /* ask gettext for it */
773 s
= gettext((char *) t
->data
);
775 /* create new value only if it's different */
779 /* store in the cache */
780 mpdm_hset(i18n
, str
, v
);
787 #else /* CONFOPT_GETTEXT */
791 #endif /* CONFOPT_GETTEXT */
799 * mpdm_gettext_domain - Sets domain and data directory for translations.
800 * @dom: the domain (application name)
801 * @data: directory contaning the .mo files
803 * Sets the domain (application name) and translation data for translating
804 * strings that will be returned by mpdm_gettext().@data must point to a
805 * directory containing the .mo (compiled .po) files.
807 * If there is no gettext support, returns 0, or 1 otherwise.
811 int mpdm_gettext_domain(const mpdm_t dom
, const mpdm_t data
)
815 #ifdef CONFOPT_GETTEXT
820 /* convert both to mbs,s */
821 dm
= mpdm_ref(MPDM_2MBS(dom
->data
));
822 dt
= mpdm_ref(MPDM_2MBS(data
->data
));
824 /* bind and set domain */
825 bindtextdomain((char *) dm
->data
, (char *) dt
->data
);
826 textdomain((char *) dm
->data
);
828 mpdm_hset_s(mpdm_root(), L
"__I18N__", MPDM_H(0));
835 #endif /* CONFOPT_GETTEXT */
841 if ((v
= mpdm_hget_s(mpdm_root(), L
"ENV")) != NULL
&&
842 mpdm_hget_s(v
, L
"LANG") == NULL
) {
843 wchar_t *wptr
= L
"en";
845 /* MS Windows crappy language constants... */
847 switch((GetSystemDefaultLangID() & 0x00ff)) {
848 case 0x01: wptr
= L
"ar"; break; /* arabic */
849 case 0x02: wptr
= L
"bg"; break; /* bulgarian */
850 case 0x03: wptr
= L
"ca"; break; /* catalan */
851 case 0x04: wptr
= L
"zh"; break; /* chinese */
852 case 0x05: wptr
= L
"cz"; break; /* czech */
853 case 0x06: wptr
= L
"da"; break; /* danish */
854 case 0x07: wptr
= L
"de"; break; /* german */
855 case 0x08: wptr
= L
"el"; break; /* greek */
856 case 0x09: wptr
= L
"en"; break; /* english */
857 case 0x0a: wptr
= L
"es"; break; /* spanish */
858 case 0x0b: wptr
= L
"fi"; break; /* finnish */
859 case 0x0c: wptr
= L
"fr"; break; /* french */
860 case 0x0d: wptr
= L
"he"; break; /* hebrew */
861 case 0x0e: wptr
= L
"hu"; break; /* hungarian */
862 case 0x0f: wptr
= L
"is"; break; /* icelandic */
863 case 0x10: wptr
= L
"it"; break; /* italian */
864 case 0x11: wptr
= L
"jp"; break; /* japanese */
865 case 0x12: wptr
= L
"ko"; break; /* korean */
866 case 0x13: wptr
= L
"nl"; break; /* dutch */
867 case 0x14: wptr
= L
"no"; break; /* norwegian */
868 case 0x15: wptr
= L
"po"; break; /* polish */
869 case 0x16: wptr
= L
"pt"; break; /* portuguese */
870 case 0x17: wptr
= L
"rm"; break; /* romansh (switzerland) */
871 case 0x18: wptr
= L
"ro"; break; /* romanian */
872 case 0x19: wptr
= L
"ru"; break; /* russian */
873 case 0x1a: wptr
= L
"sr"; break; /* serbian */
874 case 0x1b: wptr
= L
"sk"; break; /* slovak */
875 case 0x1c: wptr
= L
"sq"; break; /* albanian */
876 case 0x1d: wptr
= L
"sv"; break; /* swedish */
879 mpdm_hset_s(v
, L
"LANG", MPDM_S(wptr
));
882 #endif /* CONFOPT_WIN32 */
888 #ifdef CONFOPT_WCWIDTH
890 int wcwidth(wchar_t);
892 int mpdm_wcwidth(wchar_t c
)
897 #else /* CONFOPT_WCWIDTH */
901 int mpdm_wcwidth(wchar_t c
)
903 return mk_wcwidth(c
);
906 #endif /* CONFOPT_WCWIDTH */
910 * mpdm_sprintf - Formats a sprintf()-like string.
911 * @fmt: the string format
912 * @args: an array of values
914 * Formats a string using the sprintf() format taking the values from @args.
917 mpdm_t
mpdm_sprintf(const mpdm_t fmt
, const mpdm_t args
)
919 const wchar_t *i
= fmt
->data
;
924 /* loop all characters */
925 while ((c
= *i
++) != L
'\0') {
927 wchar_t *tptr
= NULL
;
928 wchar_t *wptr
= NULL
;
931 /* format directive */
940 /* transform the format to mbs */
941 while (*i
!= L
'\0' &&
942 m
< (int)(sizeof(t_fmt
) - MB_CUR_MAX
- 1) &&
943 wcschr(L
"-.0123456789", *i
) != NULL
)
944 m
+= wctomb(&t_fmt
[m
], *i
++);
946 /* transfer the directive */
947 m
+= wctomb(&t_fmt
[m
], *i
++);
951 /* by default, copies the format */
954 /* pick next value */
955 v
= mpdm_aget(args
, n
++);
957 switch (t_fmt
[m
- 1]) {
966 snprintf(tmp
, sizeof(tmp
) - 1,
967 t_fmt
, mpdm_ival(v
));
972 /* float (real) value */
973 snprintf(tmp
, sizeof(tmp
) - 1,
974 t_fmt
, mpdm_rval(v
));
980 ptr
= mpdm_wcstombs(mpdm_string(v
), NULL
);
981 snprintf(tmp
, sizeof(tmp
) - 1, t_fmt
, ptr
);
1000 mask
= 1 << ((sizeof(int) * 8) - 1);
1002 if (mask
& (unsigned int) mpdm_ival(v
)) {
1029 wptr
= tptr
= mpdm_mbstowcs(tmp
, &m
, -1);
1038 o
= mpdm_poke(o
, &l
, wptr
, m
, sizeof(wchar_t));
1040 /* free the temporary buffer, if any */
1048 /* null-terminate */
1049 o
= mpdm_poke(o
, &l
, L
"", 1, sizeof(wchar_t));
1051 return MPDM_ENS(o
, l
- 1);
1056 * mpdm_ulc - Converts a string to uppercase or lowecase.
1058 * @u: convert to uppercase (1) or to lowercase (0).
1060 * Converts @s to uppercase (for @u == 1) or to lowercase (@u == 0).
1063 mpdm_t
mpdm_ulc(const mpdm_t s
, int u
)
1067 int i
= mpdm_size(s
);
1069 if ((optr
= malloc((i
+ 1) * sizeof(wchar_t))) != NULL
) {
1070 wchar_t *iptr
= mpdm_string(s
);
1073 for (n
= 0; n
< i
; n
++)
1074 optr
[n
] = u
? towupper(iptr
[n
]) : towlower(iptr
[n
]);
1077 r
= MPDM_ENS(optr
, i
);
1084 /* scanf working buffers */
1085 #define SCANF_BUF_SIZE 1024
1086 static wchar_t scanf_yset
[SCANF_BUF_SIZE
];
1087 static wchar_t scanf_nset
[SCANF_BUF_SIZE
];
1088 static wchar_t scanf_mark
[SCANF_BUF_SIZE
];
1095 { L
's', L
"", L
" \t" },
1096 { L
'u', L
"0123456789", L
"" },
1097 { L
'd', L
"-0123456789", L
"" },
1098 { L
'i', L
"-0123456789", L
"" },
1099 { L
'f', L
"-0123456789.", L
"" },
1100 { L
'x', L
"-0123456789xabcdefABCDEF", L
"" },
1101 { L
'\0', NULL
, NULL
},
1105 * mpdm_sscanf - Extracts data like sscanf().
1106 * @fmt: the string format
1107 * @str: the string to be parsed
1108 * @offset: the character offset to start scanning
1110 * Extracts data from a string using a special format pattern, very
1111 * much like the scanf() series of functions in the C library. Apart
1112 * from the standard percent-sign-commands (s, u, d, i, f, x,
1113 * n, [, with optional size and * to ignore), it implements S,
1114 * to match a string of characters upto what follows in the format
1115 * string. Also, the [ set of characters can include other % formats.
1117 * Returns an array with the extracted values. If %n is used, the
1118 * position in the scanned string is returned as the value.
1121 mpdm_t
mpdm_sscanf(const mpdm_t fmt
, const mpdm_t str
, int offset
)
1123 wchar_t *i
= (wchar_t *)str
->data
;
1124 wchar_t *f
= (wchar_t *)fmt
->data
;
1132 wchar_t *ptr
= NULL
;
1139 /* empty all buffers */
1140 scanf_yset
[0] = scanf_nset
[0] = scanf_mark
[0] = L
'\0';
1144 /* an asterisk? don't return next value */
1150 /* does it have a size? */
1151 while (wcschr(L
"0123456789", *f
)) {
1157 /* if no size, set it to an arbitrary big limit */
1161 /* now *f should contain a command */
1165 /* is it a verbatim percent sign? */
1169 wcscpy(scanf_yset
, L
"%");
1176 mpdm_push(r
, MPDM_I(i
- (wchar_t *)str
->data
));
1179 /* string upto a mark */
1183 /* fill the mark upto another command */
1188 /* is it an 'n'? ignore and go on */
1195 scanf_mark
[msize
++] = *tmp
;
1200 scanf_mark
[msize
++] = *tmp
;
1205 scanf_mark
[msize
] = L
'\0';
1211 wchar_t *set
= scanf_yset
;
1213 /* is it an inverse set? */
1219 /* first one is a ]? add it */
1225 /* now build the set */
1226 for (; n
< SCANF_BUF_SIZE
- 1 && *f
&& *f
!= L
']'; f
++) {
1227 /* is it a range? */
1231 /* start or end? hyphen itself */
1232 if (n
== 0 || *f
== L
']')
1235 /* pick previous char */
1236 wchar_t c
= set
[n
- 1];
1239 while (n
< SCANF_BUF_SIZE
- 1 && c
< *f
)
1244 /* is it another command? */
1249 for (i
= 0; scanf_sets
[i
].cmd
; i
++) {
1250 if (*f
== scanf_sets
[i
].cmd
) {
1252 wcscat(set
, scanf_sets
[i
].yset
);
1253 n
+= wcslen(scanf_sets
[i
].yset
);
1268 /* a standard set? */
1272 for (n
= 0; scanf_sets
[n
].cmd
!= L
'\0'; n
++) {
1273 if (cmd
== scanf_sets
[n
].cmd
) {
1274 wcscpy(scanf_yset
, scanf_sets
[n
].yset
);
1275 wcscpy(scanf_nset
, scanf_sets
[n
].nset
);
1281 /* now fill the dynamic string */
1283 !wcschr(scanf_nset
, *i
) &&
1284 (scanf_yset
[0] == L
'\0' || wcschr(scanf_yset
, *i
)) &&
1285 (msize
== 0 || wcsncmp(i
, scanf_mark
, msize
) != 0)) {
1287 /* only add if not being ignored */
1289 ptr
= mpdm_poke(ptr
, &size
, i
, 1, sizeof(wchar_t));
1295 if (!ignore
&& size
) {
1296 /* null terminate and push */
1297 ptr
= mpdm_poke(ptr
, &size
, L
"", 1, sizeof(wchar_t));
1298 mpdm_push(r
, MPDM_ENS(ptr
, size
));
1302 if (*f
== L
' ' || *f
== L
'\t') {
1303 /* if it's a blank, sync to next non-blank */
1306 while (*i
== L
' ' || *i
== L
'\t')
1310 /* test for literals in the format string */