diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-07-19 10:12:39 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-07-19 10:12:39 (GMT) |
commit | b31266c1076c6284116f17241d9e8aa048f88e60 (patch) | |
tree | 3504af4c401a616449931bdbd820a7ab5eb98931 /qtools | |
parent | 4116648d3c62aee54c385644a4fe754ee7a4261d (diff) | |
download | Doxygen-b31266c1076c6284116f17241d9e8aa048f88e60.zip Doxygen-b31266c1076c6284116f17241d9e8aa048f88e60.tar.gz Doxygen-b31266c1076c6284116f17241d9e8aa048f88e60.tar.bz2 |
Bug 751984 - PATCH: Honour SOURCE_DATE_EPOCH environment variable for reproducible output
Diffstat (limited to 'qtools')
-rw-r--r-- | qtools/qcstring.cpp | 6 | ||||
-rw-r--r-- | qtools/qcstring.h | 1 | ||||
-rw-r--r-- | qtools/qstring.cpp | 54 | ||||
-rw-r--r-- | qtools/qstring.h | 1 |
4 files changed, 62 insertions, 0 deletions
diff --git a/qtools/qcstring.cpp b/qtools/qcstring.cpp index 45ccef9..35b9bb8 100644 --- a/qtools/qcstring.cpp +++ b/qtools/qcstring.cpp @@ -460,6 +460,12 @@ ulong QCString::toULong(bool *ok) const return s.toULong(ok); } +uint64 QCString::toUInt64(bool *ok) const +{ + QString s(data()); + return s.toUInt64(ok); +} + QCString &QCString::setNum(short n) { return setNum((long)n); diff --git a/qtools/qcstring.h b/qtools/qcstring.h index d8ce074..4f15b18 100644 --- a/qtools/qcstring.h +++ b/qtools/qcstring.h @@ -288,6 +288,7 @@ public: uint toUInt( bool *ok=0 ) const; long toLong( bool *ok=0 ) const; ulong toULong( bool *ok=0 ) const; + uint64 toUInt64( bool *ok=0 ) const; QCString &setNum(short n); QCString &setNum(ushort n); QCString &setNum(int n); diff --git a/qtools/qstring.cpp b/qtools/qstring.cpp index f51c0d4..458fd53 100644 --- a/qtools/qstring.cpp +++ b/qtools/qstring.cpp @@ -13935,6 +13935,60 @@ bye: } /*! + Returns the string converted to an <code>unsigned long</code> + value. + + If \a ok is non-null, \a *ok is set to TRUE if there are no + conceivable errors, and FALSE if the string is not a number at all, + or if it has trailing garbage. +*/ + +uint64 QString::toUInt64( bool *ok, int base ) const +{ + const QChar *p = unicode(); + uint64 val=0; + int l = length(); + const uint64 max_mult = 1844674407370955161ULL; // ULLONG_MAX/10, rounded down + bool is_ok = FALSE; + if ( !p ) + goto bye; + while ( l && p->isSpace() ) // skip leading space + l--,p++; + if ( *p == '+' ) + l--,p++; + + // NOTE: toULong() code is similar + if ( !l || !ok_in_base(*p,base) ) + goto bye; + while ( l && ok_in_base(*p,base) ) { + l--; + uint dv; + if ( p->isDigit() ) { + dv = p->digitValue(); + } else { + if ( *p >= 'a' && *p <= 'z' ) + dv = *p - 'a' + 10; + else + dv = *p - 'A' + 10; + } + if ( val > max_mult || (val == max_mult && dv > (ULLONG_MAX%base)) ) + goto bye; + val = base*val + dv; + p++; + } + + while ( l && p->isSpace() ) // skip trailing space + l--,p++; + if ( !l ) + is_ok = TRUE; +bye: + if ( ok ) + *ok = is_ok; + return is_ok ? val : 0; +} + + +/*! Returns the string converted to a <code>short</code> value. If \a ok is non-null, \a *ok is set to TRUE if there are no diff --git a/qtools/qstring.h b/qtools/qstring.h index a64fabf..df3873d 100644 --- a/qtools/qstring.h +++ b/qtools/qstring.h @@ -463,6 +463,7 @@ public: uint toUInt( bool *ok=0, int base=10 ) const; long toLong( bool *ok=0, int base=10 ) const; ulong toULong( bool *ok=0, int base=10 ) const; + uint64 toUInt64( bool *ok=0, int base=10 ) const; float toFloat( bool *ok=0 ) const; double toDouble( bool *ok=0 ) const; |