58#define strtoull _strtoui64
62namespace std { using ::list; }
120 memcpy(data,
s.c_str(),
n);
129 Error(
"TString::TString",
"Negative length!");
141 char *data =
Init(1, 1);
159 while (
n--) data[
n] =
c;
172 memcpy(data,
s.GetLongPointer(),
n);
182 fRep.fRaw =
s.fRep.fRaw;
191 Ssiz_t len = substr.length();
192 char *data =
Init(len, len);
193 memcpy(data, substr.data(), len);
202 char *data =
Init(len, len);
203 memcpy(data, substr.
Data(), len);
212 Error(
"TString::TString",
"Negative first length!");
216 Error(
"TString::TString",
"Negative second length!");
222 char *data =
Init(tot, tot);
223 memcpy(data, a1, n1);
224 memcpy(data+n1, a2, n2);
242 Error(
"TString::Init",
"capacity too large (%d, max = %d)", capacity,
MaxSize());
244 if (nchar > capacity)
249 if (capacity < kMinCap) {
254 data =
new char[cap+1];
340 fRep.fRaw = rhs.fRep.fRaw;
364 if (!rep)
return *
this;
370 Error(
"TString::Append",
"rep too large (%d, max = %d)", rep,
MaxSize()-len);
378 if (capac - tot >= 0) {
383 data =
new char[cap+1];
384 memcpy(data, p, len);
422 const char *cs1 =
Data();
426 for (; cs2[i]; ++i) {
427 if (i == len)
return -1;
428 if (cs1[i] != cs2[i])
return ((cs1[i] > cs2[i]) ? 1 : -1);
431 for (; cs2[i]; ++i) {
432 if (i == len)
return -1;
433 char c1 = tolower((
unsigned char)cs1[i]);
434 char c2 = tolower((
unsigned char)cs2[i]);
435 if (
c1 !=
c2)
return ((
c1 >
c2) ? 1 : -1);
438 return (i < len) ? 1 : 0;
451 const char *s2 = str.
Data();
455 if (len < slen) slen = len;
457 int result = memcmp(
s1, s2, slen);
458 if (result != 0)
return result;
461 for (; i < slen; ++i) {
462 char c1 = tolower((
unsigned char)
s1[i]);
463 char c2 = tolower((
unsigned char)s2[i]);
464 if (
c1 !=
c2)
return ((
c1 >
c2) ? 1 : -1);
469 if (len == slen)
return 0;
470 return (len > slen) ? 1 : -1;
480 const char *data =
Data();
482 if (data[
n] ==
c) count++;
501 const char *
f = strchr(
Data(),
c);
510 const char *
f = strpbrk(
Data(), cs);
519 return (((
x & 0x000000ffU) << 24) | ((
x & 0x0000ff00U) << 8) |
520 ((
x & 0x00ff0000U) >> 8) | ((
x & 0xff000000U) >> 24));
539 UInt_t len = str ? strlen(str) : 0;
557 if ((i = len*
sizeof(
char)%
sizeof(
UInt_t)) != 0) {
559 const char*
c = (
const char*)p;
567 const unsigned char *p = (
const unsigned char*)str;
580 if ((i = len*
sizeof(
char)%
sizeof(
UInt_t)) != 0) {
582 const char*
c = (
const char*)p;
612 const char*
c = (
const char*)p;
627 const unsigned char *p = (
const unsigned char*)
Data();
629 Mash(hv, toupper(*p));
663#if defined(_MSC_VER) && (_MSC_VER < 1800)
665 typedef unsigned char uint8_t;
666 typedef unsigned long uint32_t;
667 typedef unsigned __int64 uint64_t;
677#define ROTL64(x,y) _rotl64(x,y)
678#define BIG_CONSTANT(x) (x)
683 return (
x <<
r) | (
x >> (64 -
r));
686#define ROTL64(x,y) rotl64(x,y)
687#define BIG_CONSTANT(x) (x##LLU)
721 static void MurmurHash3_x64_128(
const void * key,
const int len,
722 const uint32_t seed, uint64_t out[2] )
724 const uint8_t * data = (
const uint8_t*)key;
725 const int nblocks = len / 16;
736 const uint64_t * blocks = (
const uint64_t *)(data);
738 for(
int i = 0; i < nblocks; i++)
740 uint64_t k1 = getblock(blocks,i*2+0);
741 uint64_t k2 = getblock(blocks,i*2+1);
747 k2 *=
c2; k2 =
ROTL64(k2,33); k2 *=
c1; h2 ^= k2;
749 h2 =
ROTL64(h2,31); h2 +=
h1; h2 = h2*5+0x38495ab5;
755 const uint8_t * tail = (
const uint8_t*)(data + nblocks*16);
761 case 15: k2 ^= uint64_t(tail[14]) << 48;
762 case 14: k2 ^= uint64_t(tail[13]) << 40;
763 case 13: k2 ^= uint64_t(tail[12]) << 32;
764 case 12: k2 ^= uint64_t(tail[11]) << 24;
765 case 11: k2 ^= uint64_t(tail[10]) << 16;
766 case 10: k2 ^= uint64_t(tail[ 9]) << 8;
767 case 9: k2 ^= uint64_t(tail[ 8]) << 0;
768 k2 *=
c2; k2 =
ROTL64(k2,33); k2 *=
c1; h2 ^= k2;
770 case 8: k1 ^= uint64_t(tail[ 7]) << 56;
771 case 7: k1 ^= uint64_t(tail[ 6]) << 48;
772 case 6: k1 ^= uint64_t(tail[ 5]) << 40;
773 case 5: k1 ^= uint64_t(tail[ 4]) << 32;
774 case 4: k1 ^= uint64_t(tail[ 3]) << 24;
775 case 3: k1 ^= uint64_t(tail[ 2]) << 16;
776 case 2: k1 ^= uint64_t(tail[ 1]) << 8;
777 case 1: k1 ^= uint64_t(tail[ 0]) << 0;
784 h1 ^= len; h2 ^= len;
795 ((uint64_t*)out)[0] =
h1;
796 ((uint64_t*)out)[1] = h2;
813 if (ntxt !=
sizeof(
void*)) {
814 uint64_t buf[2] = {0};
815 MurmurHash3_x64_128(txt, ntxt, 0x6384BA69, buf);
821 if (((
size_t)txt) %
sizeof(
void*)) {
824 if (
sizeof(
void*) >
sizeof(
UInt_t)) {
828 const unsigned char* ctxt = (
const unsigned char*) txt;
829 for (
unsigned int i = 0; i < 4; ++i) {
830 ret ^= ctxt[i] << (i * 8);
832 if (
sizeof(
void*) >
sizeof(
UInt_t)) {
834 for (
unsigned int i = 0; i < 4; ++i) {
835 ret ^= ctxt[i] << (i * 8);
850 if (tolower((
unsigned char)*p) != tolower((
unsigned char)*
q))
866 Error(
"TString::Index",
"Negative first pattern length!");
870 if (slen < startIndex + plen)
return kNPOS;
871 if (plen == 0)
return startIndex;
872 slen -= startIndex + plen;
873 const char *sp =
Data() + startIndex;
875 char first = *pattern;
876 for (
Ssiz_t i = 0; i <= slen; ++i)
877 if (sp[i] ==
first && memcmp(sp+i+1, pattern+1, plen-1) == 0)
878 return i + startIndex;
880 int first = tolower((
unsigned char) *pattern);
881 for (
Ssiz_t i = 0; i <= slen; ++i)
882 if (tolower((
unsigned char) sp[i]) ==
first &&
884 return i + startIndex;
894 const char *
f = strrchr(
Data(), (
unsigned char)
c);
915 const char *specials =
"^$.[]*+?";
927 const char *specials =
"[]*?";
946 Error(
"TString::Prepend",
"rep too large (%d, max = %d)", rep,
MaxSize()-len);
954 if (capac - tot >= 0) {
955 memmove(p + rep, p, len);
960 data =
new char[cap+1];
961 memcpy(data+rep, p, len);
982 if (pos <= kNPOS || pos > len) {
983 Error(
"TString::Replace",
984 "first argument out of bounds: pos = %d, Length = %d", pos, len);
988 Error(
"TString::Replace",
"Negative number of characters to remove!");
992 Error(
"TString::Replace",
"Negative number of replacement characters!");
999 Ssiz_t tot = len - n1 + n2;
1000 Ssiz_t rem = len - n1 - pos;
1005 if (capac - len + n1 >= n2) {
1009 if (n2) memmove(p + pos, cs, n2);
1010 memmove(p + pos + n2, p + pos + n1, rem);
1013 if (p + pos < cs && cs < p + len) {
1014 if (p + pos + n1 <= cs)
1017 memmove(p + pos, cs, n1);
1024 memmove(p + pos + n2, p + pos + n1, rem);
1027 if (n2) memmove(p + pos, cs, n2);
1033 char *data =
new char[cap+1];
1034 if (pos) memcpy(data, p, pos);
1035 if (n2 ) memcpy(data + pos, cs, n2);
1036 if (rem) memcpy(data + pos + n2, p + pos + n1, rem);
1053 if (
s1 && ls1 > 0) {
1071 const char *direct =
Data();
1075 while (start < end && direct[start] ==
c)
1078 while (start < end && direct[end-1] ==
c)
1088 Remove(send - start - (send - end), send - end);
1110 const char *direct =
Data();
1113 while (start < end && direct[start] ==
c)
1116 while (start < end && direct[end-1] ==
c)
1118 if (end == start) start = end =
kNPOS;
1130 *p = tolower((
unsigned char)*p);
1143 *p = toupper((
unsigned char)*p);
1154 Error(
"TString::AssertElement",
1155 "out of bounds: i = %d, Length = %d", i,
Length());
1164 if (newCap >
ms - 1) {
1165 Error(
"TString::AdjustCapacity",
"capacity too large (%d, max = %d)",
1187 Error(
"TString::Clobber",
"capacity too large (%d, max = %d)", nc,
MaxSize());
1198 data =
new char[cap+1];
1215 if (len >= tot)
return;
1218 Error(
"TString::Clone",
"tot too large (%d, max = %d)", tot,
MaxSize());
1225 if (capac - tot < 0) {
1227 data =
new char[cap+1];
1228 memcpy(data, p, len);
1251 tobuf(buffer, nchars);
1257 for (
int i = 0; i < nchars; i++) buffer[i] = data[i];
1279 Error(
"TString::ReadBuffer",
"found case with nwh=%d and nchars=%d", nwh, nchars);
1283 char *data =
Init(nchars, nchars);
1285 for (
int i = 0; i < nchars; i++)
frombuf(buffer, &data[i]);
1306 TClass *clRef =
b.ReadClass(clReq, &tag);
1317 ::Error(
"TString::ReadObject",
"could not create object of class %s",
1325 b.CheckByteCount(startpos, tag, clRef);
1347 if (
b.IsReading()) {
1348 b.ReadTString(*
this);
1350 b.WriteTString(*
this);
1384 b.SetByteCount(cntpos);
1391#if defined(R__TEMPLATE_OVERLOAD_BUG)
1419 const char *data =
s1.Data();
1422 for (i = 0; s2[i]; ++i)
1423 if (data[i] != s2[i] || i == len)
return kFALSE;
1434 const char *uc = str.
Data();
1435 char *lc = (
char*)temp.
Data();
1437 while (
n--) { *lc++ = tolower((
unsigned char)*uc); uc++; }
1448 const char* uc = str.
Data();
1449 char* lc = (
char*)temp.
Data();
1451 while (
n--) { *lc++ = toupper((
unsigned char)*uc); uc++; }
1460 return TString(
s.Data(),
s.Length(), cs, cs ? strlen(cs) : 0);
1468 return TString(cs, cs ? strlen(cs) : 0,
s.Data(),
s.Length());
1503 ::Obsolete(
"TString::GetInitialCapacity",
"v5-30-00",
"v5-32-00");
1511 ::Obsolete(
"TString::GetResizeIncrement",
"v5-30-00",
"v5-32-00");
1519 ::Obsolete(
"TString::GetMaxWaste",
"v5-30-00",
"v5-32-00");
1528 ::Obsolete(
"TString::InitialCapacity",
"v5-30-00",
"v5-32-00");
1537 ::Obsolete(
"TString::ResizeIncrement",
"v5-30-00",
"v5-32-00");
1547 ::Obsolete(
"TString::MaxWaste",
"v5-30-00",
"v5-32-00");
1565 : fStr((
TString&)str), fBegin(start), fExtent(nextent)
1574 if (start <
Length() && len > 0) {
1575 if (start+len >
Length())
1593 Ssiz_t len = pattern ? strlen(pattern) : 0;
1642 if (ss.
IsNull())
return *cs ==
'\0';
1646 for (i = 0; cs[i]; ++i)
1656 if (ss.
IsNull())
return s.IsNull();
1666 if (
s1.IsNull())
return s2.
IsNull();
1680 while (
n--) { *p = tolower((
unsigned char)*p); p++;}
1692 while (
n--) { *p = toupper((
unsigned char)*p); p++;}
1701 Error(
"TSubString::SubStringError",
1702 "out of bounds: start = %d, n = %d, sr = %d", start,
n,
sr);
1711 Error(
"TSubString::AssertElement",
1712 "out of bounds: i = %d, Length = %d", i,
Length());
1720 const char *cp =
Data();
1733 const char *cp =
Data();
1735 if (len == 0)
return kFALSE;
1736 for (
Ssiz_t i = 0; i < len; ++i)
1737 if (!isalpha(cp[i]))
1748 const char *cp =
Data();
1750 if (len == 0)
return kFALSE;
1751 for (
Ssiz_t i = 0; i < len; ++i)
1752 if (!isalnum(cp[i]))
1765 const char *cp =
Data();
1767 if (len == 0)
return kFALSE;
1769 for (
Ssiz_t i = 0; i < len; ++i) {
1770 if (cp[i] !=
' ' && !isdigit(cp[i]))
return kFALSE;
1771 if (cp[i] ==
' ')
b++;
1772 if (isdigit(cp[i]))
d++;
1803 pos = tmp.
First(
',');
1805 pos = tmp.
Index(
"e-");
1806 if (pos >= 1) tmp.
Replace(pos, 2,
" ", 1);
1807 pos = tmp.
Index(
"e+");
1808 if (pos >= 1) tmp.
Replace(pos, 2,
" ", 1);
1809 pos = tmp.
Index(
"e");
1810 if (pos >= 1) tmp.
Replace(pos, 1,
" ", 1);
1811 pos = tmp.
First(
'-');
1812 if (pos == 0) tmp.
Replace(pos, 1,
" ", 1);
1813 pos = tmp.
First(
'+');
1814 if (pos == 0) tmp.
Replace(pos, 1,
" ", 1);
1827 const char *cp =
Data();
1829 if (len == 0)
return kFALSE;
1830 for (
Ssiz_t i = 0; i < len; ++i)
1831 if (!isxdigit(cp[i]))
1843 const char *cp =
Data();
1845 if (len == 0)
return kFALSE;
1846 for (
Ssiz_t i = 0; i < len; ++i)
1847 if (cp[i] !=
'0' && cp[i] !=
'1')
1859 const char *cp =
Data();
1861 if (len == 0)
return kFALSE;
1862 for (
Ssiz_t i = 0; i < len; ++i)
1863 if (!isdigit(cp[i]) || cp[i]==
'8' || cp[i]==
'9')
1875 const char *cp =
Data();
1877 if (len == 0)
return kFALSE;
1878 for (
Ssiz_t i = 0; i < len; ++i)
1879 if (!isdigit(cp[i]))
1892 if (base < 2 || base > 36) {
1893 Error(
"TString::IsInBaseN",
"base %d is not supported. Supported bases are {2,3,...,36}.", base);
1897 Error(
"TString::IsInBaseN",
"input string is empty.") ;
1902 TString str_ref0 =
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" ;
1926 if (end == -1)
return atoi(
Data());
1932 tmp += (*this)(start, end-start);
1933 start = end+1; end =
Index(
" ", start);
1937 tmp += (*this)(start, end-start);
1938 return atoi(tmp.
Data());
1953 if (end == -1)
return atoll(
Data());
1955 if (end == -1)
return _atoi64(
Data());
1962 tmp += (*this)(start, end-start);
1963 start = end+1; end =
Index(
" ", start);
1967 tmp += (*this)(start, end-start);
1969 return atoll(tmp.
Data());
1971 return _atoi64(tmp.
Data());
1993 if (comma == -1 && end == -1)
return atof(
Data());
2000 if (end == -1)
return atof(tmp.
Data());
2005 tmp2 += tmp(start, end-start);
2006 start = end+1; end = tmp.
Index(
" ", start);
2009 tmp2 += tmp(start, end-start);
2010 return atof(tmp2.
Data());
2029 if (base < 2 || base > 36) {
2030 Error(
"TString::Itoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base) ;
2034 Int_t quotient = value;
2037 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[
TMath::Abs(quotient % base) ];
2041 if (value < 0) buf +=
'-';
2042 std::reverse(buf.begin(), buf.end());
2056 if (base < 2 || base > 36) {
2057 Error(
"TString::UItoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base);
2064 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[ quotient % base ];
2067 std::reverse(buf.begin(), buf.end());
2081 if (base < 2 || base > 36) {
2082 Error(
"TString::LLtoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base);
2089 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[
TMath::Abs(quotient % base) ];
2093 if (value < 0) buf +=
'-';
2094 std::reverse(buf.begin(), buf.end());
2108 if (base < 2 || base > 36) {
2109 Error(
"TString::ULLtoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base);
2116 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[ quotient % base ];
2119 std::reverse(buf.begin(), buf.end());
2131 if (base_in < 2 || base_in > 36 || base_out < 2 || base_out > 36) {
2132 Error(
"TString::BaseConvert",
"only bases 2-36 are supported (base_in=%d, base_out=%d).", base_in, base_out);
2138 if (s_in_[0] ==
'-') {
2142 if (!isSigned && s_in_[0] ==
'+') s_in_.
Remove(0, 1);
2145 if (!s_in_.
Length()) s_in_ +=
'0';
2148 Error(
"TString::BaseConvert",
"s_in=\"%s\" is not in base %d", s_in.
Data(), base_in);
2155 Error(
"TString::BaseConvert",
"s_in=\"%s\" > %s = 2^64-1 in base %d.", s_in.
Data(), s_max.
Data(), base_in);
2160 if (s_in_ > s_max) {
2162 Error(
"TString::BaseConvert",
"s_in=\"%s\" > %s = 2^64-1 in base %d.", s_in.
Data(), s_max.
Data(), base_in);
2170 if (isSigned) s_out.
Prepend(
"-");
2186 return strcmp(
s, s2) == 0;
2187 return strcasecmp(
s, s2) == 0;
2199 std::list<Int_t> splitIndex;
2201 Int_t i, start, nrDiff = 0;
2202 for (i = 0; i < delim.
Length(); i++) {
2204 while (start <
Length()) {
2206 if (pos ==
kNPOS)
break;
2207 splitIndex.push_back(pos);
2210 if (start > 0) nrDiff++;
2212 splitIndex.push_back(
Length());
2221 std::list<Int_t>::const_iterator it;
2223 for (it = splitIndex.begin(); it != splitIndex.end(); ++it) {
2225 for (it = splitIndex.begin(); it != (std::list<Int_t>::const_iterator) splitIndex.end(); ++it) {
2228 if (stop - 1 >= start + 1) {
2229 TString tok = (*this)(start+1, stop-start-1);
2245 Ssiz_t buflen = 20 + 20 * strlen(fmt);
2256 if (
n == -1 ||
n >= buflen) {
2292 va_start(ap,
va_(fmt));
2314 va_start(ap,
va_(fmt));
2329 static const int fld_size = 2048;
2330 TTHREAD_TLS(
char*) slowBuffer(0);
2331 TTHREAD_TLS(
int) slowBufferSize(0);
2333 if (hint == -1) hint = fld_size;
2334 if (hint > slowBufferSize) {
2335 delete [] slowBuffer;
2336 slowBufferSize = 2 * hint;
2337 if (hint < 0 || slowBufferSize < 0) {
2342 slowBuffer =
new char[slowBufferSize];
2348 int n = vsnprintf(slowBuffer, slowBufferSize, format, ap);
2351 if (
n == -1 ||
n >= slowBufferSize) {
2352 if (
n == -1)
n = 2 * slowBufferSize;
2353 if (
n == slowBufferSize)
n++;
2375static char *
Format(
const char *format, va_list ap)
2377 static const int cb_size = 4096;
2378 static const int fld_size = 2048;
2381 TTHREAD_TLS_ARRAY(
char,cb_size,gFormbuf);
2382 TTHREAD_TLS(
char*) gBfree(0);
2383 TTHREAD_TLS(
char*) gEndbuf(0);
2387 gEndbuf = &gFormbuf[cb_size-1];
2391 if (buf+fld_size > gEndbuf)
2397 int n = vsnprintf(buf, fld_size, format, ap);
2400 if (
n == -1 ||
n >= fld_size) {
2425 va_start(ap,
va_(fmt));
2439 va_start(ap,
va_(fmt));
2459 char *buf =
new char[
l+1];
2472 const char *t2 =
s +
l - 1;
2473 while (*t2 ==
c && t2 >
s)
2481 *(buf+(t2-
t1+1)) =
'\0';
2494 char *
s =
new char[strlen(str)+1];
2495 if (
s) strcpy(
s, str);
2508 const char *p = str;
2509 char *
s, *
s1 =
new char[strlen(str)+1];
2525int EscChar(
const char *src,
char *dst,
int dstlen,
char *specchars,
2529 char *
q, *end = dst+dstlen-1;
2531 for (p = src,
q = dst; *p &&
q < end; ) {
2532 if (strchr(specchars, *p)) {
2549int UnEscChar(
const char *src,
char *dst,
int dstlen,
char *specchars,
char)
2552 char *
q, *end = dst+dstlen-1;
2554 for (p = src,
q = dst; *p &&
q < end; ) {
2555 if (strchr(specchars, *p))
2567#ifdef NEED_STRCASECMP
2571int strcasecmp(
const char *str1,
const char *str2)
2573 return strncasecmp(str1, str2, str2 ? strlen(str2)+1 : 0);
2579int strncasecmp(
const char *str1,
const char *str2,
Ssiz_t n)
2605std::string cling::printValue(
const TString* val) {
2613std::string cling::printValue(
const TSubString* val) {
2622 std::string str(*val);
void frombuf(char *&buf, Bool_t *x)
void tobuf(char *&buf, Bool_t x)
const size_t kBitsPerByte
unsigned long long ULong64_t
void ErrorHandler(int level, const char *location, const char *fmt, va_list va)
General error handler function. It calls the user set error handler.
void Error(const char *location, const char *msgfmt,...)
R__EXTERN Bool_t gPrintViaErrorHandler
void Obsolete(const char *function, const char *asOfVers, const char *removedFromVers)
Use this function to declare a function obsolete.
TBuffer & operator<<(TBuffer &buf, const TString *s)
Write TString or derived to TBuffer.
uint64_t rotl64(uint64_t x, int8_t r)
TString ToLower(const TString &str)
Return a lower-case version of str.
char * Compress(const char *str)
Remove all blanks from the string str.
TString operator+(const TString &s, const char *cs)
Use the special concatenation constructor.
static int MemIsEqual(const char *p, const char *q, Ssiz_t n)
Returns false if strings are not equal.
TBuffer & operator>>(TBuffer &buf, TString *&s)
Read string from TBuffer. Function declared in ClassDef.
Bool_t operator==(const TString &s1, const char *s2)
Compare TString with a char *.
int UnEscChar(const char *src, char *dst, int dstlen, char *specchars, char)
Un-escape specchars in src from escchar and copy to dst.
UInt_t Hash(const char *str)
Return a case-sensitive hash value (endian independent).
char * StrDup(const char *str)
Duplicate the string str.
static char * SlowFormat(const char *format, va_list ap, int hint)
Format a string in a formatting buffer (using a printf style format descriptor).
int EscChar(const char *src, char *dst, int dstlen, char *specchars, char escchar)
Escape specchars in src with escchar and copy to dst.
TString ToUpper(const TString &str)
Return an upper-case version of str.
static UInt_t SwapInt(UInt_t x)
void Printf(const char *va_(fmt),...)
Formats a string in a circular formatting buffer and prints the string.
static void Mash(UInt_t &hash, UInt_t chars)
Utility used by Hash().
#define R__VA_COPY(to, from)
Buffer base class used for serializing objects.
TClass instances represent classes, structs and namespaces in the ROOT type system.
void * New(ENewType defConstructor=kClassNew, Bool_t quiet=kFALSE) const
Return a pointer to a newly allocated object of this class.
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
This code implements the MD5 message-digest algorithm.
const char * AsString() const
Return message digest as string.
void Update(const UChar_t *buf, UInt_t len)
Update TMD5 object to reflect the concatenation of another buffer full of bytes.
void Final()
MD5 finalization, ends an MD5 message-digest operation, writing the the message digest and zeroizing ...
virtual const char * GetName() const
Returns name of object.
Collectable string class.
TString Copy() const
Copy a string.
static TString UItoa(UInt_t value, Int_t base)
Converts a UInt_t (twice the range of an Int_t) to a TString with respect to the base specified (2-36...
static TString LLtoa(Long64_t value, Int_t base)
Converts a Long64_t to a TString with respect to the base specified (2-36).
void SetShortSize(Ssiz_t s)
char & operator()(Ssiz_t i)
Bool_t IsDec() const
Returns true if all characters in string are decimal digits (0-9).
void ToLower()
Change string to lower-case.
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
static Ssiz_t MaxWaste(Ssiz_t mw=15)
Set maximum space that may be wasted in a string before doing a resize.
Int_t Atoi() const
Return integer value of string.
void SetLongSize(Ssiz_t s)
static const Ssiz_t kNPOS
Bool_t EndsWith(const char *pat, ECaseCompare cmp=kExact) const
Return true if string ends with the specified string.
TSubString Strip(EStripType s=kTrailing, char c=' ') const
Return a substring of self stripped at beginning and/or end.
TString()
TString default ctor.
Bool_t IsHex() const
Returns true if all characters in string are hexadecimal digits (0-9,a-f,A-F).
Double_t Atof() const
Return floating-point value contained in string.
Bool_t IsFloat() const
Returns kTRUE if string contains a floating point or integer number.
void Clear()
Clear string without changing its capacity.
TSubString SubString(const char *pat, Ssiz_t start=0, ECaseCompare cmp=kExact) const
Returns a substring matching "pattern", or the null substring if there is no such match.
TString & Replace(Ssiz_t pos, Ssiz_t n, const char *s)
Ssiz_t First(char c) const
Find first occurrence of a character c.
const char * Data() const
static TString * ReadString(TBuffer &b, const TClass *clReq)
Read TString object from buffer.
Bool_t IsDigit() const
Returns true if all characters in string are digits (0-9) or white spaces, i.e.
Bool_t MaybeRegexp() const
Returns true if string contains one of the regexp characters "^$.[]*+?".
static Ssiz_t ResizeIncrement(Ssiz_t ri=16)
Set default resize increment for all TStrings. Default is 16.
UInt_t HashCase() const
Return a case-sensitive hash value (endian independent).
Bool_t IsOct() const
Returns true if all characters in string are octal digits (0-7).
virtual ~TString()
Delete a TString.
static Ssiz_t GetMaxWaste()
TString & ReplaceAll(const TString &s1, const TString &s2)
static Ssiz_t AdjustCapacity(Ssiz_t oldCap, Ssiz_t newCap)
Calculate a nice capacity greater than or equal to newCap.
TString MD5() const
Return the MD5 digest for this string, in a string representation.
void Resize(Ssiz_t n)
Resize the string. Truncate or add blanks as necessary.
Bool_t IsAlpha() const
Returns true if all characters in string are alphabetic.
UInt_t HashFoldCase() const
Return a case-insensitive hash value (endian independent).
Ssiz_t Last(char c) const
Find last occurrence of a character c.
void ToUpper()
Change string to upper case.
Bool_t IsAscii() const
Returns true if all characters in string are ascii.
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
Bool_t BeginsWith(const char *s, ECaseCompare cmp=kExact) const
static Ssiz_t GetResizeIncrement()
void SetLongCap(Ssiz_t s)
TString & Prepend(const char *cs)
Bool_t IsBin() const
Returns true if all characters in string are binary digits (0,1).
static TString BaseConvert(const TString &s_in, Int_t base_in, Int_t base_out)
Converts string from base base_in to base base_out.
static TString ULLtoa(ULong64_t value, Int_t base)
Converts a ULong64_t (twice the range of an Long64_t) to a TString with respect to the base specified...
Int_t CountChar(Int_t c) const
Return number of times character c occurs in the string.
UInt_t Hash(ECaseCompare cmp=kExact) const
Return hash value.
static void WriteString(TBuffer &b, const TString *a)
Write TString object to buffer.
virtual void FillBuffer(char *&buffer) const
Copy string into I/O buffer.
TString & operator=(char s)
Assign character c to TString.
TString & Remove(Ssiz_t pos)
static Ssiz_t InitialCapacity(Ssiz_t ic=15)
Set default initial capacity for all TStrings. Default is 15.
TString & Append(const char *cs)
Bool_t IsInBaseN(Int_t base) const
Returns true if all characters in string are expressed in the base specified (range=2-36),...
char * Init(Ssiz_t capacity, Ssiz_t nchar)
Private member function returning an empty string representation of size capacity and containing ncha...
Bool_t MaybeWildcard() const
Returns true if string contains one of the wildcard characters "[]*?".
void InitChar(char c)
Initialize a string with a single character.
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
static TString Itoa(Int_t value, Int_t base)
Converts an Int_t to a TString with respect to the base specified (2-36).
virtual Int_t Sizeof() const
Returns size string will occupy on I/O buffer.
void Clone(Ssiz_t nc)
Make self a distinct copy with capacity of at least tot, where tot cannot be smaller than the current...
void SetLongPointer(char *p)
Ssiz_t GetLongSize() const
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
static Ssiz_t GetInitialCapacity()
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
void AssertElement(Ssiz_t nc) const
Check to make sure a string index is in range.
virtual void ReadBuffer(char *&buffer)
Read string from I/O buffer.
Bool_t IsAlnum() const
Returns true if all characters in string are alphanumeric.
void FormImp(const char *fmt, va_list ap)
Formats a string using a printf style format descriptor.
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
void Clobber(Ssiz_t nc)
Clear string and make sure it has a capacity of nc.
static Ssiz_t Recommend(Ssiz_t s)
Long64_t Atoll() const
Return long long value of string.
A zero length substring is legal.
TSubString(const TString &s, Ssiz_t start, Ssiz_t len)
Private constructor.
TSubString & operator=(const char *s)
Assign char* to sub-string.
void ToUpper()
Convert sub-string to upper-case.
void SubStringError(Ssiz_t, Ssiz_t, Ssiz_t) const
Output error message.
char & operator[](Ssiz_t i)
Return character at pos i from sub-string. Check validity of i.
void AssertElement(Ssiz_t i) const
Check to make sure a sub-string index is in range.
void ToLower()
Convert sub-string to lower-case.
const char * Data() const
char & operator()(Ssiz_t i)
Return character at pos i from sub-string. No check on i.
basic_string_view< char > string_view
static constexpr double sr
static constexpr double s
static constexpr double ms
Short_t Max(Short_t a, Short_t b)
Short_t Min(Short_t a, Short_t b)