58#define strtoull _strtoui64
62namespace std { using ::list; }
120 memcpy(
data, s.c_str(),
n);
129 Error(
"TString::TString",
"NULL input string!");
134 Error(
"TString::TString",
"Negative length!");
138 if (strlen(cs) < (
size_t)
n) {
139 Warning(
"TString::TString",
"Input string is shorter than requested size.");
168 Error(
"TString::TString",
"Negative length!");
196 fRep.fRaw = s.fRep.fRaw;
207 memcpy(
data, substr.data(),
len);
226 Error(
"TString::TString",
"Negative first length!");
231 Error(
"TString::TString",
"Negative second length!");
239 if (a1) memcpy(
data, a1, n1);
240 if (a2) memcpy(
data+n1, a2, n2);
258 Error(
"TString::Init",
"Negative length!");
262 Error(
"*TString::Init",
"Negative length!");
265 if (
nchar > capacity) {
266 Error(
"TString::Init",
"capacity is smaller than nchar (%d > %d)",
nchar, capacity);
270 Error(
"TString::Init",
"capacity too large (%d, max = %d)", capacity,
MaxSize());
272 if (
nchar > capacity)
277 if (capacity < kMinCap) {
282 data =
new char[cap+1];
368 fRep.fRaw = rhs.fRep.fRaw;
392 if (!rep)
return *
this;
395 Error(
"TString::Append",
"Negative length!");
402 Error(
"TString::Append",
"rep too large (%d, max = %d)", rep,
MaxSize()-
len);
410 if (capac - tot >= 0) {
415 data =
new char[cap+1];
454 const char *cs1 =
Data();
458 for (; cs2[i]; ++i) {
459 if (i ==
len)
return -1;
460 if (cs1[i] != cs2[i])
return ((cs1[i] > cs2[i]) ? 1 : -1);
463 for (; cs2[i]; ++i) {
464 if (i ==
len)
return -1;
465 char c1 = tolower((
unsigned char)cs1[i]);
466 char c2 = tolower((
unsigned char)cs2[i]);
467 if (
c1 !=
c2)
return ((
c1 >
c2) ? 1 : -1);
470 return (i <
len) ? 1 : 0;
483 const char *s2 = str.
Data();
487 if (
len < slen) slen =
len;
493 for (; i < slen; ++i) {
494 char c1 = tolower((
unsigned char)
s1[i]);
495 char c2 = tolower((
unsigned char)s2[i]);
496 if (
c1 !=
c2)
return ((
c1 >
c2) ? 1 : -1);
501 if (
len == slen)
return 0;
502 return (
len > slen) ? 1 : -1;
514 if (
data[
n] ==
c) count++;
533 const char *
f = strchr(
Data(),
c);
542 const char *
f = strpbrk(
Data(), cs);
551 return (((
x & 0x000000ffU) << 24) | ((
x & 0x0000ff00U) << 8) |
552 ((
x & 0x00ff0000U) >> 8) | ((
x & 0xff000000U) >> 24));
589 if ((i =
len*
sizeof(
char)%
sizeof(
UInt_t)) != 0) {
591 const char*
c = (
const char*)
p;
599 const unsigned char *
p = (
const unsigned char*)str;
612 if ((i =
len*
sizeof(
char)%
sizeof(
UInt_t)) != 0) {
614 const char*
c = (
const char*)
p;
644 const char*
c = (
const char*)
p;
659 const unsigned char *
p = (
const unsigned char*)
Data();
661 Mash(hv, toupper(*
p));
695#if defined(_MSC_VER) && (_MSC_VER < 1800)
697 typedef unsigned char uint8_t;
698 typedef unsigned long uint32_t;
699 typedef unsigned __int64 uint64_t;
709#define ROTL64(x,y) _rotl64(x,y)
710#define BIG_CONSTANT(x) (x)
715 return (
x <<
r) | (
x >> (64 -
r));
718#define ROTL64(x,y) rotl64(x,y)
719#define BIG_CONSTANT(x) (x##LLU)
753 static void MurmurHash3_x64_128(
const void * key,
const int len,
754 const uint32_t seed, uint64_t out[2] )
756 const uint8_t *
data = (
const uint8_t*)key;
757 const int nblocks =
len / 16;
768 const uint64_t * blocks = (
const uint64_t *)(
data);
770 for(
int i = 0; i < nblocks; i++)
772 uint64_t k1 = getblock(blocks,i*2+0);
773 uint64_t k2 = getblock(blocks,i*2+1);
779 k2 *=
c2; k2 =
ROTL64(k2,33); k2 *=
c1; h2 ^= k2;
781 h2 =
ROTL64(h2,31); h2 +=
h1; h2 = h2*5+0x38495ab5;
787 const uint8_t * tail = (
const uint8_t*)(
data + nblocks*16);
793 case 15: k2 ^= uint64_t(tail[14]) << 48;
794 case 14: k2 ^= uint64_t(tail[13]) << 40;
795 case 13: k2 ^= uint64_t(tail[12]) << 32;
796 case 12: k2 ^= uint64_t(tail[11]) << 24;
797 case 11: k2 ^= uint64_t(tail[10]) << 16;
798 case 10: k2 ^= uint64_t(tail[ 9]) << 8;
799 case 9: k2 ^= uint64_t(tail[ 8]) << 0;
800 k2 *=
c2; k2 =
ROTL64(k2,33); k2 *=
c1; h2 ^= k2;
802 case 8: k1 ^= uint64_t(tail[ 7]) << 56;
803 case 7: k1 ^= uint64_t(tail[ 6]) << 48;
804 case 6: k1 ^= uint64_t(tail[ 5]) << 40;
805 case 5: k1 ^= uint64_t(tail[ 4]) << 32;
806 case 4: k1 ^= uint64_t(tail[ 3]) << 24;
807 case 3: k1 ^= uint64_t(tail[ 2]) << 16;
808 case 2: k1 ^= uint64_t(tail[ 1]) << 8;
809 case 1: k1 ^= uint64_t(tail[ 0]) << 0;
827 ((uint64_t*)out)[0] =
h1;
828 ((uint64_t*)out)[1] = h2;
845 if (ntxt !=
sizeof(
void*)) {
846 uint64_t buf[2] = {0};
847 MurmurHash3_x64_128(txt, ntxt, 0x6384BA69, buf);
853 if (((
size_t)txt) %
sizeof(
void*)) {
856 if (
sizeof(
void*) >
sizeof(
UInt_t)) {
860 const unsigned char* ctxt = (
const unsigned char*) txt;
861 for (
unsigned int i = 0; i < 4; ++i) {
862 ret ^= ctxt[i] << (i * 8);
864 if (
sizeof(
void*) >
sizeof(
UInt_t)) {
866 for (
unsigned int i = 0; i < 4; ++i) {
867 ret ^= ctxt[i] << (i * 8);
882 if (tolower((
unsigned char)*
p) != tolower((
unsigned char)*
q))
898 Error(
"TString::Index",
"Negative first pattern length!");
902 if (slen < startIndex + plen)
return kNPOS;
903 if (plen == 0)
return startIndex;
904 slen -= startIndex + plen;
905 const char *sp =
Data() + startIndex;
907 char first = *pattern;
908 for (
Ssiz_t i = 0; i <= slen; ++i)
909 if (sp[i] ==
first && memcmp(sp+i+1, pattern+1, plen-1) == 0)
910 return i + startIndex;
912 int first = tolower((
unsigned char) *pattern);
913 for (
Ssiz_t i = 0; i <= slen; ++i)
914 if (tolower((
unsigned char) sp[i]) ==
first &&
916 return i + startIndex;
926 const char *
f = strrchr(
Data(), (
unsigned char)
c);
947 const char *specials =
"^$.[]*+?";
959 const char *specials =
"[]*?";
978 Error(
"TString::Prepend",
"rep too large (%d, max = %d)", rep,
MaxSize()-
len);
986 if (capac - tot >= 0) {
987 memmove(
p + rep,
p,
len);
992 data =
new char[cap+1];
1014 if (pos <= kNPOS || pos >
len) {
1015 Error(
"TString::Replace",
1016 "first argument out of bounds: pos = %d, Length = %d", pos,
len);
1020 Error(
"TString::Replace",
"Negative number of characters to remove!");
1024 Error(
"TString::Replace",
"Negative number of replacement characters!");
1041 if (n2) memmove(
p + pos, cs, n2);
1042 memmove(
p + pos + n2,
p + pos + n1, rem);
1047 if (
p + pos < cs && cs <
p +
len) {
1048 if (
p + pos + n1 <= cs)
1051 memmove(
p + pos, cs, n1);
1058 memmove(
p + pos + n2,
p + pos + n1, rem);
1061 if (n2) memmove(
p + pos, cs, n2);
1066 char *
data =
new char[cap+1];
1067 if (pos) memcpy(
data,
p, pos);
1068 if (n2 ) memcpy(
data + pos, cs, n2);
1069 if (rem) memcpy(
data + pos + n2,
p + pos + n1, rem);
1086 if (
s1 && ls1 > 0) {
1120 while (start < end &&
direct[start] ==
c)
1123 while (start < end &&
direct[end-1] ==
c)
1133 Remove(send - start - (send - end), send - end);
1158 while (start < end &&
direct[start] ==
c)
1161 while (start < end &&
direct[end-1] ==
c)
1163 if (end == start) start = end =
kNPOS;
1175 *
p = tolower((
unsigned char)*
p);
1188 *
p = toupper((
unsigned char)*
p);
1199 Error(
"TString::AssertElement",
1200 "out of bounds: i = %d, Length = %d", i,
Length());
1209 if (newCap > ms - 1) {
1210 Error(
"TString::AdjustCapacity",
"capacity too large (%d, max = %d)",
1232 Error(
"TString::Clobber",
"capacity too large (%d, max = %d)", nc,
MaxSize());
1243 data =
new char[cap+1];
1260 if (
len >= tot)
return;
1263 Error(
"TString::Clone",
"tot too large (%d, max = %d)", tot,
MaxSize());
1270 if (capac - tot < 0) {
1272 data =
new char[cap+1];
1296 tobuf(buffer, nchars);
1302 for (
int i = 0; i < nchars; i++) buffer[i] =
data[i];
1324 Error(
"TString::ReadBuffer",
"found case with nwh=%d and nchars=%d", nwh, nchars);
1330 for (
int i = 0; i < nchars; i++)
frombuf(buffer, &
data[i]);
1351 TClass *clRef =
b.ReadClass(clReq, &tag);
1362 ::Error(
"TString::ReadObject",
"could not create object of class %s",
1370 b.CheckByteCount(startpos, tag, clRef);
1392 if (
b.IsReading()) {
1393 b.ReadTString(*
this);
1395 b.WriteTString(*
this);
1429 b.SetByteCount(cntpos);
1436#if defined(R__TEMPLATE_OVERLOAD_BUG)
1464 const char *
data =
s1.Data();
1467 for (i = 0; s2[i]; ++i)
1479 const char *uc = str.
Data();
1480 char *lc = (
char*)temp.
Data();
1482 while (
n--) { *lc++ = tolower((
unsigned char)*uc); uc++; }
1493 const char* uc = str.
Data();
1494 char* lc = (
char*)temp.
Data();
1496 while (
n--) { *lc++ = toupper((
unsigned char)*uc); uc++; }
1548 ::Obsolete(
"TString::GetInitialCapacity",
"v5-30-00",
"v5-32-00");
1556 ::Obsolete(
"TString::GetResizeIncrement",
"v5-30-00",
"v5-32-00");
1564 ::Obsolete(
"TString::GetMaxWaste",
"v5-30-00",
"v5-32-00");
1573 ::Obsolete(
"TString::InitialCapacity",
"v5-30-00",
"v5-32-00");
1582 ::Obsolete(
"TString::ResizeIncrement",
"v5-30-00",
"v5-32-00");
1592 ::Obsolete(
"TString::MaxWaste",
"v5-30-00",
"v5-32-00");
1610 : fStr((
TString&)str), fBegin(start), fExtent(nextent)
1638 Ssiz_t len = pattern ? strlen(pattern) : 0;
1687 if (ss.
IsNull())
return *cs ==
'\0';
1691 for (i = 0; cs[i]; ++i)
1711 if (
s1.IsNull())
return s2.
IsNull();
1725 while (
n--) { *
p = tolower((
unsigned char)*
p);
p++;}
1737 while (
n--) { *
p = toupper((
unsigned char)*
p);
p++;}
1746 Error(
"TSubString::SubStringError",
1747 "out of bounds: start = %d, n = %d, sr = %d", start,
n, sr);
1756 Error(
"TSubString::AssertElement",
1757 "out of bounds: i = %d, Length = %d", i,
Length());
1765 const char *cp =
Data();
1778 const char *cp =
Data();
1782 if (!isalpha(cp[i]))
1793 const char *cp =
Data();
1797 if (!isalnum(cp[i]))
1810 const char *cp =
Data();
1815 if (cp[i] !=
' ' && !isdigit(cp[i]))
return kFALSE;
1816 if (cp[i] ==
' ')
b++;
1817 if (isdigit(cp[i]))
d++;
1848 pos = tmp.
First(
',');
1850 pos = tmp.
Index(
"e-");
1851 if (pos >= 1) tmp.
Replace(pos, 2,
" ", 1);
1852 pos = tmp.
Index(
"e+");
1853 if (pos >= 1) tmp.
Replace(pos, 2,
" ", 1);
1854 pos = tmp.
Index(
"e");
1855 if (pos >= 1) tmp.
Replace(pos, 1,
" ", 1);
1856 pos = tmp.
First(
'-');
1857 if (pos == 0) tmp.
Replace(pos, 1,
" ", 1);
1858 pos = tmp.
First(
'+');
1859 if (pos == 0) tmp.
Replace(pos, 1,
" ", 1);
1872 const char *cp =
Data();
1876 if (!isxdigit(cp[i]))
1888 const char *cp =
Data();
1892 if (cp[i] !=
'0' && cp[i] !=
'1')
1904 const char *cp =
Data();
1908 if (!isdigit(cp[i]) || cp[i]==
'8' || cp[i]==
'9')
1920 const char *cp =
Data();
1924 if (!isdigit(cp[i]))
1937 if (base < 2 || base > 36) {
1938 Error(
"TString::IsInBaseN",
"base %d is not supported. Supported bases are {2,3,...,36}.", base);
1942 Error(
"TString::IsInBaseN",
"input string is empty.") ;
1947 TString str_ref0 =
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" ;
1971 if (end == -1)
return atoi(
Data());
1977 tmp += (*this)(start, end-start);
1978 start = end+1; end =
Index(
" ", start);
1982 tmp += (*this)(start, end-start);
1983 return atoi(tmp.
Data());
1998 if (end == -1)
return atoll(
Data());
2000 if (end == -1)
return _atoi64(
Data());
2007 tmp += (*this)(start, end-start);
2008 start = end+1; end =
Index(
" ", start);
2012 tmp += (*this)(start, end-start);
2014 return atoll(tmp.
Data());
2016 return _atoi64(tmp.
Data());
2038 if (comma == -1 && end == -1)
return atof(
Data());
2045 if (end == -1)
return atof(tmp.
Data());
2050 tmp2 += tmp(start, end-start);
2051 start = end+1; end = tmp.
Index(
" ", start);
2054 tmp2 += tmp(start, end-start);
2055 return atof(tmp2.
Data());
2074 if (base < 2 || base > 36) {
2075 Error(
"TString::Itoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base) ;
2082 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[
TMath::Abs(quotient % base) ];
2086 if (
value < 0) buf +=
'-';
2087 std::reverse(buf.begin(), buf.end());
2101 if (base < 2 || base > 36) {
2102 Error(
"TString::UItoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base);
2109 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[ quotient % base ];
2112 std::reverse(buf.begin(), buf.end());
2126 if (base < 2 || base > 36) {
2127 Error(
"TString::LLtoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base);
2134 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[
TMath::Abs(quotient % base) ];
2138 if (
value < 0) buf +=
'-';
2139 std::reverse(buf.begin(), buf.end());
2153 if (base < 2 || base > 36) {
2154 Error(
"TString::ULLtoa",
"base %d is not supported. Supported bases are {2,3,...,36}.",base);
2161 buf +=
"0123456789abcdefghijklmnopqrstuvwxyz"[ quotient % base ];
2164 std::reverse(buf.begin(), buf.end());
2176 if (base_in < 2 || base_in > 36 || base_out < 2 || base_out > 36) {
2177 Error(
"TString::BaseConvert",
"only bases 2-36 are supported (base_in=%d, base_out=%d).", base_in, base_out);
2183 if (s_in_[0] ==
'-') {
2187 if (!isSigned && s_in_[0] ==
'+') s_in_.
Remove(0, 1);
2190 if (!s_in_.
Length()) s_in_ +=
'0';
2193 Error(
"TString::BaseConvert",
"s_in=\"%s\" is not in base %d", s_in.
Data(), base_in);
2200 Error(
"TString::BaseConvert",
"s_in=\"%s\" > %s = 2^64-1 in base %d.", s_in.
Data(), s_max.
Data(), base_in);
2205 if (s_in_ > s_max) {
2207 Error(
"TString::BaseConvert",
"s_in=\"%s\" > %s = 2^64-1 in base %d.", s_in.
Data(), s_max.
Data(), base_in);
2215 if (isSigned) s_out.
Prepend(
"-");
2224 if (!s)
return kTRUE;
2231 return strcmp(s, s2) == 0;
2232 return strcasecmp(s, s2) == 0;
2244 std::list<Int_t> splitIndex;
2246 Int_t i, start, nrDiff = 0;
2247 for (i = 0; i < delim.
Length(); i++) {
2249 while (start <
Length()) {
2251 if (pos ==
kNPOS)
break;
2252 splitIndex.push_back(pos);
2255 if (start > 0) nrDiff++;
2257 splitIndex.push_back(
Length());
2266 std::list<Int_t>::const_iterator it;
2268 for (it = splitIndex.begin(); it != splitIndex.end(); ++it) {
2270 for (it = splitIndex.begin(); it != (std::list<Int_t>::const_iterator) splitIndex.end(); ++it) {
2273 if (stop - 1 >= start + 1) {
2274 TString tok = (*this)(start+1, stop-start-1);
2290 Ssiz_t buflen = 20 + 20 * strlen(fmt);
2301 if (
n == -1 ||
n >= buflen) {
2337 va_start(ap,
va_(fmt));
2359 va_start(ap,
va_(fmt));
2374 static const int fld_size = 2048;
2375 TTHREAD_TLS(
char*) slowBuffer(
nullptr);
2376 TTHREAD_TLS(
int) slowBufferSize(0);
2378 if (hint == -1) hint = fld_size;
2379 if (hint > slowBufferSize) {
2380 delete [] slowBuffer;
2381 slowBufferSize = 2 * hint;
2382 if (hint < 0 || slowBufferSize < 0) {
2384 slowBuffer =
nullptr;
2387 slowBuffer =
new char[slowBufferSize];
2393 int n = vsnprintf(slowBuffer, slowBufferSize,
format, ap);
2396 if (
n == -1 ||
n >= slowBufferSize) {
2397 if (
n == -1)
n = 2 * slowBufferSize;
2398 if (
n == slowBufferSize)
n++;
2422 static const int cb_size = 4096;
2423 static const int fld_size = 2048;
2426 TTHREAD_TLS_ARRAY(
char,cb_size,gFormbuf);
2427 TTHREAD_TLS(
char*) gBfree(
nullptr);
2428 TTHREAD_TLS(
char*) gEndbuf(
nullptr);
2430 if (gBfree ==
nullptr) {
2432 gEndbuf = &gFormbuf[cb_size-1];
2436 if (buf+fld_size > gEndbuf)
2442 int n = vsnprintf(buf, fld_size,
format, ap);
2445 if (
n == -1 ||
n >= fld_size) {
2470 va_start(ap,
va_(fmt));
2484 va_start(ap,
va_(fmt));
2501 if (!s)
return nullptr;
2504 char *buf =
new char[
l+1];
2517 const char *t2 = s +
l - 1;
2518 while (*t2 ==
c && t2 > s)
2526 *(buf+(t2-
t1+1)) =
'\0';
2537 if (!str)
return nullptr;
2539 auto len = strlen(str)+1;
2540 char *s =
new char[
len];
2541 if (s) strlcpy(s, str,
len);
2552 if (!str)
return nullptr;
2554 const char *
p = str;
2555 char *s, *
s1 =
new char[strlen(str)+1];
2571int EscChar(
const char *
src,
char *dst,
int dstlen,
char *specchars,
2575 char *
q, *end = dst+dstlen-1;
2577 for (
p =
src,
q = dst; *
p &&
q < end; ) {
2578 if (strchr(specchars, *
p)) {
2595int UnEscChar(
const char *
src,
char *dst,
int dstlen,
char *specchars,
char)
2598 char *
q, *end = dst+dstlen-1;
2600 for (
p =
src,
q = dst; *
p &&
q < end; ) {
2601 if (strchr(specchars, *
p))
2613#ifdef NEED_STRCASECMP
2617int strcasecmp(
const char *str1,
const char *str2)
2619 return strncasecmp(str1, str2, str2 ? strlen(str2)+1 : 0);
2625int strncasecmp(
const char *str1,
const char *str2,
Ssiz_t n)
2651std::string cling::printValue(
const TString* val) {
2659std::string cling::printValue(
const TSubString* val) {
2667std::string cling::printValue(
const std::string_view* val) {
2668 std::string str(*val);
void frombuf(char *&buf, Bool_t *x)
void tobuf(char *&buf, Bool_t x)
constexpr ULong_t kBitsPerByte
unsigned long long ULong64_t
TBuffer & operator<<(TBuffer &buf, const Tmpl *obj)
void ErrorHandler(int level, const char *location, const char *fmt, std::va_list va)
General error handler function. It calls the user set error handler.
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
void Obsolete(const char *function, const char *asOfVers, const char *removedFromVers)
Use this function to declare a function obsolete.
void Warning(const char *location, const char *msgfmt,...)
Use this function in warning situations.
Bool_t gPrintViaErrorHandler
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t UChar_t len
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t format
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t nchar
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t src
uint64_t rotl64(uint64_t x, int8_t r)
TString ToLower(const TString &str)
Return a lower-case version of 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 *.
UInt_t Hash(const char *str)
Return a case-sensitive hash value (endian independent).
static char * SlowFormat(const char *format, va_list ap, int hint)
Format a string in a formatting buffer (using a printf style format descriptor).
TString ToUpper(const TString &str)
Return an upper-case version of str.
static UInt_t SwapInt(UInt_t x)
static void Mash(UInt_t &hash, UInt_t chars)
Utility used by Hash().
char * Compress(const char *str)
Remove all blanks from the string str.
int UnEscChar(const char *src, char *dst, int dstlen, char *specchars, char escchar)
Un-escape specchars in src from escchar and copy to dst.
void Printf(const char *fmt,...)
Formats a string in a circular formatting buffer and prints the string.
char * StrDup(const char *str)
Duplicate the string str.
int EscChar(const char *src, char *dst, int dstlen, char *specchars, char escchar)
Escape specchars in src with escchar and copy to dst.
#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 Streamer(void *obj, TBuffer &b, const TClass *onfile_class=nullptr) const
void * New(ENewType defConstructor=kClassNew, Bool_t quiet=kFALSE) const
Return a pointer to a newly allocated object of this class.
TClass * IsA() const override
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 ...
const char * GetName() const override
Returns name of object.
void Add(TObject *obj) override
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 constexpr 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.
TString & ReplaceSpecialCppChars()
Find special characters which are typically used in printf() calls and replace them by appropriate es...
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.
virtual void Streamer(TBuffer &)
Stream a string object.
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.
Short_t Max(Short_t a, Short_t b)
Returns the largest of a and b.
Short_t Min(Short_t a, Short_t b)
Returns the smallest of a and b.
Short_t Abs(Short_t d)
Returns the absolute value of parameter Short_t d.