1 | // This file is a part of the Framsticks GDK library. |
---|
2 | // Copyright (C) 2002-2011 Szymon Ulatowski. See LICENSE.txt for details. |
---|
3 | // Refer to http://www.framsticks.com/ for further information. |
---|
4 | |
---|
5 | #include "sstringutils.h" |
---|
6 | #include "virtfile.h" |
---|
7 | #include "framsg.h" |
---|
8 | |
---|
9 | int loadSString(const char* filename,SString& s,const char* framsgmodule,const char* error) |
---|
10 | { |
---|
11 | VirtFILE *f; |
---|
12 | int ret=0; |
---|
13 | if (f=Vfopen(filename,"rb")) |
---|
14 | { |
---|
15 | loadSString(f,s); |
---|
16 | ret=1; |
---|
17 | fclose(f); |
---|
18 | } |
---|
19 | else if (framsgmodule) |
---|
20 | FMprintf(framsgmodule,"loadSString",FMLV_WARN,error?error:"can't open file \"%s\"",filename); |
---|
21 | return ret; |
---|
22 | } |
---|
23 | |
---|
24 | void loadSString(VirtFILE *f,SString& s) |
---|
25 | { |
---|
26 | static char buf[4000]; |
---|
27 | int len; |
---|
28 | while(!f->Veof()) |
---|
29 | { |
---|
30 | len=fread(buf,1,4000,f); |
---|
31 | s.append(buf,len); |
---|
32 | } |
---|
33 | } |
---|
34 | |
---|
35 | ////////////////////////// |
---|
36 | |
---|
37 | /** "x~xx~xxx" -> "x\~xx\~xxx" */ |
---|
38 | int quoteTilde(SString &target) |
---|
39 | { |
---|
40 | const char* x=target; |
---|
41 | SString tmp; |
---|
42 | char *f; |
---|
43 | while(1) |
---|
44 | { |
---|
45 | f=strchr((char*)x,'~'); |
---|
46 | if (f) |
---|
47 | { |
---|
48 | tmp.append(x,f-x); |
---|
49 | tmp+="\\~"; |
---|
50 | x=f+1; |
---|
51 | } |
---|
52 | else |
---|
53 | { |
---|
54 | if (tmp.len()==0) return 0; // nothing was changed! |
---|
55 | tmp+=x; |
---|
56 | target=tmp; |
---|
57 | return 1; |
---|
58 | } |
---|
59 | } |
---|
60 | } |
---|
61 | |
---|
62 | /** "x\~xx\~xxx" -> "x~xx~xxx" */ |
---|
63 | int unquoteTilde(SString &target) |
---|
64 | { |
---|
65 | const char* x=target; |
---|
66 | SString tmp; |
---|
67 | char *f; |
---|
68 | while(1) |
---|
69 | { |
---|
70 | f=strchr((char*)x,'\\'); |
---|
71 | if (f) |
---|
72 | { |
---|
73 | tmp.append(x,f-x); |
---|
74 | if (f[1]=='~') |
---|
75 | { |
---|
76 | tmp+='~'; |
---|
77 | x=f+2; |
---|
78 | } |
---|
79 | else |
---|
80 | { |
---|
81 | tmp+="\\"; |
---|
82 | x=f+1; |
---|
83 | } |
---|
84 | } |
---|
85 | else |
---|
86 | { |
---|
87 | if (tmp.len()==0) return 0; // nothing was changed! |
---|
88 | tmp+=x; |
---|
89 | target=tmp; |
---|
90 | return 1; |
---|
91 | } |
---|
92 | } |
---|
93 | } |
---|
94 | |
---|
95 | ///////////////// |
---|
96 | |
---|
97 | bool strContainsOneOf(const char* str,const char* chars) |
---|
98 | { |
---|
99 | while(*str) |
---|
100 | { |
---|
101 | if (strchr(chars,*str)) return 1; |
---|
102 | str++; |
---|
103 | } |
---|
104 | return 0; |
---|
105 | } |
---|
106 | |
---|
107 | ////////////// |
---|
108 | |
---|
109 | bool sstringQuote(SString& target) |
---|
110 | { |
---|
111 | const char* x=target; |
---|
112 | bool changed=0; |
---|
113 | SString tmp; |
---|
114 | tmp.memoryHint(target.len()); |
---|
115 | while(*x) |
---|
116 | { |
---|
117 | switch(*x) |
---|
118 | { |
---|
119 | case '\n': tmp+="\\n"; changed=1; break; |
---|
120 | case '\r': tmp+="\\r"; changed=1; break; |
---|
121 | case '\t': tmp+="\\t"; changed=1; break; |
---|
122 | case '\"': tmp+="\\\""; changed=1; break; |
---|
123 | case '\\': tmp+="\\\\"; changed=1; break; |
---|
124 | default: tmp+=*x; |
---|
125 | } |
---|
126 | x++; |
---|
127 | } |
---|
128 | if (changed) target=tmp; |
---|
129 | return changed; |
---|
130 | } |
---|
131 | |
---|
132 | const char* skipQuoteString(const char* txt, const char* limit) |
---|
133 | { |
---|
134 | while(*txt) |
---|
135 | { |
---|
136 | if (*txt=='\"') return txt; |
---|
137 | if (*txt=='\\') txt++; |
---|
138 | txt++; |
---|
139 | if (txt==limit) break; |
---|
140 | } |
---|
141 | return txt; |
---|
142 | } |
---|
143 | |
---|
144 | int sstringUnquote(SString &target) |
---|
145 | { |
---|
146 | const char* x=target; |
---|
147 | SString tmp; |
---|
148 | char *f; |
---|
149 | while(1) |
---|
150 | { |
---|
151 | f=strchr((char*)x,'\\'); |
---|
152 | if (f) |
---|
153 | { |
---|
154 | tmp.append(x,f-x); |
---|
155 | switch(f[1]) |
---|
156 | { |
---|
157 | case 'n': tmp+='\n'; break; |
---|
158 | case 'r': tmp+='\r'; break; |
---|
159 | case 't': tmp+='\t'; break; |
---|
160 | case '\"': tmp+='\"'; break; |
---|
161 | default: tmp+=f[1]; |
---|
162 | } |
---|
163 | x=f+2; |
---|
164 | } |
---|
165 | else |
---|
166 | { |
---|
167 | if (tmp.len()==0) return 0; // nothing was changed! |
---|
168 | tmp+=x; |
---|
169 | target=tmp; |
---|
170 | return 1; |
---|
171 | } |
---|
172 | } |
---|
173 | } |
---|
174 | |
---|
175 | int strFindField(const SString& txt,const SString& name,int &end) |
---|
176 | { |
---|
177 | const char* t=txt,*n; |
---|
178 | int pos=0; |
---|
179 | while(1) |
---|
180 | { |
---|
181 | n=strchr(t+pos,','); |
---|
182 | if ((!strncmp(t+pos,name,name.len()))&&(t[pos+name.len()]=='=')) |
---|
183 | { |
---|
184 | if (n) end=n-t; else end=txt.len(); |
---|
185 | return pos; |
---|
186 | } |
---|
187 | if (n) pos=n-t+1; else break; |
---|
188 | } |
---|
189 | return -1; |
---|
190 | } |
---|
191 | |
---|
192 | SString strGetField(const SString& txt,const SString& name) |
---|
193 | { |
---|
194 | int p,e; |
---|
195 | p=strFindField(txt,name,e); |
---|
196 | if (p<0) return SString(); |
---|
197 | p+=name.len()+1; |
---|
198 | return SString(txt.substr(p,e-p)); |
---|
199 | } |
---|
200 | |
---|
201 | void strSetField(SString& txt,const SString& name,const SString& value) |
---|
202 | { |
---|
203 | int p,e; |
---|
204 | p=strFindField(txt,name,e); |
---|
205 | if (p<0) |
---|
206 | { |
---|
207 | if (!value.len()) return; |
---|
208 | char *t=txt.directAppend(1+name.len()+value.len()); |
---|
209 | char *b=t; |
---|
210 | if (txt.len()) *(t++)=','; |
---|
211 | strcpy(t,name); t+=name.len(); |
---|
212 | *(t++)+='='; |
---|
213 | strcpy(t,value); t+=value.len(); |
---|
214 | txt.endAppend(t-b); |
---|
215 | } |
---|
216 | else |
---|
217 | { |
---|
218 | if (!value.len()) |
---|
219 | { |
---|
220 | if (p>0) p--; else if (e<txt.len()) e++; |
---|
221 | char *t=txt.directWrite(0); |
---|
222 | memmove(t+p,t+e,txt.len()-e); |
---|
223 | txt.endWrite(txt.len()+value.len()-(e-p)); |
---|
224 | } |
---|
225 | else |
---|
226 | { |
---|
227 | p+=name.len()+1; |
---|
228 | char *t=txt.directWrite(txt.len()+value.len()-(e-p)); |
---|
229 | memmove(t+p+value.len(),t+e,txt.len()-e); |
---|
230 | memmove(t+p,value,value.len()); |
---|
231 | txt.endWrite(txt.len()+value.len()-(e-p)); |
---|
232 | } |
---|
233 | } |
---|
234 | } |
---|
235 | |
---|
236 | SString trim(SString& s) |
---|
237 | { |
---|
238 | const unsigned char*b=(const unsigned char*)(const char*)s; |
---|
239 | const unsigned char*e=b+s.len(); |
---|
240 | while((b<e)&&(*b<=' ')) b++; |
---|
241 | while((b<e)&&(e[-1]<=' ')) e--; |
---|
242 | if ((e-b)==s.len()) return s; |
---|
243 | SString newstring; |
---|
244 | char* t=newstring.directWrite(); |
---|
245 | memmove(t,b,e-b); |
---|
246 | newstring.endWrite(e-b); |
---|
247 | return newstring; |
---|
248 | } |
---|