1 From: Bert Wesarg <bert.wesarg@googlemail.com>
2 Subject: [PATCH] guaranty order for numeric array keys
4 Currently ther is no order guaranty for array keys in the for loops, this is
5 for numeric keys a little amberressing.
7 Use a new compare routine that takes care of numeric keys. This works also
8 for multi-dimensional keys with sub dimensional numeric keys.
10 Therefore, this do the right thing:
22 arr[10,10] = "ten,ten"
23 arr[10, 2] = "ten,two"
24 arr[10, 1] = "ten,one"
25 arr[ 2,10] = "two,ten"
26 arr[ 2, 2] = "two,two"
27 arr[ 2, 1] = "two,one"
28 arr[ 1,10] = "one,ten"
29 arr[ 1, 2] = "one,two"
30 arr[ 1, 1] = "one,one"
52 There is one semantic change with this:
56 would be overridden by this:
62 source/interpret.c | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
63 1 file changed, 76 insertions(+), 1 deletion(-)
65 diff --quilt old/source/interpret.c new/source/interpret.c
66 --- old/source/interpret.c
67 +++ new/source/interpret.c
68 @@ -2368,10 +2368,85 @@ static int arrayEntryCopyToNode(rbTreeNo
71 ** compare two array nodes returning an integer value similar to strcmp()
73 +** take care of numeric keys and sort them right, also with multi dimensions
75 static int arrayEntryCompare(rbTreeNode *left, rbTreeNode *right)
77 - return(strcmp(((SparseArrayEntry *)left)->key, ((SparseArrayEntry *)right)->key));
78 + const char *keya = ((SparseArrayEntry *)left)->key;
79 + const char *keya_end = keya + strlen(keya);
80 + const char *keyb = ((SparseArrayEntry *)right)->key;
81 + const char *keyb_end = keyb + strlen(keyb);
82 + size_t seplen = strlen(ARRAY_DIM_SEP);
86 + long dima_len, numa;
87 + long dimb_len, numb;
88 + const char *dima_end = strstr(keya, ARRAY_DIM_SEP);
89 + const char *dimb_end = strstr(keyb, ARRAY_DIM_SEP);
94 + dima_end = keya_end;
96 + dima_len = dima_end - keya;
99 + dimb_end = keyb_end;
101 + dimb_len = dimb_end - keyb;
103 + /* try to parse a number */
104 + numa = strtol(keya, &numa_end, 10);
105 + numb = strtol(keyb, &numb_end, 10);
108 + ** if both strtol's eaten up till ARRAY_DIM_SEP, we have
109 + ** successfully parsded two numbers
111 + if (numa_end == dima_end && numb_end == dimb_end) {
112 + /* successfully parsed numbers
113 + ** even empty parts
116 + /* compare the numbers */
117 + cmp = (numa > numb) - (numa < numb);
124 + /* if the length differ, just compare the remainder */
125 + if (dima_len != dimb_len) {
126 + return strcmp(keya, keyb);
129 + /* compare this dimension */
130 + cmp = strncmp(keya, keyb, dima_len);
136 + /* eat this dimension */
141 + ** break condition:
142 + ** at least one key is fully eaten, compare the remainder
144 + if (dima_end == keya_end || dimb_end == keyb_end) {
145 + return strcmp(keya, keyb);
148 + /* both dim ends point to a ARRAY_DIM_SEP => skip */