blob: 212fa5c28cc08caab23500b3ba85f9b03d229d3a [file] [log] [blame]
Rob Pike8e82a672008-06-30 11:50:36 -07001// 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 Thompson36570612009-04-09 18:16:21 -07007String emptystring;
Rob Pike8e82a672008-06-30 11:50:36 -07008
9int32
Russ Cox3aa063d2008-11-23 17:08:55 -080010findnull(byte *s)
Rob Pike8e82a672008-06-30 11:50:36 -070011{
12 int32 l;
13
Russ Cox535dcf72009-02-02 18:59:20 -080014 if(s == nil)
15 return 0;
Rob Pike8e82a672008-06-30 11:50:36 -070016 for(l=0; s[l]!=0; l++)
17 ;
18 return l;
19}
20
Russ Cox391425a2009-01-29 17:38:58 -080021int32 maxstring;
22
Ken Thompson36570612009-04-09 18:16:21 -070023String
Russ Cox391425a2009-01-29 17:38:58 -080024gostringsize(int32 l)
25{
Ken Thompson36570612009-04-09 18:16:21 -070026 String s;
Russ Cox391425a2009-01-29 17:38:58 -080027
Ken Thompson36570612009-04-09 18:16:21 -070028 if(l == 0)
29 return emptystring;
30 s.str = mal(l);
31 s.len = l;
Russ Cox391425a2009-01-29 17:38:58 -080032 if(l > maxstring)
33 maxstring = l;
34 return s;
35}
36
Ken Thompson36570612009-04-09 18:16:21 -070037String
Russ Cox3aa063d2008-11-23 17:08:55 -080038gostring(byte *str)
39{
40 int32 l;
Ken Thompson36570612009-04-09 18:16:21 -070041 String s;
Russ Cox3aa063d2008-11-23 17:08:55 -080042
43 l = findnull(str);
Russ Cox391425a2009-01-29 17:38:58 -080044 s = gostringsize(l);
Ken Thompson36570612009-04-09 18:16:21 -070045 mcpy(s.str, str, l);
Russ Cox3aa063d2008-11-23 17:08:55 -080046 return s;
47}
48
Rob Pike8e82a672008-06-30 11:50:36 -070049void
Ken Thompson36570612009-04-09 18:16:21 -070050sys·catstring(String s1, String s2, String s3)
Rob Pike8e82a672008-06-30 11:50:36 -070051{
Ken Thompson36570612009-04-09 18:16:21 -070052 if(s1.len == 0) {
Rob Pike8e82a672008-06-30 11:50:36 -070053 s3 = s2;
54 goto out;
55 }
Ken Thompson36570612009-04-09 18:16:21 -070056 if(s2.len == 0) {
Rob Pike8e82a672008-06-30 11:50:36 -070057 s3 = s1;
58 goto out;
59 }
60
Ken Thompson36570612009-04-09 18:16:21 -070061 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 Pike8e82a672008-06-30 11:50:36 -070064
65out:
66 FLUSH(&s3);
67}
68
69static void
70prbounds(int8* s, int32 a, int32 b, int32 c)
71{
Rob Pike8e82a672008-06-30 11:50:36 -070072 prints(s);
73 prints(" ");
74 sys·printint(a);
75 prints("<");
76 sys·printint(b);
77 prints(">");
78 sys·printint(c);
79 prints("\n");
Russ Coxa67258f2008-09-18 15:56:46 -070080 throw("string bounds");
Rob Pike8e82a672008-06-30 11:50:36 -070081}
82
83uint32
Ken Thompson36570612009-04-09 18:16:21 -070084cmpstring(String s1, String s2)
Rob Pike8e82a672008-06-30 11:50:36 -070085{
86 uint32 i, l;
87 byte c1, c2;
88
Ken Thompson36570612009-04-09 18:16:21 -070089 l = s1.len;
90 if(s2.len < l)
91 l = s2.len;
Rob Pike8e82a672008-06-30 11:50:36 -070092 for(i=0; i<l; i++) {
Ken Thompson36570612009-04-09 18:16:21 -070093 c1 = s1.str[i];
94 c2 = s2.str[i];
Rob Pike8e82a672008-06-30 11:50:36 -070095 if(c1 < c2)
96 return -1;
97 if(c1 > c2)
98 return +1;
99 }
Ken Thompson36570612009-04-09 18:16:21 -0700100 if(s1.len < s2.len)
Rob Pike8e82a672008-06-30 11:50:36 -0700101 return -1;
Ken Thompson36570612009-04-09 18:16:21 -0700102 if(s1.len > s2.len)
Rob Pike8e82a672008-06-30 11:50:36 -0700103 return +1;
104 return 0;
105}
106
107void
Ken Thompson36570612009-04-09 18:16:21 -0700108sys·cmpstring(String s1, String s2, int32 v)
Rob Pike8e82a672008-06-30 11:50:36 -0700109{
110 v = cmpstring(s1, s2);
111 FLUSH(&v);
112}
113
114int32
115strcmp(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
132void
Ken Thompson36570612009-04-09 18:16:21 -0700133sys·slicestring(String si, int32 lindex, int32 hindex, String so)
Rob Pike8e82a672008-06-30 11:50:36 -0700134{
Rob Pike8e82a672008-06-30 11:50:36 -0700135 int32 l;
136
Ken Thompson36570612009-04-09 18:16:21 -0700137 if(lindex < 0 || lindex > si.len ||
138 hindex < lindex || hindex > si.len) {
Rob Pike8e82a672008-06-30 11:50:36 -0700139 sys·printpc(&si);
140 prints(" ");
Ken Thompson36570612009-04-09 18:16:21 -0700141 prbounds("slice", lindex, si.len, hindex);
Rob Pike8e82a672008-06-30 11:50:36 -0700142 }
143
144 l = hindex-lindex;
Ken Thompson36570612009-04-09 18:16:21 -0700145 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 Pike8e82a672008-06-30 11:50:36 -0700152 FLUSH(&so);
153}
154
155void
Ken Thompson36570612009-04-09 18:16:21 -0700156sys·indexstring(String s, int32 i, byte b)
Rob Pike8e82a672008-06-30 11:50:36 -0700157{
Ken Thompson36570612009-04-09 18:16:21 -0700158 if(i < 0 || i >= s.len) {
Rob Pike8e82a672008-06-30 11:50:36 -0700159 sys·printpc(&s);
160 prints(" ");
Ken Thompson36570612009-04-09 18:16:21 -0700161 prbounds("index", 0, i, s.len);
Rob Pike8e82a672008-06-30 11:50:36 -0700162 }
163
Ken Thompson36570612009-04-09 18:16:21 -0700164 b = s.str[i];
Rob Pike8e82a672008-06-30 11:50:36 -0700165 FLUSH(&b);
166}
167
Rob Pike8e82a672008-06-30 11:50:36 -0700168void
Ken Thompson36570612009-04-09 18:16:21 -0700169sys·intstring(int64 v, String s)
Rob Pike8e82a672008-06-30 11:50:36 -0700170{
Russ Cox391425a2009-01-29 17:38:58 -0800171 s = gostringsize(8);
Ken Thompson36570612009-04-09 18:16:21 -0700172 s.len = runetochar(s.str, v);
Rob Pike8e82a672008-06-30 11:50:36 -0700173 FLUSH(&s);
174}
175
176void
Ken Thompson36570612009-04-09 18:16:21 -0700177sys·byteastring(byte *a, int32 l, String s)
Rob Pike8e82a672008-06-30 11:50:36 -0700178{
Russ Cox391425a2009-01-29 17:38:58 -0800179 s = gostringsize(l);
Ken Thompson36570612009-04-09 18:16:21 -0700180 mcpy(s.str, a, l);
Rob Pike8e82a672008-06-30 11:50:36 -0700181 FLUSH(&s);
182}
Russ Cox5383e282008-09-22 20:12:15 -0700183
184void
Ken Thompson36570612009-04-09 18:16:21 -0700185sys·arraystring(Array b, String s)
Russ Cox5383e282008-09-22 20:12:15 -0700186{
Russ Cox391425a2009-01-29 17:38:58 -0800187 s = gostringsize(b.nel);
Ken Thompson36570612009-04-09 18:16:21 -0700188 mcpy(s.str, b.array, s.len);
Russ Cox5383e282008-09-22 20:12:15 -0700189 FLUSH(&s);
190}