Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 1 | // Copyright 2009 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | #include "runtime.h" |
| 6 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 7 | String emptystring; |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 8 | |
| 9 | int32 |
Russ Cox | 3aa063d | 2008-11-23 17:08:55 -0800 | [diff] [blame] | 10 | findnull(byte *s) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 11 | { |
| 12 | int32 l; |
| 13 | |
Russ Cox | 535dcf7 | 2009-02-02 18:59:20 -0800 | [diff] [blame] | 14 | if(s == nil) |
| 15 | return 0; |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 16 | for(l=0; s[l]!=0; l++) |
| 17 | ; |
| 18 | return l; |
| 19 | } |
| 20 | |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 21 | int32 maxstring; |
| 22 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 23 | String |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 24 | gostringsize(int32 l) |
| 25 | { |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 26 | String s; |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 27 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 28 | if(l == 0) |
| 29 | return emptystring; |
| 30 | s.str = mal(l); |
| 31 | s.len = l; |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 32 | if(l > maxstring) |
| 33 | maxstring = l; |
| 34 | return s; |
| 35 | } |
| 36 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 37 | String |
Russ Cox | 3aa063d | 2008-11-23 17:08:55 -0800 | [diff] [blame] | 38 | gostring(byte *str) |
| 39 | { |
| 40 | int32 l; |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 41 | String s; |
Russ Cox | 3aa063d | 2008-11-23 17:08:55 -0800 | [diff] [blame] | 42 | |
| 43 | l = findnull(str); |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 44 | s = gostringsize(l); |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 45 | mcpy(s.str, str, l); |
Russ Cox | 3aa063d | 2008-11-23 17:08:55 -0800 | [diff] [blame] | 46 | return s; |
| 47 | } |
| 48 | |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 49 | void |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 50 | sys·catstring(String s1, String s2, String s3) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 51 | { |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 52 | if(s1.len == 0) { |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 53 | s3 = s2; |
| 54 | goto out; |
| 55 | } |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 56 | if(s2.len == 0) { |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 57 | s3 = s1; |
| 58 | goto out; |
| 59 | } |
| 60 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 61 | s3 = gostringsize(s1.len + s2.len); |
| 62 | mcpy(s3.str, s1.str, s1.len); |
| 63 | mcpy(s3.str+s1.len, s2.str, s2.len); |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 64 | |
| 65 | out: |
| 66 | FLUSH(&s3); |
| 67 | } |
| 68 | |
| 69 | static void |
| 70 | prbounds(int8* s, int32 a, int32 b, int32 c) |
| 71 | { |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 72 | prints(s); |
| 73 | prints(" "); |
| 74 | sys·printint(a); |
| 75 | prints("<"); |
| 76 | sys·printint(b); |
| 77 | prints(">"); |
| 78 | sys·printint(c); |
| 79 | prints("\n"); |
Russ Cox | a67258f | 2008-09-18 15:56:46 -0700 | [diff] [blame] | 80 | throw("string bounds"); |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | uint32 |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 84 | cmpstring(String s1, String s2) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 85 | { |
| 86 | uint32 i, l; |
| 87 | byte c1, c2; |
| 88 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 89 | l = s1.len; |
| 90 | if(s2.len < l) |
| 91 | l = s2.len; |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 92 | for(i=0; i<l; i++) { |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 93 | c1 = s1.str[i]; |
| 94 | c2 = s2.str[i]; |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 95 | if(c1 < c2) |
| 96 | return -1; |
| 97 | if(c1 > c2) |
| 98 | return +1; |
| 99 | } |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 100 | if(s1.len < s2.len) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 101 | return -1; |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 102 | if(s1.len > s2.len) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 103 | return +1; |
| 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | void |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 108 | sys·cmpstring(String s1, String s2, int32 v) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 109 | { |
| 110 | v = cmpstring(s1, s2); |
| 111 | FLUSH(&v); |
| 112 | } |
| 113 | |
| 114 | int32 |
| 115 | strcmp(byte *s1, byte *s2) |
| 116 | { |
| 117 | uint32 i; |
| 118 | byte c1, c2; |
| 119 | |
| 120 | for(i=0;; i++) { |
| 121 | c1 = s1[i]; |
| 122 | c2 = s2[i]; |
| 123 | if(c1 < c2) |
| 124 | return -1; |
| 125 | if(c1 > c2) |
| 126 | return +1; |
| 127 | if(c1 == 0) |
| 128 | return 0; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | void |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 133 | sys·slicestring(String si, int32 lindex, int32 hindex, String so) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 134 | { |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 135 | int32 l; |
| 136 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 137 | if(lindex < 0 || lindex > si.len || |
| 138 | hindex < lindex || hindex > si.len) { |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 139 | sys·printpc(&si); |
| 140 | prints(" "); |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 141 | prbounds("slice", lindex, si.len, hindex); |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | l = hindex-lindex; |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 145 | so.str = si.str + lindex; |
| 146 | so.len = l; |
| 147 | |
| 148 | // alternate to create a new string |
| 149 | // so = gostringsize(l); |
| 150 | // mcpy(so.str, si.str+lindex, l); |
| 151 | |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 152 | FLUSH(&so); |
| 153 | } |
| 154 | |
| 155 | void |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 156 | sys·indexstring(String s, int32 i, byte b) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 157 | { |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 158 | if(i < 0 || i >= s.len) { |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 159 | sys·printpc(&s); |
| 160 | prints(" "); |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 161 | prbounds("index", 0, i, s.len); |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 164 | b = s.str[i]; |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 165 | FLUSH(&b); |
| 166 | } |
| 167 | |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 168 | void |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 169 | sys·intstring(int64 v, String s) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 170 | { |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 171 | s = gostringsize(8); |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 172 | s.len = runetochar(s.str, v); |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 173 | FLUSH(&s); |
| 174 | } |
| 175 | |
| 176 | void |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 177 | sys·byteastring(byte *a, int32 l, String s) |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 178 | { |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 179 | s = gostringsize(l); |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 180 | mcpy(s.str, a, l); |
Rob Pike | 8e82a67 | 2008-06-30 11:50:36 -0700 | [diff] [blame] | 181 | FLUSH(&s); |
| 182 | } |
Russ Cox | 5383e28 | 2008-09-22 20:12:15 -0700 | [diff] [blame] | 183 | |
| 184 | void |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 185 | sys·arraystring(Array b, String s) |
Russ Cox | 5383e28 | 2008-09-22 20:12:15 -0700 | [diff] [blame] | 186 | { |
Russ Cox | 391425a | 2009-01-29 17:38:58 -0800 | [diff] [blame] | 187 | s = gostringsize(b.nel); |
Ken Thompson | 3657061 | 2009-04-09 18:16:21 -0700 | [diff] [blame^] | 188 | mcpy(s.str, b.array, s.len); |
Russ Cox | 5383e28 | 2008-09-22 20:12:15 -0700 | [diff] [blame] | 189 | FLUSH(&s); |
| 190 | } |