forked from albertwcheng/bedSeq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StringUtil.h
673 lines (543 loc) · 12.7 KB
/
StringUtil.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
/***************************************************************************
Copyright 2010 Wu Albert Cheng <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*******************************************************************************/
#ifndef STRINGUTIL_H_
#define STRINGUTIL_H_
#include <cstdlib>
#include "string.h"
#include <vector>
#include <string>
#include <map>
#include <ctype.h>
using namespace std;
#define BUFFER_SIZE 1025
#define THRESHOLD_TRIM_BUFFER_TIME 10
#define THRESHOLD_TRIM_BUFFER_COMP 10240
template<class T>
class buffer
{
private:
T*data;
int size;
int smallerRequested;
public:
inline T* buf()
{
return data;
}
int capacity()
{
return size;
}
buffer(int _size=BUFFER_SIZE):size(0),data(NULL)
{
buf(_size);
}
T* realloc(int _size)
{
if(data)
{
delete[] data;
}
data=new T[_size];
size=_size;
smallerRequested=0;
return data;
}
T& operator[] (int i){
return data[i];
}
T* buf(int _size)
{
//cerr<<"buffer for "<<_size<<endl;
if(_size>size || data==NULL)
{
realloc(_size);
}
else if (size>_size+THRESHOLD_TRIM_BUFFER_COMP)
{
smallerRequested++;
if(smallerRequested>=THRESHOLD_TRIM_BUFFER_TIME)
{
realloc(_size);
}
}
return data;
}
~buffer()
{
delete[] data;
}
};
template<class T1,class T2>
class KeyPair
{
public:
T1 k1;
T2 k2;
inline KeyPair():k1(0),k2(0){}
KeyPair(T1 _k1,T2 _k2): k1(_k1), k2(_k2) {
}
inline bool operator <(const KeyPair<T1,T2>& obj) const
{
if(this->k1==obj.k1)
{
return (this->k2<obj.k2);
}
return this->k1<obj.k1;
}
inline bool operator !=(const KeyPair<T1,T2>& obj) const
{
return !((*this)==obj);
}
inline bool operator >=(const KeyPair<T1,T2>& obj) const
{
return !((*this)<obj);
//return (*this)>obj || (*this)==obj;
}
inline bool operator <=(const KeyPair<T1,T2>& obj) const
{
return !((*this)>obj);
//return (*this)<obj || (*this)==obj;
}
bool operator ==(const KeyPair<T1,T2>& obj) const
{
return this->k1==obj.k1 && this->k2==obj.k2;
}
bool operator >(const KeyPair<T1,T2>& obj) const
{
if(this->k1==obj.k1)
{
return (this->k2>obj.k2);
}
return this->k1>obj.k1;
}
};
template<class T1,class T2>
ostream& operator << ( ostream&os,const KeyPair<T1,T2>&k)
{
os<<k.k1<<"\t"<<k.k2;
return os;
}
class StringUtil
{
public:
inline static string str(int d)
{
return str(d,"%d");
}
inline static string str(unsigned int d)
{
return str(int(d));
}
inline static string str(double d)
{
return str(d,"%f");
}
inline static string str(double d,int precision)
{
return str(d,string("%.")+str(precision)+"f");
}
template<class T>
inline static string str(T d,string format)
{
return str(d,format.c_str());
}
template<class T>
inline static string str(T d,const char* format)
{
char buffer[100];
sprintf(buffer,format,d);
return string(buffer);
}
inline static const char* isPrefix(const char*pprefix,const char*fullstring)
{
//pprefix : putative prefix
if(*pprefix=='\0')
return fullstring; //emptystring is prefix of everything
char prefixChar;
char fullStringChar;
while((prefixChar=*(pprefix++))!='\0')
{
//prefix string not terminated yet
fullStringChar=*(fullstring++);
if(fullStringChar=='\0') //fullstring terminated before pprefix, so pprefix is not real prefix
return NULL;
if(prefixChar!=fullStringChar)
return NULL;
}
//pprefix exhausted at the same time as fullstring or before fullstring means it is prefix
return fullstring;
}
inline static string getCommonPrefix(const string& a, const string& b)
{
unsigned int i=0;
const char * astr=a.c_str();
const char * bstr=b.c_str();
while(i<a.length() && i<b.length() && astr[i]==bstr[i])
{
i++;
}
return a.substr(0,i);
}
inline static bool isSuffix(const char*psuffix,const char*fullstring)
{
int lpsuffix=strlen(psuffix);
int lfullstring=strlen(fullstring);
if(lpsuffix>lfullstring)
return false; //putative suffix is longer than full string! it is of coz not suffix
return !strcmp(fullstring+lfullstring-lpsuffix,psuffix);
}
inline static int atoi(const char* s)
{
return ::atoi(s);
}
inline static double atof(const char *s)
{
return ::atof(s);
}
template<typename Container,typename Iterator>
inline static string join(const Container& arr,string sep)
{
Iterator i=arr.begin();
if(i==arr.end()) return "";
string result=(*i);
i++;
for(;i!=arr.end();i++)
{
result+=sep+(*i);
}
return result;
}
inline static string formArrayString( vector<string>& arr,string sep="|")
{
vector<string>::iterator i=arr.begin();
if(i==arr.end()) return "";
string result=(*i);
i++;
for(;i!=arr.end();i++)
{
result+=sep+(*i);
}
return result;
}
inline static string formKeyValueString( map<string,string>& _map,string sep="|",string equ="=")
{
map<string,string>::iterator i=_map.begin();
if(i==_map.end())
return "";
string result=(*i).first+equ+(*i).second;
i++;
for(;i!=_map.end();i++)
{
result+=sep+(*i).first+equ+(*i).second;
}
return result;
}
inline static int atoi(string s)
{
return atoi(s.c_str());
}
inline static double atof(string s)
{
return atof(s.c_str());
}
inline static string toUpper(const string& str)
{
int len=str.length();
char *tmp=new char[len+1];
register const char*cur=str.c_str();
register const char*terminal=cur+len;
register char *tmp2=tmp;
for(;cur<terminal;cur++,tmp2++)
{
*tmp2=toupper(*cur);
}
tmp[len]='\0';
string tstr=string(tmp);
delete[] tmp;
return tstr;
}
inline static string escape(const string&str,const char* escapeSet="nt\0",const char* escapeTo="\n\t\0",char escapePrefix='\\')
{
int nOriStr=str.length();
char *buffer=new char[nOriStr+1];
//strcpy(buffer,str.c_str());
const char*oriStr=str.c_str();
char *bufferWriter=buffer;
int nEscapes=strlen(escapeSet);
for(int i=0;i<nOriStr;i++)
{
char oriStrCurChar=oriStr[i];
if(oriStrCurChar==escapePrefix)
{
char escapeSpecifier=oriStr[i+1];
int j;
for( j=0;j<nEscapes;j++)
{
if(escapeSpecifier==escapeSet[j])
{
break;
}
}
if(j==nEscapes)
{
(*bufferWriter++)=escapeSpecifier;
}
else
{
(*bufferWriter++)=escapeTo[j];
}
i++;
}
else
{
(*bufferWriter++)=oriStrCurChar;
}
}
*bufferWriter='\0';
string returnString(buffer);
delete[] buffer;
return returnString;
}
inline static string toLower(const string&str)
{
int len=str.length();
char *tmp=new char[len+1];
register const char*cur=str.c_str();
register const char*terminal=cur+len;
register char *tmp2=tmp;
for(;cur<terminal;cur++,tmp2++)
{
*tmp2=tolower(*cur);
}
tmp[len]='\0';
string tstr=string(tmp);
delete[] tmp;
return tstr;
}
inline static string stripAll(string haystack,string remove)
{
const char * str=haystack.c_str();
const char * removestr=remove.c_str();
int rlen=remove.length();
int len=haystack.length();
int k=0;
buffer<char> buff(len+1);
char *bstr=buff.buf();
for(int i=0;i<len;i++)
{
bool exclude=false;
for(int j=0;j<rlen;j++)
{
if(str[i]==removestr[j])
{
exclude=true;
}
}
if(!exclude)
bstr[k++]=str[i];
}
bstr[k]='\0';
return string(bstr);
}
static void splitInt2(string haystack,string sep,vector<int>& v,bool clear=true)
{
if(clear)
v.clear();
vector<string> spliton;
split(haystack,sep,spliton);
//v.resize(spliton.size());
//int j=0;
for(vector<string>::iterator i=spliton.begin();i!=spliton.end();i++)
v.push_back(StringUtil::atoi(*i));
}
static vector<int> splitInt(string haystack,string sep="\t")
{
/*vector<string> spliton;
split(haystack,sep,spliton);
vector<int> v(spliton.size());
int j=0;
for(vector<string>::iterator i=spliton.begin();i!=spliton.end();i++)
v[j++]=StringUtil::atoi(*i);*/
vector<int> v;
StringUtil::splitInt2(haystack,sep,v,true);
return v;
}
inline static vector<string>& split(const string haystack,const string& needle,vector<string>& vec,bool clear=true)
{
int hslen=haystack.length();
int needlen=needle.length();
const char *shaystack=haystack.c_str();
char *hay=new char[hslen+1];
strcpy(hay,shaystack);
const char *sneedle=needle.c_str();
if(clear)
vec.clear();
int start=0;
for(int i=0;i<hslen;i++)
{
char c=hay[i];
bool found=false;
for(int j=0;j<needlen;j++)
{
if (sneedle[j]==c)
found=true;
}
if(found)
{
hay[i]='\0';
vec.push_back((hay+start));
hay[i]=' ';
start=i+1;
}
}
if(start<hslen)
{
vec.push_back( (shaystack+start));
}else if(start==hslen) //new sep 14 2009
{
vec.push_back("");
}
delete[] hay;
return vec;
}
inline static vector<string>& splitNoEmpty(const string haystack,const string& needle,vector<string>& vec,bool clear=true)
{
int hslen=haystack.length();
int needlen=needle.length();
const char *shaystack=haystack.c_str();
char *hay=new char[hslen+1];
strcpy(hay,shaystack);
const char *sneedle=needle.c_str();
if(clear)
vec.clear();
int start=0;
for(int i=0;i<hslen;i++)
{
char c=hay[i];
bool found=false;
for(int j=0;j<needlen;j++)
{
if (sneedle[j]==c)
found=true;
}
if(found)
{
hay[i]='\0';
//const char*toPush=hay+start;
if (i>start)
vec.push_back((hay+start));
hay[i]=' ';
start=i+1;
}
}
if(start<hslen)
{
vec.push_back( (shaystack+start));
}else if(start==hslen) //new sep 14 2009
{
vec.push_back("");
}
delete[] hay;
return vec;
}
inline static string replace(const string& haystack,const string& needle,const string& replacer,int numReplace=0)
{
const char*phay=haystack.c_str();
int haysize=haystack.length();
const char*pneedle=needle.c_str();
int needlesize=needle.length();
if(needlesize>haysize)
return haystack;
int replacersize=replacer.length();
string returnvalue=haystack;
//const char*phayoutstart=phay;
int i=0;
int numReplaced=0;
int ri=0;
for(i=0;i<haysize-needlesize+1;i++,ri++)
{
if(!strncmp(phay+i,pneedle,needlesize)) //match!
{
//output until phay
//cerr<<"match at "<<i;
//returnvalue.erase(ri,needlesize);
//cerr<<returnvalue<<endl;
//returnvalue.insert(ri,replacer);
returnvalue.replace(ri,needlesize,replacer);
//cerr<<returnvalue<<endl;
i+=needlesize-1;
ri+=replacersize-1;
//cerr<<" replaced as "<<returnvalue<<endl;
numReplaced++;
if(numReplace>0 && numReplaced==numReplace)
return returnvalue;
}
}
return returnvalue;
}
inline static string replaceFromEnd(const string& haystack,const string& needle,const string& replacer,int numReplace)
{
const char*phay=haystack.c_str();
int haysize=haystack.length();
const char*pneedle=needle.c_str();
int needlesize=needle.length();
if(needlesize>haysize)
return haystack;
string returnvalue=haystack;
//const char*phayoutstart=phay;
int i=0;
int numReplaced=0;
for(i=haysize-needlesize+1;i>=0;i--)
{
if(!strncmp(phay+i,pneedle,needlesize)) //match!
{
//output until phay
//cerr<<"match at "<<i;
//returnvalue.erase(i,needlesize);
//returnvalue.insert(i,replacer);
returnvalue.replace(i,needlesize,replacer);
//cerr<<" replaced as "<<returnvalue<<endl;
numReplaced++;
if(numReplace>0 && numReplaced==numReplace)
return returnvalue;
}
}
return returnvalue;
}
inline static void shuffleStringInPlace( string& str)
{
char tmp;
int len=str.length();
for(int i=0;i<len;i++)
{
int toSwap=rand()%len;
tmp=str[i];
str[i]=str[toSwap];
str[toSwap]=tmp;
}
}
inline static string shuffleString(const string&str)
{
string inter(str);
shuffleStringInPlace(inter);
return inter;
}
};
#endif /*STRINGUTIL_H_*/