1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2015 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 #include "utilstrencodings.h"
8 #include "tinyformat.h"
17 static const string CHARS_ALPHA_NUM
= "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
19 static const string SAFE_CHARS
[] =
21 CHARS_ALPHA_NUM
+ " .,;-_/:?@()", // SAFE_CHARS_DEFAULT
22 CHARS_ALPHA_NUM
+ " .,;-_?@" // SAFE_CHARS_UA_COMMENT
25 string
SanitizeString(const string
& str
, int rule
)
28 for (std::string::size_type i
= 0; i
< str
.size(); i
++)
30 if (SAFE_CHARS
[rule
].find(str
[i
]) != std::string::npos
)
31 strResult
.push_back(str
[i
]);
36 const signed char p_util_hexdigit
[256] =
37 { -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
38 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
39 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
40 0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1,
41 -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1,
42 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
43 -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1,
44 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
45 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
46 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
47 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
48 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
49 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
50 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
51 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
52 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, };
54 signed char HexDigit(char c
)
56 return p_util_hexdigit
[(unsigned char)c
];
59 bool IsHex(const string
& str
)
61 for(std::string::const_iterator
it(str
.begin()); it
!= str
.end(); ++it
)
63 if (HexDigit(*it
) < 0)
66 return (str
.size() > 0) && (str
.size()%2 == 0);
69 vector
<unsigned char> ParseHex(const char* psz
)
71 // convert hex dump to vector
72 vector
<unsigned char> vch
;
77 signed char c
= HexDigit(*psz
++);
78 if (c
== (signed char)-1)
80 unsigned char n
= (c
<< 4);
82 if (c
== (signed char)-1)
90 vector
<unsigned char> ParseHex(const string
& str
)
92 return ParseHex(str
.c_str());
95 string
EncodeBase64(const unsigned char* pch
, size_t len
)
97 static const char *pbase64
= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
100 strRet
.reserve((len
+2)/3*4);
103 const unsigned char *pchEnd
= pch
+len
;
110 case 0: // we have no bits
111 strRet
+= pbase64
[enc
>> 2];
112 left
= (enc
& 3) << 4;
116 case 1: // we have two bits
117 strRet
+= pbase64
[left
| (enc
>> 4)];
118 left
= (enc
& 15) << 2;
122 case 2: // we have four bits
123 strRet
+= pbase64
[left
| (enc
>> 6)];
124 strRet
+= pbase64
[enc
& 63];
132 strRet
+= pbase64
[left
];
141 string
EncodeBase64(const string
& str
)
143 return EncodeBase64((const unsigned char*)str
.c_str(), str
.size());
146 vector
<unsigned char> DecodeBase64(const char* p
, bool* pfInvalid
)
148 static const int decode64_table
[256] =
150 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
151 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
152 -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1,
153 -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
154 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28,
155 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
156 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
157 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
158 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
159 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
160 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
161 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
162 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
168 vector
<unsigned char> vchRet
;
169 vchRet
.reserve(strlen(p
)*3/4);
176 int dec
= decode64_table
[(unsigned char)*p
];
177 if (dec
== -1) break;
181 case 0: // we have no bits and get 6
186 case 1: // we have 6 bits and keep 4
187 vchRet
.push_back((left
<<2) | (dec
>>4));
192 case 2: // we have 4 bits and get 6, we keep 2
193 vchRet
.push_back((left
<<4) | (dec
>>2));
198 case 3: // we have 2 bits and get 6
199 vchRet
.push_back((left
<<6) | dec
);
208 case 0: // 4n base64 characters processed: ok
211 case 1: // 4n+1 base64 character processed: impossible
215 case 2: // 4n+2 base64 characters processed: require '=='
216 if (left
|| p
[0] != '=' || p
[1] != '=' || decode64_table
[(unsigned char)p
[2]] != -1)
220 case 3: // 4n+3 base64 characters processed: require '='
221 if (left
|| p
[0] != '=' || decode64_table
[(unsigned char)p
[1]] != -1)
229 string
DecodeBase64(const string
& str
)
231 vector
<unsigned char> vchRet
= DecodeBase64(str
.c_str());
232 return (vchRet
.size() == 0) ? string() : string((const char*)&vchRet
[0], vchRet
.size());
235 string
EncodeBase32(const unsigned char* pch
, size_t len
)
237 static const char *pbase32
= "abcdefghijklmnopqrstuvwxyz234567";
240 strRet
.reserve((len
+4)/5*8);
243 const unsigned char *pchEnd
= pch
+len
;
250 case 0: // we have no bits
251 strRet
+= pbase32
[enc
>> 3];
252 left
= (enc
& 7) << 2;
256 case 1: // we have three bits
257 strRet
+= pbase32
[left
| (enc
>> 6)];
258 strRet
+= pbase32
[(enc
>> 1) & 31];
259 left
= (enc
& 1) << 4;
263 case 2: // we have one bit
264 strRet
+= pbase32
[left
| (enc
>> 4)];
265 left
= (enc
& 15) << 1;
269 case 3: // we have four bits
270 strRet
+= pbase32
[left
| (enc
>> 7)];
271 strRet
+= pbase32
[(enc
>> 2) & 31];
272 left
= (enc
& 3) << 3;
276 case 4: // we have two bits
277 strRet
+= pbase32
[left
| (enc
>> 5)];
278 strRet
+= pbase32
[enc
& 31];
283 static const int nPadding
[5] = {0, 6, 4, 3, 1};
286 strRet
+= pbase32
[left
];
287 for (int n
=0; n
<nPadding
[mode
]; n
++)
294 string
EncodeBase32(const string
& str
)
296 return EncodeBase32((const unsigned char*)str
.c_str(), str
.size());
299 vector
<unsigned char> DecodeBase32(const char* p
, bool* pfInvalid
)
301 static const int decode32_table
[256] =
303 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
304 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
305 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1,
306 -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
307 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1, 0, 1, 2,
308 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
309 23, 24, 25, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
310 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
311 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
312 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
313 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
314 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
315 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
321 vector
<unsigned char> vchRet
;
322 vchRet
.reserve((strlen(p
))*5/8);
329 int dec
= decode32_table
[(unsigned char)*p
];
330 if (dec
== -1) break;
334 case 0: // we have no bits and get 5
339 case 1: // we have 5 bits and keep 2
340 vchRet
.push_back((left
<<3) | (dec
>>2));
345 case 2: // we have 2 bits and keep 7
346 left
= left
<< 5 | dec
;
350 case 3: // we have 7 bits and keep 4
351 vchRet
.push_back((left
<<1) | (dec
>>4));
356 case 4: // we have 4 bits, and keep 1
357 vchRet
.push_back((left
<<4) | (dec
>>1));
362 case 5: // we have 1 bit, and keep 6
363 left
= left
<< 5 | dec
;
367 case 6: // we have 6 bits, and keep 3
368 vchRet
.push_back((left
<<2) | (dec
>>3));
373 case 7: // we have 3 bits, and keep 0
374 vchRet
.push_back((left
<<5) | dec
);
383 case 0: // 8n base32 characters processed: ok
386 case 1: // 8n+1 base32 characters processed: impossible
392 case 2: // 8n+2 base32 characters processed: require '======'
393 if (left
|| p
[0] != '=' || p
[1] != '=' || p
[2] != '=' || p
[3] != '=' || p
[4] != '=' || p
[5] != '=' || decode32_table
[(unsigned char)p
[6]] != -1)
397 case 4: // 8n+4 base32 characters processed: require '===='
398 if (left
|| p
[0] != '=' || p
[1] != '=' || p
[2] != '=' || p
[3] != '=' || decode32_table
[(unsigned char)p
[4]] != -1)
402 case 5: // 8n+5 base32 characters processed: require '==='
403 if (left
|| p
[0] != '=' || p
[1] != '=' || p
[2] != '=' || decode32_table
[(unsigned char)p
[3]] != -1)
407 case 7: // 8n+7 base32 characters processed: require '='
408 if (left
|| p
[0] != '=' || decode32_table
[(unsigned char)p
[1]] != -1)
416 string
DecodeBase32(const string
& str
)
418 vector
<unsigned char> vchRet
= DecodeBase32(str
.c_str());
419 return (vchRet
.size() == 0) ? string() : string((const char*)&vchRet
[0], vchRet
.size());
422 static bool ParsePrechecks(const std::string
& str
)
424 if (str
.empty()) // No empty string allowed
426 if (str
.size() >= 1 && (isspace(str
[0]) || isspace(str
[str
.size()-1]))) // No padding allowed
428 if (str
.size() != strlen(str
.c_str())) // No embedded NUL characters allowed
433 bool ParseInt32(const std::string
& str
, int32_t *out
)
435 if (!ParsePrechecks(str
))
438 errno
= 0; // strtol will not set errno if valid
439 long int n
= strtol(str
.c_str(), &endp
, 10);
440 if(out
) *out
= (int32_t)n
;
441 // Note that strtol returns a *long int*, so even if strtol doesn't report a over/underflow
442 // we still have to check that the returned value is within the range of an *int32_t*. On 64-bit
443 // platforms the size of these types may be different.
444 return endp
&& *endp
== 0 && !errno
&&
445 n
>= std::numeric_limits
<int32_t>::min() &&
446 n
<= std::numeric_limits
<int32_t>::max();
449 bool ParseInt64(const std::string
& str
, int64_t *out
)
451 if (!ParsePrechecks(str
))
454 errno
= 0; // strtoll will not set errno if valid
455 long long int n
= strtoll(str
.c_str(), &endp
, 10);
456 if(out
) *out
= (int64_t)n
;
457 // Note that strtoll returns a *long long int*, so even if strtol doesn't report a over/underflow
458 // we still have to check that the returned value is within the range of an *int64_t*.
459 return endp
&& *endp
== 0 && !errno
&&
460 n
>= std::numeric_limits
<int64_t>::min() &&
461 n
<= std::numeric_limits
<int64_t>::max();
464 bool ParseUInt32(const std::string
& str
, uint32_t *out
)
466 if (!ParsePrechecks(str
))
468 if (str
.size() >= 1 && str
[0] == '-') // Reject negative values, unfortunately strtoul accepts these by default if they fit in the range
471 errno
= 0; // strtoul will not set errno if valid
472 unsigned long int n
= strtoul(str
.c_str(), &endp
, 10);
473 if(out
) *out
= (uint32_t)n
;
474 // Note that strtoul returns a *unsigned long int*, so even if it doesn't report a over/underflow
475 // we still have to check that the returned value is within the range of an *uint32_t*. On 64-bit
476 // platforms the size of these types may be different.
477 return endp
&& *endp
== 0 && !errno
&&
478 n
<= std::numeric_limits
<uint32_t>::max();
481 bool ParseUInt64(const std::string
& str
, uint64_t *out
)
483 if (!ParsePrechecks(str
))
485 if (str
.size() >= 1 && str
[0] == '-') // Reject negative values, unfortunately strtoull accepts these by default if they fit in the range
488 errno
= 0; // strtoull will not set errno if valid
489 unsigned long long int n
= strtoull(str
.c_str(), &endp
, 10);
490 if(out
) *out
= (uint64_t)n
;
491 // Note that strtoull returns a *unsigned long long int*, so even if it doesn't report a over/underflow
492 // we still have to check that the returned value is within the range of an *uint64_t*.
493 return endp
&& *endp
== 0 && !errno
&&
494 n
<= std::numeric_limits
<uint64_t>::max();
498 bool ParseDouble(const std::string
& str
, double *out
)
500 if (!ParsePrechecks(str
))
502 if (str
.size() >= 2 && str
[0] == '0' && str
[1] == 'x') // No hexadecimal floats allowed
504 std::istringstream
text(str
);
505 text
.imbue(std::locale::classic());
508 if(out
) *out
= result
;
509 return text
.eof() && !text
.fail();
512 std::string
FormatParagraph(const std::string
& in
, size_t width
, size_t indent
)
514 std::stringstream out
;
517 while (ptr
< in
.size())
519 size_t lineend
= in
.find_first_of('\n', ptr
);
520 if (lineend
== std::string::npos
) {
523 const size_t linelen
= lineend
- ptr
;
524 const size_t rem_width
= width
- indented
;
525 if (linelen
<= rem_width
) {
526 out
<< in
.substr(ptr
, linelen
+ 1);
530 size_t finalspace
= in
.find_last_of(" \n", ptr
+ rem_width
);
531 if (finalspace
== std::string::npos
|| finalspace
< ptr
) {
532 // No place to break; just include the entire word and move on
533 finalspace
= in
.find_first_of("\n ", ptr
);
534 if (finalspace
== std::string::npos
) {
535 // End of the string, just add it and break
536 out
<< in
.substr(ptr
);
540 out
<< in
.substr(ptr
, finalspace
- ptr
) << "\n";
541 if (in
[finalspace
] == '\n') {
544 out
<< std::string(indent
, ' ');
547 ptr
= finalspace
+ 1;
553 std::string
i64tostr(int64_t n
)
555 return strprintf("%d", n
);
558 std::string
itostr(int n
)
560 return strprintf("%d", n
);
563 int64_t atoi64(const char* psz
)
568 return strtoll(psz
, NULL
, 10);
572 int64_t atoi64(const std::string
& str
)
575 return _atoi64(str
.c_str());
577 return strtoll(str
.c_str(), NULL
, 10);
581 int atoi(const std::string
& str
)
583 return atoi(str
.c_str());
586 /** Upper bound for mantissa.
587 * 10^18-1 is the largest arbitrary decimal that will fit in a signed 64-bit integer.
588 * Larger integers cannot consist of arbitrary combinations of 0-9:
590 * 999999999999999999 1^18-1
591 * 9223372036854775807 (1<<63)-1 (max int64_t)
592 * 9999999999999999999 1^19-1 (would overflow)
594 static const int64_t UPPER_BOUND
= 1000000000000000000LL - 1LL;
596 /** Helper function for ParseFixedPoint */
597 static inline bool ProcessMantissaDigit(char ch
, int64_t &mantissa
, int &mantissa_tzeros
)
602 for (int i
=0; i
<=mantissa_tzeros
; ++i
) {
603 if (mantissa
> (UPPER_BOUND
/ 10LL))
604 return false; /* overflow */
607 mantissa
+= ch
- '0';
613 bool ParseFixedPoint(const std::string
&val
, int decimals
, int64_t *amount_out
)
615 int64_t mantissa
= 0;
616 int64_t exponent
= 0;
617 int mantissa_tzeros
= 0;
618 bool mantissa_sign
= false;
619 bool exponent_sign
= false;
621 int end
= val
.size();
624 if (ptr
< end
&& val
[ptr
] == '-') {
625 mantissa_sign
= true;
630 if (val
[ptr
] == '0') {
633 } else if (val
[ptr
] >= '1' && val
[ptr
] <= '9') {
634 while (ptr
< end
&& val
[ptr
] >= '0' && val
[ptr
] <= '9') {
635 if (!ProcessMantissaDigit(val
[ptr
], mantissa
, mantissa_tzeros
))
636 return false; /* overflow */
639 } else return false; /* missing expected digit */
640 } else return false; /* empty string or loose '-' */
641 if (ptr
< end
&& val
[ptr
] == '.')
644 if (ptr
< end
&& val
[ptr
] >= '0' && val
[ptr
] <= '9')
646 while (ptr
< end
&& val
[ptr
] >= '0' && val
[ptr
] <= '9') {
647 if (!ProcessMantissaDigit(val
[ptr
], mantissa
, mantissa_tzeros
))
648 return false; /* overflow */
652 } else return false; /* missing expected digit */
654 if (ptr
< end
&& (val
[ptr
] == 'e' || val
[ptr
] == 'E'))
657 if (ptr
< end
&& val
[ptr
] == '+')
659 else if (ptr
< end
&& val
[ptr
] == '-') {
660 exponent_sign
= true;
663 if (ptr
< end
&& val
[ptr
] >= '0' && val
[ptr
] <= '9') {
664 while (ptr
< end
&& val
[ptr
] >= '0' && val
[ptr
] <= '9') {
665 if (exponent
> (UPPER_BOUND
/ 10LL))
666 return false; /* overflow */
667 exponent
= exponent
* 10 + val
[ptr
] - '0';
670 } else return false; /* missing expected digit */
673 return false; /* trailing garbage */
675 /* finalize exponent */
677 exponent
= -exponent
;
678 exponent
= exponent
- point_ofs
+ mantissa_tzeros
;
680 /* finalize mantissa */
682 mantissa
= -mantissa
;
684 /* convert to one 64-bit fixed-point value */
685 exponent
+= decimals
;
687 return false; /* cannot represent values smaller than 10^-decimals */
689 return false; /* cannot represent values larger than or equal to 10^(18-decimals) */
691 for (int i
=0; i
< exponent
; ++i
) {
692 if (mantissa
> (UPPER_BOUND
/ 10LL) || mantissa
< -(UPPER_BOUND
/ 10LL))
693 return false; /* overflow */
696 if (mantissa
> UPPER_BOUND
|| mantissa
< -UPPER_BOUND
)
697 return false; /* overflow */
700 *amount_out
= mantissa
;